@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
19 lines (18 loc) • 431 B
TypeScript
export declare type CustomToolbarProps = {
toolbarItemList: any[];
token: string;
disabled?: boolean;
};
declare const CustomToolbar: {
({ toolbarItemList, token, disabled }: {
toolbarItemList: any;
token: any;
disabled: any;
}): JSX.Element;
defaultProps: {
token: string;
disabled: boolean;
toolbarItemList: never[];
};
};
export default CustomToolbar;