@mui/material
Version:
Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.
14 lines • 560 B
TypeScript
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 type ToolbarClassKey = keyof ToolbarClasses;
export declare function getToolbarUtilityClass(slot: string): string;
declare const toolbarClasses: ToolbarClasses;
export default toolbarClasses;