UNPKG

1.16 kBTypeScriptView Raw
1export interface SvgIconClasses {
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="medium"`. */
19 fontSizeMedium: string;
20 /** Styles applied to the root element if `fontSize="large"`. */
21 fontSizeLarge: string;
22}
23export type SvgIconClassKey = keyof SvgIconClasses;
24export declare function getSvgIconUtilityClass(slot: string): string;
25declare const svgIconClasses: SvgIconClasses;
26export default svgIconClasses;