@mui/material
Version:
React components that implement Google's Material Design.
15 lines (14 loc) • 577 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;