Type Alias ToolbarProps

ToolbarProps: PropsWithChildren<
    {
        appMenuAreaChildren?: ReactNode;
        className?: string;
        commandHandler: CommandHandler;
        configAreaChildren?: ReactNode;
        id?: string;
        menubarVariant?: "default"
        | "muted";
        menuData?: Localized<MultiColumnMenu>;
        onOpenChange?: (isOpen: boolean) => void;
        shouldUseAsAppDragArea?: boolean;
    },
>