UNPKG

1.64 kBTypeScriptView Raw
1export interface AppBarClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element if `position="fixed"`. */
5 positionFixed: string;
6 /** Styles applied to the root element if `position="absolute"`. */
7 positionAbsolute: string;
8 /** Styles applied to the root element if `position="sticky"`. */
9 positionSticky: string;
10 /** Styles applied to the root element if `position="static"`. */
11 positionStatic: string;
12 /** Styles applied to the root element if `position="relative"`. */
13 positionRelative: string;
14 /** Styles applied to the root element if `color="default"`. */
15 colorDefault: string;
16 /** Styles applied to the root element if `color="primary"`. */
17 colorPrimary: string;
18 /** Styles applied to the root element if `color="secondary"`. */
19 colorSecondary: string;
20 /** Styles applied to the root element if `color="inherit"`. */
21 colorInherit: string;
22 /** Styles applied to the root element if `color="transparent"`. */
23 colorTransparent: string;
24 /** Styles applied to the root element if `color="error"`. */
25 colorError: string;
26 /** Styles applied to the root element if `color="info"`. */
27 colorInfo: string;
28 /** Styles applied to the root element if `color="success"`. */
29 colorSuccess: string;
30 /** Styles applied to the root element if `color="warning"`. */
31 colorWarning: string;
32}
33export type AppBarClassKey = keyof AppBarClasses;
34export declare function getAppBarUtilityClass(slot: string): string;
35declare const appBarClasses: AppBarClasses;
36export default appBarClasses;