Type alias ToolbarProps

ToolbarProps: PropsWithChildren<{
    className?: string;
    commandHandler: CommandHandler;
    id?: string;
    menuProvider?: MultiColumnMenuProvider;
}>

Type declaration

  • Optional className?: string

    Additional css classes to help with unique styling of the toolbar

  • commandHandler: CommandHandler

    The handler to use for menu commands (and eventually toolbar commands).

  • Optional id?: string

    Optional unique identifier

  • Optional menuProvider?: MultiColumnMenuProvider

    The optional delegate to use to get the menu data. If not specified, the "hamburger" menu will not display.