UNPKG

2.85 kBTypeScriptView Raw
1export interface PaperClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element unless `square={true}`. */
5 rounded: string;
6 /** Styles applied to the root element if `variant="outlined"`. */
7 outlined: string;
8 /** Styles applied to the root element if `variant="elevation"`. */
9 elevation: string;
10 /** Styles applied to the root element if `elevation={0}`. */
11 elevation0: string;
12 /** Styles applied to the root element if `elevation={1}`. */
13 elevation1: string;
14 /** Styles applied to the root element if `elevation={2}`. */
15 elevation2: string;
16 /** Styles applied to the root element if `elevation={3}`. */
17 elevation3: string;
18 /** Styles applied to the root element if `elevation={4}`. */
19 elevation4: string;
20 /** Styles applied to the root element if `elevation={5}`. */
21 elevation5: string;
22 /** Styles applied to the root element if `elevation={6}`. */
23 elevation6: string;
24 /** Styles applied to the root element if `elevation={7}`. */
25 elevation7: string;
26 /** Styles applied to the root element if `elevation={8}`. */
27 elevation8: string;
28 /** Styles applied to the root element if `elevation={9}`. */
29 elevation9: string;
30 /** Styles applied to the root element if `elevation={10}`. */
31 elevation10: string;
32 /** Styles applied to the root element if `elevation={11}`. */
33 elevation11: string;
34 /** Styles applied to the root element if `elevation={12}`. */
35 elevation12: string;
36 /** Styles applied to the root element if `elevation={13}`. */
37 elevation13: string;
38 /** Styles applied to the root element if `elevation={14}`. */
39 elevation14: string;
40 /** Styles applied to the root element if `elevation={15}`. */
41 elevation15: string;
42 /** Styles applied to the root element if `elevation={16}`. */
43 elevation16: string;
44 /** Styles applied to the root element if `elevation={17}`. */
45 elevation17: string;
46 /** Styles applied to the root element if `elevation={18}`. */
47 elevation18: string;
48 /** Styles applied to the root element if `elevation={19}`. */
49 elevation19: string;
50 /** Styles applied to the root element if `elevation={20}`. */
51 elevation20: string;
52 /** Styles applied to the root element if `elevation={21}`. */
53 elevation21: string;
54 /** Styles applied to the root element if `elevation={22}`. */
55 elevation22: string;
56 /** Styles applied to the root element if `elevation={23}`. */
57 elevation23: string;
58 /** Styles applied to the root element if `elevation={24}`. */
59 elevation24: string;
60}
61export type PaperClassKey = keyof PaperClasses;
62export declare function getPaperUtilityClass(slot: string): string;
63declare const paperClasses: PaperClasses;
64export default paperClasses;