@livepeer/design-system 0.0.0-beta.9 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. package/LICENSE +7 -0
  2. package/README.md +6 -2
  3. package/dist/components/Accordion.d.ts +1512 -0
  4. package/dist/components/Alert.d.ts +752 -0
  5. package/dist/components/AlertDialog.d.ts +9 -7
  6. package/dist/components/AppBar.d.ts +755 -0
  7. package/dist/components/Avatar.d.ts +2270 -0
  8. package/dist/components/Badge.d.ts +147 -385
  9. package/dist/components/Banner.d.ts +754 -1
  10. package/dist/components/Box.d.ts +749 -0
  11. package/dist/components/Button.d.ts +753 -1
  12. package/dist/components/Card.d.ts +147 -385
  13. package/dist/components/Checkbox.d.ts +761 -0
  14. package/dist/components/Code.d.ts +751 -0
  15. package/dist/components/Container.d.ts +148 -386
  16. package/dist/components/ContextMenu.d.ts +3766 -0
  17. package/dist/components/ControlGroup.d.ts +749 -0
  18. package/dist/components/DesignSystemProvider.d.ts +9 -0
  19. package/dist/components/Dialog.d.ts +9 -3
  20. package/dist/components/DropdownMenu.d.ts +6016 -3
  21. package/dist/components/Flex.d.ts +755 -0
  22. package/dist/components/Grid.d.ts +757 -0
  23. package/dist/components/Heading.d.ts +14 -0
  24. package/dist/components/IconButton.d.ts +753 -0
  25. package/dist/components/Image.d.ts +749 -0
  26. package/dist/components/Kbd.d.ts +752 -0
  27. package/dist/components/Label.d.ts +755 -1
  28. package/dist/components/Link.d.ts +148 -386
  29. package/dist/components/Menu.d.ts +10498 -0
  30. package/dist/components/Overlay.d.ts +1498 -0
  31. package/dist/components/Panel.d.ts +1498 -0
  32. package/dist/components/Paragraph.d.ts +14 -0
  33. package/dist/components/Popover.d.ts +13 -0
  34. package/dist/components/ProgressBar.d.ts +761 -0
  35. package/dist/components/Promo.d.ts +754 -1
  36. package/dist/components/Radio.d.ts +1510 -0
  37. package/dist/components/RadioCard.d.ts +149 -389
  38. package/dist/components/RadioGrid.d.ts +1500 -0
  39. package/dist/components/Scrollbar.d.ts +6 -0
  40. package/dist/components/Section.d.ts +751 -0
  41. package/dist/components/Select.d.ts +1504 -1
  42. package/dist/components/Separator.d.ts +753 -0
  43. package/dist/components/Sheet.d.ts +766 -0
  44. package/dist/components/SimpleToggle.d.ts +753 -0
  45. package/dist/components/Skeleton.d.ts +751 -0
  46. package/dist/components/Slider.d.ts +758 -0
  47. package/dist/components/Snackbar/SnackbarProvider.d.ts +2 -2
  48. package/dist/components/Snackbar/transitionStyles.d.ts +58 -58
  49. package/dist/components/Snackbar/useSnackbar.d.ts +1 -1
  50. package/dist/components/Status.d.ts +752 -0
  51. package/dist/components/Sub.d.ts +749 -0
  52. package/dist/components/Sup.d.ts +749 -0
  53. package/dist/components/Switch.d.ts +1509 -1
  54. package/dist/components/TabLink.d.ts +751 -0
  55. package/dist/components/Table.d.ts +1178 -3082
  56. package/dist/components/Tabs.d.ts +4500 -4
  57. package/dist/components/Text.d.ts +753 -1
  58. package/dist/components/TextArea.d.ts +753 -0
  59. package/dist/components/TextField.d.ts +754 -1
  60. package/dist/components/Tooltip.d.ts +10 -0
  61. package/dist/components/TreeItem.d.ts +751 -0
  62. package/dist/components/VerifiedBadge.d.ts +762 -0
  63. package/dist/custom/AppBar.d.ts +148 -386
  64. package/dist/custom/Avatars.d.ts +1 -0
  65. package/dist/custom/DarkThemeButton.d.ts +1 -0
  66. package/dist/custom/Kbds.d.ts +1 -0
  67. package/dist/custom/Snackbar.d.ts +1 -0
  68. package/dist/custom/Toolbar.d.ts +1 -0
  69. package/dist/index.d.ts +53 -20
  70. package/dist/index.es.js +3853 -1645
  71. package/dist/index.js +3884 -1891
  72. package/dist/stitches.config.d.ts +6320 -23
  73. package/package.json +61 -58
  74. package/dist/components/Accordian.d.ts +0 -4
@@ -0,0 +1,762 @@
1
+ import React from "react";
2
+ import { CSS } from "../stitches.config";
3
+ declare const StyledVerifiedBadge: import("@stitches/react/types/styled-component").StyledComponent<"div", {
4
+ direction?: "column" | "row" | "rowReverse" | "columnReverse" | undefined;
5
+ align?: "stretch" | "center" | "end" | "start" | "baseline" | undefined;
6
+ justify?: "center" | "end" | "start" | "between" | undefined;
7
+ wrap?: "wrap" | "noWrap" | "wrapReverse" | undefined;
8
+ gap?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | undefined;
9
+ }, {
10
+ bp1: "(min-width: 520px)";
11
+ bp2: "(min-width: 900px)";
12
+ bp3: "(min-width: 1200px)";
13
+ bp4: "(min-width: 1800px)";
14
+ motion: "(prefers-reduced-motion)";
15
+ hover: "(any-hover: hover)";
16
+ dark: "(prefers-color-scheme: dark)";
17
+ light: "(prefers-color-scheme: light)";
18
+ }, import("@stitches/react/types/css-util").CSS<{
19
+ bp1: "(min-width: 520px)";
20
+ bp2: "(min-width: 900px)";
21
+ bp3: "(min-width: 1200px)";
22
+ bp4: "(min-width: 1800px)";
23
+ motion: "(prefers-reduced-motion)";
24
+ hover: "(any-hover: hover)";
25
+ dark: "(prefers-color-scheme: dark)";
26
+ light: "(prefers-color-scheme: light)";
27
+ }, {
28
+ colors: {
29
+ hiContrast: string;
30
+ loContrast: string;
31
+ canvas: string;
32
+ panel: string;
33
+ transparentPanel: string;
34
+ shadowLight: string;
35
+ shadowDark: string;
36
+ blackA1: string;
37
+ blackA2: string;
38
+ blackA3: string;
39
+ blackA4: string;
40
+ blackA5: string;
41
+ blackA6: string;
42
+ blackA7: string;
43
+ blackA8: string;
44
+ blackA9: string;
45
+ blackA10: string;
46
+ blackA11: string;
47
+ blackA12: string;
48
+ whiteA1: string;
49
+ whiteA2: string;
50
+ whiteA3: string;
51
+ whiteA4: string;
52
+ whiteA5: string;
53
+ whiteA6: string;
54
+ whiteA7: string;
55
+ whiteA8: string;
56
+ whiteA9: string;
57
+ whiteA10: string;
58
+ whiteA11: string;
59
+ whiteA12: string;
60
+ gold1: string;
61
+ gold2: string;
62
+ gold3: string;
63
+ gold4: string;
64
+ gold5: string;
65
+ gold6: string;
66
+ gold7: string;
67
+ gold8: string;
68
+ gold9: string;
69
+ gold10: string;
70
+ gold11: string;
71
+ gold12: string;
72
+ bronze1: string;
73
+ bronze2: string;
74
+ bronze3: string;
75
+ bronze4: string;
76
+ bronze5: string;
77
+ bronze6: string;
78
+ bronze7: string;
79
+ bronze8: string;
80
+ bronze9: string;
81
+ bronze10: string;
82
+ bronze11: string;
83
+ bronze12: string;
84
+ brown1: string;
85
+ brown2: string;
86
+ brown3: string;
87
+ brown4: string;
88
+ brown5: string;
89
+ brown6: string;
90
+ brown7: string;
91
+ brown8: string;
92
+ brown9: string;
93
+ brown10: string;
94
+ brown11: string;
95
+ brown12: string;
96
+ orange1: string;
97
+ orange2: string;
98
+ orange3: string;
99
+ orange4: string;
100
+ orange5: string;
101
+ orange6: string;
102
+ orange7: string;
103
+ orange8: string;
104
+ orange9: string;
105
+ orange10: string;
106
+ orange11: string;
107
+ orange12: string;
108
+ amber1: string;
109
+ amber2: string;
110
+ amber3: string;
111
+ amber4: string;
112
+ amber5: string;
113
+ amber6: string;
114
+ amber7: string;
115
+ amber8: string;
116
+ amber9: string;
117
+ amber10: string;
118
+ amber11: string;
119
+ amber12: string;
120
+ yellow1: string;
121
+ yellow2: string;
122
+ yellow3: string;
123
+ yellow4: string;
124
+ yellow5: string;
125
+ yellow6: string;
126
+ yellow7: string;
127
+ yellow8: string;
128
+ yellow9: string;
129
+ yellow10: string;
130
+ yellow11: string;
131
+ yellow12: string;
132
+ lime1: string;
133
+ lime2: string;
134
+ lime3: string;
135
+ lime4: string;
136
+ lime5: string;
137
+ lime6: string;
138
+ lime7: string;
139
+ lime8: string;
140
+ lime9: string;
141
+ lime10: string;
142
+ lime11: string;
143
+ lime12: string;
144
+ grass1: string;
145
+ grass2: string;
146
+ grass3: string;
147
+ grass4: string;
148
+ grass5: string;
149
+ grass6: string;
150
+ grass7: string;
151
+ grass8: string;
152
+ grass9: string;
153
+ grass10: string;
154
+ grass11: string;
155
+ grass12: string;
156
+ green1: string;
157
+ green2: string;
158
+ green3: string;
159
+ green4: string;
160
+ green5: string;
161
+ green6: string;
162
+ green7: string;
163
+ green8: string;
164
+ green9: string;
165
+ green10: string;
166
+ green11: string;
167
+ green12: string;
168
+ teal1: string;
169
+ teal2: string;
170
+ teal3: string;
171
+ teal4: string;
172
+ teal5: string;
173
+ teal6: string;
174
+ teal7: string;
175
+ teal8: string;
176
+ teal9: string;
177
+ teal10: string;
178
+ teal11: string;
179
+ teal12: string;
180
+ cyan1: string;
181
+ cyan2: string;
182
+ cyan3: string;
183
+ cyan4: string;
184
+ cyan5: string;
185
+ cyan6: string;
186
+ cyan7: string;
187
+ cyan8: string;
188
+ cyan9: string;
189
+ cyan10: string;
190
+ cyan11: string;
191
+ cyan12: string;
192
+ mint1: string;
193
+ mint2: string;
194
+ mint3: string;
195
+ mint4: string;
196
+ mint5: string;
197
+ mint6: string;
198
+ mint7: string;
199
+ mint8: string;
200
+ mint9: string;
201
+ mint10: string;
202
+ mint11: string;
203
+ mint12: string;
204
+ sky1: string;
205
+ sky2: string;
206
+ sky3: string;
207
+ sky4: string;
208
+ sky5: string;
209
+ sky6: string;
210
+ sky7: string;
211
+ sky8: string;
212
+ sky9: string;
213
+ sky10: string;
214
+ sky11: string;
215
+ sky12: string;
216
+ blue1: string;
217
+ blue2: string;
218
+ blue3: string;
219
+ blue4: string;
220
+ blue5: string;
221
+ blue6: string;
222
+ blue7: string;
223
+ blue8: string;
224
+ blue9: string;
225
+ blue10: string;
226
+ blue11: string;
227
+ blue12: string;
228
+ indigo1: string;
229
+ indigo2: string;
230
+ indigo3: string;
231
+ indigo4: string;
232
+ indigo5: string;
233
+ indigo6: string;
234
+ indigo7: string;
235
+ indigo8: string;
236
+ indigo9: string;
237
+ indigo10: string;
238
+ indigo11: string;
239
+ indigo12: string;
240
+ violet1: string;
241
+ violet2: string;
242
+ violet3: string;
243
+ violet4: string;
244
+ violet5: string;
245
+ violet6: string;
246
+ violet7: string;
247
+ violet8: string;
248
+ violet9: string;
249
+ violet10: string;
250
+ violet11: string;
251
+ violet12: string;
252
+ purple1: string;
253
+ purple2: string;
254
+ purple3: string;
255
+ purple4: string;
256
+ purple5: string;
257
+ purple6: string;
258
+ purple7: string;
259
+ purple8: string;
260
+ purple9: string;
261
+ purple10: string;
262
+ purple11: string;
263
+ purple12: string;
264
+ plum1: string;
265
+ plum2: string;
266
+ plum3: string;
267
+ plum4: string;
268
+ plum5: string;
269
+ plum6: string;
270
+ plum7: string;
271
+ plum8: string;
272
+ plum9: string;
273
+ plum10: string;
274
+ plum11: string;
275
+ plum12: string;
276
+ pink1: string;
277
+ pink2: string;
278
+ pink3: string;
279
+ pink4: string;
280
+ pink5: string;
281
+ pink6: string;
282
+ pink7: string;
283
+ pink8: string;
284
+ pink9: string;
285
+ pink10: string;
286
+ pink11: string;
287
+ pink12: string;
288
+ crimson1: string;
289
+ crimson2: string;
290
+ crimson3: string;
291
+ crimson4: string;
292
+ crimson5: string;
293
+ crimson6: string;
294
+ crimson7: string;
295
+ crimson8: string;
296
+ crimson9: string;
297
+ crimson10: string;
298
+ crimson11: string;
299
+ crimson12: string;
300
+ red1: string;
301
+ red2: string;
302
+ red3: string;
303
+ red4: string;
304
+ red5: string;
305
+ red6: string;
306
+ red7: string;
307
+ red8: string;
308
+ red9: string;
309
+ red10: string;
310
+ red11: string;
311
+ red12: string;
312
+ tomato1: string;
313
+ tomato2: string;
314
+ tomato3: string;
315
+ tomato4: string;
316
+ tomato5: string;
317
+ tomato6: string;
318
+ tomato7: string;
319
+ tomato8: string;
320
+ tomato9: string;
321
+ tomato10: string;
322
+ tomato11: string;
323
+ tomato12: string;
324
+ sand1: string;
325
+ sand2: string;
326
+ sand3: string;
327
+ sand4: string;
328
+ sand5: string;
329
+ sand6: string;
330
+ sand7: string;
331
+ sand8: string;
332
+ sand9: string;
333
+ sand10: string;
334
+ sand11: string;
335
+ sand12: string;
336
+ olive1: string;
337
+ olive2: string;
338
+ olive3: string;
339
+ olive4: string;
340
+ olive5: string;
341
+ olive6: string;
342
+ olive7: string;
343
+ olive8: string;
344
+ olive9: string;
345
+ olive10: string;
346
+ olive11: string;
347
+ olive12: string;
348
+ sage1: string;
349
+ sage2: string;
350
+ sage3: string;
351
+ sage4: string;
352
+ sage5: string;
353
+ sage6: string;
354
+ sage7: string;
355
+ sage8: string;
356
+ sage9: string;
357
+ sage10: string;
358
+ sage11: string;
359
+ sage12: string;
360
+ slate1: string;
361
+ slate2: string;
362
+ slate3: string;
363
+ slate4: string;
364
+ slate5: string;
365
+ slate6: string;
366
+ slate7: string;
367
+ slate8: string;
368
+ slate9: string;
369
+ slate10: string;
370
+ slate11: string;
371
+ slate12: string;
372
+ mauve1: string;
373
+ mauve2: string;
374
+ mauve3: string;
375
+ mauve4: string;
376
+ mauve5: string;
377
+ mauve6: string;
378
+ mauve7: string;
379
+ mauve8: string;
380
+ mauve9: string;
381
+ mauve10: string;
382
+ mauve11: string;
383
+ mauve12: string;
384
+ gray1: string;
385
+ gray2: string;
386
+ gray3: string;
387
+ gray4: string;
388
+ gray5: string;
389
+ gray6: string;
390
+ gray7: string;
391
+ gray8: string;
392
+ gray9: string;
393
+ gray10: string;
394
+ gray11: string;
395
+ gray12: string;
396
+ };
397
+ fonts: {
398
+ untitled: string;
399
+ mono: string;
400
+ };
401
+ space: {
402
+ 1: string;
403
+ 2: string;
404
+ 3: string;
405
+ 4: string;
406
+ 5: string;
407
+ 6: string;
408
+ 7: string;
409
+ 8: string;
410
+ 9: string;
411
+ };
412
+ sizes: {
413
+ 1: string;
414
+ 2: string;
415
+ 3: string;
416
+ 4: string;
417
+ 5: string;
418
+ 6: string;
419
+ 7: string;
420
+ 8: string;
421
+ 9: string;
422
+ };
423
+ fontSizes: {
424
+ 1: string;
425
+ 2: string;
426
+ 3: string;
427
+ 4: string;
428
+ 5: string;
429
+ 6: string;
430
+ 7: string;
431
+ 8: string;
432
+ 9: string;
433
+ };
434
+ radii: {
435
+ 1: string;
436
+ 2: string;
437
+ 3: string;
438
+ 4: string;
439
+ round: string;
440
+ pill: string;
441
+ };
442
+ zIndices: {
443
+ 1: string;
444
+ 2: string;
445
+ 3: string;
446
+ 4: string;
447
+ max: string;
448
+ };
449
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
450
+ p: (value: {
451
+ readonly [$$PropertyValue]: "padding";
452
+ }) => {
453
+ padding: {
454
+ readonly [$$PropertyValue]: "padding";
455
+ };
456
+ };
457
+ pt: (value: {
458
+ readonly [$$PropertyValue]: "paddingTop";
459
+ }) => {
460
+ paddingTop: {
461
+ readonly [$$PropertyValue]: "paddingTop";
462
+ };
463
+ };
464
+ pr: (value: {
465
+ readonly [$$PropertyValue]: "paddingRight";
466
+ }) => {
467
+ paddingRight: {
468
+ readonly [$$PropertyValue]: "paddingRight";
469
+ };
470
+ };
471
+ pb: (value: {
472
+ readonly [$$PropertyValue]: "paddingBottom";
473
+ }) => {
474
+ paddingBottom: {
475
+ readonly [$$PropertyValue]: "paddingBottom";
476
+ };
477
+ };
478
+ pl: (value: {
479
+ readonly [$$PropertyValue]: "paddingLeft";
480
+ }) => {
481
+ paddingLeft: {
482
+ readonly [$$PropertyValue]: "paddingLeft";
483
+ };
484
+ };
485
+ px: (value: {
486
+ readonly [$$PropertyValue]: "paddingLeft";
487
+ }) => {
488
+ paddingLeft: {
489
+ readonly [$$PropertyValue]: "paddingLeft";
490
+ };
491
+ paddingRight: {
492
+ readonly [$$PropertyValue]: "paddingLeft";
493
+ };
494
+ };
495
+ py: (value: {
496
+ readonly [$$PropertyValue]: "paddingTop";
497
+ }) => {
498
+ paddingTop: {
499
+ readonly [$$PropertyValue]: "paddingTop";
500
+ };
501
+ paddingBottom: {
502
+ readonly [$$PropertyValue]: "paddingTop";
503
+ };
504
+ };
505
+ m: (value: {
506
+ readonly [$$PropertyValue]: "margin";
507
+ }) => {
508
+ margin: {
509
+ readonly [$$PropertyValue]: "margin";
510
+ };
511
+ };
512
+ mt: (value: {
513
+ readonly [$$PropertyValue]: "marginTop";
514
+ }) => {
515
+ marginTop: {
516
+ readonly [$$PropertyValue]: "marginTop";
517
+ };
518
+ };
519
+ mr: (value: {
520
+ readonly [$$PropertyValue]: "marginRight";
521
+ }) => {
522
+ marginRight: {
523
+ readonly [$$PropertyValue]: "marginRight";
524
+ };
525
+ };
526
+ mb: (value: {
527
+ readonly [$$PropertyValue]: "marginBottom";
528
+ }) => {
529
+ marginBottom: {
530
+ readonly [$$PropertyValue]: "marginBottom";
531
+ };
532
+ };
533
+ ml: (value: {
534
+ readonly [$$PropertyValue]: "marginLeft";
535
+ }) => {
536
+ marginLeft: {
537
+ readonly [$$PropertyValue]: "marginLeft";
538
+ };
539
+ };
540
+ mx: (value: {
541
+ readonly [$$PropertyValue]: "marginLeft";
542
+ }) => {
543
+ marginLeft: {
544
+ readonly [$$PropertyValue]: "marginLeft";
545
+ };
546
+ marginRight: {
547
+ readonly [$$PropertyValue]: "marginLeft";
548
+ };
549
+ };
550
+ my: (value: {
551
+ readonly [$$PropertyValue]: "marginTop";
552
+ }) => {
553
+ marginTop: {
554
+ readonly [$$PropertyValue]: "marginTop";
555
+ };
556
+ marginBottom: {
557
+ readonly [$$PropertyValue]: "marginTop";
558
+ };
559
+ };
560
+ ta: (value: {
561
+ readonly [$$PropertyValue]: "textAlign";
562
+ }) => {
563
+ textAlign: {
564
+ readonly [$$PropertyValue]: "textAlign";
565
+ };
566
+ };
567
+ fd: (value: {
568
+ readonly [$$PropertyValue]: "flexDirection";
569
+ }) => {
570
+ flexDirection: {
571
+ readonly [$$PropertyValue]: "flexDirection";
572
+ };
573
+ };
574
+ fw: (value: {
575
+ readonly [$$PropertyValue]: "flexWrap";
576
+ }) => {
577
+ flexWrap: {
578
+ readonly [$$PropertyValue]: "flexWrap";
579
+ };
580
+ };
581
+ ai: (value: {
582
+ readonly [$$PropertyValue]: "alignItems";
583
+ }) => {
584
+ alignItems: {
585
+ readonly [$$PropertyValue]: "alignItems";
586
+ };
587
+ };
588
+ ac: (value: {
589
+ readonly [$$PropertyValue]: "alignContent";
590
+ }) => {
591
+ alignContent: {
592
+ readonly [$$PropertyValue]: "alignContent";
593
+ };
594
+ };
595
+ jc: (value: {
596
+ readonly [$$PropertyValue]: "justifyContent";
597
+ }) => {
598
+ justifyContent: {
599
+ readonly [$$PropertyValue]: "justifyContent";
600
+ };
601
+ };
602
+ as: (value: {
603
+ readonly [$$PropertyValue]: "alignSelf";
604
+ }) => {
605
+ alignSelf: {
606
+ readonly [$$PropertyValue]: "alignSelf";
607
+ };
608
+ };
609
+ fg: (value: {
610
+ readonly [$$PropertyValue]: "flexGrow";
611
+ }) => {
612
+ flexGrow: {
613
+ readonly [$$PropertyValue]: "flexGrow";
614
+ };
615
+ };
616
+ fs: (value: {
617
+ readonly [$$PropertyValue]: "flexShrink";
618
+ }) => {
619
+ flexShrink: {
620
+ readonly [$$PropertyValue]: "flexShrink";
621
+ };
622
+ };
623
+ fb: (value: {
624
+ readonly [$$PropertyValue]: "flexBasis";
625
+ }) => {
626
+ flexBasis: {
627
+ readonly [$$PropertyValue]: "flexBasis";
628
+ };
629
+ };
630
+ bc: (value: {
631
+ readonly [$$PropertyValue]: "backgroundColor";
632
+ }) => {
633
+ backgroundColor: {
634
+ readonly [$$PropertyValue]: "backgroundColor";
635
+ };
636
+ };
637
+ br: (value: {
638
+ readonly [$$PropertyValue]: "borderRadius";
639
+ }) => {
640
+ borderRadius: {
641
+ readonly [$$PropertyValue]: "borderRadius";
642
+ };
643
+ };
644
+ btrr: (value: {
645
+ readonly [$$PropertyValue]: "borderTopRightRadius";
646
+ }) => {
647
+ borderTopRightRadius: {
648
+ readonly [$$PropertyValue]: "borderTopRightRadius";
649
+ };
650
+ };
651
+ bbrr: (value: {
652
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
653
+ }) => {
654
+ borderBottomRightRadius: {
655
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
656
+ };
657
+ };
658
+ bblr: (value: {
659
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
660
+ }) => {
661
+ borderBottomLeftRadius: {
662
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
663
+ };
664
+ };
665
+ btlr: (value: {
666
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
667
+ }) => {
668
+ borderTopLeftRadius: {
669
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
670
+ };
671
+ };
672
+ bs: (value: {
673
+ readonly [$$PropertyValue]: "boxShadow";
674
+ }) => {
675
+ boxShadow: {
676
+ readonly [$$PropertyValue]: "boxShadow";
677
+ };
678
+ };
679
+ lh: (value: {
680
+ readonly [$$PropertyValue]: "lineHeight";
681
+ }) => {
682
+ lineHeight: {
683
+ readonly [$$PropertyValue]: "lineHeight";
684
+ };
685
+ };
686
+ ox: (value: {
687
+ readonly [$$PropertyValue]: "overflowX";
688
+ }) => {
689
+ overflowX: {
690
+ readonly [$$PropertyValue]: "overflowX";
691
+ };
692
+ };
693
+ oy: (value: {
694
+ readonly [$$PropertyValue]: "overflowY";
695
+ }) => {
696
+ overflowY: {
697
+ readonly [$$PropertyValue]: "overflowY";
698
+ };
699
+ };
700
+ pe: (value: {
701
+ readonly [$$PropertyValue]: "pointerEvents";
702
+ }) => {
703
+ pointerEvents: {
704
+ readonly [$$PropertyValue]: "pointerEvents";
705
+ };
706
+ };
707
+ us: (value: {
708
+ readonly [$$PropertyValue]: "userSelect";
709
+ }) => {
710
+ WebkitUserSelect: {
711
+ readonly [$$PropertyValue]: "userSelect";
712
+ };
713
+ userSelect: {
714
+ readonly [$$PropertyValue]: "userSelect";
715
+ };
716
+ };
717
+ userSelect: (value: {
718
+ readonly [$$PropertyValue]: "userSelect";
719
+ }) => {
720
+ WebkitUserSelect: {
721
+ readonly [$$PropertyValue]: "userSelect";
722
+ };
723
+ userSelect: {
724
+ readonly [$$PropertyValue]: "userSelect";
725
+ };
726
+ };
727
+ size: (value: {
728
+ readonly [$$PropertyValue]: "width";
729
+ }) => {
730
+ width: {
731
+ readonly [$$PropertyValue]: "width";
732
+ };
733
+ height: {
734
+ readonly [$$PropertyValue]: "width";
735
+ };
736
+ };
737
+ appearance: (value: {
738
+ readonly [$$PropertyValue]: "appearance";
739
+ }) => {
740
+ WebkitAppearance: {
741
+ readonly [$$PropertyValue]: "appearance";
742
+ };
743
+ appearance: {
744
+ readonly [$$PropertyValue]: "appearance";
745
+ };
746
+ };
747
+ backgroundClip: (value: {
748
+ readonly [$$PropertyValue]: "backgroundClip";
749
+ }) => {
750
+ WebkitBackgroundClip: {
751
+ readonly [$$PropertyValue]: "backgroundClip";
752
+ };
753
+ backgroundClip: {
754
+ readonly [$$PropertyValue]: "backgroundClip";
755
+ };
756
+ };
757
+ }>>;
758
+ declare type VerifiedBadgeProps = React.ComponentProps<typeof StyledVerifiedBadge> & {
759
+ css?: CSS;
760
+ };
761
+ export declare const VerifiedBadge: React.ForwardRefExoticComponent<Pick<VerifiedBadgeProps, "direction" | "gap" | "wrap" | "justify" | "align" | "key" | keyof React.HTMLAttributes<HTMLDivElement> | "css"> & React.RefAttributes<HTMLDivElement>>;
762
+ export {};