Interface DrawerButtonProps

interface DrawerButtonProps {
    critical?: boolean;
    icon?: ReactElement<unknown, string | JSXElementConstructor<any>>;
    onClick?: () => void;
    role?: AriaRole;
    text: string;
    type?: "button" | "submit" | "reset";
}

Properties

critical?: boolean
icon?: ReactElement<unknown, string | JSXElementConstructor<any>>
onClick?: () => void
role?: AriaRole
text: string
type?: "button" | "submit" | "reset"