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