@obolnetwork/obol-ui 1.0.75 → 1.0.78

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 (45) hide show
  1. package/dist/components/atoms/Avatar/Avatar.d.ts +975 -0
  2. package/dist/components/atoms/Badge/Badge.d.ts +2 -0
  3. package/dist/components/atoms/Box/Box.d.ts +3 -0
  4. package/dist/components/atoms/Button/Button.d.ts +3 -0
  5. package/dist/components/atoms/Checkbox/Checkbox.d.ts +3 -0
  6. package/dist/components/atoms/Container/Container.d.ts +6 -0
  7. package/dist/components/atoms/Flex/Flex.d.ts +3 -0
  8. package/dist/components/atoms/Grid/Grid.d.ts +3 -0
  9. package/dist/components/atoms/IconButton/IconButton.d.ts +3 -0
  10. package/dist/components/atoms/Image/Image.d.ts +3 -0
  11. package/dist/components/atoms/Link/Link.d.ts +3 -0
  12. package/dist/components/atoms/NavigationMenu/NavigationMenu.d.ts +15 -0
  13. package/dist/components/atoms/Separator/Separator.d.ts +3 -0
  14. package/dist/components/atoms/Spin/Spin.d.ts +4 -1
  15. package/dist/components/atoms/SvgIcon/SvgIcon.d.ts +4 -1
  16. package/dist/components/atoms/Switch/Switch.d.ts +6 -0
  17. package/dist/components/atoms/Text/Text.d.ts +6 -3
  18. package/dist/components/atoms/TextField/TextField.d.ts +12 -0
  19. package/dist/components/atoms/Toggle/Toggle.d.ts +6 -0
  20. package/dist/components/atoms/UnstyledTextField/UnstyledTextField.d.ts +6 -0
  21. package/dist/components/icons/GlowIconBox.d.ts +3 -0
  22. package/dist/components/icons/Planet.d.ts +3 -0
  23. package/dist/components/icons/socials/CopyLinkIcon.d.ts +2 -0
  24. package/dist/components/icons/socials/DiscordIcon.d.ts +2 -0
  25. package/dist/components/icons/socials/LinkedinIcon.d.ts +2 -0
  26. package/dist/components/icons/socials/XIcon.d.ts +2 -0
  27. package/dist/components/molecules/Accordion/Accordion.d.ts +6 -0
  28. package/dist/components/molecules/AdvisoryToggle/AdvisoryToggle.d.ts +6 -0
  29. package/dist/components/molecules/Card/Card.d.ts +12 -0
  30. package/dist/components/molecules/Dialog/Dialog.d.ts +18 -0
  31. package/dist/components/molecules/NotificationCard/NotificationCard.d.ts +6 -0
  32. package/dist/components/molecules/Profile/Profile.d.ts +9 -0
  33. package/dist/components/molecules/RadioGroup/RadioGroup.d.ts +9 -0
  34. package/dist/components/molecules/ResponsiveDialog/ResponsiveDialog.d.ts +6 -0
  35. package/dist/components/molecules/ShareButton/ShareButton.d.ts +4 -0
  36. package/dist/components/molecules/Table/Table.d.ts +1 -0
  37. package/dist/components/molecules/Tabs/Tabs.d.ts +12 -0
  38. package/dist/components/molecules/index.d.ts +2 -0
  39. package/dist/components/utils/color-variants.d.ts +3 -0
  40. package/dist/components/utils/hooks/useOutsideClick.d.ts +2 -0
  41. package/dist/components/utils/styles.d.ts +3 -0
  42. package/dist/index.es.js +1 -1
  43. package/dist/index.js +1 -1
  44. package/dist/stitches.config.d.ts +30 -0
  45. package/package.json +2 -1
@@ -0,0 +1,975 @@
1
+ /// <reference types="react" />
2
+ import * as AvatarPrimitive from "@radix-ui/react-avatar";
3
+ export declare const Avatar: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<AvatarPrimitive.AvatarProps & import("react").RefAttributes<HTMLSpanElement>>, {}, {
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
+ bp1: "(min-width: 520px)";
11
+ bp2: "(min-width: 900px)";
12
+ md: "(max-width: 1200px)";
13
+ lg: "(max-width: 1800px)";
14
+ }, import("@stitches/react/types/css-util").CSS<{
15
+ motion: "(prefers-reduced-motion)";
16
+ hover: "(any-hover: hover)";
17
+ dark: "(prefers-color-scheme: dark)";
18
+ light: "(prefers-color-scheme: light)";
19
+ xs: "(max-width: 520px)";
20
+ sm: "(max-width: 900px)";
21
+ bp1: "(min-width: 520px)";
22
+ bp2: "(min-width: 900px)";
23
+ md: "(max-width: 1200px)";
24
+ lg: "(max-width: 1800px)";
25
+ }, {
26
+ colors: {
27
+ white: string;
28
+ black: string;
29
+ lightBackground: string;
30
+ obolBlue: string;
31
+ primaryBgDefault: string;
32
+ primaryBgDefaultHover: string;
33
+ primaryTextDefault: string;
34
+ secondaryBgDefault: string;
35
+ secondaryBgHover: string;
36
+ grayBgDefault: string;
37
+ gray2BgDefault: string;
38
+ neutralDark: string;
39
+ navButtonBgDefault: string;
40
+ navButtonBgHover: string;
41
+ cardBackgroundDark: string;
42
+ cardBackgroundLight: string;
43
+ gradientGold: string;
44
+ gradientSilver: string;
45
+ gradientBronze: string;
46
+ textMiddle: string;
47
+ textLight: string;
48
+ textLighter: string;
49
+ textTabHover: string;
50
+ textTabInactive: string;
51
+ textGreenDark: string;
52
+ textGreenLight: string;
53
+ textGreen1: string;
54
+ textGreen2: string;
55
+ textGreen3: string;
56
+ textGreenHover: string;
57
+ textCreateHover: string;
58
+ textGrayHover: string;
59
+ txButton: string;
60
+ obolGreen: string;
61
+ obolMidGreen: string;
62
+ obolGreenHover: string;
63
+ obolGreenLight: string;
64
+ obolDarkDark: string;
65
+ obolDisabled: string;
66
+ linkButtonHover: string;
67
+ progressTrackerGreen: string;
68
+ lightGrey: string;
69
+ coordinate: string;
70
+ coordinateHover: string;
71
+ test: string;
72
+ testHover: string;
73
+ create: string;
74
+ createHover: string;
75
+ light: string;
76
+ body: string;
77
+ muted: string;
78
+ menu: string;
79
+ bg01: string;
80
+ bg02: string;
81
+ bg03: string;
82
+ bg04: string;
83
+ bg05: string;
84
+ tooltip: string;
85
+ tooltip2: string;
86
+ };
87
+ space: {
88
+ 1: string;
89
+ 2: string;
90
+ xxxs: string;
91
+ xxs: string;
92
+ xs: string;
93
+ sm: string;
94
+ md: string;
95
+ lg: string;
96
+ xl: string;
97
+ "2xl": string;
98
+ "3xl": string;
99
+ "4xl": string;
100
+ "5xl": string;
101
+ "6xl": string;
102
+ "7xl": string;
103
+ };
104
+ sizes: {
105
+ 1: string;
106
+ 2: string;
107
+ xxxs: string;
108
+ xxs: string;
109
+ xs: string;
110
+ sm: string;
111
+ md: string;
112
+ lg: string;
113
+ xl: string;
114
+ "2xl": string;
115
+ "3xl": string;
116
+ "4xl": string;
117
+ "5xl": string;
118
+ "6xl": string;
119
+ "7xl": string;
120
+ max: string;
121
+ min: string;
122
+ full: string;
123
+ };
124
+ radii: {
125
+ 1: string;
126
+ 2: string;
127
+ 3: string;
128
+ 4: string;
129
+ 5: string;
130
+ round: string;
131
+ pill: string;
132
+ };
133
+ fontSizes: {
134
+ 1: string;
135
+ 2: string;
136
+ 3: string;
137
+ 4: string;
138
+ 5: string;
139
+ 6: string;
140
+ 7: string;
141
+ 8: string;
142
+ 9: string;
143
+ 10: string;
144
+ 11: string;
145
+ };
146
+ fontWeights: {
147
+ hairline: number;
148
+ thin: number;
149
+ light: number;
150
+ normal: number;
151
+ medium: number;
152
+ semibold: number;
153
+ bold: number;
154
+ extrabold: number;
155
+ black: number;
156
+ };
157
+ lineHeights: {
158
+ normal: string;
159
+ none: number;
160
+ shorter: number;
161
+ short: number;
162
+ base: number;
163
+ tall: number;
164
+ tall2: number;
165
+ taller: number;
166
+ };
167
+ letterSpacings: {
168
+ tighter: string;
169
+ tight: string;
170
+ normal: string;
171
+ wide: string;
172
+ wider: string;
173
+ widest: string;
174
+ };
175
+ borderWidths: unknown;
176
+ borderStyles: unknown;
177
+ shadows: unknown;
178
+ zIndices: unknown;
179
+ transitions: unknown;
180
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
181
+ p: (value: {
182
+ readonly [$$PropertyValue]: "padding";
183
+ }) => {
184
+ padding: {
185
+ readonly [$$PropertyValue]: "padding";
186
+ };
187
+ };
188
+ pt: (value: {
189
+ readonly [$$PropertyValue]: "paddingTop";
190
+ }) => {
191
+ paddingTop: {
192
+ readonly [$$PropertyValue]: "paddingTop";
193
+ };
194
+ };
195
+ pr: (value: {
196
+ readonly [$$PropertyValue]: "paddingRight";
197
+ }) => {
198
+ paddingRight: {
199
+ readonly [$$PropertyValue]: "paddingRight";
200
+ };
201
+ };
202
+ pb: (value: {
203
+ readonly [$$PropertyValue]: "paddingBottom";
204
+ }) => {
205
+ paddingBottom: {
206
+ readonly [$$PropertyValue]: "paddingBottom";
207
+ };
208
+ };
209
+ pl: (value: {
210
+ readonly [$$PropertyValue]: "paddingLeft";
211
+ }) => {
212
+ paddingLeft: {
213
+ readonly [$$PropertyValue]: "paddingLeft";
214
+ };
215
+ };
216
+ px: (value: {
217
+ readonly [$$PropertyValue]: "paddingLeft";
218
+ }) => {
219
+ paddingLeft: {
220
+ readonly [$$PropertyValue]: "paddingLeft";
221
+ };
222
+ paddingRight: {
223
+ readonly [$$PropertyValue]: "paddingLeft";
224
+ };
225
+ };
226
+ py: (value: {
227
+ readonly [$$PropertyValue]: "paddingTop";
228
+ }) => {
229
+ paddingTop: {
230
+ readonly [$$PropertyValue]: "paddingTop";
231
+ };
232
+ paddingBottom: {
233
+ readonly [$$PropertyValue]: "paddingTop";
234
+ };
235
+ };
236
+ m: (value: {
237
+ readonly [$$PropertyValue]: "margin";
238
+ }) => {
239
+ margin: {
240
+ readonly [$$PropertyValue]: "margin";
241
+ };
242
+ };
243
+ mt: (value: {
244
+ readonly [$$PropertyValue]: "marginTop";
245
+ }) => {
246
+ marginTop: {
247
+ readonly [$$PropertyValue]: "marginTop";
248
+ };
249
+ };
250
+ mr: (value: {
251
+ readonly [$$PropertyValue]: "marginRight";
252
+ }) => {
253
+ marginRight: {
254
+ readonly [$$PropertyValue]: "marginRight";
255
+ };
256
+ };
257
+ mb: (value: {
258
+ readonly [$$PropertyValue]: "marginBottom";
259
+ }) => {
260
+ marginBottom: {
261
+ readonly [$$PropertyValue]: "marginBottom";
262
+ };
263
+ };
264
+ ml: (value: {
265
+ readonly [$$PropertyValue]: "marginLeft";
266
+ }) => {
267
+ marginLeft: {
268
+ readonly [$$PropertyValue]: "marginLeft";
269
+ };
270
+ };
271
+ mx: (value: {
272
+ readonly [$$PropertyValue]: "marginLeft";
273
+ }) => {
274
+ marginLeft: {
275
+ readonly [$$PropertyValue]: "marginLeft";
276
+ };
277
+ marginRight: {
278
+ readonly [$$PropertyValue]: "marginLeft";
279
+ };
280
+ };
281
+ my: (value: {
282
+ readonly [$$PropertyValue]: "marginTop";
283
+ }) => {
284
+ marginTop: {
285
+ readonly [$$PropertyValue]: "marginTop";
286
+ };
287
+ marginBottom: {
288
+ readonly [$$PropertyValue]: "marginTop";
289
+ };
290
+ };
291
+ ta: (value: {
292
+ readonly [$$PropertyValue]: "textAlign";
293
+ }) => {
294
+ textAlign: {
295
+ readonly [$$PropertyValue]: "textAlign";
296
+ };
297
+ };
298
+ fd: (value: {
299
+ readonly [$$PropertyValue]: "flexDirection";
300
+ }) => {
301
+ flexDirection: {
302
+ readonly [$$PropertyValue]: "flexDirection";
303
+ };
304
+ };
305
+ fw: (value: {
306
+ readonly [$$PropertyValue]: "flexWrap";
307
+ }) => {
308
+ flexWrap: {
309
+ readonly [$$PropertyValue]: "flexWrap";
310
+ };
311
+ };
312
+ ai: (value: {
313
+ readonly [$$PropertyValue]: "alignItems";
314
+ }) => {
315
+ alignItems: {
316
+ readonly [$$PropertyValue]: "alignItems";
317
+ };
318
+ };
319
+ ac: (value: {
320
+ readonly [$$PropertyValue]: "alignContent";
321
+ }) => {
322
+ alignContent: {
323
+ readonly [$$PropertyValue]: "alignContent";
324
+ };
325
+ };
326
+ jc: (value: {
327
+ readonly [$$PropertyValue]: "justifyContent";
328
+ }) => {
329
+ justifyContent: {
330
+ readonly [$$PropertyValue]: "justifyContent";
331
+ };
332
+ };
333
+ as: (value: {
334
+ readonly [$$PropertyValue]: "alignSelf";
335
+ }) => {
336
+ alignSelf: {
337
+ readonly [$$PropertyValue]: "alignSelf";
338
+ };
339
+ };
340
+ fg: (value: {
341
+ readonly [$$PropertyValue]: "flexGrow";
342
+ }) => {
343
+ flexGrow: {
344
+ readonly [$$PropertyValue]: "flexGrow";
345
+ };
346
+ };
347
+ fs: (value: {
348
+ readonly [$$PropertyValue]: "flexShrink";
349
+ }) => {
350
+ flexShrink: {
351
+ readonly [$$PropertyValue]: "flexShrink";
352
+ };
353
+ };
354
+ fb: (value: {
355
+ readonly [$$PropertyValue]: "flexBasis";
356
+ }) => {
357
+ flexBasis: {
358
+ readonly [$$PropertyValue]: "flexBasis";
359
+ };
360
+ };
361
+ bc: (value: {
362
+ readonly [$$PropertyValue]: "backgroundColor";
363
+ }) => {
364
+ backgroundColor: {
365
+ readonly [$$PropertyValue]: "backgroundColor";
366
+ };
367
+ };
368
+ br: (value: {
369
+ readonly [$$PropertyValue]: "borderRadius";
370
+ }) => {
371
+ borderRadius: {
372
+ readonly [$$PropertyValue]: "borderRadius";
373
+ };
374
+ };
375
+ btrr: (value: {
376
+ readonly [$$PropertyValue]: "borderTopRightRadius";
377
+ }) => {
378
+ borderTopRightRadius: {
379
+ readonly [$$PropertyValue]: "borderTopRightRadius";
380
+ };
381
+ };
382
+ bbrr: (value: {
383
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
384
+ }) => {
385
+ borderBottomRightRadius: {
386
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
387
+ };
388
+ };
389
+ bblr: (value: {
390
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
391
+ }) => {
392
+ borderBottomLeftRadius: {
393
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
394
+ };
395
+ };
396
+ btlr: (value: {
397
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
398
+ }) => {
399
+ borderTopLeftRadius: {
400
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
401
+ };
402
+ };
403
+ bs: (value: {
404
+ readonly [$$PropertyValue]: "boxShadow";
405
+ }) => {
406
+ boxShadow: {
407
+ readonly [$$PropertyValue]: "boxShadow";
408
+ };
409
+ };
410
+ lh: (value: {
411
+ readonly [$$PropertyValue]: "lineHeight";
412
+ }) => {
413
+ lineHeight: {
414
+ readonly [$$PropertyValue]: "lineHeight";
415
+ };
416
+ };
417
+ ox: (value: {
418
+ readonly [$$PropertyValue]: "overflowX";
419
+ }) => {
420
+ overflowX: {
421
+ readonly [$$PropertyValue]: "overflowX";
422
+ };
423
+ };
424
+ oy: (value: {
425
+ readonly [$$PropertyValue]: "overflowY";
426
+ }) => {
427
+ overflowY: {
428
+ readonly [$$PropertyValue]: "overflowY";
429
+ };
430
+ };
431
+ pe: (value: {
432
+ readonly [$$PropertyValue]: "pointerEvents";
433
+ }) => {
434
+ pointerEvents: {
435
+ readonly [$$PropertyValue]: "pointerEvents";
436
+ };
437
+ };
438
+ us: (value: {
439
+ readonly [$$PropertyValue]: "userSelect";
440
+ }) => {
441
+ WebkitUserSelect: {
442
+ readonly [$$PropertyValue]: "userSelect";
443
+ };
444
+ userSelect: {
445
+ readonly [$$PropertyValue]: "userSelect";
446
+ };
447
+ };
448
+ userSelect: (value: {
449
+ readonly [$$PropertyValue]: "userSelect";
450
+ }) => {
451
+ WebkitUserSelect: {
452
+ readonly [$$PropertyValue]: "userSelect";
453
+ };
454
+ userSelect: {
455
+ readonly [$$PropertyValue]: "userSelect";
456
+ };
457
+ };
458
+ size: (value: {
459
+ readonly [$$PropertyValue]: "width";
460
+ }) => {
461
+ width: {
462
+ readonly [$$PropertyValue]: "width";
463
+ };
464
+ height: {
465
+ readonly [$$PropertyValue]: "width";
466
+ };
467
+ };
468
+ appearance: (value: {
469
+ readonly [$$PropertyValue]: "appearance";
470
+ }) => {
471
+ WebkitAppearance: {
472
+ readonly [$$PropertyValue]: "appearance";
473
+ };
474
+ appearance: {
475
+ readonly [$$PropertyValue]: "appearance";
476
+ };
477
+ };
478
+ backgroundClip: (value: {
479
+ readonly [$$PropertyValue]: "backgroundClip";
480
+ }) => {
481
+ WebkitBackgroundClip: {
482
+ readonly [$$PropertyValue]: "backgroundClip";
483
+ };
484
+ backgroundClip: {
485
+ readonly [$$PropertyValue]: "backgroundClip";
486
+ };
487
+ };
488
+ }>>;
489
+ export declare const AvatarImage: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<AvatarPrimitive.AvatarImageProps & import("react").RefAttributes<HTMLImageElement>>, {}, {
490
+ motion: "(prefers-reduced-motion)";
491
+ hover: "(any-hover: hover)";
492
+ dark: "(prefers-color-scheme: dark)";
493
+ light: "(prefers-color-scheme: light)";
494
+ xs: "(max-width: 520px)";
495
+ sm: "(max-width: 900px)";
496
+ bp1: "(min-width: 520px)";
497
+ bp2: "(min-width: 900px)";
498
+ md: "(max-width: 1200px)";
499
+ lg: "(max-width: 1800px)";
500
+ }, import("@stitches/react/types/css-util").CSS<{
501
+ motion: "(prefers-reduced-motion)";
502
+ hover: "(any-hover: hover)";
503
+ dark: "(prefers-color-scheme: dark)";
504
+ light: "(prefers-color-scheme: light)";
505
+ xs: "(max-width: 520px)";
506
+ sm: "(max-width: 900px)";
507
+ bp1: "(min-width: 520px)";
508
+ bp2: "(min-width: 900px)";
509
+ md: "(max-width: 1200px)";
510
+ lg: "(max-width: 1800px)";
511
+ }, {
512
+ colors: {
513
+ white: string;
514
+ black: string;
515
+ lightBackground: string;
516
+ obolBlue: string;
517
+ primaryBgDefault: string;
518
+ primaryBgDefaultHover: string;
519
+ primaryTextDefault: string;
520
+ secondaryBgDefault: string;
521
+ secondaryBgHover: string;
522
+ grayBgDefault: string;
523
+ gray2BgDefault: string;
524
+ neutralDark: string;
525
+ navButtonBgDefault: string;
526
+ navButtonBgHover: string;
527
+ cardBackgroundDark: string;
528
+ cardBackgroundLight: string;
529
+ gradientGold: string;
530
+ gradientSilver: string;
531
+ gradientBronze: string;
532
+ textMiddle: string;
533
+ textLight: string;
534
+ textLighter: string;
535
+ textTabHover: string;
536
+ textTabInactive: string;
537
+ textGreenDark: string;
538
+ textGreenLight: string;
539
+ textGreen1: string;
540
+ textGreen2: string;
541
+ textGreen3: string;
542
+ textGreenHover: string;
543
+ textCreateHover: string;
544
+ textGrayHover: string;
545
+ txButton: string;
546
+ obolGreen: string;
547
+ obolMidGreen: string;
548
+ obolGreenHover: string;
549
+ obolGreenLight: string;
550
+ obolDarkDark: string;
551
+ obolDisabled: string;
552
+ linkButtonHover: string;
553
+ progressTrackerGreen: string;
554
+ lightGrey: string;
555
+ coordinate: string;
556
+ coordinateHover: string;
557
+ test: string;
558
+ testHover: string;
559
+ create: string;
560
+ createHover: string;
561
+ light: string;
562
+ body: string;
563
+ muted: string;
564
+ menu: string;
565
+ bg01: string;
566
+ bg02: string;
567
+ bg03: string;
568
+ bg04: string;
569
+ bg05: string;
570
+ tooltip: string;
571
+ tooltip2: string;
572
+ };
573
+ space: {
574
+ 1: string;
575
+ 2: string;
576
+ xxxs: string;
577
+ xxs: string;
578
+ xs: string;
579
+ sm: string;
580
+ md: string;
581
+ lg: string;
582
+ xl: string;
583
+ "2xl": string;
584
+ "3xl": string;
585
+ "4xl": string;
586
+ "5xl": string;
587
+ "6xl": string;
588
+ "7xl": string;
589
+ };
590
+ sizes: {
591
+ 1: string;
592
+ 2: string;
593
+ xxxs: string;
594
+ xxs: string;
595
+ xs: string;
596
+ sm: string;
597
+ md: string;
598
+ lg: string;
599
+ xl: string;
600
+ "2xl": string;
601
+ "3xl": string;
602
+ "4xl": string;
603
+ "5xl": string;
604
+ "6xl": string;
605
+ "7xl": string;
606
+ max: string;
607
+ min: string;
608
+ full: string;
609
+ };
610
+ radii: {
611
+ 1: string;
612
+ 2: string;
613
+ 3: string;
614
+ 4: string;
615
+ 5: string;
616
+ round: string;
617
+ pill: string;
618
+ };
619
+ fontSizes: {
620
+ 1: string;
621
+ 2: string;
622
+ 3: string;
623
+ 4: string;
624
+ 5: string;
625
+ 6: string;
626
+ 7: string;
627
+ 8: string;
628
+ 9: string;
629
+ 10: string;
630
+ 11: string;
631
+ };
632
+ fontWeights: {
633
+ hairline: number;
634
+ thin: number;
635
+ light: number;
636
+ normal: number;
637
+ medium: number;
638
+ semibold: number;
639
+ bold: number;
640
+ extrabold: number;
641
+ black: number;
642
+ };
643
+ lineHeights: {
644
+ normal: string;
645
+ none: number;
646
+ shorter: number;
647
+ short: number;
648
+ base: number;
649
+ tall: number;
650
+ tall2: number;
651
+ taller: number;
652
+ };
653
+ letterSpacings: {
654
+ tighter: string;
655
+ tight: string;
656
+ normal: string;
657
+ wide: string;
658
+ wider: string;
659
+ widest: string;
660
+ };
661
+ borderWidths: unknown;
662
+ borderStyles: unknown;
663
+ shadows: unknown;
664
+ zIndices: unknown;
665
+ transitions: unknown;
666
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
667
+ p: (value: {
668
+ readonly [$$PropertyValue]: "padding";
669
+ }) => {
670
+ padding: {
671
+ readonly [$$PropertyValue]: "padding";
672
+ };
673
+ };
674
+ pt: (value: {
675
+ readonly [$$PropertyValue]: "paddingTop";
676
+ }) => {
677
+ paddingTop: {
678
+ readonly [$$PropertyValue]: "paddingTop";
679
+ };
680
+ };
681
+ pr: (value: {
682
+ readonly [$$PropertyValue]: "paddingRight";
683
+ }) => {
684
+ paddingRight: {
685
+ readonly [$$PropertyValue]: "paddingRight";
686
+ };
687
+ };
688
+ pb: (value: {
689
+ readonly [$$PropertyValue]: "paddingBottom";
690
+ }) => {
691
+ paddingBottom: {
692
+ readonly [$$PropertyValue]: "paddingBottom";
693
+ };
694
+ };
695
+ pl: (value: {
696
+ readonly [$$PropertyValue]: "paddingLeft";
697
+ }) => {
698
+ paddingLeft: {
699
+ readonly [$$PropertyValue]: "paddingLeft";
700
+ };
701
+ };
702
+ px: (value: {
703
+ readonly [$$PropertyValue]: "paddingLeft";
704
+ }) => {
705
+ paddingLeft: {
706
+ readonly [$$PropertyValue]: "paddingLeft";
707
+ };
708
+ paddingRight: {
709
+ readonly [$$PropertyValue]: "paddingLeft";
710
+ };
711
+ };
712
+ py: (value: {
713
+ readonly [$$PropertyValue]: "paddingTop";
714
+ }) => {
715
+ paddingTop: {
716
+ readonly [$$PropertyValue]: "paddingTop";
717
+ };
718
+ paddingBottom: {
719
+ readonly [$$PropertyValue]: "paddingTop";
720
+ };
721
+ };
722
+ m: (value: {
723
+ readonly [$$PropertyValue]: "margin";
724
+ }) => {
725
+ margin: {
726
+ readonly [$$PropertyValue]: "margin";
727
+ };
728
+ };
729
+ mt: (value: {
730
+ readonly [$$PropertyValue]: "marginTop";
731
+ }) => {
732
+ marginTop: {
733
+ readonly [$$PropertyValue]: "marginTop";
734
+ };
735
+ };
736
+ mr: (value: {
737
+ readonly [$$PropertyValue]: "marginRight";
738
+ }) => {
739
+ marginRight: {
740
+ readonly [$$PropertyValue]: "marginRight";
741
+ };
742
+ };
743
+ mb: (value: {
744
+ readonly [$$PropertyValue]: "marginBottom";
745
+ }) => {
746
+ marginBottom: {
747
+ readonly [$$PropertyValue]: "marginBottom";
748
+ };
749
+ };
750
+ ml: (value: {
751
+ readonly [$$PropertyValue]: "marginLeft";
752
+ }) => {
753
+ marginLeft: {
754
+ readonly [$$PropertyValue]: "marginLeft";
755
+ };
756
+ };
757
+ mx: (value: {
758
+ readonly [$$PropertyValue]: "marginLeft";
759
+ }) => {
760
+ marginLeft: {
761
+ readonly [$$PropertyValue]: "marginLeft";
762
+ };
763
+ marginRight: {
764
+ readonly [$$PropertyValue]: "marginLeft";
765
+ };
766
+ };
767
+ my: (value: {
768
+ readonly [$$PropertyValue]: "marginTop";
769
+ }) => {
770
+ marginTop: {
771
+ readonly [$$PropertyValue]: "marginTop";
772
+ };
773
+ marginBottom: {
774
+ readonly [$$PropertyValue]: "marginTop";
775
+ };
776
+ };
777
+ ta: (value: {
778
+ readonly [$$PropertyValue]: "textAlign";
779
+ }) => {
780
+ textAlign: {
781
+ readonly [$$PropertyValue]: "textAlign";
782
+ };
783
+ };
784
+ fd: (value: {
785
+ readonly [$$PropertyValue]: "flexDirection";
786
+ }) => {
787
+ flexDirection: {
788
+ readonly [$$PropertyValue]: "flexDirection";
789
+ };
790
+ };
791
+ fw: (value: {
792
+ readonly [$$PropertyValue]: "flexWrap";
793
+ }) => {
794
+ flexWrap: {
795
+ readonly [$$PropertyValue]: "flexWrap";
796
+ };
797
+ };
798
+ ai: (value: {
799
+ readonly [$$PropertyValue]: "alignItems";
800
+ }) => {
801
+ alignItems: {
802
+ readonly [$$PropertyValue]: "alignItems";
803
+ };
804
+ };
805
+ ac: (value: {
806
+ readonly [$$PropertyValue]: "alignContent";
807
+ }) => {
808
+ alignContent: {
809
+ readonly [$$PropertyValue]: "alignContent";
810
+ };
811
+ };
812
+ jc: (value: {
813
+ readonly [$$PropertyValue]: "justifyContent";
814
+ }) => {
815
+ justifyContent: {
816
+ readonly [$$PropertyValue]: "justifyContent";
817
+ };
818
+ };
819
+ as: (value: {
820
+ readonly [$$PropertyValue]: "alignSelf";
821
+ }) => {
822
+ alignSelf: {
823
+ readonly [$$PropertyValue]: "alignSelf";
824
+ };
825
+ };
826
+ fg: (value: {
827
+ readonly [$$PropertyValue]: "flexGrow";
828
+ }) => {
829
+ flexGrow: {
830
+ readonly [$$PropertyValue]: "flexGrow";
831
+ };
832
+ };
833
+ fs: (value: {
834
+ readonly [$$PropertyValue]: "flexShrink";
835
+ }) => {
836
+ flexShrink: {
837
+ readonly [$$PropertyValue]: "flexShrink";
838
+ };
839
+ };
840
+ fb: (value: {
841
+ readonly [$$PropertyValue]: "flexBasis";
842
+ }) => {
843
+ flexBasis: {
844
+ readonly [$$PropertyValue]: "flexBasis";
845
+ };
846
+ };
847
+ bc: (value: {
848
+ readonly [$$PropertyValue]: "backgroundColor";
849
+ }) => {
850
+ backgroundColor: {
851
+ readonly [$$PropertyValue]: "backgroundColor";
852
+ };
853
+ };
854
+ br: (value: {
855
+ readonly [$$PropertyValue]: "borderRadius";
856
+ }) => {
857
+ borderRadius: {
858
+ readonly [$$PropertyValue]: "borderRadius";
859
+ };
860
+ };
861
+ btrr: (value: {
862
+ readonly [$$PropertyValue]: "borderTopRightRadius";
863
+ }) => {
864
+ borderTopRightRadius: {
865
+ readonly [$$PropertyValue]: "borderTopRightRadius";
866
+ };
867
+ };
868
+ bbrr: (value: {
869
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
870
+ }) => {
871
+ borderBottomRightRadius: {
872
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
873
+ };
874
+ };
875
+ bblr: (value: {
876
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
877
+ }) => {
878
+ borderBottomLeftRadius: {
879
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
880
+ };
881
+ };
882
+ btlr: (value: {
883
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
884
+ }) => {
885
+ borderTopLeftRadius: {
886
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
887
+ };
888
+ };
889
+ bs: (value: {
890
+ readonly [$$PropertyValue]: "boxShadow";
891
+ }) => {
892
+ boxShadow: {
893
+ readonly [$$PropertyValue]: "boxShadow";
894
+ };
895
+ };
896
+ lh: (value: {
897
+ readonly [$$PropertyValue]: "lineHeight";
898
+ }) => {
899
+ lineHeight: {
900
+ readonly [$$PropertyValue]: "lineHeight";
901
+ };
902
+ };
903
+ ox: (value: {
904
+ readonly [$$PropertyValue]: "overflowX";
905
+ }) => {
906
+ overflowX: {
907
+ readonly [$$PropertyValue]: "overflowX";
908
+ };
909
+ };
910
+ oy: (value: {
911
+ readonly [$$PropertyValue]: "overflowY";
912
+ }) => {
913
+ overflowY: {
914
+ readonly [$$PropertyValue]: "overflowY";
915
+ };
916
+ };
917
+ pe: (value: {
918
+ readonly [$$PropertyValue]: "pointerEvents";
919
+ }) => {
920
+ pointerEvents: {
921
+ readonly [$$PropertyValue]: "pointerEvents";
922
+ };
923
+ };
924
+ us: (value: {
925
+ readonly [$$PropertyValue]: "userSelect";
926
+ }) => {
927
+ WebkitUserSelect: {
928
+ readonly [$$PropertyValue]: "userSelect";
929
+ };
930
+ userSelect: {
931
+ readonly [$$PropertyValue]: "userSelect";
932
+ };
933
+ };
934
+ userSelect: (value: {
935
+ readonly [$$PropertyValue]: "userSelect";
936
+ }) => {
937
+ WebkitUserSelect: {
938
+ readonly [$$PropertyValue]: "userSelect";
939
+ };
940
+ userSelect: {
941
+ readonly [$$PropertyValue]: "userSelect";
942
+ };
943
+ };
944
+ size: (value: {
945
+ readonly [$$PropertyValue]: "width";
946
+ }) => {
947
+ width: {
948
+ readonly [$$PropertyValue]: "width";
949
+ };
950
+ height: {
951
+ readonly [$$PropertyValue]: "width";
952
+ };
953
+ };
954
+ appearance: (value: {
955
+ readonly [$$PropertyValue]: "appearance";
956
+ }) => {
957
+ WebkitAppearance: {
958
+ readonly [$$PropertyValue]: "appearance";
959
+ };
960
+ appearance: {
961
+ readonly [$$PropertyValue]: "appearance";
962
+ };
963
+ };
964
+ backgroundClip: (value: {
965
+ readonly [$$PropertyValue]: "backgroundClip";
966
+ }) => {
967
+ WebkitBackgroundClip: {
968
+ readonly [$$PropertyValue]: "backgroundClip";
969
+ };
970
+ backgroundClip: {
971
+ readonly [$$PropertyValue]: "backgroundClip";
972
+ };
973
+ };
974
+ }>>;
975
+ export declare const AvatarFallback: import("react").ForwardRefExoticComponent<AvatarPrimitive.AvatarFallbackProps & import("react").RefAttributes<HTMLSpanElement>>;