UNPKG

@mui/material

Version:

Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

15 lines (14 loc) 585 B
export interface ToolbarClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element unless `disableGutters={true}`. */ gutters: string; /** Styles applied to the root element if `variant="regular"`. */ regular: string; /** Styles applied to the root element if `variant="dense"`. */ dense: string; } export declare type ToolbarClassKey = keyof ToolbarClasses; export declare function getToolbarUtilityClass(slot: string): string; declare const toolbarClasses: ToolbarClasses; export default toolbarClasses;