@ornikar/bumper 2.7.2-canary.1768565076.501fccaa5e4ef824bb180cfd40a7e74454a29a3e.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 -2
  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,864 @@
1
+ // Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
2
+
3
+ exports[`Bumper/Core/Tokens Size 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
+ Size tokens define consistent dimension values used for width and height properties.
36
+ </Text>
37
+ <View
38
+ style={
39
+ {
40
+ "flexDirection": "column",
41
+ "gap": 8,
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": 150,
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
+ $
73
+ size.16
74
+ </Text>
75
+ </View>
76
+ <View
77
+ style={
78
+ {
79
+ "width": 60,
80
+ }
81
+ }
82
+ >
83
+ <Text
84
+ style={
85
+ {
86
+ "color": "#505050",
87
+ "fontFamily": "GTStandard",
88
+ "fontSize": 14,
89
+ "letterSpacing": 0.3,
90
+ "lineHeight": 20,
91
+ }
92
+ }
93
+ suppressHighlighting={true}
94
+ >
95
+ 16
96
+ px
97
+ </Text>
98
+ </View>
99
+ <View
100
+ style={
101
+ {
102
+ "backgroundColor": "#563B56",
103
+ "borderBottomLeftRadius": 2,
104
+ "borderBottomRightRadius": 2,
105
+ "borderTopLeftRadius": 2,
106
+ "borderTopRightRadius": 2,
107
+ "height": 24,
108
+ "width": 16,
109
+ }
110
+ }
111
+ />
112
+ </View>
113
+ <View
114
+ style={
115
+ {
116
+ "alignItems": "center",
117
+ "flexDirection": "row",
118
+ "gap": 16,
119
+ }
120
+ }
121
+ >
122
+ <View
123
+ style={
124
+ {
125
+ "width": 150,
126
+ }
127
+ }
128
+ >
129
+ <Text
130
+ style={
131
+ {
132
+ "fontFamily": "GTStandardBold",
133
+ "fontSize": 14,
134
+ "letterSpacing": 0.3,
135
+ "lineHeight": 20,
136
+ }
137
+ }
138
+ suppressHighlighting={true}
139
+ >
140
+ $
141
+ size.20
142
+ </Text>
143
+ </View>
144
+ <View
145
+ style={
146
+ {
147
+ "width": 60,
148
+ }
149
+ }
150
+ >
151
+ <Text
152
+ style={
153
+ {
154
+ "color": "#505050",
155
+ "fontFamily": "GTStandard",
156
+ "fontSize": 14,
157
+ "letterSpacing": 0.3,
158
+ "lineHeight": 20,
159
+ }
160
+ }
161
+ suppressHighlighting={true}
162
+ >
163
+ 20
164
+ px
165
+ </Text>
166
+ </View>
167
+ <View
168
+ style={
169
+ {
170
+ "backgroundColor": "#563B56",
171
+ "borderBottomLeftRadius": 2,
172
+ "borderBottomRightRadius": 2,
173
+ "borderTopLeftRadius": 2,
174
+ "borderTopRightRadius": 2,
175
+ "height": 24,
176
+ "width": 20,
177
+ }
178
+ }
179
+ />
180
+ </View>
181
+ <View
182
+ style={
183
+ {
184
+ "alignItems": "center",
185
+ "flexDirection": "row",
186
+ "gap": 16,
187
+ }
188
+ }
189
+ >
190
+ <View
191
+ style={
192
+ {
193
+ "width": 150,
194
+ }
195
+ }
196
+ >
197
+ <Text
198
+ style={
199
+ {
200
+ "fontFamily": "GTStandardBold",
201
+ "fontSize": 14,
202
+ "letterSpacing": 0.3,
203
+ "lineHeight": 20,
204
+ }
205
+ }
206
+ suppressHighlighting={true}
207
+ >
208
+ $
209
+ size.24
210
+ </Text>
211
+ </View>
212
+ <View
213
+ style={
214
+ {
215
+ "width": 60,
216
+ }
217
+ }
218
+ >
219
+ <Text
220
+ style={
221
+ {
222
+ "color": "#505050",
223
+ "fontFamily": "GTStandard",
224
+ "fontSize": 14,
225
+ "letterSpacing": 0.3,
226
+ "lineHeight": 20,
227
+ }
228
+ }
229
+ suppressHighlighting={true}
230
+ >
231
+ 24
232
+ px
233
+ </Text>
234
+ </View>
235
+ <View
236
+ style={
237
+ {
238
+ "backgroundColor": "#563B56",
239
+ "borderBottomLeftRadius": 2,
240
+ "borderBottomRightRadius": 2,
241
+ "borderTopLeftRadius": 2,
242
+ "borderTopRightRadius": 2,
243
+ "height": 24,
244
+ "width": 24,
245
+ }
246
+ }
247
+ />
248
+ </View>
249
+ <View
250
+ style={
251
+ {
252
+ "alignItems": "center",
253
+ "flexDirection": "row",
254
+ "gap": 16,
255
+ }
256
+ }
257
+ >
258
+ <View
259
+ style={
260
+ {
261
+ "width": 150,
262
+ }
263
+ }
264
+ >
265
+ <Text
266
+ style={
267
+ {
268
+ "fontFamily": "GTStandardBold",
269
+ "fontSize": 14,
270
+ "letterSpacing": 0.3,
271
+ "lineHeight": 20,
272
+ }
273
+ }
274
+ suppressHighlighting={true}
275
+ >
276
+ $
277
+ size.32
278
+ </Text>
279
+ </View>
280
+ <View
281
+ style={
282
+ {
283
+ "width": 60,
284
+ }
285
+ }
286
+ >
287
+ <Text
288
+ style={
289
+ {
290
+ "color": "#505050",
291
+ "fontFamily": "GTStandard",
292
+ "fontSize": 14,
293
+ "letterSpacing": 0.3,
294
+ "lineHeight": 20,
295
+ }
296
+ }
297
+ suppressHighlighting={true}
298
+ >
299
+ 32
300
+ px
301
+ </Text>
302
+ </View>
303
+ <View
304
+ style={
305
+ {
306
+ "backgroundColor": "#563B56",
307
+ "borderBottomLeftRadius": 2,
308
+ "borderBottomRightRadius": 2,
309
+ "borderTopLeftRadius": 2,
310
+ "borderTopRightRadius": 2,
311
+ "height": 24,
312
+ "width": 32,
313
+ }
314
+ }
315
+ />
316
+ </View>
317
+ <View
318
+ style={
319
+ {
320
+ "alignItems": "center",
321
+ "flexDirection": "row",
322
+ "gap": 16,
323
+ }
324
+ }
325
+ >
326
+ <View
327
+ style={
328
+ {
329
+ "width": 150,
330
+ }
331
+ }
332
+ >
333
+ <Text
334
+ style={
335
+ {
336
+ "fontFamily": "GTStandardBold",
337
+ "fontSize": 14,
338
+ "letterSpacing": 0.3,
339
+ "lineHeight": 20,
340
+ }
341
+ }
342
+ suppressHighlighting={true}
343
+ >
344
+ $
345
+ size.48
346
+ </Text>
347
+ </View>
348
+ <View
349
+ style={
350
+ {
351
+ "width": 60,
352
+ }
353
+ }
354
+ >
355
+ <Text
356
+ style={
357
+ {
358
+ "color": "#505050",
359
+ "fontFamily": "GTStandard",
360
+ "fontSize": 14,
361
+ "letterSpacing": 0.3,
362
+ "lineHeight": 20,
363
+ }
364
+ }
365
+ suppressHighlighting={true}
366
+ >
367
+ 48
368
+ px
369
+ </Text>
370
+ </View>
371
+ <View
372
+ style={
373
+ {
374
+ "backgroundColor": "#563B56",
375
+ "borderBottomLeftRadius": 2,
376
+ "borderBottomRightRadius": 2,
377
+ "borderTopLeftRadius": 2,
378
+ "borderTopRightRadius": 2,
379
+ "height": 24,
380
+ "width": 48,
381
+ }
382
+ }
383
+ />
384
+ </View>
385
+ <View
386
+ style={
387
+ {
388
+ "alignItems": "center",
389
+ "flexDirection": "row",
390
+ "gap": 16,
391
+ }
392
+ }
393
+ >
394
+ <View
395
+ style={
396
+ {
397
+ "width": 150,
398
+ }
399
+ }
400
+ >
401
+ <Text
402
+ style={
403
+ {
404
+ "fontFamily": "GTStandardBold",
405
+ "fontSize": 14,
406
+ "letterSpacing": 0.3,
407
+ "lineHeight": 20,
408
+ }
409
+ }
410
+ suppressHighlighting={true}
411
+ >
412
+ $
413
+ size.64
414
+ </Text>
415
+ </View>
416
+ <View
417
+ style={
418
+ {
419
+ "width": 60,
420
+ }
421
+ }
422
+ >
423
+ <Text
424
+ style={
425
+ {
426
+ "color": "#505050",
427
+ "fontFamily": "GTStandard",
428
+ "fontSize": 14,
429
+ "letterSpacing": 0.3,
430
+ "lineHeight": 20,
431
+ }
432
+ }
433
+ suppressHighlighting={true}
434
+ >
435
+ 64
436
+ px
437
+ </Text>
438
+ </View>
439
+ <View
440
+ style={
441
+ {
442
+ "backgroundColor": "#563B56",
443
+ "borderBottomLeftRadius": 2,
444
+ "borderBottomRightRadius": 2,
445
+ "borderTopLeftRadius": 2,
446
+ "borderTopRightRadius": 2,
447
+ "height": 24,
448
+ "width": 64,
449
+ }
450
+ }
451
+ />
452
+ </View>
453
+ <View
454
+ style={
455
+ {
456
+ "alignItems": "center",
457
+ "flexDirection": "row",
458
+ "gap": 16,
459
+ }
460
+ }
461
+ >
462
+ <View
463
+ style={
464
+ {
465
+ "width": 150,
466
+ }
467
+ }
468
+ >
469
+ <Text
470
+ style={
471
+ {
472
+ "fontFamily": "GTStandardBold",
473
+ "fontSize": 14,
474
+ "letterSpacing": 0.3,
475
+ "lineHeight": 20,
476
+ }
477
+ }
478
+ suppressHighlighting={true}
479
+ >
480
+ $
481
+ size.80
482
+ </Text>
483
+ </View>
484
+ <View
485
+ style={
486
+ {
487
+ "width": 60,
488
+ }
489
+ }
490
+ >
491
+ <Text
492
+ style={
493
+ {
494
+ "color": "#505050",
495
+ "fontFamily": "GTStandard",
496
+ "fontSize": 14,
497
+ "letterSpacing": 0.3,
498
+ "lineHeight": 20,
499
+ }
500
+ }
501
+ suppressHighlighting={true}
502
+ >
503
+ 80
504
+ px
505
+ </Text>
506
+ </View>
507
+ <View
508
+ style={
509
+ {
510
+ "backgroundColor": "#563B56",
511
+ "borderBottomLeftRadius": 2,
512
+ "borderBottomRightRadius": 2,
513
+ "borderTopLeftRadius": 2,
514
+ "borderTopRightRadius": 2,
515
+ "height": 24,
516
+ "width": 80,
517
+ }
518
+ }
519
+ />
520
+ </View>
521
+ <View
522
+ style={
523
+ {
524
+ "alignItems": "center",
525
+ "flexDirection": "row",
526
+ "gap": 16,
527
+ }
528
+ }
529
+ >
530
+ <View
531
+ style={
532
+ {
533
+ "width": 150,
534
+ }
535
+ }
536
+ >
537
+ <Text
538
+ style={
539
+ {
540
+ "fontFamily": "GTStandardBold",
541
+ "fontSize": 14,
542
+ "letterSpacing": 0.3,
543
+ "lineHeight": 20,
544
+ }
545
+ }
546
+ suppressHighlighting={true}
547
+ >
548
+ $
549
+ size.96
550
+ </Text>
551
+ </View>
552
+ <View
553
+ style={
554
+ {
555
+ "width": 60,
556
+ }
557
+ }
558
+ >
559
+ <Text
560
+ style={
561
+ {
562
+ "color": "#505050",
563
+ "fontFamily": "GTStandard",
564
+ "fontSize": 14,
565
+ "letterSpacing": 0.3,
566
+ "lineHeight": 20,
567
+ }
568
+ }
569
+ suppressHighlighting={true}
570
+ >
571
+ 96
572
+ px
573
+ </Text>
574
+ </View>
575
+ <View
576
+ style={
577
+ {
578
+ "backgroundColor": "#563B56",
579
+ "borderBottomLeftRadius": 2,
580
+ "borderBottomRightRadius": 2,
581
+ "borderTopLeftRadius": 2,
582
+ "borderTopRightRadius": 2,
583
+ "height": 24,
584
+ "width": 96,
585
+ }
586
+ }
587
+ />
588
+ </View>
589
+ <View
590
+ style={
591
+ {
592
+ "alignItems": "center",
593
+ "flexDirection": "row",
594
+ "gap": 16,
595
+ }
596
+ }
597
+ >
598
+ <View
599
+ style={
600
+ {
601
+ "width": 150,
602
+ }
603
+ }
604
+ >
605
+ <Text
606
+ style={
607
+ {
608
+ "fontFamily": "GTStandardBold",
609
+ "fontSize": 14,
610
+ "letterSpacing": 0.3,
611
+ "lineHeight": 20,
612
+ }
613
+ }
614
+ suppressHighlighting={true}
615
+ >
616
+ $
617
+ size.120
618
+ </Text>
619
+ </View>
620
+ <View
621
+ style={
622
+ {
623
+ "width": 60,
624
+ }
625
+ }
626
+ >
627
+ <Text
628
+ style={
629
+ {
630
+ "color": "#505050",
631
+ "fontFamily": "GTStandard",
632
+ "fontSize": 14,
633
+ "letterSpacing": 0.3,
634
+ "lineHeight": 20,
635
+ }
636
+ }
637
+ suppressHighlighting={true}
638
+ >
639
+ 120
640
+ px
641
+ </Text>
642
+ </View>
643
+ <View
644
+ style={
645
+ {
646
+ "backgroundColor": "#563B56",
647
+ "borderBottomLeftRadius": 2,
648
+ "borderBottomRightRadius": 2,
649
+ "borderTopLeftRadius": 2,
650
+ "borderTopRightRadius": 2,
651
+ "height": 24,
652
+ "width": 120,
653
+ }
654
+ }
655
+ />
656
+ </View>
657
+ <View
658
+ style={
659
+ {
660
+ "alignItems": "center",
661
+ "flexDirection": "row",
662
+ "gap": 16,
663
+ }
664
+ }
665
+ >
666
+ <View
667
+ style={
668
+ {
669
+ "width": 150,
670
+ }
671
+ }
672
+ >
673
+ <Text
674
+ style={
675
+ {
676
+ "fontFamily": "GTStandardBold",
677
+ "fontSize": 14,
678
+ "letterSpacing": 0.3,
679
+ "lineHeight": 20,
680
+ }
681
+ }
682
+ suppressHighlighting={true}
683
+ >
684
+ $
685
+ size.144
686
+ </Text>
687
+ </View>
688
+ <View
689
+ style={
690
+ {
691
+ "width": 60,
692
+ }
693
+ }
694
+ >
695
+ <Text
696
+ style={
697
+ {
698
+ "color": "#505050",
699
+ "fontFamily": "GTStandard",
700
+ "fontSize": 14,
701
+ "letterSpacing": 0.3,
702
+ "lineHeight": 20,
703
+ }
704
+ }
705
+ suppressHighlighting={true}
706
+ >
707
+ 144
708
+ px
709
+ </Text>
710
+ </View>
711
+ <View
712
+ style={
713
+ {
714
+ "backgroundColor": "#563B56",
715
+ "borderBottomLeftRadius": 2,
716
+ "borderBottomRightRadius": 2,
717
+ "borderTopLeftRadius": 2,
718
+ "borderTopRightRadius": 2,
719
+ "height": 24,
720
+ "width": 144,
721
+ }
722
+ }
723
+ />
724
+ </View>
725
+ <View
726
+ style={
727
+ {
728
+ "alignItems": "center",
729
+ "flexDirection": "row",
730
+ "gap": 16,
731
+ }
732
+ }
733
+ >
734
+ <View
735
+ style={
736
+ {
737
+ "width": 150,
738
+ }
739
+ }
740
+ >
741
+ <Text
742
+ style={
743
+ {
744
+ "fontFamily": "GTStandardBold",
745
+ "fontSize": 14,
746
+ "letterSpacing": 0.3,
747
+ "lineHeight": 20,
748
+ }
749
+ }
750
+ suppressHighlighting={true}
751
+ >
752
+ $
753
+ size.176
754
+ </Text>
755
+ </View>
756
+ <View
757
+ style={
758
+ {
759
+ "width": 60,
760
+ }
761
+ }
762
+ >
763
+ <Text
764
+ style={
765
+ {
766
+ "color": "#505050",
767
+ "fontFamily": "GTStandard",
768
+ "fontSize": 14,
769
+ "letterSpacing": 0.3,
770
+ "lineHeight": 20,
771
+ }
772
+ }
773
+ suppressHighlighting={true}
774
+ >
775
+ 176
776
+ px
777
+ </Text>
778
+ </View>
779
+ <View
780
+ style={
781
+ {
782
+ "backgroundColor": "#563B56",
783
+ "borderBottomLeftRadius": 2,
784
+ "borderBottomRightRadius": 2,
785
+ "borderTopLeftRadius": 2,
786
+ "borderTopRightRadius": 2,
787
+ "height": 24,
788
+ "width": 176,
789
+ }
790
+ }
791
+ />
792
+ </View>
793
+ <View
794
+ style={
795
+ {
796
+ "alignItems": "center",
797
+ "flexDirection": "row",
798
+ "gap": 16,
799
+ }
800
+ }
801
+ >
802
+ <View
803
+ style={
804
+ {
805
+ "width": 150,
806
+ }
807
+ }
808
+ >
809
+ <Text
810
+ style={
811
+ {
812
+ "fontFamily": "GTStandardBold",
813
+ "fontSize": 14,
814
+ "letterSpacing": 0.3,
815
+ "lineHeight": 20,
816
+ }
817
+ }
818
+ suppressHighlighting={true}
819
+ >
820
+ $
821
+ size.208
822
+ </Text>
823
+ </View>
824
+ <View
825
+ style={
826
+ {
827
+ "width": 60,
828
+ }
829
+ }
830
+ >
831
+ <Text
832
+ style={
833
+ {
834
+ "color": "#505050",
835
+ "fontFamily": "GTStandard",
836
+ "fontSize": 14,
837
+ "letterSpacing": 0.3,
838
+ "lineHeight": 20,
839
+ }
840
+ }
841
+ suppressHighlighting={true}
842
+ >
843
+ 208
844
+ px
845
+ </Text>
846
+ </View>
847
+ <View
848
+ style={
849
+ {
850
+ "backgroundColor": "#563B56",
851
+ "borderBottomLeftRadius": 2,
852
+ "borderBottomRightRadius": 2,
853
+ "borderTopLeftRadius": 2,
854
+ "borderTopRightRadius": 2,
855
+ "height": 24,
856
+ "width": 208,
857
+ }
858
+ }
859
+ />
860
+ </View>
861
+ </View>
862
+ </View>
863
+ </RNCSafeAreaProvider>
864
+ `;