@cleartrip/ct-design-typography 3.23.0-SNAPSHOT-testRnw.1.0 → 3.23.0-SNAPSHOT-stable-rnw.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/StyledTypography/style.d.ts +1 -1
- package/dist/StyledTypography/type.d.ts +1 -1
- package/dist/StyledTypography/type.d.ts.map +1 -1
- package/dist/Typography.d.ts.map +1 -1
- package/dist/ct-design-typography.browser.cjs.js +1 -1
- package/dist/ct-design-typography.browser.cjs.js.map +1 -1
- package/dist/ct-design-typography.browser.esm.js +1 -1
- package/dist/ct-design-typography.browser.esm.js.map +1 -1
- package/dist/ct-design-typography.cjs.js +79 -98
- package/dist/ct-design-typography.cjs.js.map +1 -1
- package/dist/ct-design-typography.esm.js +79 -98
- package/dist/ct-design-typography.esm.js.map +1 -1
- package/dist/ct-design-typography.umd.js +79 -98
- package/dist/ct-design-typography.umd.js.map +1 -1
- package/dist/style.d.ts +192 -736
- package/dist/style.d.ts.map +1 -1
- package/dist/type.d.ts +1 -2
- package/dist/type.d.ts.map +1 -1
- package/package.json +6 -6
package/dist/style.d.ts
CHANGED
|
@@ -1,119 +1,115 @@
|
|
|
1
1
|
import type { Theme } from '@cleartrip/ct-design-theme';
|
|
2
2
|
import { TypographyColorType, TypographyVariantType } from './type';
|
|
3
3
|
export declare const getTypographyVariant: (theme: Theme, variant: TypographyVariantType) => {
|
|
4
|
-
fontSize: "
|
|
4
|
+
fontSize: "48";
|
|
5
5
|
fontWeight: 600;
|
|
6
|
-
lineHeight: "
|
|
6
|
+
lineHeight: "56";
|
|
7
7
|
letterSpacing?: undefined;
|
|
8
8
|
textTransform?: undefined;
|
|
9
9
|
} | {
|
|
10
|
-
fontSize: "
|
|
10
|
+
fontSize: "40";
|
|
11
11
|
fontWeight: 600;
|
|
12
|
-
lineHeight: "
|
|
12
|
+
lineHeight: "48";
|
|
13
13
|
letterSpacing?: undefined;
|
|
14
14
|
textTransform?: undefined;
|
|
15
15
|
} | {
|
|
16
|
-
fontSize: "
|
|
16
|
+
fontSize: "32";
|
|
17
17
|
fontWeight: 600;
|
|
18
|
-
lineHeight: "
|
|
18
|
+
lineHeight: "40";
|
|
19
19
|
letterSpacing?: undefined;
|
|
20
20
|
textTransform?: undefined;
|
|
21
21
|
} | {
|
|
22
|
-
fontSize: "
|
|
22
|
+
fontSize: "24";
|
|
23
23
|
fontWeight: 600;
|
|
24
|
-
lineHeight: "
|
|
24
|
+
lineHeight: "32";
|
|
25
25
|
letterSpacing?: undefined;
|
|
26
26
|
textTransform?: undefined;
|
|
27
27
|
} | {
|
|
28
|
-
fontSize: "
|
|
28
|
+
fontSize: "20";
|
|
29
29
|
fontWeight: 600;
|
|
30
|
-
lineHeight: "
|
|
30
|
+
lineHeight: "28";
|
|
31
31
|
letterSpacing?: undefined;
|
|
32
32
|
textTransform?: undefined;
|
|
33
33
|
} | {
|
|
34
|
-
fontSize: "
|
|
34
|
+
fontSize: "16";
|
|
35
35
|
fontWeight: 600;
|
|
36
|
-
lineHeight: "
|
|
36
|
+
lineHeight: "24";
|
|
37
37
|
letterSpacing?: undefined;
|
|
38
38
|
textTransform?: undefined;
|
|
39
39
|
} | {
|
|
40
|
-
fontSize: "
|
|
40
|
+
fontSize: "14";
|
|
41
41
|
fontWeight: 600;
|
|
42
|
-
lineHeight: "
|
|
42
|
+
lineHeight: "20";
|
|
43
43
|
letterSpacing?: undefined;
|
|
44
44
|
textTransform?: undefined;
|
|
45
45
|
} | {
|
|
46
|
-
fontSize: "
|
|
46
|
+
fontSize: "16";
|
|
47
47
|
fontWeight: 500;
|
|
48
|
-
lineHeight: "
|
|
48
|
+
lineHeight: "24";
|
|
49
49
|
letterSpacing?: undefined;
|
|
50
50
|
textTransform?: undefined;
|
|
51
51
|
} | {
|
|
52
|
-
fontSize: "
|
|
52
|
+
fontSize: "14";
|
|
53
53
|
fontWeight: 500;
|
|
54
|
-
lineHeight: "
|
|
54
|
+
lineHeight: "20";
|
|
55
55
|
letterSpacing?: undefined;
|
|
56
56
|
textTransform?: undefined;
|
|
57
57
|
} | {
|
|
58
|
-
fontSize: "
|
|
58
|
+
fontSize: "12";
|
|
59
59
|
fontWeight: 500;
|
|
60
|
-
lineHeight: "
|
|
60
|
+
lineHeight: "16";
|
|
61
61
|
letterSpacing?: undefined;
|
|
62
62
|
textTransform?: undefined;
|
|
63
63
|
} | {
|
|
64
|
-
fontSize: "
|
|
64
|
+
fontSize: "12";
|
|
65
65
|
fontWeight: 600;
|
|
66
|
-
lineHeight: "
|
|
67
|
-
letterSpacing: "0.
|
|
66
|
+
lineHeight: "16";
|
|
67
|
+
letterSpacing: "0.4";
|
|
68
68
|
textTransform: string;
|
|
69
69
|
} | {
|
|
70
|
-
fontSize: "
|
|
70
|
+
fontSize: "10";
|
|
71
71
|
fontWeight: 500;
|
|
72
|
-
lineHeight: "
|
|
72
|
+
lineHeight: "14";
|
|
73
73
|
letterSpacing?: undefined;
|
|
74
74
|
textTransform?: undefined;
|
|
75
75
|
} | {
|
|
76
|
-
fontSize: "
|
|
76
|
+
fontSize: "10";
|
|
77
77
|
fontWeight: 600;
|
|
78
|
-
lineHeight: "
|
|
79
|
-
letterSpacing: "0.
|
|
78
|
+
lineHeight: "12";
|
|
79
|
+
letterSpacing: "0.4";
|
|
80
80
|
textTransform: string;
|
|
81
81
|
} | {
|
|
82
|
-
fontSize: "
|
|
82
|
+
fontSize: "16";
|
|
83
83
|
fontWeight: 400;
|
|
84
|
-
lineHeight: "
|
|
84
|
+
lineHeight: "22";
|
|
85
85
|
letterSpacing?: undefined;
|
|
86
86
|
textTransform?: undefined;
|
|
87
87
|
} | {
|
|
88
|
-
fontSize: "
|
|
88
|
+
fontSize: "14";
|
|
89
89
|
fontWeight: 400;
|
|
90
|
-
lineHeight: "
|
|
90
|
+
lineHeight: "20";
|
|
91
91
|
letterSpacing?: undefined;
|
|
92
92
|
textTransform?: undefined;
|
|
93
93
|
} | {
|
|
94
|
-
fontSize: "
|
|
94
|
+
fontSize: "12";
|
|
95
95
|
fontWeight: 400;
|
|
96
|
-
lineHeight: "
|
|
96
|
+
lineHeight: "16";
|
|
97
97
|
letterSpacing?: undefined;
|
|
98
98
|
textTransform?: undefined;
|
|
99
99
|
} | {
|
|
100
|
-
fontSize: "
|
|
100
|
+
fontSize: "12";
|
|
101
101
|
fontWeight: 600;
|
|
102
|
-
lineHeight: "
|
|
102
|
+
lineHeight: "16";
|
|
103
103
|
letterSpacing?: undefined;
|
|
104
104
|
textTransform?: undefined;
|
|
105
105
|
} | {
|
|
106
|
-
fontSize: "
|
|
106
|
+
fontSize: "10";
|
|
107
107
|
fontWeight: 600;
|
|
108
|
-
lineHeight: "
|
|
109
|
-
letterSpacing: "0.
|
|
108
|
+
lineHeight: "12";
|
|
109
|
+
letterSpacing: "0.4";
|
|
110
110
|
textTransform?: undefined;
|
|
111
111
|
};
|
|
112
|
-
export declare const getTypographyTextDecorations: (theme: Theme, color: TypographyColorType, isStriked?: boolean, isUnderlined?: boolean) =>
|
|
113
|
-
textDecorationLine: string;
|
|
114
|
-
} | {
|
|
115
|
-
textDecorationLine?: undefined;
|
|
116
|
-
};
|
|
112
|
+
export declare const getTypographyTextDecorations: (theme: Theme, color: TypographyColorType, isStriked?: boolean, isUnderlined?: boolean) => string;
|
|
117
113
|
export declare const getTypographyColor: (theme: Theme, color: TypographyColorType) => string;
|
|
118
114
|
export declare const getLineClampStyles: (lineClamp?: number) => {
|
|
119
115
|
display: string;
|
|
@@ -126,11 +122,11 @@ export declare const getLineClampStyles: (lineClamp?: number) => {
|
|
|
126
122
|
webkitBoxOrient?: undefined;
|
|
127
123
|
overflow?: undefined;
|
|
128
124
|
};
|
|
129
|
-
export declare const getTypographyUnderlineOffset: (theme: Theme, variant: TypographyVariantType, isUnderlined?: boolean) => "
|
|
125
|
+
export declare const getTypographyUnderlineOffset: (theme: Theme, variant: TypographyVariantType, isUnderlined?: boolean) => "20" | "16" | "12" | "8" | "4" | undefined;
|
|
130
126
|
export declare const getTypographyStyles: ({ theme, variant, color, isClickable, isStriked, isUnderlined, colorCode, showInItalics, lineClamp, isDisabled, }: {
|
|
131
127
|
theme: Theme;
|
|
132
128
|
variant?: "HD1" | "HD2" | "HD3" | "HM1" | "HM2" | "HM3" | "HM4" | "B1" | "B2" | "B3" | "B3CAPS" | "B4" | "B4CAPS" | "P1" | "P2" | "P3" | "L1" | "L2" | "L3" | "OVERLINE" | "TAG" | undefined;
|
|
133
|
-
color?: "disabled" | "link" | "alert" | "heading" | "primary" | "secondary" | "tertiary" | "subheading" | "success" | "warning" | "warning500" | "neutral" | "link2" | "primary2" | "secondary2" | "grapetini900" | "pinacolada750" | "coralpink" | "neutral50" | "alert500" |
|
|
129
|
+
color?: "disabled" | "link" | "alert" | "heading" | "primary" | "secondary" | "tertiary" | "subheading" | "success" | "warning" | "warning500" | "neutral" | "link2" | "primary2" | "secondary2" | "grapetini900" | "pinacolada750" | "coralpink" | "neutral50" | "alert500" | undefined;
|
|
134
130
|
isClickable?: boolean | undefined;
|
|
135
131
|
isStriked?: boolean | undefined;
|
|
136
132
|
isUnderlined?: boolean | undefined;
|
|
@@ -139,1084 +135,544 @@ export declare const getTypographyStyles: ({ theme, variant, color, isClickable,
|
|
|
139
135
|
lineClamp?: number | undefined;
|
|
140
136
|
isDisabled?: boolean | undefined;
|
|
141
137
|
}) => {
|
|
142
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
143
|
-
cursor: string | undefined;
|
|
144
|
-
fontStyle: string;
|
|
145
|
-
textDecorationLine: string;
|
|
146
138
|
color: string;
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
webkitBoxOrient: string;
|
|
150
|
-
overflow: string;
|
|
151
|
-
fontSize: "48px";
|
|
152
|
-
fontWeight: 600;
|
|
153
|
-
lineHeight: "56px";
|
|
154
|
-
letterSpacing?: undefined;
|
|
155
|
-
textTransform?: undefined;
|
|
156
|
-
} | {
|
|
157
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
139
|
+
textDecoration: string;
|
|
140
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
158
141
|
cursor: string | undefined;
|
|
159
142
|
fontStyle: string;
|
|
160
|
-
textDecorationLine?: undefined;
|
|
161
|
-
color: string;
|
|
162
143
|
display: string;
|
|
163
144
|
webkitLineClamp: number;
|
|
164
145
|
webkitBoxOrient: string;
|
|
165
146
|
overflow: string;
|
|
166
|
-
fontSize: "
|
|
147
|
+
fontSize: "48";
|
|
167
148
|
fontWeight: 600;
|
|
168
|
-
lineHeight: "
|
|
149
|
+
lineHeight: "56";
|
|
169
150
|
letterSpacing?: undefined;
|
|
170
151
|
textTransform?: undefined;
|
|
171
152
|
} | {
|
|
172
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
173
|
-
cursor: string | undefined;
|
|
174
|
-
fontStyle: string;
|
|
175
|
-
textDecorationLine: string;
|
|
176
153
|
color: string;
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
webkitBoxOrient?: undefined;
|
|
180
|
-
overflow?: undefined;
|
|
181
|
-
fontSize: "48px";
|
|
182
|
-
fontWeight: 600;
|
|
183
|
-
lineHeight: "56px";
|
|
184
|
-
letterSpacing?: undefined;
|
|
185
|
-
textTransform?: undefined;
|
|
186
|
-
} | {
|
|
187
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
154
|
+
textDecoration: string;
|
|
155
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
188
156
|
cursor: string | undefined;
|
|
189
157
|
fontStyle: string;
|
|
190
|
-
textDecorationLine?: undefined;
|
|
191
|
-
color: string;
|
|
192
158
|
display?: undefined;
|
|
193
159
|
webkitLineClamp?: undefined;
|
|
194
160
|
webkitBoxOrient?: undefined;
|
|
195
161
|
overflow?: undefined;
|
|
196
|
-
fontSize: "
|
|
162
|
+
fontSize: "48";
|
|
197
163
|
fontWeight: 600;
|
|
198
|
-
lineHeight: "
|
|
164
|
+
lineHeight: "56";
|
|
199
165
|
letterSpacing?: undefined;
|
|
200
166
|
textTransform?: undefined;
|
|
201
167
|
} | {
|
|
202
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
203
|
-
cursor: string | undefined;
|
|
204
|
-
fontStyle: string;
|
|
205
|
-
textDecorationLine: string;
|
|
206
168
|
color: string;
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
webkitBoxOrient: string;
|
|
210
|
-
overflow: string;
|
|
211
|
-
fontSize: "40px";
|
|
212
|
-
fontWeight: 600;
|
|
213
|
-
lineHeight: "48px";
|
|
214
|
-
letterSpacing?: undefined;
|
|
215
|
-
textTransform?: undefined;
|
|
216
|
-
} | {
|
|
217
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
169
|
+
textDecoration: string;
|
|
170
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
218
171
|
cursor: string | undefined;
|
|
219
172
|
fontStyle: string;
|
|
220
|
-
textDecorationLine?: undefined;
|
|
221
|
-
color: string;
|
|
222
173
|
display: string;
|
|
223
174
|
webkitLineClamp: number;
|
|
224
175
|
webkitBoxOrient: string;
|
|
225
176
|
overflow: string;
|
|
226
|
-
fontSize: "
|
|
177
|
+
fontSize: "40";
|
|
227
178
|
fontWeight: 600;
|
|
228
|
-
lineHeight: "
|
|
179
|
+
lineHeight: "48";
|
|
229
180
|
letterSpacing?: undefined;
|
|
230
181
|
textTransform?: undefined;
|
|
231
182
|
} | {
|
|
232
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
233
|
-
cursor: string | undefined;
|
|
234
|
-
fontStyle: string;
|
|
235
|
-
textDecorationLine: string;
|
|
236
183
|
color: string;
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
webkitBoxOrient?: undefined;
|
|
240
|
-
overflow?: undefined;
|
|
241
|
-
fontSize: "40px";
|
|
242
|
-
fontWeight: 600;
|
|
243
|
-
lineHeight: "48px";
|
|
244
|
-
letterSpacing?: undefined;
|
|
245
|
-
textTransform?: undefined;
|
|
246
|
-
} | {
|
|
247
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
184
|
+
textDecoration: string;
|
|
185
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
248
186
|
cursor: string | undefined;
|
|
249
187
|
fontStyle: string;
|
|
250
|
-
textDecorationLine?: undefined;
|
|
251
|
-
color: string;
|
|
252
188
|
display?: undefined;
|
|
253
189
|
webkitLineClamp?: undefined;
|
|
254
190
|
webkitBoxOrient?: undefined;
|
|
255
191
|
overflow?: undefined;
|
|
256
|
-
fontSize: "
|
|
192
|
+
fontSize: "40";
|
|
257
193
|
fontWeight: 600;
|
|
258
|
-
lineHeight: "
|
|
194
|
+
lineHeight: "48";
|
|
259
195
|
letterSpacing?: undefined;
|
|
260
196
|
textTransform?: undefined;
|
|
261
197
|
} | {
|
|
262
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
263
|
-
cursor: string | undefined;
|
|
264
|
-
fontStyle: string;
|
|
265
|
-
textDecorationLine: string;
|
|
266
198
|
color: string;
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
webkitBoxOrient: string;
|
|
270
|
-
overflow: string;
|
|
271
|
-
fontSize: "32px";
|
|
272
|
-
fontWeight: 600;
|
|
273
|
-
lineHeight: "40px";
|
|
274
|
-
letterSpacing?: undefined;
|
|
275
|
-
textTransform?: undefined;
|
|
276
|
-
} | {
|
|
277
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
199
|
+
textDecoration: string;
|
|
200
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
278
201
|
cursor: string | undefined;
|
|
279
202
|
fontStyle: string;
|
|
280
|
-
textDecorationLine?: undefined;
|
|
281
|
-
color: string;
|
|
282
203
|
display: string;
|
|
283
204
|
webkitLineClamp: number;
|
|
284
205
|
webkitBoxOrient: string;
|
|
285
206
|
overflow: string;
|
|
286
|
-
fontSize: "
|
|
207
|
+
fontSize: "32";
|
|
287
208
|
fontWeight: 600;
|
|
288
|
-
lineHeight: "
|
|
209
|
+
lineHeight: "40";
|
|
289
210
|
letterSpacing?: undefined;
|
|
290
211
|
textTransform?: undefined;
|
|
291
212
|
} | {
|
|
292
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
293
|
-
cursor: string | undefined;
|
|
294
|
-
fontStyle: string;
|
|
295
|
-
textDecorationLine: string;
|
|
296
213
|
color: string;
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
webkitBoxOrient?: undefined;
|
|
300
|
-
overflow?: undefined;
|
|
301
|
-
fontSize: "32px";
|
|
302
|
-
fontWeight: 600;
|
|
303
|
-
lineHeight: "40px";
|
|
304
|
-
letterSpacing?: undefined;
|
|
305
|
-
textTransform?: undefined;
|
|
306
|
-
} | {
|
|
307
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
214
|
+
textDecoration: string;
|
|
215
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
308
216
|
cursor: string | undefined;
|
|
309
217
|
fontStyle: string;
|
|
310
|
-
textDecorationLine?: undefined;
|
|
311
|
-
color: string;
|
|
312
218
|
display?: undefined;
|
|
313
219
|
webkitLineClamp?: undefined;
|
|
314
220
|
webkitBoxOrient?: undefined;
|
|
315
221
|
overflow?: undefined;
|
|
316
|
-
fontSize: "
|
|
222
|
+
fontSize: "32";
|
|
317
223
|
fontWeight: 600;
|
|
318
|
-
lineHeight: "
|
|
224
|
+
lineHeight: "40";
|
|
319
225
|
letterSpacing?: undefined;
|
|
320
226
|
textTransform?: undefined;
|
|
321
227
|
} | {
|
|
322
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
323
|
-
cursor: string | undefined;
|
|
324
|
-
fontStyle: string;
|
|
325
|
-
textDecorationLine: string;
|
|
326
228
|
color: string;
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
webkitBoxOrient: string;
|
|
330
|
-
overflow: string;
|
|
331
|
-
fontSize: "24px";
|
|
332
|
-
fontWeight: 600;
|
|
333
|
-
lineHeight: "32px";
|
|
334
|
-
letterSpacing?: undefined;
|
|
335
|
-
textTransform?: undefined;
|
|
336
|
-
} | {
|
|
337
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
229
|
+
textDecoration: string;
|
|
230
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
338
231
|
cursor: string | undefined;
|
|
339
232
|
fontStyle: string;
|
|
340
|
-
textDecorationLine?: undefined;
|
|
341
|
-
color: string;
|
|
342
233
|
display: string;
|
|
343
234
|
webkitLineClamp: number;
|
|
344
235
|
webkitBoxOrient: string;
|
|
345
236
|
overflow: string;
|
|
346
|
-
fontSize: "
|
|
237
|
+
fontSize: "24";
|
|
347
238
|
fontWeight: 600;
|
|
348
|
-
lineHeight: "
|
|
239
|
+
lineHeight: "32";
|
|
349
240
|
letterSpacing?: undefined;
|
|
350
241
|
textTransform?: undefined;
|
|
351
242
|
} | {
|
|
352
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
353
|
-
cursor: string | undefined;
|
|
354
|
-
fontStyle: string;
|
|
355
|
-
textDecorationLine: string;
|
|
356
243
|
color: string;
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
webkitBoxOrient?: undefined;
|
|
360
|
-
overflow?: undefined;
|
|
361
|
-
fontSize: "24px";
|
|
362
|
-
fontWeight: 600;
|
|
363
|
-
lineHeight: "32px";
|
|
364
|
-
letterSpacing?: undefined;
|
|
365
|
-
textTransform?: undefined;
|
|
366
|
-
} | {
|
|
367
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
244
|
+
textDecoration: string;
|
|
245
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
368
246
|
cursor: string | undefined;
|
|
369
247
|
fontStyle: string;
|
|
370
|
-
textDecorationLine?: undefined;
|
|
371
|
-
color: string;
|
|
372
248
|
display?: undefined;
|
|
373
249
|
webkitLineClamp?: undefined;
|
|
374
250
|
webkitBoxOrient?: undefined;
|
|
375
251
|
overflow?: undefined;
|
|
376
|
-
fontSize: "
|
|
252
|
+
fontSize: "24";
|
|
377
253
|
fontWeight: 600;
|
|
378
|
-
lineHeight: "
|
|
254
|
+
lineHeight: "32";
|
|
379
255
|
letterSpacing?: undefined;
|
|
380
256
|
textTransform?: undefined;
|
|
381
257
|
} | {
|
|
382
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
383
|
-
cursor: string | undefined;
|
|
384
|
-
fontStyle: string;
|
|
385
|
-
textDecorationLine: string;
|
|
386
258
|
color: string;
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
webkitBoxOrient: string;
|
|
390
|
-
overflow: string;
|
|
391
|
-
fontSize: "20px";
|
|
392
|
-
fontWeight: 600;
|
|
393
|
-
lineHeight: "28px";
|
|
394
|
-
letterSpacing?: undefined;
|
|
395
|
-
textTransform?: undefined;
|
|
396
|
-
} | {
|
|
397
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
259
|
+
textDecoration: string;
|
|
260
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
398
261
|
cursor: string | undefined;
|
|
399
262
|
fontStyle: string;
|
|
400
|
-
textDecorationLine?: undefined;
|
|
401
|
-
color: string;
|
|
402
263
|
display: string;
|
|
403
264
|
webkitLineClamp: number;
|
|
404
265
|
webkitBoxOrient: string;
|
|
405
266
|
overflow: string;
|
|
406
|
-
fontSize: "
|
|
267
|
+
fontSize: "20";
|
|
407
268
|
fontWeight: 600;
|
|
408
|
-
lineHeight: "
|
|
269
|
+
lineHeight: "28";
|
|
409
270
|
letterSpacing?: undefined;
|
|
410
271
|
textTransform?: undefined;
|
|
411
272
|
} | {
|
|
412
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
413
|
-
cursor: string | undefined;
|
|
414
|
-
fontStyle: string;
|
|
415
|
-
textDecorationLine: string;
|
|
416
273
|
color: string;
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
webkitBoxOrient?: undefined;
|
|
420
|
-
overflow?: undefined;
|
|
421
|
-
fontSize: "20px";
|
|
422
|
-
fontWeight: 600;
|
|
423
|
-
lineHeight: "28px";
|
|
424
|
-
letterSpacing?: undefined;
|
|
425
|
-
textTransform?: undefined;
|
|
426
|
-
} | {
|
|
427
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
274
|
+
textDecoration: string;
|
|
275
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
428
276
|
cursor: string | undefined;
|
|
429
277
|
fontStyle: string;
|
|
430
|
-
textDecorationLine?: undefined;
|
|
431
|
-
color: string;
|
|
432
278
|
display?: undefined;
|
|
433
279
|
webkitLineClamp?: undefined;
|
|
434
280
|
webkitBoxOrient?: undefined;
|
|
435
281
|
overflow?: undefined;
|
|
436
|
-
fontSize: "
|
|
282
|
+
fontSize: "20";
|
|
437
283
|
fontWeight: 600;
|
|
438
|
-
lineHeight: "
|
|
284
|
+
lineHeight: "28";
|
|
439
285
|
letterSpacing?: undefined;
|
|
440
286
|
textTransform?: undefined;
|
|
441
287
|
} | {
|
|
442
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
443
|
-
cursor: string | undefined;
|
|
444
|
-
fontStyle: string;
|
|
445
|
-
textDecorationLine: string;
|
|
446
288
|
color: string;
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
webkitBoxOrient: string;
|
|
450
|
-
overflow: string;
|
|
451
|
-
fontSize: "16px";
|
|
452
|
-
fontWeight: 600;
|
|
453
|
-
lineHeight: "24px";
|
|
454
|
-
letterSpacing?: undefined;
|
|
455
|
-
textTransform?: undefined;
|
|
456
|
-
} | {
|
|
457
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
289
|
+
textDecoration: string;
|
|
290
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
458
291
|
cursor: string | undefined;
|
|
459
292
|
fontStyle: string;
|
|
460
|
-
textDecorationLine?: undefined;
|
|
461
|
-
color: string;
|
|
462
293
|
display: string;
|
|
463
294
|
webkitLineClamp: number;
|
|
464
295
|
webkitBoxOrient: string;
|
|
465
296
|
overflow: string;
|
|
466
|
-
fontSize: "
|
|
297
|
+
fontSize: "16";
|
|
467
298
|
fontWeight: 600;
|
|
468
|
-
lineHeight: "
|
|
299
|
+
lineHeight: "24";
|
|
469
300
|
letterSpacing?: undefined;
|
|
470
301
|
textTransform?: undefined;
|
|
471
302
|
} | {
|
|
472
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
473
|
-
cursor: string | undefined;
|
|
474
|
-
fontStyle: string;
|
|
475
|
-
textDecorationLine: string;
|
|
476
303
|
color: string;
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
webkitBoxOrient?: undefined;
|
|
480
|
-
overflow?: undefined;
|
|
481
|
-
fontSize: "16px";
|
|
482
|
-
fontWeight: 600;
|
|
483
|
-
lineHeight: "24px";
|
|
484
|
-
letterSpacing?: undefined;
|
|
485
|
-
textTransform?: undefined;
|
|
486
|
-
} | {
|
|
487
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
304
|
+
textDecoration: string;
|
|
305
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
488
306
|
cursor: string | undefined;
|
|
489
307
|
fontStyle: string;
|
|
490
|
-
textDecorationLine?: undefined;
|
|
491
|
-
color: string;
|
|
492
308
|
display?: undefined;
|
|
493
309
|
webkitLineClamp?: undefined;
|
|
494
310
|
webkitBoxOrient?: undefined;
|
|
495
311
|
overflow?: undefined;
|
|
496
|
-
fontSize: "
|
|
312
|
+
fontSize: "16";
|
|
497
313
|
fontWeight: 600;
|
|
498
|
-
lineHeight: "
|
|
314
|
+
lineHeight: "24";
|
|
499
315
|
letterSpacing?: undefined;
|
|
500
316
|
textTransform?: undefined;
|
|
501
317
|
} | {
|
|
502
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
503
|
-
cursor: string | undefined;
|
|
504
|
-
fontStyle: string;
|
|
505
|
-
textDecorationLine: string;
|
|
506
318
|
color: string;
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
webkitBoxOrient: string;
|
|
510
|
-
overflow: string;
|
|
511
|
-
fontSize: "14px";
|
|
512
|
-
fontWeight: 600;
|
|
513
|
-
lineHeight: "20px";
|
|
514
|
-
letterSpacing?: undefined;
|
|
515
|
-
textTransform?: undefined;
|
|
516
|
-
} | {
|
|
517
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
319
|
+
textDecoration: string;
|
|
320
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
518
321
|
cursor: string | undefined;
|
|
519
322
|
fontStyle: string;
|
|
520
|
-
textDecorationLine?: undefined;
|
|
521
|
-
color: string;
|
|
522
323
|
display: string;
|
|
523
324
|
webkitLineClamp: number;
|
|
524
325
|
webkitBoxOrient: string;
|
|
525
326
|
overflow: string;
|
|
526
|
-
fontSize: "
|
|
327
|
+
fontSize: "14";
|
|
527
328
|
fontWeight: 600;
|
|
528
|
-
lineHeight: "
|
|
329
|
+
lineHeight: "20";
|
|
529
330
|
letterSpacing?: undefined;
|
|
530
331
|
textTransform?: undefined;
|
|
531
332
|
} | {
|
|
532
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
533
|
-
cursor: string | undefined;
|
|
534
|
-
fontStyle: string;
|
|
535
|
-
textDecorationLine: string;
|
|
536
333
|
color: string;
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
webkitBoxOrient?: undefined;
|
|
540
|
-
overflow?: undefined;
|
|
541
|
-
fontSize: "14px";
|
|
542
|
-
fontWeight: 600;
|
|
543
|
-
lineHeight: "20px";
|
|
544
|
-
letterSpacing?: undefined;
|
|
545
|
-
textTransform?: undefined;
|
|
546
|
-
} | {
|
|
547
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
334
|
+
textDecoration: string;
|
|
335
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
548
336
|
cursor: string | undefined;
|
|
549
337
|
fontStyle: string;
|
|
550
|
-
textDecorationLine?: undefined;
|
|
551
|
-
color: string;
|
|
552
338
|
display?: undefined;
|
|
553
339
|
webkitLineClamp?: undefined;
|
|
554
340
|
webkitBoxOrient?: undefined;
|
|
555
341
|
overflow?: undefined;
|
|
556
|
-
fontSize: "
|
|
342
|
+
fontSize: "14";
|
|
557
343
|
fontWeight: 600;
|
|
558
|
-
lineHeight: "
|
|
344
|
+
lineHeight: "20";
|
|
559
345
|
letterSpacing?: undefined;
|
|
560
346
|
textTransform?: undefined;
|
|
561
347
|
} | {
|
|
562
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
563
|
-
cursor: string | undefined;
|
|
564
|
-
fontStyle: string;
|
|
565
|
-
textDecorationLine: string;
|
|
566
348
|
color: string;
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
webkitBoxOrient: string;
|
|
570
|
-
overflow: string;
|
|
571
|
-
fontSize: "16px";
|
|
572
|
-
fontWeight: 500;
|
|
573
|
-
lineHeight: "24px";
|
|
574
|
-
letterSpacing?: undefined;
|
|
575
|
-
textTransform?: undefined;
|
|
576
|
-
} | {
|
|
577
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
349
|
+
textDecoration: string;
|
|
350
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
578
351
|
cursor: string | undefined;
|
|
579
352
|
fontStyle: string;
|
|
580
|
-
textDecorationLine?: undefined;
|
|
581
|
-
color: string;
|
|
582
353
|
display: string;
|
|
583
354
|
webkitLineClamp: number;
|
|
584
355
|
webkitBoxOrient: string;
|
|
585
356
|
overflow: string;
|
|
586
|
-
fontSize: "
|
|
357
|
+
fontSize: "16";
|
|
587
358
|
fontWeight: 500;
|
|
588
|
-
lineHeight: "
|
|
359
|
+
lineHeight: "24";
|
|
589
360
|
letterSpacing?: undefined;
|
|
590
361
|
textTransform?: undefined;
|
|
591
362
|
} | {
|
|
592
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
593
|
-
cursor: string | undefined;
|
|
594
|
-
fontStyle: string;
|
|
595
|
-
textDecorationLine: string;
|
|
596
363
|
color: string;
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
webkitBoxOrient?: undefined;
|
|
600
|
-
overflow?: undefined;
|
|
601
|
-
fontSize: "16px";
|
|
602
|
-
fontWeight: 500;
|
|
603
|
-
lineHeight: "24px";
|
|
604
|
-
letterSpacing?: undefined;
|
|
605
|
-
textTransform?: undefined;
|
|
606
|
-
} | {
|
|
607
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
364
|
+
textDecoration: string;
|
|
365
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
608
366
|
cursor: string | undefined;
|
|
609
367
|
fontStyle: string;
|
|
610
|
-
textDecorationLine?: undefined;
|
|
611
|
-
color: string;
|
|
612
368
|
display?: undefined;
|
|
613
369
|
webkitLineClamp?: undefined;
|
|
614
370
|
webkitBoxOrient?: undefined;
|
|
615
371
|
overflow?: undefined;
|
|
616
|
-
fontSize: "
|
|
372
|
+
fontSize: "16";
|
|
617
373
|
fontWeight: 500;
|
|
618
|
-
lineHeight: "
|
|
374
|
+
lineHeight: "24";
|
|
619
375
|
letterSpacing?: undefined;
|
|
620
376
|
textTransform?: undefined;
|
|
621
377
|
} | {
|
|
622
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
623
|
-
cursor: string | undefined;
|
|
624
|
-
fontStyle: string;
|
|
625
|
-
textDecorationLine: string;
|
|
626
378
|
color: string;
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
webkitBoxOrient: string;
|
|
630
|
-
overflow: string;
|
|
631
|
-
fontSize: "14px";
|
|
632
|
-
fontWeight: 500;
|
|
633
|
-
lineHeight: "20px";
|
|
634
|
-
letterSpacing?: undefined;
|
|
635
|
-
textTransform?: undefined;
|
|
636
|
-
} | {
|
|
637
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
379
|
+
textDecoration: string;
|
|
380
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
638
381
|
cursor: string | undefined;
|
|
639
382
|
fontStyle: string;
|
|
640
|
-
textDecorationLine?: undefined;
|
|
641
|
-
color: string;
|
|
642
383
|
display: string;
|
|
643
384
|
webkitLineClamp: number;
|
|
644
385
|
webkitBoxOrient: string;
|
|
645
386
|
overflow: string;
|
|
646
|
-
fontSize: "
|
|
387
|
+
fontSize: "14";
|
|
647
388
|
fontWeight: 500;
|
|
648
|
-
lineHeight: "
|
|
389
|
+
lineHeight: "20";
|
|
649
390
|
letterSpacing?: undefined;
|
|
650
391
|
textTransform?: undefined;
|
|
651
392
|
} | {
|
|
652
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
653
|
-
cursor: string | undefined;
|
|
654
|
-
fontStyle: string;
|
|
655
|
-
textDecorationLine: string;
|
|
656
393
|
color: string;
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
webkitBoxOrient?: undefined;
|
|
660
|
-
overflow?: undefined;
|
|
661
|
-
fontSize: "14px";
|
|
662
|
-
fontWeight: 500;
|
|
663
|
-
lineHeight: "20px";
|
|
664
|
-
letterSpacing?: undefined;
|
|
665
|
-
textTransform?: undefined;
|
|
666
|
-
} | {
|
|
667
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
394
|
+
textDecoration: string;
|
|
395
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
668
396
|
cursor: string | undefined;
|
|
669
397
|
fontStyle: string;
|
|
670
|
-
textDecorationLine?: undefined;
|
|
671
|
-
color: string;
|
|
672
398
|
display?: undefined;
|
|
673
399
|
webkitLineClamp?: undefined;
|
|
674
400
|
webkitBoxOrient?: undefined;
|
|
675
401
|
overflow?: undefined;
|
|
676
|
-
fontSize: "
|
|
402
|
+
fontSize: "14";
|
|
677
403
|
fontWeight: 500;
|
|
678
|
-
lineHeight: "
|
|
404
|
+
lineHeight: "20";
|
|
679
405
|
letterSpacing?: undefined;
|
|
680
406
|
textTransform?: undefined;
|
|
681
407
|
} | {
|
|
682
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
683
|
-
cursor: string | undefined;
|
|
684
|
-
fontStyle: string;
|
|
685
|
-
textDecorationLine: string;
|
|
686
408
|
color: string;
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
webkitBoxOrient: string;
|
|
690
|
-
overflow: string;
|
|
691
|
-
fontSize: "12px";
|
|
692
|
-
fontWeight: 500;
|
|
693
|
-
lineHeight: "16px";
|
|
694
|
-
letterSpacing?: undefined;
|
|
695
|
-
textTransform?: undefined;
|
|
696
|
-
} | {
|
|
697
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
409
|
+
textDecoration: string;
|
|
410
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
698
411
|
cursor: string | undefined;
|
|
699
412
|
fontStyle: string;
|
|
700
|
-
textDecorationLine?: undefined;
|
|
701
|
-
color: string;
|
|
702
413
|
display: string;
|
|
703
414
|
webkitLineClamp: number;
|
|
704
415
|
webkitBoxOrient: string;
|
|
705
416
|
overflow: string;
|
|
706
|
-
fontSize: "
|
|
417
|
+
fontSize: "12";
|
|
707
418
|
fontWeight: 500;
|
|
708
|
-
lineHeight: "
|
|
419
|
+
lineHeight: "16";
|
|
709
420
|
letterSpacing?: undefined;
|
|
710
421
|
textTransform?: undefined;
|
|
711
422
|
} | {
|
|
712
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
713
|
-
cursor: string | undefined;
|
|
714
|
-
fontStyle: string;
|
|
715
|
-
textDecorationLine: string;
|
|
716
423
|
color: string;
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
webkitBoxOrient?: undefined;
|
|
720
|
-
overflow?: undefined;
|
|
721
|
-
fontSize: "12px";
|
|
722
|
-
fontWeight: 500;
|
|
723
|
-
lineHeight: "16px";
|
|
724
|
-
letterSpacing?: undefined;
|
|
725
|
-
textTransform?: undefined;
|
|
726
|
-
} | {
|
|
727
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
424
|
+
textDecoration: string;
|
|
425
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
728
426
|
cursor: string | undefined;
|
|
729
427
|
fontStyle: string;
|
|
730
|
-
textDecorationLine?: undefined;
|
|
731
|
-
color: string;
|
|
732
428
|
display?: undefined;
|
|
733
429
|
webkitLineClamp?: undefined;
|
|
734
430
|
webkitBoxOrient?: undefined;
|
|
735
431
|
overflow?: undefined;
|
|
736
|
-
fontSize: "
|
|
432
|
+
fontSize: "12";
|
|
737
433
|
fontWeight: 500;
|
|
738
|
-
lineHeight: "
|
|
434
|
+
lineHeight: "16";
|
|
739
435
|
letterSpacing?: undefined;
|
|
740
436
|
textTransform?: undefined;
|
|
741
437
|
} | {
|
|
742
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
743
|
-
cursor: string | undefined;
|
|
744
|
-
fontStyle: string;
|
|
745
|
-
textDecorationLine: string;
|
|
746
438
|
color: string;
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
webkitBoxOrient: string;
|
|
750
|
-
overflow: string;
|
|
751
|
-
fontSize: "12px";
|
|
752
|
-
fontWeight: 600;
|
|
753
|
-
lineHeight: "16px";
|
|
754
|
-
letterSpacing: "0.4px";
|
|
755
|
-
textTransform: string;
|
|
756
|
-
} | {
|
|
757
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
439
|
+
textDecoration: string;
|
|
440
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
758
441
|
cursor: string | undefined;
|
|
759
442
|
fontStyle: string;
|
|
760
|
-
textDecorationLine?: undefined;
|
|
761
|
-
color: string;
|
|
762
443
|
display: string;
|
|
763
444
|
webkitLineClamp: number;
|
|
764
445
|
webkitBoxOrient: string;
|
|
765
446
|
overflow: string;
|
|
766
|
-
fontSize: "
|
|
447
|
+
fontSize: "12";
|
|
767
448
|
fontWeight: 600;
|
|
768
|
-
lineHeight: "
|
|
769
|
-
letterSpacing: "0.
|
|
449
|
+
lineHeight: "16";
|
|
450
|
+
letterSpacing: "0.4";
|
|
770
451
|
textTransform: string;
|
|
771
452
|
} | {
|
|
772
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
773
|
-
cursor: string | undefined;
|
|
774
|
-
fontStyle: string;
|
|
775
|
-
textDecorationLine: string;
|
|
776
453
|
color: string;
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
webkitBoxOrient?: undefined;
|
|
780
|
-
overflow?: undefined;
|
|
781
|
-
fontSize: "12px";
|
|
782
|
-
fontWeight: 600;
|
|
783
|
-
lineHeight: "16px";
|
|
784
|
-
letterSpacing: "0.4px";
|
|
785
|
-
textTransform: string;
|
|
786
|
-
} | {
|
|
787
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
454
|
+
textDecoration: string;
|
|
455
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
788
456
|
cursor: string | undefined;
|
|
789
457
|
fontStyle: string;
|
|
790
|
-
textDecorationLine?: undefined;
|
|
791
|
-
color: string;
|
|
792
458
|
display?: undefined;
|
|
793
459
|
webkitLineClamp?: undefined;
|
|
794
460
|
webkitBoxOrient?: undefined;
|
|
795
461
|
overflow?: undefined;
|
|
796
|
-
fontSize: "
|
|
462
|
+
fontSize: "12";
|
|
797
463
|
fontWeight: 600;
|
|
798
|
-
lineHeight: "
|
|
799
|
-
letterSpacing: "0.
|
|
464
|
+
lineHeight: "16";
|
|
465
|
+
letterSpacing: "0.4";
|
|
800
466
|
textTransform: string;
|
|
801
467
|
} | {
|
|
802
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
803
|
-
cursor: string | undefined;
|
|
804
|
-
fontStyle: string;
|
|
805
|
-
textDecorationLine: string;
|
|
806
468
|
color: string;
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
webkitBoxOrient: string;
|
|
810
|
-
overflow: string;
|
|
811
|
-
fontSize: "10px";
|
|
812
|
-
fontWeight: 500;
|
|
813
|
-
lineHeight: "14px";
|
|
814
|
-
letterSpacing?: undefined;
|
|
815
|
-
textTransform?: undefined;
|
|
816
|
-
} | {
|
|
817
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
469
|
+
textDecoration: string;
|
|
470
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
818
471
|
cursor: string | undefined;
|
|
819
472
|
fontStyle: string;
|
|
820
|
-
textDecorationLine?: undefined;
|
|
821
|
-
color: string;
|
|
822
473
|
display: string;
|
|
823
474
|
webkitLineClamp: number;
|
|
824
475
|
webkitBoxOrient: string;
|
|
825
476
|
overflow: string;
|
|
826
|
-
fontSize: "
|
|
477
|
+
fontSize: "10";
|
|
827
478
|
fontWeight: 500;
|
|
828
|
-
lineHeight: "
|
|
479
|
+
lineHeight: "14";
|
|
829
480
|
letterSpacing?: undefined;
|
|
830
481
|
textTransform?: undefined;
|
|
831
482
|
} | {
|
|
832
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
833
|
-
cursor: string | undefined;
|
|
834
|
-
fontStyle: string;
|
|
835
|
-
textDecorationLine: string;
|
|
836
483
|
color: string;
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
webkitBoxOrient?: undefined;
|
|
840
|
-
overflow?: undefined;
|
|
841
|
-
fontSize: "10px";
|
|
842
|
-
fontWeight: 500;
|
|
843
|
-
lineHeight: "14px";
|
|
844
|
-
letterSpacing?: undefined;
|
|
845
|
-
textTransform?: undefined;
|
|
846
|
-
} | {
|
|
847
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
484
|
+
textDecoration: string;
|
|
485
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
848
486
|
cursor: string | undefined;
|
|
849
487
|
fontStyle: string;
|
|
850
|
-
textDecorationLine?: undefined;
|
|
851
|
-
color: string;
|
|
852
488
|
display?: undefined;
|
|
853
489
|
webkitLineClamp?: undefined;
|
|
854
490
|
webkitBoxOrient?: undefined;
|
|
855
491
|
overflow?: undefined;
|
|
856
|
-
fontSize: "
|
|
492
|
+
fontSize: "10";
|
|
857
493
|
fontWeight: 500;
|
|
858
|
-
lineHeight: "
|
|
494
|
+
lineHeight: "14";
|
|
859
495
|
letterSpacing?: undefined;
|
|
860
496
|
textTransform?: undefined;
|
|
861
497
|
} | {
|
|
862
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
863
|
-
cursor: string | undefined;
|
|
864
|
-
fontStyle: string;
|
|
865
|
-
textDecorationLine: string;
|
|
866
498
|
color: string;
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
webkitBoxOrient: string;
|
|
870
|
-
overflow: string;
|
|
871
|
-
fontSize: "10px";
|
|
872
|
-
fontWeight: 600;
|
|
873
|
-
lineHeight: "12px";
|
|
874
|
-
letterSpacing: "0.4px";
|
|
875
|
-
textTransform: string;
|
|
876
|
-
} | {
|
|
877
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
499
|
+
textDecoration: string;
|
|
500
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
878
501
|
cursor: string | undefined;
|
|
879
502
|
fontStyle: string;
|
|
880
|
-
textDecorationLine?: undefined;
|
|
881
|
-
color: string;
|
|
882
503
|
display: string;
|
|
883
504
|
webkitLineClamp: number;
|
|
884
505
|
webkitBoxOrient: string;
|
|
885
506
|
overflow: string;
|
|
886
|
-
fontSize: "
|
|
507
|
+
fontSize: "10";
|
|
887
508
|
fontWeight: 600;
|
|
888
|
-
lineHeight: "
|
|
889
|
-
letterSpacing: "0.
|
|
509
|
+
lineHeight: "12";
|
|
510
|
+
letterSpacing: "0.4";
|
|
890
511
|
textTransform: string;
|
|
891
512
|
} | {
|
|
892
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
893
|
-
cursor: string | undefined;
|
|
894
|
-
fontStyle: string;
|
|
895
|
-
textDecorationLine: string;
|
|
896
513
|
color: string;
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
webkitBoxOrient?: undefined;
|
|
900
|
-
overflow?: undefined;
|
|
901
|
-
fontSize: "10px";
|
|
902
|
-
fontWeight: 600;
|
|
903
|
-
lineHeight: "12px";
|
|
904
|
-
letterSpacing: "0.4px";
|
|
905
|
-
textTransform: string;
|
|
906
|
-
} | {
|
|
907
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
514
|
+
textDecoration: string;
|
|
515
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
908
516
|
cursor: string | undefined;
|
|
909
517
|
fontStyle: string;
|
|
910
|
-
textDecorationLine?: undefined;
|
|
911
|
-
color: string;
|
|
912
518
|
display?: undefined;
|
|
913
519
|
webkitLineClamp?: undefined;
|
|
914
520
|
webkitBoxOrient?: undefined;
|
|
915
521
|
overflow?: undefined;
|
|
916
|
-
fontSize: "
|
|
522
|
+
fontSize: "10";
|
|
917
523
|
fontWeight: 600;
|
|
918
|
-
lineHeight: "
|
|
919
|
-
letterSpacing: "0.
|
|
524
|
+
lineHeight: "12";
|
|
525
|
+
letterSpacing: "0.4";
|
|
920
526
|
textTransform: string;
|
|
921
527
|
} | {
|
|
922
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
923
|
-
cursor: string | undefined;
|
|
924
|
-
fontStyle: string;
|
|
925
|
-
textDecorationLine: string;
|
|
926
528
|
color: string;
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
webkitBoxOrient: string;
|
|
930
|
-
overflow: string;
|
|
931
|
-
fontSize: "16px";
|
|
932
|
-
fontWeight: 400;
|
|
933
|
-
lineHeight: "22px";
|
|
934
|
-
letterSpacing?: undefined;
|
|
935
|
-
textTransform?: undefined;
|
|
936
|
-
} | {
|
|
937
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
529
|
+
textDecoration: string;
|
|
530
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
938
531
|
cursor: string | undefined;
|
|
939
532
|
fontStyle: string;
|
|
940
|
-
textDecorationLine?: undefined;
|
|
941
|
-
color: string;
|
|
942
533
|
display: string;
|
|
943
534
|
webkitLineClamp: number;
|
|
944
535
|
webkitBoxOrient: string;
|
|
945
536
|
overflow: string;
|
|
946
|
-
fontSize: "
|
|
537
|
+
fontSize: "16";
|
|
947
538
|
fontWeight: 400;
|
|
948
|
-
lineHeight: "
|
|
539
|
+
lineHeight: "22";
|
|
949
540
|
letterSpacing?: undefined;
|
|
950
541
|
textTransform?: undefined;
|
|
951
542
|
} | {
|
|
952
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
953
|
-
cursor: string | undefined;
|
|
954
|
-
fontStyle: string;
|
|
955
|
-
textDecorationLine: string;
|
|
956
543
|
color: string;
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
webkitBoxOrient?: undefined;
|
|
960
|
-
overflow?: undefined;
|
|
961
|
-
fontSize: "16px";
|
|
962
|
-
fontWeight: 400;
|
|
963
|
-
lineHeight: "22px";
|
|
964
|
-
letterSpacing?: undefined;
|
|
965
|
-
textTransform?: undefined;
|
|
966
|
-
} | {
|
|
967
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
544
|
+
textDecoration: string;
|
|
545
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
968
546
|
cursor: string | undefined;
|
|
969
547
|
fontStyle: string;
|
|
970
|
-
textDecorationLine?: undefined;
|
|
971
|
-
color: string;
|
|
972
548
|
display?: undefined;
|
|
973
549
|
webkitLineClamp?: undefined;
|
|
974
550
|
webkitBoxOrient?: undefined;
|
|
975
551
|
overflow?: undefined;
|
|
976
|
-
fontSize: "
|
|
552
|
+
fontSize: "16";
|
|
977
553
|
fontWeight: 400;
|
|
978
|
-
lineHeight: "
|
|
554
|
+
lineHeight: "22";
|
|
979
555
|
letterSpacing?: undefined;
|
|
980
556
|
textTransform?: undefined;
|
|
981
557
|
} | {
|
|
982
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
983
|
-
cursor: string | undefined;
|
|
984
|
-
fontStyle: string;
|
|
985
|
-
textDecorationLine: string;
|
|
986
558
|
color: string;
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
webkitBoxOrient: string;
|
|
990
|
-
overflow: string;
|
|
991
|
-
fontSize: "14px";
|
|
992
|
-
fontWeight: 400;
|
|
993
|
-
lineHeight: "20px";
|
|
994
|
-
letterSpacing?: undefined;
|
|
995
|
-
textTransform?: undefined;
|
|
996
|
-
} | {
|
|
997
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
559
|
+
textDecoration: string;
|
|
560
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
998
561
|
cursor: string | undefined;
|
|
999
562
|
fontStyle: string;
|
|
1000
|
-
textDecorationLine?: undefined;
|
|
1001
|
-
color: string;
|
|
1002
563
|
display: string;
|
|
1003
564
|
webkitLineClamp: number;
|
|
1004
565
|
webkitBoxOrient: string;
|
|
1005
566
|
overflow: string;
|
|
1006
|
-
fontSize: "
|
|
567
|
+
fontSize: "14";
|
|
1007
568
|
fontWeight: 400;
|
|
1008
|
-
lineHeight: "
|
|
569
|
+
lineHeight: "20";
|
|
1009
570
|
letterSpacing?: undefined;
|
|
1010
571
|
textTransform?: undefined;
|
|
1011
572
|
} | {
|
|
1012
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
1013
|
-
cursor: string | undefined;
|
|
1014
|
-
fontStyle: string;
|
|
1015
|
-
textDecorationLine: string;
|
|
1016
573
|
color: string;
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
webkitBoxOrient?: undefined;
|
|
1020
|
-
overflow?: undefined;
|
|
1021
|
-
fontSize: "14px";
|
|
1022
|
-
fontWeight: 400;
|
|
1023
|
-
lineHeight: "20px";
|
|
1024
|
-
letterSpacing?: undefined;
|
|
1025
|
-
textTransform?: undefined;
|
|
1026
|
-
} | {
|
|
1027
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
574
|
+
textDecoration: string;
|
|
575
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
1028
576
|
cursor: string | undefined;
|
|
1029
577
|
fontStyle: string;
|
|
1030
|
-
textDecorationLine?: undefined;
|
|
1031
|
-
color: string;
|
|
1032
578
|
display?: undefined;
|
|
1033
579
|
webkitLineClamp?: undefined;
|
|
1034
580
|
webkitBoxOrient?: undefined;
|
|
1035
581
|
overflow?: undefined;
|
|
1036
|
-
fontSize: "
|
|
582
|
+
fontSize: "14";
|
|
1037
583
|
fontWeight: 400;
|
|
1038
|
-
lineHeight: "
|
|
584
|
+
lineHeight: "20";
|
|
1039
585
|
letterSpacing?: undefined;
|
|
1040
586
|
textTransform?: undefined;
|
|
1041
587
|
} | {
|
|
1042
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
1043
|
-
cursor: string | undefined;
|
|
1044
|
-
fontStyle: string;
|
|
1045
|
-
textDecorationLine: string;
|
|
1046
588
|
color: string;
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
webkitBoxOrient: string;
|
|
1050
|
-
overflow: string;
|
|
1051
|
-
fontSize: "12px";
|
|
1052
|
-
fontWeight: 400;
|
|
1053
|
-
lineHeight: "16px";
|
|
1054
|
-
letterSpacing?: undefined;
|
|
1055
|
-
textTransform?: undefined;
|
|
1056
|
-
} | {
|
|
1057
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
589
|
+
textDecoration: string;
|
|
590
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
1058
591
|
cursor: string | undefined;
|
|
1059
592
|
fontStyle: string;
|
|
1060
|
-
textDecorationLine?: undefined;
|
|
1061
|
-
color: string;
|
|
1062
593
|
display: string;
|
|
1063
594
|
webkitLineClamp: number;
|
|
1064
595
|
webkitBoxOrient: string;
|
|
1065
596
|
overflow: string;
|
|
1066
|
-
fontSize: "
|
|
597
|
+
fontSize: "12";
|
|
1067
598
|
fontWeight: 400;
|
|
1068
|
-
lineHeight: "
|
|
599
|
+
lineHeight: "16";
|
|
1069
600
|
letterSpacing?: undefined;
|
|
1070
601
|
textTransform?: undefined;
|
|
1071
602
|
} | {
|
|
1072
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
1073
|
-
cursor: string | undefined;
|
|
1074
|
-
fontStyle: string;
|
|
1075
|
-
textDecorationLine: string;
|
|
1076
603
|
color: string;
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
webkitBoxOrient?: undefined;
|
|
1080
|
-
overflow?: undefined;
|
|
1081
|
-
fontSize: "12px";
|
|
1082
|
-
fontWeight: 400;
|
|
1083
|
-
lineHeight: "16px";
|
|
1084
|
-
letterSpacing?: undefined;
|
|
1085
|
-
textTransform?: undefined;
|
|
1086
|
-
} | {
|
|
1087
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
604
|
+
textDecoration: string;
|
|
605
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
1088
606
|
cursor: string | undefined;
|
|
1089
607
|
fontStyle: string;
|
|
1090
|
-
textDecorationLine?: undefined;
|
|
1091
|
-
color: string;
|
|
1092
608
|
display?: undefined;
|
|
1093
609
|
webkitLineClamp?: undefined;
|
|
1094
610
|
webkitBoxOrient?: undefined;
|
|
1095
611
|
overflow?: undefined;
|
|
1096
|
-
fontSize: "
|
|
612
|
+
fontSize: "12";
|
|
1097
613
|
fontWeight: 400;
|
|
1098
|
-
lineHeight: "
|
|
614
|
+
lineHeight: "16";
|
|
1099
615
|
letterSpacing?: undefined;
|
|
1100
616
|
textTransform?: undefined;
|
|
1101
617
|
} | {
|
|
1102
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
1103
|
-
cursor: string | undefined;
|
|
1104
|
-
fontStyle: string;
|
|
1105
|
-
textDecorationLine: string;
|
|
1106
618
|
color: string;
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
webkitBoxOrient: string;
|
|
1110
|
-
overflow: string;
|
|
1111
|
-
fontSize: "12px";
|
|
1112
|
-
fontWeight: 600;
|
|
1113
|
-
lineHeight: "16px";
|
|
1114
|
-
letterSpacing?: undefined;
|
|
1115
|
-
textTransform?: undefined;
|
|
1116
|
-
} | {
|
|
1117
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
619
|
+
textDecoration: string;
|
|
620
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
1118
621
|
cursor: string | undefined;
|
|
1119
622
|
fontStyle: string;
|
|
1120
|
-
textDecorationLine?: undefined;
|
|
1121
|
-
color: string;
|
|
1122
623
|
display: string;
|
|
1123
624
|
webkitLineClamp: number;
|
|
1124
625
|
webkitBoxOrient: string;
|
|
1125
626
|
overflow: string;
|
|
1126
|
-
fontSize: "
|
|
627
|
+
fontSize: "12";
|
|
1127
628
|
fontWeight: 600;
|
|
1128
|
-
lineHeight: "
|
|
629
|
+
lineHeight: "16";
|
|
1129
630
|
letterSpacing?: undefined;
|
|
1130
631
|
textTransform?: undefined;
|
|
1131
632
|
} | {
|
|
1132
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
1133
|
-
cursor: string | undefined;
|
|
1134
|
-
fontStyle: string;
|
|
1135
|
-
textDecorationLine: string;
|
|
1136
633
|
color: string;
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
webkitBoxOrient?: undefined;
|
|
1140
|
-
overflow?: undefined;
|
|
1141
|
-
fontSize: "12px";
|
|
1142
|
-
fontWeight: 600;
|
|
1143
|
-
lineHeight: "16px";
|
|
1144
|
-
letterSpacing?: undefined;
|
|
1145
|
-
textTransform?: undefined;
|
|
1146
|
-
} | {
|
|
1147
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
634
|
+
textDecoration: string;
|
|
635
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
1148
636
|
cursor: string | undefined;
|
|
1149
637
|
fontStyle: string;
|
|
1150
|
-
textDecorationLine?: undefined;
|
|
1151
|
-
color: string;
|
|
1152
638
|
display?: undefined;
|
|
1153
639
|
webkitLineClamp?: undefined;
|
|
1154
640
|
webkitBoxOrient?: undefined;
|
|
1155
641
|
overflow?: undefined;
|
|
1156
|
-
fontSize: "
|
|
642
|
+
fontSize: "12";
|
|
1157
643
|
fontWeight: 600;
|
|
1158
|
-
lineHeight: "
|
|
644
|
+
lineHeight: "16";
|
|
1159
645
|
letterSpacing?: undefined;
|
|
1160
646
|
textTransform?: undefined;
|
|
1161
647
|
} | {
|
|
1162
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
1163
|
-
cursor: string | undefined;
|
|
1164
|
-
fontStyle: string;
|
|
1165
|
-
textDecorationLine: string;
|
|
1166
648
|
color: string;
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
webkitBoxOrient: string;
|
|
1170
|
-
overflow: string;
|
|
1171
|
-
fontSize: "10px";
|
|
1172
|
-
fontWeight: 600;
|
|
1173
|
-
lineHeight: "12px";
|
|
1174
|
-
letterSpacing: "0.4px";
|
|
1175
|
-
textTransform?: undefined;
|
|
1176
|
-
} | {
|
|
1177
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
649
|
+
textDecoration: string;
|
|
650
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
1178
651
|
cursor: string | undefined;
|
|
1179
652
|
fontStyle: string;
|
|
1180
|
-
textDecorationLine?: undefined;
|
|
1181
|
-
color: string;
|
|
1182
653
|
display: string;
|
|
1183
654
|
webkitLineClamp: number;
|
|
1184
655
|
webkitBoxOrient: string;
|
|
1185
656
|
overflow: string;
|
|
1186
|
-
fontSize: "
|
|
657
|
+
fontSize: "10";
|
|
1187
658
|
fontWeight: 600;
|
|
1188
|
-
lineHeight: "
|
|
1189
|
-
letterSpacing: "0.
|
|
659
|
+
lineHeight: "12";
|
|
660
|
+
letterSpacing: "0.4";
|
|
1190
661
|
textTransform?: undefined;
|
|
1191
662
|
} | {
|
|
1192
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
1193
|
-
cursor: string | undefined;
|
|
1194
|
-
fontStyle: string;
|
|
1195
|
-
textDecorationLine: string;
|
|
1196
663
|
color: string;
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
webkitBoxOrient?: undefined;
|
|
1200
|
-
overflow?: undefined;
|
|
1201
|
-
fontSize: "10px";
|
|
1202
|
-
fontWeight: 600;
|
|
1203
|
-
lineHeight: "12px";
|
|
1204
|
-
letterSpacing: "0.4px";
|
|
1205
|
-
textTransform?: undefined;
|
|
1206
|
-
} | {
|
|
1207
|
-
textUnderlineOffset: "20px" | "16px" | "12px" | "8px" | "4px" | undefined;
|
|
664
|
+
textDecoration: string;
|
|
665
|
+
textUnderlineOffset: "20" | "16" | "12" | "8" | "4" | undefined;
|
|
1208
666
|
cursor: string | undefined;
|
|
1209
667
|
fontStyle: string;
|
|
1210
|
-
textDecorationLine?: undefined;
|
|
1211
|
-
color: string;
|
|
1212
668
|
display?: undefined;
|
|
1213
669
|
webkitLineClamp?: undefined;
|
|
1214
670
|
webkitBoxOrient?: undefined;
|
|
1215
671
|
overflow?: undefined;
|
|
1216
|
-
fontSize: "
|
|
672
|
+
fontSize: "10";
|
|
1217
673
|
fontWeight: 600;
|
|
1218
|
-
lineHeight: "
|
|
1219
|
-
letterSpacing: "0.
|
|
674
|
+
lineHeight: "12";
|
|
675
|
+
letterSpacing: "0.4";
|
|
1220
676
|
textTransform?: undefined;
|
|
1221
677
|
};
|
|
1222
678
|
//# sourceMappingURL=style.d.ts.map
|