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