interface MobileMenuItem {
    disabled?: boolean;
    icon: false | ReactElement<any, string | JSXElementConstructor<any>> | IconType;
    label: string;
    onClick?: (() => void);
    to?: string;
}

Properties

disabled?: boolean
icon: false | ReactElement<any, string | JSXElementConstructor<any>> | IconType
label: string
onClick?: (() => void)

Type declaration

    • (): void
    • Returns void

to?: string

Generated using TypeDoc