@obolnetwork/obol-ui 1.0.1

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 (52) hide show
  1. package/README.md +34 -0
  2. package/dist/components/atoms/Box/Box.d.ts +472 -0
  3. package/dist/components/atoms/Button/Button.d.ts +495 -0
  4. package/dist/components/atoms/Link/Link.d.ts +493 -0
  5. package/dist/components/atoms/LoadingButton/LoadingButton.d.ts +8 -0
  6. package/dist/components/atoms/Spin/Spin.d.ts +476 -0
  7. package/dist/components/atoms/SvgIcon/SvgIcon.d.ts +480 -0
  8. package/dist/components/atoms/Tabs/Tabs.d.ts +1890 -0
  9. package/dist/components/atoms/Text/Text.d.ts +503 -0
  10. package/dist/components/atoms/index.d.ts +7 -0
  11. package/dist/components/icons/ArrowForward.d.ts +2 -0
  12. package/dist/components/icons/Download.d.ts +2 -0
  13. package/dist/components/icons/OpenInNew.d.ts +2 -0
  14. package/dist/components/icons/index.d.ts +11 -0
  15. package/dist/components/icons/static-icons/CodeIcon.d.ts +1 -0
  16. package/dist/components/icons/static-icons/MenuIcon.d.ts +1 -0
  17. package/dist/components/icons/static-icons/PublicGoodIcon.d.ts +1 -0
  18. package/dist/components/icons/static-icons/TrustMinimisedIcon.d.ts +1 -0
  19. package/dist/components/icons/static-icons/obol/circle/ObolDarkCircle.d.ts +1 -0
  20. package/dist/components/icons/static-icons/obol/circle/ObolLightCircle.d.ts +1 -0
  21. package/dist/components/icons/static-icons/obol/circle/index.d.ts +2 -0
  22. package/dist/components/icons/static-icons/obol/horizontal/ObolDarkBgH.d.ts +1 -0
  23. package/dist/components/icons/static-icons/obol/horizontal/ObolLightBgH.d.ts +1 -0
  24. package/dist/components/icons/static-icons/obol/horizontal/ObolSolidDarkBgH.d.ts +1 -0
  25. package/dist/components/icons/static-icons/obol/horizontal/ObolSolidLightBgH.d.ts +1 -0
  26. package/dist/components/icons/static-icons/obol/horizontal/index.d.ts +4 -0
  27. package/dist/components/icons/static-icons/obol/mark/ObolDarkBgMark.d.ts +1 -0
  28. package/dist/components/icons/static-icons/obol/mark/ObolLightBgMark.d.ts +1 -0
  29. package/dist/components/icons/static-icons/obol/mark/ObolSolidDarkBgMark.d.ts +1 -0
  30. package/dist/components/icons/static-icons/obol/mark/ObolSolidLightBgMark.d.ts +1 -0
  31. package/dist/components/icons/static-icons/obol/mark/index.d.ts +4 -0
  32. package/dist/components/icons/static-icons/obol/vertical/ObolDarkBgV.d.ts +1 -0
  33. package/dist/components/icons/static-icons/obol/vertical/ObolLightBgV.d.ts +1 -0
  34. package/dist/components/icons/static-icons/obol/vertical/ObolSolidDarkBgV.d.ts +1 -0
  35. package/dist/components/icons/static-icons/obol/vertical/ObolSolidLightBgV.d.ts +1 -0
  36. package/dist/components/icons/static-icons/obol/vertical/index.d.ts +4 -0
  37. package/dist/components/molecules/Card/Card.d.ts +9 -0
  38. package/dist/components/molecules/index.d.ts +1 -0
  39. package/dist/components/organisms/HeroSection/HeroSection.d.ts +14 -0
  40. package/dist/components/organisms/hero-section/hero-section.d.ts +14 -0
  41. package/dist/components/organisms/index.d.ts +1 -0
  42. package/dist/components/utils/color-variants.d.ts +59 -0
  43. package/dist/components/utils/hooks/index.d.ts +1 -0
  44. package/dist/components/utils/hooks/use-media-query.d.ts +10 -0
  45. package/dist/components/utils/styles.d.ts +472 -0
  46. package/dist/components/utils/types.d.ts +13 -0
  47. package/dist/index.d.ts +6 -0
  48. package/dist/index.es.js +933 -0
  49. package/dist/index.js +1002 -0
  50. package/dist/scripts/figma-colors.d.ts +1 -0
  51. package/dist/stitches.config.d.ts +3199 -0
  52. package/package.json +55 -0
@@ -0,0 +1,1890 @@
1
+ /// <reference types="react" />
2
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
3
+ export declare const Tabs: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<TabsPrimitive.TabsProps & import("react").RefAttributes<HTMLDivElement>>, {}, {
4
+ motion: "(prefers-reduced-motion)";
5
+ hover: "(any-hover: hover)";
6
+ dark: "(prefers-color-scheme: dark)";
7
+ light: "(prefers-color-scheme: light)";
8
+ xs: "(max-width: 520px)";
9
+ sm: "(max-width: 900px)";
10
+ md: "(max-width: 1200px)";
11
+ lg: "(max-width: 1800px)";
12
+ }, import("@stitches/react/types/css-util").CSS<{
13
+ motion: "(prefers-reduced-motion)";
14
+ hover: "(any-hover: hover)";
15
+ dark: "(prefers-color-scheme: dark)";
16
+ light: "(prefers-color-scheme: light)";
17
+ xs: "(max-width: 520px)";
18
+ sm: "(max-width: 900px)";
19
+ md: "(max-width: 1200px)";
20
+ lg: "(max-width: 1800px)";
21
+ }, {
22
+ colors: {
23
+ white: string;
24
+ black: string;
25
+ lightBackground: string;
26
+ obolBlue: string;
27
+ primaryBgDefault: string;
28
+ primaryBgDefaultHover: string;
29
+ primaryTextDefault: string;
30
+ secondaryBgDefault: string;
31
+ secondaryBgHover: string;
32
+ grayBgDefault: string;
33
+ gray2BgDefault: string;
34
+ neutralDark: string;
35
+ navButtonBgDefault: string;
36
+ navButtonBgHover: string;
37
+ cardBackgroundDark: string;
38
+ cardBackgroundLight: string;
39
+ textMiddle: string;
40
+ textLight: string;
41
+ textTabHover: string;
42
+ textTabInactive: string;
43
+ textGreenDark: string;
44
+ textGreenLight: string;
45
+ textGreen1: string;
46
+ textGreen2: string;
47
+ textGreen3: string;
48
+ textGreenHover: string;
49
+ textCreateHover: string;
50
+ textGrayHover: string;
51
+ txButton: string;
52
+ obolGreen: string;
53
+ obolGreenHover: string;
54
+ obolGreenLight: string;
55
+ obolDarkDark: string;
56
+ obolDisabled: string;
57
+ linkButtonHover: string;
58
+ coordinate: string;
59
+ coordinateHover: string;
60
+ test: string;
61
+ testHover: string;
62
+ create: string;
63
+ createHover: string;
64
+ light: string;
65
+ body: string;
66
+ muted: string;
67
+ menu: string;
68
+ bg01: string;
69
+ bg02: string;
70
+ bg03: string;
71
+ bg04: string;
72
+ bg05: string;
73
+ };
74
+ space: {
75
+ 1: string;
76
+ 2: string;
77
+ xxxs: string;
78
+ xxs: string;
79
+ xs: string;
80
+ sm: string;
81
+ md: string;
82
+ lg: string;
83
+ xl: string;
84
+ "2xl": string;
85
+ "3xl": string;
86
+ "4xl": string;
87
+ "5xl": string;
88
+ "6xl": string;
89
+ "7xl": string;
90
+ };
91
+ sizes: {
92
+ 1: string;
93
+ 2: string;
94
+ xxxs: string;
95
+ xxs: string;
96
+ xs: string;
97
+ sm: string;
98
+ md: string;
99
+ lg: string;
100
+ xl: string;
101
+ "2xl": string;
102
+ "3xl": string;
103
+ "4xl": string;
104
+ "5xl": string;
105
+ "6xl": string;
106
+ "7xl": string;
107
+ max: string;
108
+ min: string;
109
+ full: string;
110
+ };
111
+ radii: {
112
+ 1: string;
113
+ 2: string;
114
+ 3: string;
115
+ 4: string;
116
+ 5: string;
117
+ round: string;
118
+ pill: string;
119
+ };
120
+ fontSizes: {
121
+ 1: string;
122
+ 2: string;
123
+ 3: string;
124
+ 4: string;
125
+ 5: string;
126
+ 6: string;
127
+ 7: string;
128
+ 8: string;
129
+ 9: string;
130
+ 10: string;
131
+ };
132
+ fontWeights: {
133
+ hairline: number;
134
+ thin: number;
135
+ light: number;
136
+ normal: number;
137
+ medium: number;
138
+ semibold: number;
139
+ bold: number;
140
+ extrabold: number;
141
+ black: number;
142
+ };
143
+ lineHeights: {
144
+ normal: string;
145
+ none: number;
146
+ shorter: number;
147
+ short: number;
148
+ base: number;
149
+ tall: number;
150
+ tall2: number;
151
+ taller: string;
152
+ };
153
+ letterSpacings: {
154
+ tighter: string;
155
+ tight: string;
156
+ normal: string;
157
+ wide: string;
158
+ wider: string;
159
+ widest: string;
160
+ };
161
+ borderWidths: unknown;
162
+ borderStyles: unknown;
163
+ shadows: unknown;
164
+ zIndices: unknown;
165
+ transitions: unknown;
166
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
167
+ p: (value: {
168
+ readonly [$$PropertyValue]: "padding";
169
+ }) => {
170
+ padding: {
171
+ readonly [$$PropertyValue]: "padding";
172
+ };
173
+ };
174
+ pt: (value: {
175
+ readonly [$$PropertyValue]: "paddingTop";
176
+ }) => {
177
+ paddingTop: {
178
+ readonly [$$PropertyValue]: "paddingTop";
179
+ };
180
+ };
181
+ pr: (value: {
182
+ readonly [$$PropertyValue]: "paddingRight";
183
+ }) => {
184
+ paddingRight: {
185
+ readonly [$$PropertyValue]: "paddingRight";
186
+ };
187
+ };
188
+ pb: (value: {
189
+ readonly [$$PropertyValue]: "paddingBottom";
190
+ }) => {
191
+ paddingBottom: {
192
+ readonly [$$PropertyValue]: "paddingBottom";
193
+ };
194
+ };
195
+ pl: (value: {
196
+ readonly [$$PropertyValue]: "paddingLeft";
197
+ }) => {
198
+ paddingLeft: {
199
+ readonly [$$PropertyValue]: "paddingLeft";
200
+ };
201
+ };
202
+ px: (value: {
203
+ readonly [$$PropertyValue]: "paddingLeft";
204
+ }) => {
205
+ paddingLeft: {
206
+ readonly [$$PropertyValue]: "paddingLeft";
207
+ };
208
+ paddingRight: {
209
+ readonly [$$PropertyValue]: "paddingLeft";
210
+ };
211
+ };
212
+ py: (value: {
213
+ readonly [$$PropertyValue]: "paddingTop";
214
+ }) => {
215
+ paddingTop: {
216
+ readonly [$$PropertyValue]: "paddingTop";
217
+ };
218
+ paddingBottom: {
219
+ readonly [$$PropertyValue]: "paddingTop";
220
+ };
221
+ };
222
+ m: (value: {
223
+ readonly [$$PropertyValue]: "margin";
224
+ }) => {
225
+ margin: {
226
+ readonly [$$PropertyValue]: "margin";
227
+ };
228
+ };
229
+ mt: (value: {
230
+ readonly [$$PropertyValue]: "marginTop";
231
+ }) => {
232
+ marginTop: {
233
+ readonly [$$PropertyValue]: "marginTop";
234
+ };
235
+ };
236
+ mr: (value: {
237
+ readonly [$$PropertyValue]: "marginRight";
238
+ }) => {
239
+ marginRight: {
240
+ readonly [$$PropertyValue]: "marginRight";
241
+ };
242
+ };
243
+ mb: (value: {
244
+ readonly [$$PropertyValue]: "marginBottom";
245
+ }) => {
246
+ marginBottom: {
247
+ readonly [$$PropertyValue]: "marginBottom";
248
+ };
249
+ };
250
+ ml: (value: {
251
+ readonly [$$PropertyValue]: "marginLeft";
252
+ }) => {
253
+ marginLeft: {
254
+ readonly [$$PropertyValue]: "marginLeft";
255
+ };
256
+ };
257
+ mx: (value: {
258
+ readonly [$$PropertyValue]: "marginLeft";
259
+ }) => {
260
+ marginLeft: {
261
+ readonly [$$PropertyValue]: "marginLeft";
262
+ };
263
+ marginRight: {
264
+ readonly [$$PropertyValue]: "marginLeft";
265
+ };
266
+ };
267
+ my: (value: {
268
+ readonly [$$PropertyValue]: "marginTop";
269
+ }) => {
270
+ marginTop: {
271
+ readonly [$$PropertyValue]: "marginTop";
272
+ };
273
+ marginBottom: {
274
+ readonly [$$PropertyValue]: "marginTop";
275
+ };
276
+ };
277
+ ta: (value: {
278
+ readonly [$$PropertyValue]: "textAlign";
279
+ }) => {
280
+ textAlign: {
281
+ readonly [$$PropertyValue]: "textAlign";
282
+ };
283
+ };
284
+ fd: (value: {
285
+ readonly [$$PropertyValue]: "flexDirection";
286
+ }) => {
287
+ flexDirection: {
288
+ readonly [$$PropertyValue]: "flexDirection";
289
+ };
290
+ };
291
+ fw: (value: {
292
+ readonly [$$PropertyValue]: "flexWrap";
293
+ }) => {
294
+ flexWrap: {
295
+ readonly [$$PropertyValue]: "flexWrap";
296
+ };
297
+ };
298
+ ai: (value: {
299
+ readonly [$$PropertyValue]: "alignItems";
300
+ }) => {
301
+ alignItems: {
302
+ readonly [$$PropertyValue]: "alignItems";
303
+ };
304
+ };
305
+ ac: (value: {
306
+ readonly [$$PropertyValue]: "alignContent";
307
+ }) => {
308
+ alignContent: {
309
+ readonly [$$PropertyValue]: "alignContent";
310
+ };
311
+ };
312
+ jc: (value: {
313
+ readonly [$$PropertyValue]: "justifyContent";
314
+ }) => {
315
+ justifyContent: {
316
+ readonly [$$PropertyValue]: "justifyContent";
317
+ };
318
+ };
319
+ as: (value: {
320
+ readonly [$$PropertyValue]: "alignSelf";
321
+ }) => {
322
+ alignSelf: {
323
+ readonly [$$PropertyValue]: "alignSelf";
324
+ };
325
+ };
326
+ fg: (value: {
327
+ readonly [$$PropertyValue]: "flexGrow";
328
+ }) => {
329
+ flexGrow: {
330
+ readonly [$$PropertyValue]: "flexGrow";
331
+ };
332
+ };
333
+ fs: (value: {
334
+ readonly [$$PropertyValue]: "flexShrink";
335
+ }) => {
336
+ flexShrink: {
337
+ readonly [$$PropertyValue]: "flexShrink";
338
+ };
339
+ };
340
+ fb: (value: {
341
+ readonly [$$PropertyValue]: "flexBasis";
342
+ }) => {
343
+ flexBasis: {
344
+ readonly [$$PropertyValue]: "flexBasis";
345
+ };
346
+ };
347
+ bc: (value: {
348
+ readonly [$$PropertyValue]: "backgroundColor";
349
+ }) => {
350
+ backgroundColor: {
351
+ readonly [$$PropertyValue]: "backgroundColor";
352
+ };
353
+ };
354
+ br: (value: {
355
+ readonly [$$PropertyValue]: "borderRadius";
356
+ }) => {
357
+ borderRadius: {
358
+ readonly [$$PropertyValue]: "borderRadius";
359
+ };
360
+ };
361
+ btrr: (value: {
362
+ readonly [$$PropertyValue]: "borderTopRightRadius";
363
+ }) => {
364
+ borderTopRightRadius: {
365
+ readonly [$$PropertyValue]: "borderTopRightRadius";
366
+ };
367
+ };
368
+ bbrr: (value: {
369
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
370
+ }) => {
371
+ borderBottomRightRadius: {
372
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
373
+ };
374
+ };
375
+ bblr: (value: {
376
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
377
+ }) => {
378
+ borderBottomLeftRadius: {
379
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
380
+ };
381
+ };
382
+ btlr: (value: {
383
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
384
+ }) => {
385
+ borderTopLeftRadius: {
386
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
387
+ };
388
+ };
389
+ bs: (value: {
390
+ readonly [$$PropertyValue]: "boxShadow";
391
+ }) => {
392
+ boxShadow: {
393
+ readonly [$$PropertyValue]: "boxShadow";
394
+ };
395
+ };
396
+ lh: (value: {
397
+ readonly [$$PropertyValue]: "lineHeight";
398
+ }) => {
399
+ lineHeight: {
400
+ readonly [$$PropertyValue]: "lineHeight";
401
+ };
402
+ };
403
+ ox: (value: {
404
+ readonly [$$PropertyValue]: "overflowX";
405
+ }) => {
406
+ overflowX: {
407
+ readonly [$$PropertyValue]: "overflowX";
408
+ };
409
+ };
410
+ oy: (value: {
411
+ readonly [$$PropertyValue]: "overflowY";
412
+ }) => {
413
+ overflowY: {
414
+ readonly [$$PropertyValue]: "overflowY";
415
+ };
416
+ };
417
+ pe: (value: {
418
+ readonly [$$PropertyValue]: "pointerEvents";
419
+ }) => {
420
+ pointerEvents: {
421
+ readonly [$$PropertyValue]: "pointerEvents";
422
+ };
423
+ };
424
+ us: (value: {
425
+ readonly [$$PropertyValue]: "userSelect";
426
+ }) => {
427
+ WebkitUserSelect: {
428
+ readonly [$$PropertyValue]: "userSelect";
429
+ };
430
+ userSelect: {
431
+ readonly [$$PropertyValue]: "userSelect";
432
+ };
433
+ };
434
+ userSelect: (value: {
435
+ readonly [$$PropertyValue]: "userSelect";
436
+ }) => {
437
+ WebkitUserSelect: {
438
+ readonly [$$PropertyValue]: "userSelect";
439
+ };
440
+ userSelect: {
441
+ readonly [$$PropertyValue]: "userSelect";
442
+ };
443
+ };
444
+ size: (value: {
445
+ readonly [$$PropertyValue]: "width";
446
+ }) => {
447
+ width: {
448
+ readonly [$$PropertyValue]: "width";
449
+ };
450
+ height: {
451
+ readonly [$$PropertyValue]: "width";
452
+ };
453
+ };
454
+ appearance: (value: {
455
+ readonly [$$PropertyValue]: "appearance";
456
+ }) => {
457
+ WebkitAppearance: {
458
+ readonly [$$PropertyValue]: "appearance";
459
+ };
460
+ appearance: {
461
+ readonly [$$PropertyValue]: "appearance";
462
+ };
463
+ };
464
+ backgroundClip: (value: {
465
+ readonly [$$PropertyValue]: "backgroundClip";
466
+ }) => {
467
+ WebkitBackgroundClip: {
468
+ readonly [$$PropertyValue]: "backgroundClip";
469
+ };
470
+ backgroundClip: {
471
+ readonly [$$PropertyValue]: "backgroundClip";
472
+ };
473
+ };
474
+ }>>;
475
+ export declare const TabsList: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<TabsPrimitive.TabsListProps & import("react").RefAttributes<HTMLDivElement>>, {}, {
476
+ motion: "(prefers-reduced-motion)";
477
+ hover: "(any-hover: hover)";
478
+ dark: "(prefers-color-scheme: dark)";
479
+ light: "(prefers-color-scheme: light)";
480
+ xs: "(max-width: 520px)";
481
+ sm: "(max-width: 900px)";
482
+ md: "(max-width: 1200px)";
483
+ lg: "(max-width: 1800px)";
484
+ }, import("@stitches/react/types/css-util").CSS<{
485
+ motion: "(prefers-reduced-motion)";
486
+ hover: "(any-hover: hover)";
487
+ dark: "(prefers-color-scheme: dark)";
488
+ light: "(prefers-color-scheme: light)";
489
+ xs: "(max-width: 520px)";
490
+ sm: "(max-width: 900px)";
491
+ md: "(max-width: 1200px)";
492
+ lg: "(max-width: 1800px)";
493
+ }, {
494
+ colors: {
495
+ white: string;
496
+ black: string;
497
+ lightBackground: string;
498
+ obolBlue: string;
499
+ primaryBgDefault: string;
500
+ primaryBgDefaultHover: string;
501
+ primaryTextDefault: string;
502
+ secondaryBgDefault: string;
503
+ secondaryBgHover: string;
504
+ grayBgDefault: string;
505
+ gray2BgDefault: string;
506
+ neutralDark: string;
507
+ navButtonBgDefault: string;
508
+ navButtonBgHover: string;
509
+ cardBackgroundDark: string;
510
+ cardBackgroundLight: string;
511
+ textMiddle: string;
512
+ textLight: string;
513
+ textTabHover: string;
514
+ textTabInactive: string;
515
+ textGreenDark: string;
516
+ textGreenLight: string;
517
+ textGreen1: string;
518
+ textGreen2: string;
519
+ textGreen3: string;
520
+ textGreenHover: string;
521
+ textCreateHover: string;
522
+ textGrayHover: string;
523
+ txButton: string;
524
+ obolGreen: string;
525
+ obolGreenHover: string;
526
+ obolGreenLight: string;
527
+ obolDarkDark: string;
528
+ obolDisabled: string;
529
+ linkButtonHover: string;
530
+ coordinate: string;
531
+ coordinateHover: string;
532
+ test: string;
533
+ testHover: string;
534
+ create: string;
535
+ createHover: string;
536
+ light: string;
537
+ body: string;
538
+ muted: string;
539
+ menu: string;
540
+ bg01: string;
541
+ bg02: string;
542
+ bg03: string;
543
+ bg04: string;
544
+ bg05: string;
545
+ };
546
+ space: {
547
+ 1: string;
548
+ 2: string;
549
+ xxxs: string;
550
+ xxs: string;
551
+ xs: string;
552
+ sm: string;
553
+ md: string;
554
+ lg: string;
555
+ xl: string;
556
+ "2xl": string;
557
+ "3xl": string;
558
+ "4xl": string;
559
+ "5xl": string;
560
+ "6xl": string;
561
+ "7xl": string;
562
+ };
563
+ sizes: {
564
+ 1: string;
565
+ 2: string;
566
+ xxxs: string;
567
+ xxs: string;
568
+ xs: string;
569
+ sm: string;
570
+ md: string;
571
+ lg: string;
572
+ xl: string;
573
+ "2xl": string;
574
+ "3xl": string;
575
+ "4xl": string;
576
+ "5xl": string;
577
+ "6xl": string;
578
+ "7xl": string;
579
+ max: string;
580
+ min: string;
581
+ full: string;
582
+ };
583
+ radii: {
584
+ 1: string;
585
+ 2: string;
586
+ 3: string;
587
+ 4: string;
588
+ 5: string;
589
+ round: string;
590
+ pill: string;
591
+ };
592
+ fontSizes: {
593
+ 1: string;
594
+ 2: string;
595
+ 3: string;
596
+ 4: string;
597
+ 5: string;
598
+ 6: string;
599
+ 7: string;
600
+ 8: string;
601
+ 9: string;
602
+ 10: string;
603
+ };
604
+ fontWeights: {
605
+ hairline: number;
606
+ thin: number;
607
+ light: number;
608
+ normal: number;
609
+ medium: number;
610
+ semibold: number;
611
+ bold: number;
612
+ extrabold: number;
613
+ black: number;
614
+ };
615
+ lineHeights: {
616
+ normal: string;
617
+ none: number;
618
+ shorter: number;
619
+ short: number;
620
+ base: number;
621
+ tall: number;
622
+ tall2: number;
623
+ taller: string;
624
+ };
625
+ letterSpacings: {
626
+ tighter: string;
627
+ tight: string;
628
+ normal: string;
629
+ wide: string;
630
+ wider: string;
631
+ widest: string;
632
+ };
633
+ borderWidths: unknown;
634
+ borderStyles: unknown;
635
+ shadows: unknown;
636
+ zIndices: unknown;
637
+ transitions: unknown;
638
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
639
+ p: (value: {
640
+ readonly [$$PropertyValue]: "padding";
641
+ }) => {
642
+ padding: {
643
+ readonly [$$PropertyValue]: "padding";
644
+ };
645
+ };
646
+ pt: (value: {
647
+ readonly [$$PropertyValue]: "paddingTop";
648
+ }) => {
649
+ paddingTop: {
650
+ readonly [$$PropertyValue]: "paddingTop";
651
+ };
652
+ };
653
+ pr: (value: {
654
+ readonly [$$PropertyValue]: "paddingRight";
655
+ }) => {
656
+ paddingRight: {
657
+ readonly [$$PropertyValue]: "paddingRight";
658
+ };
659
+ };
660
+ pb: (value: {
661
+ readonly [$$PropertyValue]: "paddingBottom";
662
+ }) => {
663
+ paddingBottom: {
664
+ readonly [$$PropertyValue]: "paddingBottom";
665
+ };
666
+ };
667
+ pl: (value: {
668
+ readonly [$$PropertyValue]: "paddingLeft";
669
+ }) => {
670
+ paddingLeft: {
671
+ readonly [$$PropertyValue]: "paddingLeft";
672
+ };
673
+ };
674
+ px: (value: {
675
+ readonly [$$PropertyValue]: "paddingLeft";
676
+ }) => {
677
+ paddingLeft: {
678
+ readonly [$$PropertyValue]: "paddingLeft";
679
+ };
680
+ paddingRight: {
681
+ readonly [$$PropertyValue]: "paddingLeft";
682
+ };
683
+ };
684
+ py: (value: {
685
+ readonly [$$PropertyValue]: "paddingTop";
686
+ }) => {
687
+ paddingTop: {
688
+ readonly [$$PropertyValue]: "paddingTop";
689
+ };
690
+ paddingBottom: {
691
+ readonly [$$PropertyValue]: "paddingTop";
692
+ };
693
+ };
694
+ m: (value: {
695
+ readonly [$$PropertyValue]: "margin";
696
+ }) => {
697
+ margin: {
698
+ readonly [$$PropertyValue]: "margin";
699
+ };
700
+ };
701
+ mt: (value: {
702
+ readonly [$$PropertyValue]: "marginTop";
703
+ }) => {
704
+ marginTop: {
705
+ readonly [$$PropertyValue]: "marginTop";
706
+ };
707
+ };
708
+ mr: (value: {
709
+ readonly [$$PropertyValue]: "marginRight";
710
+ }) => {
711
+ marginRight: {
712
+ readonly [$$PropertyValue]: "marginRight";
713
+ };
714
+ };
715
+ mb: (value: {
716
+ readonly [$$PropertyValue]: "marginBottom";
717
+ }) => {
718
+ marginBottom: {
719
+ readonly [$$PropertyValue]: "marginBottom";
720
+ };
721
+ };
722
+ ml: (value: {
723
+ readonly [$$PropertyValue]: "marginLeft";
724
+ }) => {
725
+ marginLeft: {
726
+ readonly [$$PropertyValue]: "marginLeft";
727
+ };
728
+ };
729
+ mx: (value: {
730
+ readonly [$$PropertyValue]: "marginLeft";
731
+ }) => {
732
+ marginLeft: {
733
+ readonly [$$PropertyValue]: "marginLeft";
734
+ };
735
+ marginRight: {
736
+ readonly [$$PropertyValue]: "marginLeft";
737
+ };
738
+ };
739
+ my: (value: {
740
+ readonly [$$PropertyValue]: "marginTop";
741
+ }) => {
742
+ marginTop: {
743
+ readonly [$$PropertyValue]: "marginTop";
744
+ };
745
+ marginBottom: {
746
+ readonly [$$PropertyValue]: "marginTop";
747
+ };
748
+ };
749
+ ta: (value: {
750
+ readonly [$$PropertyValue]: "textAlign";
751
+ }) => {
752
+ textAlign: {
753
+ readonly [$$PropertyValue]: "textAlign";
754
+ };
755
+ };
756
+ fd: (value: {
757
+ readonly [$$PropertyValue]: "flexDirection";
758
+ }) => {
759
+ flexDirection: {
760
+ readonly [$$PropertyValue]: "flexDirection";
761
+ };
762
+ };
763
+ fw: (value: {
764
+ readonly [$$PropertyValue]: "flexWrap";
765
+ }) => {
766
+ flexWrap: {
767
+ readonly [$$PropertyValue]: "flexWrap";
768
+ };
769
+ };
770
+ ai: (value: {
771
+ readonly [$$PropertyValue]: "alignItems";
772
+ }) => {
773
+ alignItems: {
774
+ readonly [$$PropertyValue]: "alignItems";
775
+ };
776
+ };
777
+ ac: (value: {
778
+ readonly [$$PropertyValue]: "alignContent";
779
+ }) => {
780
+ alignContent: {
781
+ readonly [$$PropertyValue]: "alignContent";
782
+ };
783
+ };
784
+ jc: (value: {
785
+ readonly [$$PropertyValue]: "justifyContent";
786
+ }) => {
787
+ justifyContent: {
788
+ readonly [$$PropertyValue]: "justifyContent";
789
+ };
790
+ };
791
+ as: (value: {
792
+ readonly [$$PropertyValue]: "alignSelf";
793
+ }) => {
794
+ alignSelf: {
795
+ readonly [$$PropertyValue]: "alignSelf";
796
+ };
797
+ };
798
+ fg: (value: {
799
+ readonly [$$PropertyValue]: "flexGrow";
800
+ }) => {
801
+ flexGrow: {
802
+ readonly [$$PropertyValue]: "flexGrow";
803
+ };
804
+ };
805
+ fs: (value: {
806
+ readonly [$$PropertyValue]: "flexShrink";
807
+ }) => {
808
+ flexShrink: {
809
+ readonly [$$PropertyValue]: "flexShrink";
810
+ };
811
+ };
812
+ fb: (value: {
813
+ readonly [$$PropertyValue]: "flexBasis";
814
+ }) => {
815
+ flexBasis: {
816
+ readonly [$$PropertyValue]: "flexBasis";
817
+ };
818
+ };
819
+ bc: (value: {
820
+ readonly [$$PropertyValue]: "backgroundColor";
821
+ }) => {
822
+ backgroundColor: {
823
+ readonly [$$PropertyValue]: "backgroundColor";
824
+ };
825
+ };
826
+ br: (value: {
827
+ readonly [$$PropertyValue]: "borderRadius";
828
+ }) => {
829
+ borderRadius: {
830
+ readonly [$$PropertyValue]: "borderRadius";
831
+ };
832
+ };
833
+ btrr: (value: {
834
+ readonly [$$PropertyValue]: "borderTopRightRadius";
835
+ }) => {
836
+ borderTopRightRadius: {
837
+ readonly [$$PropertyValue]: "borderTopRightRadius";
838
+ };
839
+ };
840
+ bbrr: (value: {
841
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
842
+ }) => {
843
+ borderBottomRightRadius: {
844
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
845
+ };
846
+ };
847
+ bblr: (value: {
848
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
849
+ }) => {
850
+ borderBottomLeftRadius: {
851
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
852
+ };
853
+ };
854
+ btlr: (value: {
855
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
856
+ }) => {
857
+ borderTopLeftRadius: {
858
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
859
+ };
860
+ };
861
+ bs: (value: {
862
+ readonly [$$PropertyValue]: "boxShadow";
863
+ }) => {
864
+ boxShadow: {
865
+ readonly [$$PropertyValue]: "boxShadow";
866
+ };
867
+ };
868
+ lh: (value: {
869
+ readonly [$$PropertyValue]: "lineHeight";
870
+ }) => {
871
+ lineHeight: {
872
+ readonly [$$PropertyValue]: "lineHeight";
873
+ };
874
+ };
875
+ ox: (value: {
876
+ readonly [$$PropertyValue]: "overflowX";
877
+ }) => {
878
+ overflowX: {
879
+ readonly [$$PropertyValue]: "overflowX";
880
+ };
881
+ };
882
+ oy: (value: {
883
+ readonly [$$PropertyValue]: "overflowY";
884
+ }) => {
885
+ overflowY: {
886
+ readonly [$$PropertyValue]: "overflowY";
887
+ };
888
+ };
889
+ pe: (value: {
890
+ readonly [$$PropertyValue]: "pointerEvents";
891
+ }) => {
892
+ pointerEvents: {
893
+ readonly [$$PropertyValue]: "pointerEvents";
894
+ };
895
+ };
896
+ us: (value: {
897
+ readonly [$$PropertyValue]: "userSelect";
898
+ }) => {
899
+ WebkitUserSelect: {
900
+ readonly [$$PropertyValue]: "userSelect";
901
+ };
902
+ userSelect: {
903
+ readonly [$$PropertyValue]: "userSelect";
904
+ };
905
+ };
906
+ userSelect: (value: {
907
+ readonly [$$PropertyValue]: "userSelect";
908
+ }) => {
909
+ WebkitUserSelect: {
910
+ readonly [$$PropertyValue]: "userSelect";
911
+ };
912
+ userSelect: {
913
+ readonly [$$PropertyValue]: "userSelect";
914
+ };
915
+ };
916
+ size: (value: {
917
+ readonly [$$PropertyValue]: "width";
918
+ }) => {
919
+ width: {
920
+ readonly [$$PropertyValue]: "width";
921
+ };
922
+ height: {
923
+ readonly [$$PropertyValue]: "width";
924
+ };
925
+ };
926
+ appearance: (value: {
927
+ readonly [$$PropertyValue]: "appearance";
928
+ }) => {
929
+ WebkitAppearance: {
930
+ readonly [$$PropertyValue]: "appearance";
931
+ };
932
+ appearance: {
933
+ readonly [$$PropertyValue]: "appearance";
934
+ };
935
+ };
936
+ backgroundClip: (value: {
937
+ readonly [$$PropertyValue]: "backgroundClip";
938
+ }) => {
939
+ WebkitBackgroundClip: {
940
+ readonly [$$PropertyValue]: "backgroundClip";
941
+ };
942
+ backgroundClip: {
943
+ readonly [$$PropertyValue]: "backgroundClip";
944
+ };
945
+ };
946
+ }>>;
947
+ export declare const TabsTrigger: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<TabsPrimitive.TabsTriggerProps & import("react").RefAttributes<HTMLButtonElement>>, {}, {
948
+ motion: "(prefers-reduced-motion)";
949
+ hover: "(any-hover: hover)";
950
+ dark: "(prefers-color-scheme: dark)";
951
+ light: "(prefers-color-scheme: light)";
952
+ xs: "(max-width: 520px)";
953
+ sm: "(max-width: 900px)";
954
+ md: "(max-width: 1200px)";
955
+ lg: "(max-width: 1800px)";
956
+ }, import("@stitches/react/types/css-util").CSS<{
957
+ motion: "(prefers-reduced-motion)";
958
+ hover: "(any-hover: hover)";
959
+ dark: "(prefers-color-scheme: dark)";
960
+ light: "(prefers-color-scheme: light)";
961
+ xs: "(max-width: 520px)";
962
+ sm: "(max-width: 900px)";
963
+ md: "(max-width: 1200px)";
964
+ lg: "(max-width: 1800px)";
965
+ }, {
966
+ colors: {
967
+ white: string;
968
+ black: string;
969
+ lightBackground: string;
970
+ obolBlue: string;
971
+ primaryBgDefault: string;
972
+ primaryBgDefaultHover: string;
973
+ primaryTextDefault: string;
974
+ secondaryBgDefault: string;
975
+ secondaryBgHover: string;
976
+ grayBgDefault: string;
977
+ gray2BgDefault: string;
978
+ neutralDark: string;
979
+ navButtonBgDefault: string;
980
+ navButtonBgHover: string;
981
+ cardBackgroundDark: string;
982
+ cardBackgroundLight: string;
983
+ textMiddle: string;
984
+ textLight: string;
985
+ textTabHover: string;
986
+ textTabInactive: string;
987
+ textGreenDark: string;
988
+ textGreenLight: string;
989
+ textGreen1: string;
990
+ textGreen2: string;
991
+ textGreen3: string;
992
+ textGreenHover: string;
993
+ textCreateHover: string;
994
+ textGrayHover: string;
995
+ txButton: string;
996
+ obolGreen: string;
997
+ obolGreenHover: string;
998
+ obolGreenLight: string;
999
+ obolDarkDark: string;
1000
+ obolDisabled: string;
1001
+ linkButtonHover: string;
1002
+ coordinate: string;
1003
+ coordinateHover: string;
1004
+ test: string;
1005
+ testHover: string;
1006
+ create: string;
1007
+ createHover: string;
1008
+ light: string;
1009
+ body: string;
1010
+ muted: string;
1011
+ menu: string;
1012
+ bg01: string;
1013
+ bg02: string;
1014
+ bg03: string;
1015
+ bg04: string;
1016
+ bg05: string;
1017
+ };
1018
+ space: {
1019
+ 1: string;
1020
+ 2: string;
1021
+ xxxs: string;
1022
+ xxs: string;
1023
+ xs: string;
1024
+ sm: string;
1025
+ md: string;
1026
+ lg: string;
1027
+ xl: string;
1028
+ "2xl": string;
1029
+ "3xl": string;
1030
+ "4xl": string;
1031
+ "5xl": string;
1032
+ "6xl": string;
1033
+ "7xl": string;
1034
+ };
1035
+ sizes: {
1036
+ 1: string;
1037
+ 2: string;
1038
+ xxxs: string;
1039
+ xxs: string;
1040
+ xs: string;
1041
+ sm: string;
1042
+ md: string;
1043
+ lg: string;
1044
+ xl: string;
1045
+ "2xl": string;
1046
+ "3xl": string;
1047
+ "4xl": string;
1048
+ "5xl": string;
1049
+ "6xl": string;
1050
+ "7xl": string;
1051
+ max: string;
1052
+ min: string;
1053
+ full: string;
1054
+ };
1055
+ radii: {
1056
+ 1: string;
1057
+ 2: string;
1058
+ 3: string;
1059
+ 4: string;
1060
+ 5: string;
1061
+ round: string;
1062
+ pill: string;
1063
+ };
1064
+ fontSizes: {
1065
+ 1: string;
1066
+ 2: string;
1067
+ 3: string;
1068
+ 4: string;
1069
+ 5: string;
1070
+ 6: string;
1071
+ 7: string;
1072
+ 8: string;
1073
+ 9: string;
1074
+ 10: string;
1075
+ };
1076
+ fontWeights: {
1077
+ hairline: number;
1078
+ thin: number;
1079
+ light: number;
1080
+ normal: number;
1081
+ medium: number;
1082
+ semibold: number;
1083
+ bold: number;
1084
+ extrabold: number;
1085
+ black: number;
1086
+ };
1087
+ lineHeights: {
1088
+ normal: string;
1089
+ none: number;
1090
+ shorter: number;
1091
+ short: number;
1092
+ base: number;
1093
+ tall: number;
1094
+ tall2: number;
1095
+ taller: string;
1096
+ };
1097
+ letterSpacings: {
1098
+ tighter: string;
1099
+ tight: string;
1100
+ normal: string;
1101
+ wide: string;
1102
+ wider: string;
1103
+ widest: string;
1104
+ };
1105
+ borderWidths: unknown;
1106
+ borderStyles: unknown;
1107
+ shadows: unknown;
1108
+ zIndices: unknown;
1109
+ transitions: unknown;
1110
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
1111
+ p: (value: {
1112
+ readonly [$$PropertyValue]: "padding";
1113
+ }) => {
1114
+ padding: {
1115
+ readonly [$$PropertyValue]: "padding";
1116
+ };
1117
+ };
1118
+ pt: (value: {
1119
+ readonly [$$PropertyValue]: "paddingTop";
1120
+ }) => {
1121
+ paddingTop: {
1122
+ readonly [$$PropertyValue]: "paddingTop";
1123
+ };
1124
+ };
1125
+ pr: (value: {
1126
+ readonly [$$PropertyValue]: "paddingRight";
1127
+ }) => {
1128
+ paddingRight: {
1129
+ readonly [$$PropertyValue]: "paddingRight";
1130
+ };
1131
+ };
1132
+ pb: (value: {
1133
+ readonly [$$PropertyValue]: "paddingBottom";
1134
+ }) => {
1135
+ paddingBottom: {
1136
+ readonly [$$PropertyValue]: "paddingBottom";
1137
+ };
1138
+ };
1139
+ pl: (value: {
1140
+ readonly [$$PropertyValue]: "paddingLeft";
1141
+ }) => {
1142
+ paddingLeft: {
1143
+ readonly [$$PropertyValue]: "paddingLeft";
1144
+ };
1145
+ };
1146
+ px: (value: {
1147
+ readonly [$$PropertyValue]: "paddingLeft";
1148
+ }) => {
1149
+ paddingLeft: {
1150
+ readonly [$$PropertyValue]: "paddingLeft";
1151
+ };
1152
+ paddingRight: {
1153
+ readonly [$$PropertyValue]: "paddingLeft";
1154
+ };
1155
+ };
1156
+ py: (value: {
1157
+ readonly [$$PropertyValue]: "paddingTop";
1158
+ }) => {
1159
+ paddingTop: {
1160
+ readonly [$$PropertyValue]: "paddingTop";
1161
+ };
1162
+ paddingBottom: {
1163
+ readonly [$$PropertyValue]: "paddingTop";
1164
+ };
1165
+ };
1166
+ m: (value: {
1167
+ readonly [$$PropertyValue]: "margin";
1168
+ }) => {
1169
+ margin: {
1170
+ readonly [$$PropertyValue]: "margin";
1171
+ };
1172
+ };
1173
+ mt: (value: {
1174
+ readonly [$$PropertyValue]: "marginTop";
1175
+ }) => {
1176
+ marginTop: {
1177
+ readonly [$$PropertyValue]: "marginTop";
1178
+ };
1179
+ };
1180
+ mr: (value: {
1181
+ readonly [$$PropertyValue]: "marginRight";
1182
+ }) => {
1183
+ marginRight: {
1184
+ readonly [$$PropertyValue]: "marginRight";
1185
+ };
1186
+ };
1187
+ mb: (value: {
1188
+ readonly [$$PropertyValue]: "marginBottom";
1189
+ }) => {
1190
+ marginBottom: {
1191
+ readonly [$$PropertyValue]: "marginBottom";
1192
+ };
1193
+ };
1194
+ ml: (value: {
1195
+ readonly [$$PropertyValue]: "marginLeft";
1196
+ }) => {
1197
+ marginLeft: {
1198
+ readonly [$$PropertyValue]: "marginLeft";
1199
+ };
1200
+ };
1201
+ mx: (value: {
1202
+ readonly [$$PropertyValue]: "marginLeft";
1203
+ }) => {
1204
+ marginLeft: {
1205
+ readonly [$$PropertyValue]: "marginLeft";
1206
+ };
1207
+ marginRight: {
1208
+ readonly [$$PropertyValue]: "marginLeft";
1209
+ };
1210
+ };
1211
+ my: (value: {
1212
+ readonly [$$PropertyValue]: "marginTop";
1213
+ }) => {
1214
+ marginTop: {
1215
+ readonly [$$PropertyValue]: "marginTop";
1216
+ };
1217
+ marginBottom: {
1218
+ readonly [$$PropertyValue]: "marginTop";
1219
+ };
1220
+ };
1221
+ ta: (value: {
1222
+ readonly [$$PropertyValue]: "textAlign";
1223
+ }) => {
1224
+ textAlign: {
1225
+ readonly [$$PropertyValue]: "textAlign";
1226
+ };
1227
+ };
1228
+ fd: (value: {
1229
+ readonly [$$PropertyValue]: "flexDirection";
1230
+ }) => {
1231
+ flexDirection: {
1232
+ readonly [$$PropertyValue]: "flexDirection";
1233
+ };
1234
+ };
1235
+ fw: (value: {
1236
+ readonly [$$PropertyValue]: "flexWrap";
1237
+ }) => {
1238
+ flexWrap: {
1239
+ readonly [$$PropertyValue]: "flexWrap";
1240
+ };
1241
+ };
1242
+ ai: (value: {
1243
+ readonly [$$PropertyValue]: "alignItems";
1244
+ }) => {
1245
+ alignItems: {
1246
+ readonly [$$PropertyValue]: "alignItems";
1247
+ };
1248
+ };
1249
+ ac: (value: {
1250
+ readonly [$$PropertyValue]: "alignContent";
1251
+ }) => {
1252
+ alignContent: {
1253
+ readonly [$$PropertyValue]: "alignContent";
1254
+ };
1255
+ };
1256
+ jc: (value: {
1257
+ readonly [$$PropertyValue]: "justifyContent";
1258
+ }) => {
1259
+ justifyContent: {
1260
+ readonly [$$PropertyValue]: "justifyContent";
1261
+ };
1262
+ };
1263
+ as: (value: {
1264
+ readonly [$$PropertyValue]: "alignSelf";
1265
+ }) => {
1266
+ alignSelf: {
1267
+ readonly [$$PropertyValue]: "alignSelf";
1268
+ };
1269
+ };
1270
+ fg: (value: {
1271
+ readonly [$$PropertyValue]: "flexGrow";
1272
+ }) => {
1273
+ flexGrow: {
1274
+ readonly [$$PropertyValue]: "flexGrow";
1275
+ };
1276
+ };
1277
+ fs: (value: {
1278
+ readonly [$$PropertyValue]: "flexShrink";
1279
+ }) => {
1280
+ flexShrink: {
1281
+ readonly [$$PropertyValue]: "flexShrink";
1282
+ };
1283
+ };
1284
+ fb: (value: {
1285
+ readonly [$$PropertyValue]: "flexBasis";
1286
+ }) => {
1287
+ flexBasis: {
1288
+ readonly [$$PropertyValue]: "flexBasis";
1289
+ };
1290
+ };
1291
+ bc: (value: {
1292
+ readonly [$$PropertyValue]: "backgroundColor";
1293
+ }) => {
1294
+ backgroundColor: {
1295
+ readonly [$$PropertyValue]: "backgroundColor";
1296
+ };
1297
+ };
1298
+ br: (value: {
1299
+ readonly [$$PropertyValue]: "borderRadius";
1300
+ }) => {
1301
+ borderRadius: {
1302
+ readonly [$$PropertyValue]: "borderRadius";
1303
+ };
1304
+ };
1305
+ btrr: (value: {
1306
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1307
+ }) => {
1308
+ borderTopRightRadius: {
1309
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1310
+ };
1311
+ };
1312
+ bbrr: (value: {
1313
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1314
+ }) => {
1315
+ borderBottomRightRadius: {
1316
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1317
+ };
1318
+ };
1319
+ bblr: (value: {
1320
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1321
+ }) => {
1322
+ borderBottomLeftRadius: {
1323
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1324
+ };
1325
+ };
1326
+ btlr: (value: {
1327
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1328
+ }) => {
1329
+ borderTopLeftRadius: {
1330
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1331
+ };
1332
+ };
1333
+ bs: (value: {
1334
+ readonly [$$PropertyValue]: "boxShadow";
1335
+ }) => {
1336
+ boxShadow: {
1337
+ readonly [$$PropertyValue]: "boxShadow";
1338
+ };
1339
+ };
1340
+ lh: (value: {
1341
+ readonly [$$PropertyValue]: "lineHeight";
1342
+ }) => {
1343
+ lineHeight: {
1344
+ readonly [$$PropertyValue]: "lineHeight";
1345
+ };
1346
+ };
1347
+ ox: (value: {
1348
+ readonly [$$PropertyValue]: "overflowX";
1349
+ }) => {
1350
+ overflowX: {
1351
+ readonly [$$PropertyValue]: "overflowX";
1352
+ };
1353
+ };
1354
+ oy: (value: {
1355
+ readonly [$$PropertyValue]: "overflowY";
1356
+ }) => {
1357
+ overflowY: {
1358
+ readonly [$$PropertyValue]: "overflowY";
1359
+ };
1360
+ };
1361
+ pe: (value: {
1362
+ readonly [$$PropertyValue]: "pointerEvents";
1363
+ }) => {
1364
+ pointerEvents: {
1365
+ readonly [$$PropertyValue]: "pointerEvents";
1366
+ };
1367
+ };
1368
+ us: (value: {
1369
+ readonly [$$PropertyValue]: "userSelect";
1370
+ }) => {
1371
+ WebkitUserSelect: {
1372
+ readonly [$$PropertyValue]: "userSelect";
1373
+ };
1374
+ userSelect: {
1375
+ readonly [$$PropertyValue]: "userSelect";
1376
+ };
1377
+ };
1378
+ userSelect: (value: {
1379
+ readonly [$$PropertyValue]: "userSelect";
1380
+ }) => {
1381
+ WebkitUserSelect: {
1382
+ readonly [$$PropertyValue]: "userSelect";
1383
+ };
1384
+ userSelect: {
1385
+ readonly [$$PropertyValue]: "userSelect";
1386
+ };
1387
+ };
1388
+ size: (value: {
1389
+ readonly [$$PropertyValue]: "width";
1390
+ }) => {
1391
+ width: {
1392
+ readonly [$$PropertyValue]: "width";
1393
+ };
1394
+ height: {
1395
+ readonly [$$PropertyValue]: "width";
1396
+ };
1397
+ };
1398
+ appearance: (value: {
1399
+ readonly [$$PropertyValue]: "appearance";
1400
+ }) => {
1401
+ WebkitAppearance: {
1402
+ readonly [$$PropertyValue]: "appearance";
1403
+ };
1404
+ appearance: {
1405
+ readonly [$$PropertyValue]: "appearance";
1406
+ };
1407
+ };
1408
+ backgroundClip: (value: {
1409
+ readonly [$$PropertyValue]: "backgroundClip";
1410
+ }) => {
1411
+ WebkitBackgroundClip: {
1412
+ readonly [$$PropertyValue]: "backgroundClip";
1413
+ };
1414
+ backgroundClip: {
1415
+ readonly [$$PropertyValue]: "backgroundClip";
1416
+ };
1417
+ };
1418
+ }>>;
1419
+ export declare const TabsContent: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<TabsPrimitive.TabsContentProps & import("react").RefAttributes<HTMLDivElement>>, {}, {
1420
+ motion: "(prefers-reduced-motion)";
1421
+ hover: "(any-hover: hover)";
1422
+ dark: "(prefers-color-scheme: dark)";
1423
+ light: "(prefers-color-scheme: light)";
1424
+ xs: "(max-width: 520px)";
1425
+ sm: "(max-width: 900px)";
1426
+ md: "(max-width: 1200px)";
1427
+ lg: "(max-width: 1800px)";
1428
+ }, import("@stitches/react/types/css-util").CSS<{
1429
+ motion: "(prefers-reduced-motion)";
1430
+ hover: "(any-hover: hover)";
1431
+ dark: "(prefers-color-scheme: dark)";
1432
+ light: "(prefers-color-scheme: light)";
1433
+ xs: "(max-width: 520px)";
1434
+ sm: "(max-width: 900px)";
1435
+ md: "(max-width: 1200px)";
1436
+ lg: "(max-width: 1800px)";
1437
+ }, {
1438
+ colors: {
1439
+ white: string;
1440
+ black: string;
1441
+ lightBackground: string;
1442
+ obolBlue: string;
1443
+ primaryBgDefault: string;
1444
+ primaryBgDefaultHover: string;
1445
+ primaryTextDefault: string;
1446
+ secondaryBgDefault: string;
1447
+ secondaryBgHover: string;
1448
+ grayBgDefault: string;
1449
+ gray2BgDefault: string;
1450
+ neutralDark: string;
1451
+ navButtonBgDefault: string;
1452
+ navButtonBgHover: string;
1453
+ cardBackgroundDark: string;
1454
+ cardBackgroundLight: string;
1455
+ textMiddle: string;
1456
+ textLight: string;
1457
+ textTabHover: string;
1458
+ textTabInactive: string;
1459
+ textGreenDark: string;
1460
+ textGreenLight: string;
1461
+ textGreen1: string;
1462
+ textGreen2: string;
1463
+ textGreen3: string;
1464
+ textGreenHover: string;
1465
+ textCreateHover: string;
1466
+ textGrayHover: string;
1467
+ txButton: string;
1468
+ obolGreen: string;
1469
+ obolGreenHover: string;
1470
+ obolGreenLight: string;
1471
+ obolDarkDark: string;
1472
+ obolDisabled: string;
1473
+ linkButtonHover: string;
1474
+ coordinate: string;
1475
+ coordinateHover: string;
1476
+ test: string;
1477
+ testHover: string;
1478
+ create: string;
1479
+ createHover: string;
1480
+ light: string;
1481
+ body: string;
1482
+ muted: string;
1483
+ menu: string;
1484
+ bg01: string;
1485
+ bg02: string;
1486
+ bg03: string;
1487
+ bg04: string;
1488
+ bg05: string;
1489
+ };
1490
+ space: {
1491
+ 1: string;
1492
+ 2: string;
1493
+ xxxs: string;
1494
+ xxs: string;
1495
+ xs: string;
1496
+ sm: string;
1497
+ md: string;
1498
+ lg: string;
1499
+ xl: string;
1500
+ "2xl": string;
1501
+ "3xl": string;
1502
+ "4xl": string;
1503
+ "5xl": string;
1504
+ "6xl": string;
1505
+ "7xl": string;
1506
+ };
1507
+ sizes: {
1508
+ 1: string;
1509
+ 2: string;
1510
+ xxxs: string;
1511
+ xxs: string;
1512
+ xs: string;
1513
+ sm: string;
1514
+ md: string;
1515
+ lg: string;
1516
+ xl: string;
1517
+ "2xl": string;
1518
+ "3xl": string;
1519
+ "4xl": string;
1520
+ "5xl": string;
1521
+ "6xl": string;
1522
+ "7xl": string;
1523
+ max: string;
1524
+ min: string;
1525
+ full: string;
1526
+ };
1527
+ radii: {
1528
+ 1: string;
1529
+ 2: string;
1530
+ 3: string;
1531
+ 4: string;
1532
+ 5: string;
1533
+ round: string;
1534
+ pill: string;
1535
+ };
1536
+ fontSizes: {
1537
+ 1: string;
1538
+ 2: string;
1539
+ 3: string;
1540
+ 4: string;
1541
+ 5: string;
1542
+ 6: string;
1543
+ 7: string;
1544
+ 8: string;
1545
+ 9: string;
1546
+ 10: string;
1547
+ };
1548
+ fontWeights: {
1549
+ hairline: number;
1550
+ thin: number;
1551
+ light: number;
1552
+ normal: number;
1553
+ medium: number;
1554
+ semibold: number;
1555
+ bold: number;
1556
+ extrabold: number;
1557
+ black: number;
1558
+ };
1559
+ lineHeights: {
1560
+ normal: string;
1561
+ none: number;
1562
+ shorter: number;
1563
+ short: number;
1564
+ base: number;
1565
+ tall: number;
1566
+ tall2: number;
1567
+ taller: string;
1568
+ };
1569
+ letterSpacings: {
1570
+ tighter: string;
1571
+ tight: string;
1572
+ normal: string;
1573
+ wide: string;
1574
+ wider: string;
1575
+ widest: string;
1576
+ };
1577
+ borderWidths: unknown;
1578
+ borderStyles: unknown;
1579
+ shadows: unknown;
1580
+ zIndices: unknown;
1581
+ transitions: unknown;
1582
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
1583
+ p: (value: {
1584
+ readonly [$$PropertyValue]: "padding";
1585
+ }) => {
1586
+ padding: {
1587
+ readonly [$$PropertyValue]: "padding";
1588
+ };
1589
+ };
1590
+ pt: (value: {
1591
+ readonly [$$PropertyValue]: "paddingTop";
1592
+ }) => {
1593
+ paddingTop: {
1594
+ readonly [$$PropertyValue]: "paddingTop";
1595
+ };
1596
+ };
1597
+ pr: (value: {
1598
+ readonly [$$PropertyValue]: "paddingRight";
1599
+ }) => {
1600
+ paddingRight: {
1601
+ readonly [$$PropertyValue]: "paddingRight";
1602
+ };
1603
+ };
1604
+ pb: (value: {
1605
+ readonly [$$PropertyValue]: "paddingBottom";
1606
+ }) => {
1607
+ paddingBottom: {
1608
+ readonly [$$PropertyValue]: "paddingBottom";
1609
+ };
1610
+ };
1611
+ pl: (value: {
1612
+ readonly [$$PropertyValue]: "paddingLeft";
1613
+ }) => {
1614
+ paddingLeft: {
1615
+ readonly [$$PropertyValue]: "paddingLeft";
1616
+ };
1617
+ };
1618
+ px: (value: {
1619
+ readonly [$$PropertyValue]: "paddingLeft";
1620
+ }) => {
1621
+ paddingLeft: {
1622
+ readonly [$$PropertyValue]: "paddingLeft";
1623
+ };
1624
+ paddingRight: {
1625
+ readonly [$$PropertyValue]: "paddingLeft";
1626
+ };
1627
+ };
1628
+ py: (value: {
1629
+ readonly [$$PropertyValue]: "paddingTop";
1630
+ }) => {
1631
+ paddingTop: {
1632
+ readonly [$$PropertyValue]: "paddingTop";
1633
+ };
1634
+ paddingBottom: {
1635
+ readonly [$$PropertyValue]: "paddingTop";
1636
+ };
1637
+ };
1638
+ m: (value: {
1639
+ readonly [$$PropertyValue]: "margin";
1640
+ }) => {
1641
+ margin: {
1642
+ readonly [$$PropertyValue]: "margin";
1643
+ };
1644
+ };
1645
+ mt: (value: {
1646
+ readonly [$$PropertyValue]: "marginTop";
1647
+ }) => {
1648
+ marginTop: {
1649
+ readonly [$$PropertyValue]: "marginTop";
1650
+ };
1651
+ };
1652
+ mr: (value: {
1653
+ readonly [$$PropertyValue]: "marginRight";
1654
+ }) => {
1655
+ marginRight: {
1656
+ readonly [$$PropertyValue]: "marginRight";
1657
+ };
1658
+ };
1659
+ mb: (value: {
1660
+ readonly [$$PropertyValue]: "marginBottom";
1661
+ }) => {
1662
+ marginBottom: {
1663
+ readonly [$$PropertyValue]: "marginBottom";
1664
+ };
1665
+ };
1666
+ ml: (value: {
1667
+ readonly [$$PropertyValue]: "marginLeft";
1668
+ }) => {
1669
+ marginLeft: {
1670
+ readonly [$$PropertyValue]: "marginLeft";
1671
+ };
1672
+ };
1673
+ mx: (value: {
1674
+ readonly [$$PropertyValue]: "marginLeft";
1675
+ }) => {
1676
+ marginLeft: {
1677
+ readonly [$$PropertyValue]: "marginLeft";
1678
+ };
1679
+ marginRight: {
1680
+ readonly [$$PropertyValue]: "marginLeft";
1681
+ };
1682
+ };
1683
+ my: (value: {
1684
+ readonly [$$PropertyValue]: "marginTop";
1685
+ }) => {
1686
+ marginTop: {
1687
+ readonly [$$PropertyValue]: "marginTop";
1688
+ };
1689
+ marginBottom: {
1690
+ readonly [$$PropertyValue]: "marginTop";
1691
+ };
1692
+ };
1693
+ ta: (value: {
1694
+ readonly [$$PropertyValue]: "textAlign";
1695
+ }) => {
1696
+ textAlign: {
1697
+ readonly [$$PropertyValue]: "textAlign";
1698
+ };
1699
+ };
1700
+ fd: (value: {
1701
+ readonly [$$PropertyValue]: "flexDirection";
1702
+ }) => {
1703
+ flexDirection: {
1704
+ readonly [$$PropertyValue]: "flexDirection";
1705
+ };
1706
+ };
1707
+ fw: (value: {
1708
+ readonly [$$PropertyValue]: "flexWrap";
1709
+ }) => {
1710
+ flexWrap: {
1711
+ readonly [$$PropertyValue]: "flexWrap";
1712
+ };
1713
+ };
1714
+ ai: (value: {
1715
+ readonly [$$PropertyValue]: "alignItems";
1716
+ }) => {
1717
+ alignItems: {
1718
+ readonly [$$PropertyValue]: "alignItems";
1719
+ };
1720
+ };
1721
+ ac: (value: {
1722
+ readonly [$$PropertyValue]: "alignContent";
1723
+ }) => {
1724
+ alignContent: {
1725
+ readonly [$$PropertyValue]: "alignContent";
1726
+ };
1727
+ };
1728
+ jc: (value: {
1729
+ readonly [$$PropertyValue]: "justifyContent";
1730
+ }) => {
1731
+ justifyContent: {
1732
+ readonly [$$PropertyValue]: "justifyContent";
1733
+ };
1734
+ };
1735
+ as: (value: {
1736
+ readonly [$$PropertyValue]: "alignSelf";
1737
+ }) => {
1738
+ alignSelf: {
1739
+ readonly [$$PropertyValue]: "alignSelf";
1740
+ };
1741
+ };
1742
+ fg: (value: {
1743
+ readonly [$$PropertyValue]: "flexGrow";
1744
+ }) => {
1745
+ flexGrow: {
1746
+ readonly [$$PropertyValue]: "flexGrow";
1747
+ };
1748
+ };
1749
+ fs: (value: {
1750
+ readonly [$$PropertyValue]: "flexShrink";
1751
+ }) => {
1752
+ flexShrink: {
1753
+ readonly [$$PropertyValue]: "flexShrink";
1754
+ };
1755
+ };
1756
+ fb: (value: {
1757
+ readonly [$$PropertyValue]: "flexBasis";
1758
+ }) => {
1759
+ flexBasis: {
1760
+ readonly [$$PropertyValue]: "flexBasis";
1761
+ };
1762
+ };
1763
+ bc: (value: {
1764
+ readonly [$$PropertyValue]: "backgroundColor";
1765
+ }) => {
1766
+ backgroundColor: {
1767
+ readonly [$$PropertyValue]: "backgroundColor";
1768
+ };
1769
+ };
1770
+ br: (value: {
1771
+ readonly [$$PropertyValue]: "borderRadius";
1772
+ }) => {
1773
+ borderRadius: {
1774
+ readonly [$$PropertyValue]: "borderRadius";
1775
+ };
1776
+ };
1777
+ btrr: (value: {
1778
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1779
+ }) => {
1780
+ borderTopRightRadius: {
1781
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1782
+ };
1783
+ };
1784
+ bbrr: (value: {
1785
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1786
+ }) => {
1787
+ borderBottomRightRadius: {
1788
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1789
+ };
1790
+ };
1791
+ bblr: (value: {
1792
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1793
+ }) => {
1794
+ borderBottomLeftRadius: {
1795
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1796
+ };
1797
+ };
1798
+ btlr: (value: {
1799
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1800
+ }) => {
1801
+ borderTopLeftRadius: {
1802
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1803
+ };
1804
+ };
1805
+ bs: (value: {
1806
+ readonly [$$PropertyValue]: "boxShadow";
1807
+ }) => {
1808
+ boxShadow: {
1809
+ readonly [$$PropertyValue]: "boxShadow";
1810
+ };
1811
+ };
1812
+ lh: (value: {
1813
+ readonly [$$PropertyValue]: "lineHeight";
1814
+ }) => {
1815
+ lineHeight: {
1816
+ readonly [$$PropertyValue]: "lineHeight";
1817
+ };
1818
+ };
1819
+ ox: (value: {
1820
+ readonly [$$PropertyValue]: "overflowX";
1821
+ }) => {
1822
+ overflowX: {
1823
+ readonly [$$PropertyValue]: "overflowX";
1824
+ };
1825
+ };
1826
+ oy: (value: {
1827
+ readonly [$$PropertyValue]: "overflowY";
1828
+ }) => {
1829
+ overflowY: {
1830
+ readonly [$$PropertyValue]: "overflowY";
1831
+ };
1832
+ };
1833
+ pe: (value: {
1834
+ readonly [$$PropertyValue]: "pointerEvents";
1835
+ }) => {
1836
+ pointerEvents: {
1837
+ readonly [$$PropertyValue]: "pointerEvents";
1838
+ };
1839
+ };
1840
+ us: (value: {
1841
+ readonly [$$PropertyValue]: "userSelect";
1842
+ }) => {
1843
+ WebkitUserSelect: {
1844
+ readonly [$$PropertyValue]: "userSelect";
1845
+ };
1846
+ userSelect: {
1847
+ readonly [$$PropertyValue]: "userSelect";
1848
+ };
1849
+ };
1850
+ userSelect: (value: {
1851
+ readonly [$$PropertyValue]: "userSelect";
1852
+ }) => {
1853
+ WebkitUserSelect: {
1854
+ readonly [$$PropertyValue]: "userSelect";
1855
+ };
1856
+ userSelect: {
1857
+ readonly [$$PropertyValue]: "userSelect";
1858
+ };
1859
+ };
1860
+ size: (value: {
1861
+ readonly [$$PropertyValue]: "width";
1862
+ }) => {
1863
+ width: {
1864
+ readonly [$$PropertyValue]: "width";
1865
+ };
1866
+ height: {
1867
+ readonly [$$PropertyValue]: "width";
1868
+ };
1869
+ };
1870
+ appearance: (value: {
1871
+ readonly [$$PropertyValue]: "appearance";
1872
+ }) => {
1873
+ WebkitAppearance: {
1874
+ readonly [$$PropertyValue]: "appearance";
1875
+ };
1876
+ appearance: {
1877
+ readonly [$$PropertyValue]: "appearance";
1878
+ };
1879
+ };
1880
+ backgroundClip: (value: {
1881
+ readonly [$$PropertyValue]: "backgroundClip";
1882
+ }) => {
1883
+ WebkitBackgroundClip: {
1884
+ readonly [$$PropertyValue]: "backgroundClip";
1885
+ };
1886
+ backgroundClip: {
1887
+ readonly [$$PropertyValue]: "backgroundClip";
1888
+ };
1889
+ };
1890
+ }>>;