-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.tsx
74 lines (71 loc) · 1.49 KB
/
types.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
export type TextLayout =
| "text-xs-tighter"
| "text-xs-tight"
| "text-xs-normal"
| "text-xs-loose"
| "text-sx-looser"
| "text-sm-tighter"
| "text-sm-tight"
| "text-sm-normal"
| "text-sm-loose"
| "text-sm-looser"
| "text-md-tighter"
| "text-md-tight"
| "text-md-normal"
| "text-md-loose"
| "text-md-looser"
| "text-lg-tighter"
| "text-lg-tight"
| "text-lg-normal"
| "text-lg-loose"
| "text-lg-looser"
| "text-xl-tighter"
| "text-xl-tight"
| "text-xl-normal"
| "text-xl-loose"
| "text-xl-looser"
| "text-xxl-tighter"
| "text-xxl-tight"
| "text-xxl-normal"
| "text-xxl-loose"
| "text-xxl-looser"
| "text-xxxl-tighter"
| "text-xxxl-tight"
| "text-xxxl-normal"
| "text-xxxl-loose"
| "text-xxxl-looser"
| "text-mega-tighter"
| "text-mega-tight"
| "text-mega-normal"
| "text-mega-loose"
| "text-mega-looser"
| "text-too-big-tighter"
| "text-too-big-tight"
| "text-too-big-normal"
| "text-too-big-loose"
| "text-too-big-looser"
| "text-insane-tighter"
| "text-insane-tight"
| "text-insane-normal"
| "text-insane-loose"
| "text-insane-looser";
export type TextShadows =
| "lightTextShadow"
| "textShadow"
| "subtleTextShadow"
| "standoutTextShadow"
| "textFog"
| "textGlow"
| "boldText"
| "boldTextGlow";
export type DrawerSlideDirection =
| "right"
| "top-right"
| "bottom-right"
| "bottom-center"
| "left"
| "bottom-left"
| "top-left"
| "top-center"
| "bottom"
| "top";