You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
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;