@ornikar/bumper 2.7.2-canary.1768566928.e85c568dc49c9180e37b7aec8792b1e8d45968a6.0 → 2.8.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 (93) hide show
  1. package/CHANGELOG.md +4 -4
  2. package/CLAUDE.md +45 -0
  3. package/dist/definitions/system/core/breakpoints/hooks/useCurrentBreakpointName.d.ts +1 -1
  4. package/dist/definitions/system/core/breakpoints/hooks/useCurrentBreakpointName.d.ts.map +1 -1
  5. package/dist/definitions/system/core/breakpoints/utils/breakpointsUtils.d.ts +1 -1
  6. package/dist/definitions/system/core/breakpoints/utils/breakpointsUtils.d.ts.map +1 -1
  7. package/dist/definitions/system/core/primitives/Pressable.d.ts +0 -9
  8. package/dist/definitions/system/core/primitives/Pressable.d.ts.map +1 -1
  9. package/dist/definitions/system/core/{breakpoints/constants.d.ts → tokens/breakpoints.d.ts} +1 -1
  10. package/dist/definitions/system/core/tokens/breakpoints.d.ts.map +1 -0
  11. package/dist/definitions/tamagui.config.d.ts +2 -28
  12. package/dist/definitions/tamagui.config.d.ts.map +1 -1
  13. package/dist/index-metro.es.android.js +42 -26
  14. package/dist/index-metro.es.android.js.map +1 -1
  15. package/dist/index-metro.es.ios.js +42 -26
  16. package/dist/index-metro.es.ios.js.map +1 -1
  17. package/dist/index-node-22.22.cjs.js +42 -26
  18. package/dist/index-node-22.22.cjs.js.map +1 -1
  19. package/dist/index-node-22.22.cjs.web.js +42 -26
  20. package/dist/index-node-22.22.cjs.web.js.map +1 -1
  21. package/dist/index-node-22.22.es.mjs +42 -26
  22. package/dist/index-node-22.22.es.mjs.map +1 -1
  23. package/dist/index-node-22.22.es.web.mjs +42 -26
  24. package/dist/index-node-22.22.es.web.mjs.map +1 -1
  25. package/dist/index.es.js +36 -20
  26. package/dist/index.es.js.map +1 -1
  27. package/dist/index.es.web.js +36 -20
  28. package/dist/index.es.web.js.map +1 -1
  29. package/dist/tsbuildinfo +1 -1
  30. package/package.json +9 -9
  31. package/src/system/content/typography/Typography.features.stories.tsx +156 -0
  32. package/src/system/content/typography/Typography.stories.tsx +72 -166
  33. package/src/system/content/typography/__snapshots__/Typography.features.stories.tsx.snap +826 -0
  34. package/src/system/content/typography/__snapshots__/Typography.stories.tsx.snap +10 -1990
  35. package/src/system/content/typography/__snapshots_web__/Typography.features.stories.tsx.snap +501 -0
  36. package/src/system/content/typography/__snapshots_web__/Typography.stories.tsx.snap +7 -808
  37. package/src/system/core/breakpoints/hooks/useBreakpointValue.test.ts +1 -1
  38. package/src/system/core/breakpoints/hooks/useCurrentBreakpointName.test.ts +1 -1
  39. package/src/system/core/breakpoints/hooks/useCurrentBreakpointName.ts +1 -1
  40. package/src/system/core/breakpoints/utils/breakpointsUtils.test.ts +1 -1
  41. package/src/system/core/breakpoints/utils/breakpointsUtils.ts +1 -1
  42. package/src/system/core/primitives/Center.features.stories.tsx +63 -0
  43. package/src/system/core/primitives/Center.stories.tsx +111 -12
  44. package/src/system/core/primitives/Pressable.features.stories.tsx +171 -0
  45. package/src/system/core/primitives/Pressable.stories.tsx +82 -20
  46. package/src/system/core/primitives/Pressable.tsx +0 -9
  47. package/src/system/core/primitives/Stack.features.stories.tsx +179 -0
  48. package/src/system/core/primitives/Stack.stories.tsx +74 -44
  49. package/src/system/core/primitives/View.features.stories.tsx +452 -0
  50. package/src/system/core/primitives/View.stories.tsx +122 -9
  51. package/src/system/core/primitives/__snapshots__/Center.features.stories.tsx.snap +208 -0
  52. package/src/system/core/primitives/__snapshots__/Center.stories.tsx.snap +13 -8
  53. package/src/system/core/primitives/__snapshots__/Pressable.features.stories.tsx.snap +470 -0
  54. package/src/system/core/primitives/__snapshots__/Pressable.stories.tsx.snap +11 -10
  55. package/src/system/core/primitives/__snapshots__/Stack.features.stories.tsx.snap +1234 -0
  56. package/src/system/core/primitives/__snapshots__/Stack.stories.tsx.snap +63 -84
  57. package/src/system/core/primitives/__snapshots__/View.features.stories.tsx.snap +2338 -0
  58. package/src/system/core/primitives/__snapshots__/View.stories.tsx.snap +6 -4
  59. package/src/system/core/primitives/__snapshots_web__/Center.features.stories.tsx.snap +107 -0
  60. package/src/system/core/primitives/__snapshots_web__/Center.stories.tsx.snap +9 -6
  61. package/src/system/core/primitives/__snapshots_web__/Pressable.features.stories.tsx.snap +193 -0
  62. package/src/system/core/primitives/__snapshots_web__/Pressable.stories.tsx.snap +5 -5
  63. package/src/system/core/primitives/__snapshots_web__/Stack.features.stories.tsx.snap +515 -0
  64. package/src/system/core/primitives/__snapshots_web__/Stack.stories.tsx.snap +30 -22
  65. package/src/system/core/primitives/__snapshots_web__/View.features.stories.tsx.snap +941 -0
  66. package/src/system/core/primitives/__snapshots_web__/View.stories.tsx.snap +3 -3
  67. package/src/system/core/themes/__snapshots__/light.stories.tsx.snap +3822 -2233
  68. package/src/system/core/themes/__snapshots_web__/light.stories.tsx.snap +1244 -992
  69. package/src/system/core/themes/light.stories.tsx +61 -28
  70. package/src/system/core/tokens/__snapshots__/breakpoints.stories.tsx.snap +423 -0
  71. package/src/system/core/tokens/__snapshots__/fonts.stories.tsx.snap +1635 -0
  72. package/src/system/core/tokens/__snapshots__/radius.stories.tsx.snap +383 -0
  73. package/src/system/core/tokens/__snapshots__/size.stories.tsx.snap +864 -0
  74. package/src/system/core/tokens/__snapshots__/space.stories.tsx.snap +945 -0
  75. package/src/system/core/tokens/__snapshots_web__/breakpoints.stories.tsx.snap +194 -0
  76. package/src/system/core/tokens/__snapshots_web__/fonts.stories.tsx.snap +729 -0
  77. package/src/system/core/tokens/__snapshots_web__/radius.stories.tsx.snap +174 -0
  78. package/src/system/core/tokens/__snapshots_web__/size.stories.tsx.snap +363 -0
  79. package/src/system/core/tokens/__snapshots_web__/space.stories.tsx.snap +396 -0
  80. package/src/system/core/tokens/breakpoints.stories.tsx +46 -0
  81. package/src/system/core/tokens/fonts.stories.tsx +39 -0
  82. package/src/system/core/tokens/palettes/__snapshots__/deepPurpleColorPalette.stories.tsx.snap +4337 -2747
  83. package/src/system/core/tokens/palettes/__snapshots_web__/deepPurpleColorPalette.stories.tsx.snap +1525 -1257
  84. package/src/system/core/tokens/palettes/deepPurpleColorPalette.stories.tsx +42 -28
  85. package/src/system/core/tokens/radius.stories.tsx +39 -0
  86. package/src/system/core/tokens/size.stories.tsx +39 -0
  87. package/src/system/core/tokens/space.stories.tsx +40 -0
  88. package/src/tamagui.config.ts +3 -3
  89. package/dist/definitions/system/core/breakpoints/constants.d.ts.map +0 -1
  90. package/src/system/core/breakpoints/__snapshots__/breakpoints.stories.tsx.snap +0 -49
  91. package/src/system/core/breakpoints/__snapshots_web__/breakpoints.stories.tsx.snap +0 -43
  92. package/src/system/core/breakpoints/breakpoints.stories.tsx +0 -45
  93. /package/src/system/core/{breakpoints/constants.ts → tokens/breakpoints.ts} +0 -0
@@ -0,0 +1,1635 @@
1
+ // Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
2
+
3
+ exports[`Bumper/Core/Tokens Fonts 1`] = `
4
+ <RNCSafeAreaProvider
5
+ onInsetsChange={[Function]}
6
+ style={
7
+ [
8
+ {
9
+ "flex": 1,
10
+ },
11
+ undefined,
12
+ ]
13
+ }
14
+ >
15
+ <View
16
+ style={
17
+ {
18
+ "flexDirection": "column",
19
+ "gap": 24,
20
+ }
21
+ }
22
+ >
23
+ <Text
24
+ style={
25
+ {
26
+ "color": "#505050",
27
+ "fontFamily": "GTStandard",
28
+ "fontSize": 16,
29
+ "letterSpacing": 0.3,
30
+ "lineHeight": 24,
31
+ }
32
+ }
33
+ suppressHighlighting={true}
34
+ >
35
+ Font tokens define typography styles including variants, sizes, line heights, letter spacing, and weights.
36
+ </Text>
37
+ <View
38
+ style={
39
+ {
40
+ "flexDirection": "column",
41
+ "gap": 4,
42
+ }
43
+ }
44
+ >
45
+ <View
46
+ style={
47
+ {
48
+ "alignItems": "center",
49
+ "flexDirection": "row",
50
+ "gap": 16,
51
+ }
52
+ }
53
+ >
54
+ <View
55
+ style={
56
+ {
57
+ "width": 180,
58
+ }
59
+ }
60
+ >
61
+ <Text
62
+ style={
63
+ {
64
+ "fontFamily": "GTStandardBold",
65
+ "fontSize": 14,
66
+ "letterSpacing": 0.3,
67
+ "lineHeight": 20,
68
+ }
69
+ }
70
+ suppressHighlighting={true}
71
+ >
72
+ heading-2xl
73
+ </Text>
74
+ </View>
75
+ <View
76
+ style={
77
+ {
78
+ "width": 80,
79
+ }
80
+ }
81
+ >
82
+ <Text
83
+ style={
84
+ {
85
+ "color": "#505050",
86
+ "fontFamily": "GTStandard",
87
+ "fontSize": 12,
88
+ "letterSpacing": 0.3,
89
+ "lineHeight": 16,
90
+ }
91
+ }
92
+ suppressHighlighting={true}
93
+ >
94
+ 56
95
+ px /
96
+ 64
97
+ px
98
+ </Text>
99
+ </View>
100
+ <Text
101
+ style={
102
+ {
103
+ "fontFamily": "GTStandardSemibold",
104
+ "fontSize": 56,
105
+ "letterSpacing": 0,
106
+ "lineHeight": 64,
107
+ }
108
+ }
109
+ suppressHighlighting={true}
110
+ >
111
+ The quick brown fox
112
+ </Text>
113
+ </View>
114
+ <View
115
+ style={
116
+ {
117
+ "alignItems": "center",
118
+ "flexDirection": "row",
119
+ "gap": 16,
120
+ }
121
+ }
122
+ >
123
+ <View
124
+ style={
125
+ {
126
+ "width": 180,
127
+ }
128
+ }
129
+ >
130
+ <Text
131
+ style={
132
+ {
133
+ "fontFamily": "GTStandardBold",
134
+ "fontSize": 14,
135
+ "letterSpacing": 0.3,
136
+ "lineHeight": 20,
137
+ }
138
+ }
139
+ suppressHighlighting={true}
140
+ >
141
+ heading-xl
142
+ </Text>
143
+ </View>
144
+ <View
145
+ style={
146
+ {
147
+ "width": 80,
148
+ }
149
+ }
150
+ >
151
+ <Text
152
+ style={
153
+ {
154
+ "color": "#505050",
155
+ "fontFamily": "GTStandard",
156
+ "fontSize": 12,
157
+ "letterSpacing": 0.3,
158
+ "lineHeight": 16,
159
+ }
160
+ }
161
+ suppressHighlighting={true}
162
+ >
163
+ 48
164
+ px /
165
+ 56
166
+ px
167
+ </Text>
168
+ </View>
169
+ <Text
170
+ style={
171
+ {
172
+ "fontFamily": "GTStandardSemibold",
173
+ "fontSize": 48,
174
+ "letterSpacing": 0,
175
+ "lineHeight": 56,
176
+ }
177
+ }
178
+ suppressHighlighting={true}
179
+ >
180
+ The quick brown fox
181
+ </Text>
182
+ </View>
183
+ <View
184
+ style={
185
+ {
186
+ "alignItems": "center",
187
+ "flexDirection": "row",
188
+ "gap": 16,
189
+ }
190
+ }
191
+ >
192
+ <View
193
+ style={
194
+ {
195
+ "width": 180,
196
+ }
197
+ }
198
+ >
199
+ <Text
200
+ style={
201
+ {
202
+ "fontFamily": "GTStandardBold",
203
+ "fontSize": 14,
204
+ "letterSpacing": 0.3,
205
+ "lineHeight": 20,
206
+ }
207
+ }
208
+ suppressHighlighting={true}
209
+ >
210
+ heading-l
211
+ </Text>
212
+ </View>
213
+ <View
214
+ style={
215
+ {
216
+ "width": 80,
217
+ }
218
+ }
219
+ >
220
+ <Text
221
+ style={
222
+ {
223
+ "color": "#505050",
224
+ "fontFamily": "GTStandard",
225
+ "fontSize": 12,
226
+ "letterSpacing": 0.3,
227
+ "lineHeight": 16,
228
+ }
229
+ }
230
+ suppressHighlighting={true}
231
+ >
232
+ 38
233
+ px /
234
+ 44
235
+ px
236
+ </Text>
237
+ </View>
238
+ <Text
239
+ style={
240
+ {
241
+ "fontFamily": "GTStandardSemibold",
242
+ "fontSize": 38,
243
+ "letterSpacing": 0,
244
+ "lineHeight": 44,
245
+ }
246
+ }
247
+ suppressHighlighting={true}
248
+ >
249
+ The quick brown fox
250
+ </Text>
251
+ </View>
252
+ <View
253
+ style={
254
+ {
255
+ "alignItems": "center",
256
+ "flexDirection": "row",
257
+ "gap": 16,
258
+ }
259
+ }
260
+ >
261
+ <View
262
+ style={
263
+ {
264
+ "width": 180,
265
+ }
266
+ }
267
+ >
268
+ <Text
269
+ style={
270
+ {
271
+ "fontFamily": "GTStandardBold",
272
+ "fontSize": 14,
273
+ "letterSpacing": 0.3,
274
+ "lineHeight": 20,
275
+ }
276
+ }
277
+ suppressHighlighting={true}
278
+ >
279
+ heading-m
280
+ </Text>
281
+ </View>
282
+ <View
283
+ style={
284
+ {
285
+ "width": 80,
286
+ }
287
+ }
288
+ >
289
+ <Text
290
+ style={
291
+ {
292
+ "color": "#505050",
293
+ "fontFamily": "GTStandard",
294
+ "fontSize": 12,
295
+ "letterSpacing": 0.3,
296
+ "lineHeight": 16,
297
+ }
298
+ }
299
+ suppressHighlighting={true}
300
+ >
301
+ 28
302
+ px /
303
+ 32
304
+ px
305
+ </Text>
306
+ </View>
307
+ <Text
308
+ style={
309
+ {
310
+ "fontFamily": "GTStandardSemibold",
311
+ "fontSize": 28,
312
+ "letterSpacing": 0,
313
+ "lineHeight": 32,
314
+ }
315
+ }
316
+ suppressHighlighting={true}
317
+ >
318
+ The quick brown fox
319
+ </Text>
320
+ </View>
321
+ <View
322
+ style={
323
+ {
324
+ "alignItems": "center",
325
+ "flexDirection": "row",
326
+ "gap": 16,
327
+ }
328
+ }
329
+ >
330
+ <View
331
+ style={
332
+ {
333
+ "width": 180,
334
+ }
335
+ }
336
+ >
337
+ <Text
338
+ style={
339
+ {
340
+ "fontFamily": "GTStandardBold",
341
+ "fontSize": 14,
342
+ "letterSpacing": 0.3,
343
+ "lineHeight": 20,
344
+ }
345
+ }
346
+ suppressHighlighting={true}
347
+ >
348
+ heading-s
349
+ </Text>
350
+ </View>
351
+ <View
352
+ style={
353
+ {
354
+ "width": 80,
355
+ }
356
+ }
357
+ >
358
+ <Text
359
+ style={
360
+ {
361
+ "color": "#505050",
362
+ "fontFamily": "GTStandard",
363
+ "fontSize": 12,
364
+ "letterSpacing": 0.3,
365
+ "lineHeight": 16,
366
+ }
367
+ }
368
+ suppressHighlighting={true}
369
+ >
370
+ 24
371
+ px /
372
+ 28
373
+ px
374
+ </Text>
375
+ </View>
376
+ <Text
377
+ style={
378
+ {
379
+ "fontFamily": "GTStandardSemibold",
380
+ "fontSize": 24,
381
+ "letterSpacing": 0,
382
+ "lineHeight": 28,
383
+ }
384
+ }
385
+ suppressHighlighting={true}
386
+ >
387
+ The quick brown fox
388
+ </Text>
389
+ </View>
390
+ <View
391
+ style={
392
+ {
393
+ "alignItems": "center",
394
+ "flexDirection": "row",
395
+ "gap": 16,
396
+ }
397
+ }
398
+ >
399
+ <View
400
+ style={
401
+ {
402
+ "width": 180,
403
+ }
404
+ }
405
+ >
406
+ <Text
407
+ style={
408
+ {
409
+ "fontFamily": "GTStandardBold",
410
+ "fontSize": 14,
411
+ "letterSpacing": 0.3,
412
+ "lineHeight": 20,
413
+ }
414
+ }
415
+ suppressHighlighting={true}
416
+ >
417
+ heading-xs
418
+ </Text>
419
+ </View>
420
+ <View
421
+ style={
422
+ {
423
+ "width": 80,
424
+ }
425
+ }
426
+ >
427
+ <Text
428
+ style={
429
+ {
430
+ "color": "#505050",
431
+ "fontFamily": "GTStandard",
432
+ "fontSize": 12,
433
+ "letterSpacing": 0.3,
434
+ "lineHeight": 16,
435
+ }
436
+ }
437
+ suppressHighlighting={true}
438
+ >
439
+ 20
440
+ px /
441
+ 24
442
+ px
443
+ </Text>
444
+ </View>
445
+ <Text
446
+ style={
447
+ {
448
+ "fontFamily": "GTStandardSemibold",
449
+ "fontSize": 20,
450
+ "letterSpacing": 0,
451
+ "lineHeight": 24,
452
+ }
453
+ }
454
+ suppressHighlighting={true}
455
+ >
456
+ The quick brown fox
457
+ </Text>
458
+ </View>
459
+ <View
460
+ style={
461
+ {
462
+ "alignItems": "center",
463
+ "flexDirection": "row",
464
+ "gap": 16,
465
+ }
466
+ }
467
+ >
468
+ <View
469
+ style={
470
+ {
471
+ "width": 180,
472
+ }
473
+ }
474
+ >
475
+ <Text
476
+ style={
477
+ {
478
+ "fontFamily": "GTStandardBold",
479
+ "fontSize": 14,
480
+ "letterSpacing": 0.3,
481
+ "lineHeight": 20,
482
+ }
483
+ }
484
+ suppressHighlighting={true}
485
+ >
486
+ heading-2xs
487
+ </Text>
488
+ </View>
489
+ <View
490
+ style={
491
+ {
492
+ "width": 80,
493
+ }
494
+ }
495
+ >
496
+ <Text
497
+ style={
498
+ {
499
+ "color": "#505050",
500
+ "fontFamily": "GTStandard",
501
+ "fontSize": 12,
502
+ "letterSpacing": 0.3,
503
+ "lineHeight": 16,
504
+ }
505
+ }
506
+ suppressHighlighting={true}
507
+ >
508
+ 20
509
+ px /
510
+ 20
511
+ px
512
+ </Text>
513
+ </View>
514
+ <Text
515
+ style={
516
+ {
517
+ "fontFamily": "GTStandardSemibold",
518
+ "fontSize": 20,
519
+ "letterSpacing": 0,
520
+ "lineHeight": 20,
521
+ }
522
+ }
523
+ suppressHighlighting={true}
524
+ >
525
+ The quick brown fox
526
+ </Text>
527
+ </View>
528
+ <View
529
+ style={
530
+ {
531
+ "alignItems": "center",
532
+ "flexDirection": "row",
533
+ "gap": 16,
534
+ }
535
+ }
536
+ >
537
+ <View
538
+ style={
539
+ {
540
+ "width": 180,
541
+ }
542
+ }
543
+ >
544
+ <Text
545
+ style={
546
+ {
547
+ "fontFamily": "GTStandardBold",
548
+ "fontSize": 14,
549
+ "letterSpacing": 0.3,
550
+ "lineHeight": 20,
551
+ }
552
+ }
553
+ suppressHighlighting={true}
554
+ >
555
+ body-xl
556
+ </Text>
557
+ </View>
558
+ <View
559
+ style={
560
+ {
561
+ "width": 80,
562
+ }
563
+ }
564
+ >
565
+ <Text
566
+ style={
567
+ {
568
+ "color": "#505050",
569
+ "fontFamily": "GTStandard",
570
+ "fontSize": 12,
571
+ "letterSpacing": 0.3,
572
+ "lineHeight": 16,
573
+ }
574
+ }
575
+ suppressHighlighting={true}
576
+ >
577
+ 24
578
+ px /
579
+ 32
580
+ px
581
+ </Text>
582
+ </View>
583
+ <Text
584
+ style={
585
+ {
586
+ "fontFamily": "GTStandard",
587
+ "fontSize": 24,
588
+ "letterSpacing": 0.3,
589
+ "lineHeight": 32,
590
+ }
591
+ }
592
+ suppressHighlighting={true}
593
+ >
594
+ The quick brown fox
595
+ </Text>
596
+ </View>
597
+ <View
598
+ style={
599
+ {
600
+ "alignItems": "center",
601
+ "flexDirection": "row",
602
+ "gap": 16,
603
+ }
604
+ }
605
+ >
606
+ <View
607
+ style={
608
+ {
609
+ "width": 180,
610
+ }
611
+ }
612
+ >
613
+ <Text
614
+ style={
615
+ {
616
+ "fontFamily": "GTStandardBold",
617
+ "fontSize": 14,
618
+ "letterSpacing": 0.3,
619
+ "lineHeight": 20,
620
+ }
621
+ }
622
+ suppressHighlighting={true}
623
+ >
624
+ body-l
625
+ </Text>
626
+ </View>
627
+ <View
628
+ style={
629
+ {
630
+ "width": 80,
631
+ }
632
+ }
633
+ >
634
+ <Text
635
+ style={
636
+ {
637
+ "color": "#505050",
638
+ "fontFamily": "GTStandard",
639
+ "fontSize": 12,
640
+ "letterSpacing": 0.3,
641
+ "lineHeight": 16,
642
+ }
643
+ }
644
+ suppressHighlighting={true}
645
+ >
646
+ 18
647
+ px /
648
+ 26
649
+ px
650
+ </Text>
651
+ </View>
652
+ <Text
653
+ style={
654
+ {
655
+ "fontFamily": "GTStandard",
656
+ "fontSize": 18,
657
+ "letterSpacing": 0.3,
658
+ "lineHeight": 26,
659
+ }
660
+ }
661
+ suppressHighlighting={true}
662
+ >
663
+ The quick brown fox
664
+ </Text>
665
+ </View>
666
+ <View
667
+ style={
668
+ {
669
+ "alignItems": "center",
670
+ "flexDirection": "row",
671
+ "gap": 16,
672
+ }
673
+ }
674
+ >
675
+ <View
676
+ style={
677
+ {
678
+ "width": 180,
679
+ }
680
+ }
681
+ >
682
+ <Text
683
+ style={
684
+ {
685
+ "fontFamily": "GTStandardBold",
686
+ "fontSize": 14,
687
+ "letterSpacing": 0.3,
688
+ "lineHeight": 20,
689
+ }
690
+ }
691
+ suppressHighlighting={true}
692
+ >
693
+ body-m
694
+ </Text>
695
+ </View>
696
+ <View
697
+ style={
698
+ {
699
+ "width": 80,
700
+ }
701
+ }
702
+ >
703
+ <Text
704
+ style={
705
+ {
706
+ "color": "#505050",
707
+ "fontFamily": "GTStandard",
708
+ "fontSize": 12,
709
+ "letterSpacing": 0.3,
710
+ "lineHeight": 16,
711
+ }
712
+ }
713
+ suppressHighlighting={true}
714
+ >
715
+ 16
716
+ px /
717
+ 24
718
+ px
719
+ </Text>
720
+ </View>
721
+ <Text
722
+ style={
723
+ {
724
+ "fontFamily": "GTStandard",
725
+ "fontSize": 16,
726
+ "letterSpacing": 0.3,
727
+ "lineHeight": 24,
728
+ }
729
+ }
730
+ suppressHighlighting={true}
731
+ >
732
+ The quick brown fox
733
+ </Text>
734
+ </View>
735
+ <View
736
+ style={
737
+ {
738
+ "alignItems": "center",
739
+ "flexDirection": "row",
740
+ "gap": 16,
741
+ }
742
+ }
743
+ >
744
+ <View
745
+ style={
746
+ {
747
+ "width": 180,
748
+ }
749
+ }
750
+ >
751
+ <Text
752
+ style={
753
+ {
754
+ "fontFamily": "GTStandardBold",
755
+ "fontSize": 14,
756
+ "letterSpacing": 0.3,
757
+ "lineHeight": 20,
758
+ }
759
+ }
760
+ suppressHighlighting={true}
761
+ >
762
+ body-s
763
+ </Text>
764
+ </View>
765
+ <View
766
+ style={
767
+ {
768
+ "width": 80,
769
+ }
770
+ }
771
+ >
772
+ <Text
773
+ style={
774
+ {
775
+ "color": "#505050",
776
+ "fontFamily": "GTStandard",
777
+ "fontSize": 12,
778
+ "letterSpacing": 0.3,
779
+ "lineHeight": 16,
780
+ }
781
+ }
782
+ suppressHighlighting={true}
783
+ >
784
+ 14
785
+ px /
786
+ 20
787
+ px
788
+ </Text>
789
+ </View>
790
+ <Text
791
+ style={
792
+ {
793
+ "fontFamily": "GTStandard",
794
+ "fontSize": 14,
795
+ "letterSpacing": 0.3,
796
+ "lineHeight": 20,
797
+ }
798
+ }
799
+ suppressHighlighting={true}
800
+ >
801
+ The quick brown fox
802
+ </Text>
803
+ </View>
804
+ <View
805
+ style={
806
+ {
807
+ "alignItems": "center",
808
+ "flexDirection": "row",
809
+ "gap": 16,
810
+ }
811
+ }
812
+ >
813
+ <View
814
+ style={
815
+ {
816
+ "width": 180,
817
+ }
818
+ }
819
+ >
820
+ <Text
821
+ style={
822
+ {
823
+ "fontFamily": "GTStandardBold",
824
+ "fontSize": 14,
825
+ "letterSpacing": 0.3,
826
+ "lineHeight": 20,
827
+ }
828
+ }
829
+ suppressHighlighting={true}
830
+ >
831
+ body-xs
832
+ </Text>
833
+ </View>
834
+ <View
835
+ style={
836
+ {
837
+ "width": 80,
838
+ }
839
+ }
840
+ >
841
+ <Text
842
+ style={
843
+ {
844
+ "color": "#505050",
845
+ "fontFamily": "GTStandard",
846
+ "fontSize": 12,
847
+ "letterSpacing": 0.3,
848
+ "lineHeight": 16,
849
+ }
850
+ }
851
+ suppressHighlighting={true}
852
+ >
853
+ 12
854
+ px /
855
+ 16
856
+ px
857
+ </Text>
858
+ </View>
859
+ <Text
860
+ style={
861
+ {
862
+ "fontFamily": "GTStandard",
863
+ "fontSize": 12,
864
+ "letterSpacing": 0.3,
865
+ "lineHeight": 16,
866
+ }
867
+ }
868
+ suppressHighlighting={true}
869
+ >
870
+ The quick brown fox
871
+ </Text>
872
+ </View>
873
+ <View
874
+ style={
875
+ {
876
+ "alignItems": "center",
877
+ "flexDirection": "row",
878
+ "gap": 16,
879
+ }
880
+ }
881
+ >
882
+ <View
883
+ style={
884
+ {
885
+ "width": 180,
886
+ }
887
+ }
888
+ >
889
+ <Text
890
+ style={
891
+ {
892
+ "fontFamily": "GTStandardBold",
893
+ "fontSize": 14,
894
+ "letterSpacing": 0.3,
895
+ "lineHeight": 20,
896
+ }
897
+ }
898
+ suppressHighlighting={true}
899
+ >
900
+ label-xl
901
+ </Text>
902
+ </View>
903
+ <View
904
+ style={
905
+ {
906
+ "width": 80,
907
+ }
908
+ }
909
+ >
910
+ <Text
911
+ style={
912
+ {
913
+ "color": "#505050",
914
+ "fontFamily": "GTStandard",
915
+ "fontSize": 12,
916
+ "letterSpacing": 0.3,
917
+ "lineHeight": 16,
918
+ }
919
+ }
920
+ suppressHighlighting={true}
921
+ >
922
+ 18
923
+ px /
924
+ 26
925
+ px
926
+ </Text>
927
+ </View>
928
+ <Text
929
+ style={
930
+ {
931
+ "fontFamily": "GTStandardSemibold",
932
+ "fontSize": 18,
933
+ "letterSpacing": 0,
934
+ "lineHeight": 26,
935
+ }
936
+ }
937
+ suppressHighlighting={true}
938
+ >
939
+ The quick brown fox
940
+ </Text>
941
+ </View>
942
+ <View
943
+ style={
944
+ {
945
+ "alignItems": "center",
946
+ "flexDirection": "row",
947
+ "gap": 16,
948
+ }
949
+ }
950
+ >
951
+ <View
952
+ style={
953
+ {
954
+ "width": 180,
955
+ }
956
+ }
957
+ >
958
+ <Text
959
+ style={
960
+ {
961
+ "fontFamily": "GTStandardBold",
962
+ "fontSize": 14,
963
+ "letterSpacing": 0.3,
964
+ "lineHeight": 20,
965
+ }
966
+ }
967
+ suppressHighlighting={true}
968
+ >
969
+ label-l
970
+ </Text>
971
+ </View>
972
+ <View
973
+ style={
974
+ {
975
+ "width": 80,
976
+ }
977
+ }
978
+ >
979
+ <Text
980
+ style={
981
+ {
982
+ "color": "#505050",
983
+ "fontFamily": "GTStandard",
984
+ "fontSize": 12,
985
+ "letterSpacing": 0.3,
986
+ "lineHeight": 16,
987
+ }
988
+ }
989
+ suppressHighlighting={true}
990
+ >
991
+ 16
992
+ px /
993
+ 20
994
+ px
995
+ </Text>
996
+ </View>
997
+ <Text
998
+ style={
999
+ {
1000
+ "fontFamily": "GTStandardSemibold",
1001
+ "fontSize": 16,
1002
+ "letterSpacing": 0,
1003
+ "lineHeight": 20,
1004
+ }
1005
+ }
1006
+ suppressHighlighting={true}
1007
+ >
1008
+ The quick brown fox
1009
+ </Text>
1010
+ </View>
1011
+ <View
1012
+ style={
1013
+ {
1014
+ "alignItems": "center",
1015
+ "flexDirection": "row",
1016
+ "gap": 16,
1017
+ }
1018
+ }
1019
+ >
1020
+ <View
1021
+ style={
1022
+ {
1023
+ "width": 180,
1024
+ }
1025
+ }
1026
+ >
1027
+ <Text
1028
+ style={
1029
+ {
1030
+ "fontFamily": "GTStandardBold",
1031
+ "fontSize": 14,
1032
+ "letterSpacing": 0.3,
1033
+ "lineHeight": 20,
1034
+ }
1035
+ }
1036
+ suppressHighlighting={true}
1037
+ >
1038
+ label-m
1039
+ </Text>
1040
+ </View>
1041
+ <View
1042
+ style={
1043
+ {
1044
+ "width": 80,
1045
+ }
1046
+ }
1047
+ >
1048
+ <Text
1049
+ style={
1050
+ {
1051
+ "color": "#505050",
1052
+ "fontFamily": "GTStandard",
1053
+ "fontSize": 12,
1054
+ "letterSpacing": 0.3,
1055
+ "lineHeight": 16,
1056
+ }
1057
+ }
1058
+ suppressHighlighting={true}
1059
+ >
1060
+ 14
1061
+ px /
1062
+ 18
1063
+ px
1064
+ </Text>
1065
+ </View>
1066
+ <Text
1067
+ style={
1068
+ {
1069
+ "fontFamily": "GTStandardSemibold",
1070
+ "fontSize": 14,
1071
+ "letterSpacing": 0,
1072
+ "lineHeight": 18,
1073
+ }
1074
+ }
1075
+ suppressHighlighting={true}
1076
+ >
1077
+ The quick brown fox
1078
+ </Text>
1079
+ </View>
1080
+ <View
1081
+ style={
1082
+ {
1083
+ "alignItems": "center",
1084
+ "flexDirection": "row",
1085
+ "gap": 16,
1086
+ }
1087
+ }
1088
+ >
1089
+ <View
1090
+ style={
1091
+ {
1092
+ "width": 180,
1093
+ }
1094
+ }
1095
+ >
1096
+ <Text
1097
+ style={
1098
+ {
1099
+ "fontFamily": "GTStandardBold",
1100
+ "fontSize": 14,
1101
+ "letterSpacing": 0.3,
1102
+ "lineHeight": 20,
1103
+ }
1104
+ }
1105
+ suppressHighlighting={true}
1106
+ >
1107
+ label-s
1108
+ </Text>
1109
+ </View>
1110
+ <View
1111
+ style={
1112
+ {
1113
+ "width": 80,
1114
+ }
1115
+ }
1116
+ >
1117
+ <Text
1118
+ style={
1119
+ {
1120
+ "color": "#505050",
1121
+ "fontFamily": "GTStandard",
1122
+ "fontSize": 12,
1123
+ "letterSpacing": 0.3,
1124
+ "lineHeight": 16,
1125
+ }
1126
+ }
1127
+ suppressHighlighting={true}
1128
+ >
1129
+ 12
1130
+ px /
1131
+ 14
1132
+ px
1133
+ </Text>
1134
+ </View>
1135
+ <Text
1136
+ style={
1137
+ {
1138
+ "fontFamily": "GTStandardSemibold",
1139
+ "fontSize": 12,
1140
+ "letterSpacing": 0,
1141
+ "lineHeight": 14,
1142
+ }
1143
+ }
1144
+ suppressHighlighting={true}
1145
+ >
1146
+ The quick brown fox
1147
+ </Text>
1148
+ </View>
1149
+ <View
1150
+ style={
1151
+ {
1152
+ "alignItems": "center",
1153
+ "flexDirection": "row",
1154
+ "gap": 16,
1155
+ }
1156
+ }
1157
+ >
1158
+ <View
1159
+ style={
1160
+ {
1161
+ "width": 180,
1162
+ }
1163
+ }
1164
+ >
1165
+ <Text
1166
+ style={
1167
+ {
1168
+ "fontFamily": "GTStandardBold",
1169
+ "fontSize": 14,
1170
+ "letterSpacing": 0.3,
1171
+ "lineHeight": 20,
1172
+ }
1173
+ }
1174
+ suppressHighlighting={true}
1175
+ >
1176
+ content-caps-3xl
1177
+ </Text>
1178
+ </View>
1179
+ <View
1180
+ style={
1181
+ {
1182
+ "width": 80,
1183
+ }
1184
+ }
1185
+ >
1186
+ <Text
1187
+ style={
1188
+ {
1189
+ "color": "#505050",
1190
+ "fontFamily": "GTStandard",
1191
+ "fontSize": 12,
1192
+ "letterSpacing": 0.3,
1193
+ "lineHeight": 16,
1194
+ }
1195
+ }
1196
+ suppressHighlighting={true}
1197
+ >
1198
+ 40
1199
+ px /
1200
+ 40
1201
+ px
1202
+ </Text>
1203
+ </View>
1204
+ <Text
1205
+ style={
1206
+ {
1207
+ "fontFamily": "GTStandardBold",
1208
+ "fontSize": 40,
1209
+ "letterSpacing": 0,
1210
+ "lineHeight": 40,
1211
+ }
1212
+ }
1213
+ suppressHighlighting={true}
1214
+ >
1215
+ The quick brown fox
1216
+ </Text>
1217
+ </View>
1218
+ <View
1219
+ style={
1220
+ {
1221
+ "alignItems": "center",
1222
+ "flexDirection": "row",
1223
+ "gap": 16,
1224
+ }
1225
+ }
1226
+ >
1227
+ <View
1228
+ style={
1229
+ {
1230
+ "width": 180,
1231
+ }
1232
+ }
1233
+ >
1234
+ <Text
1235
+ style={
1236
+ {
1237
+ "fontFamily": "GTStandardBold",
1238
+ "fontSize": 14,
1239
+ "letterSpacing": 0.3,
1240
+ "lineHeight": 20,
1241
+ }
1242
+ }
1243
+ suppressHighlighting={true}
1244
+ >
1245
+ content-caps-2xl
1246
+ </Text>
1247
+ </View>
1248
+ <View
1249
+ style={
1250
+ {
1251
+ "width": 80,
1252
+ }
1253
+ }
1254
+ >
1255
+ <Text
1256
+ style={
1257
+ {
1258
+ "color": "#505050",
1259
+ "fontFamily": "GTStandard",
1260
+ "fontSize": 12,
1261
+ "letterSpacing": 0.3,
1262
+ "lineHeight": 16,
1263
+ }
1264
+ }
1265
+ suppressHighlighting={true}
1266
+ >
1267
+ 32
1268
+ px /
1269
+ 40
1270
+ px
1271
+ </Text>
1272
+ </View>
1273
+ <Text
1274
+ style={
1275
+ {
1276
+ "fontFamily": "GTStandardBold",
1277
+ "fontSize": 32,
1278
+ "letterSpacing": 0,
1279
+ "lineHeight": 40,
1280
+ }
1281
+ }
1282
+ suppressHighlighting={true}
1283
+ >
1284
+ The quick brown fox
1285
+ </Text>
1286
+ </View>
1287
+ <View
1288
+ style={
1289
+ {
1290
+ "alignItems": "center",
1291
+ "flexDirection": "row",
1292
+ "gap": 16,
1293
+ }
1294
+ }
1295
+ >
1296
+ <View
1297
+ style={
1298
+ {
1299
+ "width": 180,
1300
+ }
1301
+ }
1302
+ >
1303
+ <Text
1304
+ style={
1305
+ {
1306
+ "fontFamily": "GTStandardBold",
1307
+ "fontSize": 14,
1308
+ "letterSpacing": 0.3,
1309
+ "lineHeight": 20,
1310
+ }
1311
+ }
1312
+ suppressHighlighting={true}
1313
+ >
1314
+ content-caps-xl
1315
+ </Text>
1316
+ </View>
1317
+ <View
1318
+ style={
1319
+ {
1320
+ "width": 80,
1321
+ }
1322
+ }
1323
+ >
1324
+ <Text
1325
+ style={
1326
+ {
1327
+ "color": "#505050",
1328
+ "fontFamily": "GTStandard",
1329
+ "fontSize": 12,
1330
+ "letterSpacing": 0.3,
1331
+ "lineHeight": 16,
1332
+ }
1333
+ }
1334
+ suppressHighlighting={true}
1335
+ >
1336
+ 24
1337
+ px /
1338
+ 28
1339
+ px
1340
+ </Text>
1341
+ </View>
1342
+ <Text
1343
+ style={
1344
+ {
1345
+ "fontFamily": "GTStandardBold",
1346
+ "fontSize": 24,
1347
+ "letterSpacing": 0,
1348
+ "lineHeight": 28,
1349
+ }
1350
+ }
1351
+ suppressHighlighting={true}
1352
+ >
1353
+ The quick brown fox
1354
+ </Text>
1355
+ </View>
1356
+ <View
1357
+ style={
1358
+ {
1359
+ "alignItems": "center",
1360
+ "flexDirection": "row",
1361
+ "gap": 16,
1362
+ }
1363
+ }
1364
+ >
1365
+ <View
1366
+ style={
1367
+ {
1368
+ "width": 180,
1369
+ }
1370
+ }
1371
+ >
1372
+ <Text
1373
+ style={
1374
+ {
1375
+ "fontFamily": "GTStandardBold",
1376
+ "fontSize": 14,
1377
+ "letterSpacing": 0.3,
1378
+ "lineHeight": 20,
1379
+ }
1380
+ }
1381
+ suppressHighlighting={true}
1382
+ >
1383
+ content-caps-l
1384
+ </Text>
1385
+ </View>
1386
+ <View
1387
+ style={
1388
+ {
1389
+ "width": 80,
1390
+ }
1391
+ }
1392
+ >
1393
+ <Text
1394
+ style={
1395
+ {
1396
+ "color": "#505050",
1397
+ "fontFamily": "GTStandard",
1398
+ "fontSize": 12,
1399
+ "letterSpacing": 0.3,
1400
+ "lineHeight": 16,
1401
+ }
1402
+ }
1403
+ suppressHighlighting={true}
1404
+ >
1405
+ 18
1406
+ px /
1407
+ 20
1408
+ px
1409
+ </Text>
1410
+ </View>
1411
+ <Text
1412
+ style={
1413
+ {
1414
+ "fontFamily": "GTStandardBold",
1415
+ "fontSize": 18,
1416
+ "letterSpacing": 0,
1417
+ "lineHeight": 20,
1418
+ }
1419
+ }
1420
+ suppressHighlighting={true}
1421
+ >
1422
+ The quick brown fox
1423
+ </Text>
1424
+ </View>
1425
+ <View
1426
+ style={
1427
+ {
1428
+ "alignItems": "center",
1429
+ "flexDirection": "row",
1430
+ "gap": 16,
1431
+ }
1432
+ }
1433
+ >
1434
+ <View
1435
+ style={
1436
+ {
1437
+ "width": 180,
1438
+ }
1439
+ }
1440
+ >
1441
+ <Text
1442
+ style={
1443
+ {
1444
+ "fontFamily": "GTStandardBold",
1445
+ "fontSize": 14,
1446
+ "letterSpacing": 0.3,
1447
+ "lineHeight": 20,
1448
+ }
1449
+ }
1450
+ suppressHighlighting={true}
1451
+ >
1452
+ content-caps-m
1453
+ </Text>
1454
+ </View>
1455
+ <View
1456
+ style={
1457
+ {
1458
+ "width": 80,
1459
+ }
1460
+ }
1461
+ >
1462
+ <Text
1463
+ style={
1464
+ {
1465
+ "color": "#505050",
1466
+ "fontFamily": "GTStandard",
1467
+ "fontSize": 12,
1468
+ "letterSpacing": 0.3,
1469
+ "lineHeight": 16,
1470
+ }
1471
+ }
1472
+ suppressHighlighting={true}
1473
+ >
1474
+ 16
1475
+ px /
1476
+ 18
1477
+ px
1478
+ </Text>
1479
+ </View>
1480
+ <Text
1481
+ style={
1482
+ {
1483
+ "fontFamily": "GTStandardBold",
1484
+ "fontSize": 16,
1485
+ "letterSpacing": 0,
1486
+ "lineHeight": 18,
1487
+ }
1488
+ }
1489
+ suppressHighlighting={true}
1490
+ >
1491
+ The quick brown fox
1492
+ </Text>
1493
+ </View>
1494
+ <View
1495
+ style={
1496
+ {
1497
+ "alignItems": "center",
1498
+ "flexDirection": "row",
1499
+ "gap": 16,
1500
+ }
1501
+ }
1502
+ >
1503
+ <View
1504
+ style={
1505
+ {
1506
+ "width": 180,
1507
+ }
1508
+ }
1509
+ >
1510
+ <Text
1511
+ style={
1512
+ {
1513
+ "fontFamily": "GTStandardBold",
1514
+ "fontSize": 14,
1515
+ "letterSpacing": 0.3,
1516
+ "lineHeight": 20,
1517
+ }
1518
+ }
1519
+ suppressHighlighting={true}
1520
+ >
1521
+ content-caps-s
1522
+ </Text>
1523
+ </View>
1524
+ <View
1525
+ style={
1526
+ {
1527
+ "width": 80,
1528
+ }
1529
+ }
1530
+ >
1531
+ <Text
1532
+ style={
1533
+ {
1534
+ "color": "#505050",
1535
+ "fontFamily": "GTStandard",
1536
+ "fontSize": 12,
1537
+ "letterSpacing": 0.3,
1538
+ "lineHeight": 16,
1539
+ }
1540
+ }
1541
+ suppressHighlighting={true}
1542
+ >
1543
+ 14
1544
+ px /
1545
+ 16
1546
+ px
1547
+ </Text>
1548
+ </View>
1549
+ <Text
1550
+ style={
1551
+ {
1552
+ "fontFamily": "GTStandardBold",
1553
+ "fontSize": 14,
1554
+ "letterSpacing": 0,
1555
+ "lineHeight": 16,
1556
+ }
1557
+ }
1558
+ suppressHighlighting={true}
1559
+ >
1560
+ The quick brown fox
1561
+ </Text>
1562
+ </View>
1563
+ <View
1564
+ style={
1565
+ {
1566
+ "alignItems": "center",
1567
+ "flexDirection": "row",
1568
+ "gap": 16,
1569
+ }
1570
+ }
1571
+ >
1572
+ <View
1573
+ style={
1574
+ {
1575
+ "width": 180,
1576
+ }
1577
+ }
1578
+ >
1579
+ <Text
1580
+ style={
1581
+ {
1582
+ "fontFamily": "GTStandardBold",
1583
+ "fontSize": 14,
1584
+ "letterSpacing": 0.3,
1585
+ "lineHeight": 20,
1586
+ }
1587
+ }
1588
+ suppressHighlighting={true}
1589
+ >
1590
+ content-caps-xs
1591
+ </Text>
1592
+ </View>
1593
+ <View
1594
+ style={
1595
+ {
1596
+ "width": 80,
1597
+ }
1598
+ }
1599
+ >
1600
+ <Text
1601
+ style={
1602
+ {
1603
+ "color": "#505050",
1604
+ "fontFamily": "GTStandard",
1605
+ "fontSize": 12,
1606
+ "letterSpacing": 0.3,
1607
+ "lineHeight": 16,
1608
+ }
1609
+ }
1610
+ suppressHighlighting={true}
1611
+ >
1612
+ 12
1613
+ px /
1614
+ 14
1615
+ px
1616
+ </Text>
1617
+ </View>
1618
+ <Text
1619
+ style={
1620
+ {
1621
+ "fontFamily": "GTStandardBold",
1622
+ "fontSize": 12,
1623
+ "letterSpacing": 0,
1624
+ "lineHeight": 14,
1625
+ }
1626
+ }
1627
+ suppressHighlighting={true}
1628
+ >
1629
+ The quick brown fox
1630
+ </Text>
1631
+ </View>
1632
+ </View>
1633
+ </View>
1634
+ </RNCSafeAreaProvider>
1635
+ `;