UNPKG

1.04 kBTypeScriptView Raw
1export interface IconClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element if `color="primary"`. */
5 colorPrimary: string;
6 /** Styles applied to the root element if `color="secondary"`. */
7 colorSecondary: string;
8 /** Styles applied to the root element if `color="action"`. */
9 colorAction: string;
10 /** Styles applied to the root element if `color="error"`. */
11 colorError: string;
12 /** Styles applied to the root element if `color="disabled"`. */
13 colorDisabled: string;
14 /** Styles applied to the root element if `fontSize="inherit"`. */
15 fontSizeInherit: string;
16 /** Styles applied to the root element if `fontSize="small"`. */
17 fontSizeSmall: string;
18 /** Styles applied to the root element if `fontSize="large"`. */
19 fontSizeLarge: string;
20}
21export type IconClassKey = keyof IconClasses;
22export declare function getIconUtilityClass(slot: string): string;
23declare const iconClasses: IconClasses;
24export default iconClasses;