Interface AlertMessageProps

interface AlertMessageProps {
    children?: ReactNode;
    header: string;
    type: keyof AlertMessageIcon;
}

Properties

Properties

children?: ReactNode
header: string
type: keyof AlertMessageIcon