@livepeer/design-system 0.0.0-beta.8 → 1.0.1

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 +147 -385
  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 +3787 -1565
  71. package/dist/index.js +3897 -1890
  72. package/dist/stitches.config.d.ts +6320 -23
  73. package/package.json +61 -58
  74. package/dist/components/Accordian.d.ts +0 -4
@@ -1 +1,1509 @@
1
- export declare const Switch: any;
1
+ import React from "react";
2
+ import { VariantProps, CSS } from "../stitches.config";
3
+ import * as SwitchPrimitive from "@radix-ui/react-switch";
4
+ declare const StyledSwitch: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<SwitchPrimitive.SwitchProps & React.RefAttributes<HTMLButtonElement>>, {
5
+ size?: number | "1" | "2" | undefined;
6
+ }, {
7
+ bp1: "(min-width: 520px)";
8
+ bp2: "(min-width: 900px)";
9
+ bp3: "(min-width: 1200px)";
10
+ bp4: "(min-width: 1800px)";
11
+ motion: "(prefers-reduced-motion)";
12
+ hover: "(any-hover: hover)";
13
+ dark: "(prefers-color-scheme: dark)";
14
+ light: "(prefers-color-scheme: light)";
15
+ }, import("@stitches/react/types/css-util").CSS<{
16
+ bp1: "(min-width: 520px)";
17
+ bp2: "(min-width: 900px)";
18
+ bp3: "(min-width: 1200px)";
19
+ bp4: "(min-width: 1800px)";
20
+ motion: "(prefers-reduced-motion)";
21
+ hover: "(any-hover: hover)";
22
+ dark: "(prefers-color-scheme: dark)";
23
+ light: "(prefers-color-scheme: light)";
24
+ }, {
25
+ colors: {
26
+ hiContrast: string;
27
+ loContrast: string;
28
+ canvas: string;
29
+ panel: string;
30
+ transparentPanel: string;
31
+ shadowLight: string;
32
+ shadowDark: string;
33
+ blackA1: string;
34
+ blackA2: string;
35
+ blackA3: string;
36
+ blackA4: string;
37
+ blackA5: string;
38
+ blackA6: string;
39
+ blackA7: string;
40
+ blackA8: string;
41
+ blackA9: string;
42
+ blackA10: string;
43
+ blackA11: string;
44
+ blackA12: string;
45
+ whiteA1: string;
46
+ whiteA2: string;
47
+ whiteA3: string;
48
+ whiteA4: string;
49
+ whiteA5: string;
50
+ whiteA6: string;
51
+ whiteA7: string;
52
+ whiteA8: string;
53
+ whiteA9: string;
54
+ whiteA10: string;
55
+ whiteA11: string;
56
+ whiteA12: string;
57
+ gold1: string;
58
+ gold2: string;
59
+ gold3: string;
60
+ gold4: string;
61
+ gold5: string;
62
+ gold6: string;
63
+ gold7: string;
64
+ gold8: string;
65
+ gold9: string;
66
+ gold10: string;
67
+ gold11: string;
68
+ gold12: string;
69
+ bronze1: string;
70
+ bronze2: string;
71
+ bronze3: string;
72
+ bronze4: string;
73
+ bronze5: string;
74
+ bronze6: string;
75
+ bronze7: string;
76
+ bronze8: string;
77
+ bronze9: string;
78
+ bronze10: string;
79
+ bronze11: string;
80
+ bronze12: string;
81
+ brown1: string;
82
+ brown2: string;
83
+ brown3: string;
84
+ brown4: string;
85
+ brown5: string;
86
+ brown6: string;
87
+ brown7: string;
88
+ brown8: string;
89
+ brown9: string;
90
+ brown10: string;
91
+ brown11: string;
92
+ brown12: string;
93
+ orange1: string;
94
+ orange2: string;
95
+ orange3: string;
96
+ orange4: string;
97
+ orange5: string;
98
+ orange6: string;
99
+ orange7: string;
100
+ orange8: string;
101
+ orange9: string;
102
+ orange10: string;
103
+ orange11: string;
104
+ orange12: string;
105
+ amber1: string;
106
+ amber2: string;
107
+ amber3: string;
108
+ amber4: string;
109
+ amber5: string;
110
+ amber6: string;
111
+ amber7: string;
112
+ amber8: string;
113
+ amber9: string;
114
+ amber10: string;
115
+ amber11: string;
116
+ amber12: string;
117
+ yellow1: string;
118
+ yellow2: string;
119
+ yellow3: string;
120
+ yellow4: string;
121
+ yellow5: string;
122
+ yellow6: string;
123
+ yellow7: string;
124
+ yellow8: string;
125
+ yellow9: string;
126
+ yellow10: string;
127
+ yellow11: string;
128
+ yellow12: string;
129
+ lime1: string;
130
+ lime2: string;
131
+ lime3: string;
132
+ lime4: string;
133
+ lime5: string;
134
+ lime6: string;
135
+ lime7: string;
136
+ lime8: string;
137
+ lime9: string;
138
+ lime10: string;
139
+ lime11: string;
140
+ lime12: string;
141
+ grass1: string;
142
+ grass2: string;
143
+ grass3: string;
144
+ grass4: string;
145
+ grass5: string;
146
+ grass6: string;
147
+ grass7: string;
148
+ grass8: string;
149
+ grass9: string;
150
+ grass10: string;
151
+ grass11: string;
152
+ grass12: string;
153
+ green1: string;
154
+ green2: string;
155
+ green3: string;
156
+ green4: string;
157
+ green5: string;
158
+ green6: string;
159
+ green7: string;
160
+ green8: string;
161
+ green9: string;
162
+ green10: string;
163
+ green11: string;
164
+ green12: string;
165
+ teal1: string;
166
+ teal2: string;
167
+ teal3: string;
168
+ teal4: string;
169
+ teal5: string;
170
+ teal6: string;
171
+ teal7: string;
172
+ teal8: string;
173
+ teal9: string;
174
+ teal10: string;
175
+ teal11: string;
176
+ teal12: string;
177
+ cyan1: string;
178
+ cyan2: string;
179
+ cyan3: string;
180
+ cyan4: string;
181
+ cyan5: string;
182
+ cyan6: string;
183
+ cyan7: string;
184
+ cyan8: string;
185
+ cyan9: string;
186
+ cyan10: string;
187
+ cyan11: string;
188
+ cyan12: string;
189
+ mint1: string;
190
+ mint2: string;
191
+ mint3: string;
192
+ mint4: string;
193
+ mint5: string;
194
+ mint6: string;
195
+ mint7: string;
196
+ mint8: string;
197
+ mint9: string;
198
+ mint10: string;
199
+ mint11: string;
200
+ mint12: string;
201
+ sky1: string;
202
+ sky2: string;
203
+ sky3: string;
204
+ sky4: string;
205
+ sky5: string;
206
+ sky6: string;
207
+ sky7: string;
208
+ sky8: string;
209
+ sky9: string;
210
+ sky10: string;
211
+ sky11: string;
212
+ sky12: string;
213
+ blue1: string;
214
+ blue2: string;
215
+ blue3: string;
216
+ blue4: string;
217
+ blue5: string;
218
+ blue6: string;
219
+ blue7: string;
220
+ blue8: string;
221
+ blue9: string;
222
+ blue10: string;
223
+ blue11: string;
224
+ blue12: string;
225
+ indigo1: string;
226
+ indigo2: string;
227
+ indigo3: string;
228
+ indigo4: string;
229
+ indigo5: string;
230
+ indigo6: string;
231
+ indigo7: string;
232
+ indigo8: string;
233
+ indigo9: string;
234
+ indigo10: string;
235
+ indigo11: string;
236
+ indigo12: string;
237
+ violet1: string;
238
+ violet2: string;
239
+ violet3: string;
240
+ violet4: string;
241
+ violet5: string;
242
+ violet6: string;
243
+ violet7: string;
244
+ violet8: string;
245
+ violet9: string;
246
+ violet10: string;
247
+ violet11: string;
248
+ violet12: string;
249
+ purple1: string;
250
+ purple2: string;
251
+ purple3: string;
252
+ purple4: string;
253
+ purple5: string;
254
+ purple6: string;
255
+ purple7: string;
256
+ purple8: string;
257
+ purple9: string;
258
+ purple10: string;
259
+ purple11: string;
260
+ purple12: string;
261
+ plum1: string;
262
+ plum2: string;
263
+ plum3: string;
264
+ plum4: string;
265
+ plum5: string;
266
+ plum6: string;
267
+ plum7: string;
268
+ plum8: string;
269
+ plum9: string;
270
+ plum10: string;
271
+ plum11: string;
272
+ plum12: string;
273
+ pink1: string;
274
+ pink2: string;
275
+ pink3: string;
276
+ pink4: string;
277
+ pink5: string;
278
+ pink6: string;
279
+ pink7: string;
280
+ pink8: string;
281
+ pink9: string;
282
+ pink10: string;
283
+ pink11: string;
284
+ pink12: string;
285
+ crimson1: string;
286
+ crimson2: string;
287
+ crimson3: string;
288
+ crimson4: string;
289
+ crimson5: string;
290
+ crimson6: string;
291
+ crimson7: string;
292
+ crimson8: string;
293
+ crimson9: string;
294
+ crimson10: string;
295
+ crimson11: string;
296
+ crimson12: string;
297
+ red1: string;
298
+ red2: string;
299
+ red3: string;
300
+ red4: string;
301
+ red5: string;
302
+ red6: string;
303
+ red7: string;
304
+ red8: string;
305
+ red9: string;
306
+ red10: string;
307
+ red11: string;
308
+ red12: string;
309
+ tomato1: string;
310
+ tomato2: string;
311
+ tomato3: string;
312
+ tomato4: string;
313
+ tomato5: string;
314
+ tomato6: string;
315
+ tomato7: string;
316
+ tomato8: string;
317
+ tomato9: string;
318
+ tomato10: string;
319
+ tomato11: string;
320
+ tomato12: string;
321
+ sand1: string;
322
+ sand2: string;
323
+ sand3: string;
324
+ sand4: string;
325
+ sand5: string;
326
+ sand6: string;
327
+ sand7: string;
328
+ sand8: string;
329
+ sand9: string;
330
+ sand10: string;
331
+ sand11: string;
332
+ sand12: string;
333
+ olive1: string;
334
+ olive2: string;
335
+ olive3: string;
336
+ olive4: string;
337
+ olive5: string;
338
+ olive6: string;
339
+ olive7: string;
340
+ olive8: string;
341
+ olive9: string;
342
+ olive10: string;
343
+ olive11: string;
344
+ olive12: string;
345
+ sage1: string;
346
+ sage2: string;
347
+ sage3: string;
348
+ sage4: string;
349
+ sage5: string;
350
+ sage6: string;
351
+ sage7: string;
352
+ sage8: string;
353
+ sage9: string;
354
+ sage10: string;
355
+ sage11: string;
356
+ sage12: string;
357
+ slate1: string;
358
+ slate2: string;
359
+ slate3: string;
360
+ slate4: string;
361
+ slate5: string;
362
+ slate6: string;
363
+ slate7: string;
364
+ slate8: string;
365
+ slate9: string;
366
+ slate10: string;
367
+ slate11: string;
368
+ slate12: string;
369
+ mauve1: string;
370
+ mauve2: string;
371
+ mauve3: string;
372
+ mauve4: string;
373
+ mauve5: string;
374
+ mauve6: string;
375
+ mauve7: string;
376
+ mauve8: string;
377
+ mauve9: string;
378
+ mauve10: string;
379
+ mauve11: string;
380
+ mauve12: string;
381
+ gray1: string;
382
+ gray2: string;
383
+ gray3: string;
384
+ gray4: string;
385
+ gray5: string;
386
+ gray6: string;
387
+ gray7: string;
388
+ gray8: string;
389
+ gray9: string;
390
+ gray10: string;
391
+ gray11: string;
392
+ gray12: string;
393
+ };
394
+ fonts: {
395
+ untitled: string;
396
+ mono: string;
397
+ };
398
+ space: {
399
+ 1: string;
400
+ 2: string;
401
+ 3: string;
402
+ 4: string;
403
+ 5: string;
404
+ 6: string;
405
+ 7: string;
406
+ 8: string;
407
+ 9: string;
408
+ };
409
+ sizes: {
410
+ 1: string;
411
+ 2: string;
412
+ 3: string;
413
+ 4: string;
414
+ 5: string;
415
+ 6: string;
416
+ 7: string;
417
+ 8: string;
418
+ 9: string;
419
+ };
420
+ fontSizes: {
421
+ 1: string;
422
+ 2: string;
423
+ 3: string;
424
+ 4: string;
425
+ 5: string;
426
+ 6: string;
427
+ 7: string;
428
+ 8: string;
429
+ 9: string;
430
+ };
431
+ radii: {
432
+ 1: string;
433
+ 2: string;
434
+ 3: string;
435
+ 4: string;
436
+ round: string;
437
+ pill: string;
438
+ };
439
+ zIndices: {
440
+ 1: string;
441
+ 2: string;
442
+ 3: string;
443
+ 4: string;
444
+ max: string;
445
+ };
446
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
447
+ p: (value: {
448
+ readonly [$$PropertyValue]: "padding";
449
+ }) => {
450
+ padding: {
451
+ readonly [$$PropertyValue]: "padding";
452
+ };
453
+ };
454
+ pt: (value: {
455
+ readonly [$$PropertyValue]: "paddingTop";
456
+ }) => {
457
+ paddingTop: {
458
+ readonly [$$PropertyValue]: "paddingTop";
459
+ };
460
+ };
461
+ pr: (value: {
462
+ readonly [$$PropertyValue]: "paddingRight";
463
+ }) => {
464
+ paddingRight: {
465
+ readonly [$$PropertyValue]: "paddingRight";
466
+ };
467
+ };
468
+ pb: (value: {
469
+ readonly [$$PropertyValue]: "paddingBottom";
470
+ }) => {
471
+ paddingBottom: {
472
+ readonly [$$PropertyValue]: "paddingBottom";
473
+ };
474
+ };
475
+ pl: (value: {
476
+ readonly [$$PropertyValue]: "paddingLeft";
477
+ }) => {
478
+ paddingLeft: {
479
+ readonly [$$PropertyValue]: "paddingLeft";
480
+ };
481
+ };
482
+ px: (value: {
483
+ readonly [$$PropertyValue]: "paddingLeft";
484
+ }) => {
485
+ paddingLeft: {
486
+ readonly [$$PropertyValue]: "paddingLeft";
487
+ };
488
+ paddingRight: {
489
+ readonly [$$PropertyValue]: "paddingLeft";
490
+ };
491
+ };
492
+ py: (value: {
493
+ readonly [$$PropertyValue]: "paddingTop";
494
+ }) => {
495
+ paddingTop: {
496
+ readonly [$$PropertyValue]: "paddingTop";
497
+ };
498
+ paddingBottom: {
499
+ readonly [$$PropertyValue]: "paddingTop";
500
+ };
501
+ };
502
+ m: (value: {
503
+ readonly [$$PropertyValue]: "margin";
504
+ }) => {
505
+ margin: {
506
+ readonly [$$PropertyValue]: "margin";
507
+ };
508
+ };
509
+ mt: (value: {
510
+ readonly [$$PropertyValue]: "marginTop";
511
+ }) => {
512
+ marginTop: {
513
+ readonly [$$PropertyValue]: "marginTop";
514
+ };
515
+ };
516
+ mr: (value: {
517
+ readonly [$$PropertyValue]: "marginRight";
518
+ }) => {
519
+ marginRight: {
520
+ readonly [$$PropertyValue]: "marginRight";
521
+ };
522
+ };
523
+ mb: (value: {
524
+ readonly [$$PropertyValue]: "marginBottom";
525
+ }) => {
526
+ marginBottom: {
527
+ readonly [$$PropertyValue]: "marginBottom";
528
+ };
529
+ };
530
+ ml: (value: {
531
+ readonly [$$PropertyValue]: "marginLeft";
532
+ }) => {
533
+ marginLeft: {
534
+ readonly [$$PropertyValue]: "marginLeft";
535
+ };
536
+ };
537
+ mx: (value: {
538
+ readonly [$$PropertyValue]: "marginLeft";
539
+ }) => {
540
+ marginLeft: {
541
+ readonly [$$PropertyValue]: "marginLeft";
542
+ };
543
+ marginRight: {
544
+ readonly [$$PropertyValue]: "marginLeft";
545
+ };
546
+ };
547
+ my: (value: {
548
+ readonly [$$PropertyValue]: "marginTop";
549
+ }) => {
550
+ marginTop: {
551
+ readonly [$$PropertyValue]: "marginTop";
552
+ };
553
+ marginBottom: {
554
+ readonly [$$PropertyValue]: "marginTop";
555
+ };
556
+ };
557
+ ta: (value: {
558
+ readonly [$$PropertyValue]: "textAlign";
559
+ }) => {
560
+ textAlign: {
561
+ readonly [$$PropertyValue]: "textAlign";
562
+ };
563
+ };
564
+ fd: (value: {
565
+ readonly [$$PropertyValue]: "flexDirection";
566
+ }) => {
567
+ flexDirection: {
568
+ readonly [$$PropertyValue]: "flexDirection";
569
+ };
570
+ };
571
+ fw: (value: {
572
+ readonly [$$PropertyValue]: "flexWrap";
573
+ }) => {
574
+ flexWrap: {
575
+ readonly [$$PropertyValue]: "flexWrap";
576
+ };
577
+ };
578
+ ai: (value: {
579
+ readonly [$$PropertyValue]: "alignItems";
580
+ }) => {
581
+ alignItems: {
582
+ readonly [$$PropertyValue]: "alignItems";
583
+ };
584
+ };
585
+ ac: (value: {
586
+ readonly [$$PropertyValue]: "alignContent";
587
+ }) => {
588
+ alignContent: {
589
+ readonly [$$PropertyValue]: "alignContent";
590
+ };
591
+ };
592
+ jc: (value: {
593
+ readonly [$$PropertyValue]: "justifyContent";
594
+ }) => {
595
+ justifyContent: {
596
+ readonly [$$PropertyValue]: "justifyContent";
597
+ };
598
+ };
599
+ as: (value: {
600
+ readonly [$$PropertyValue]: "alignSelf";
601
+ }) => {
602
+ alignSelf: {
603
+ readonly [$$PropertyValue]: "alignSelf";
604
+ };
605
+ };
606
+ fg: (value: {
607
+ readonly [$$PropertyValue]: "flexGrow";
608
+ }) => {
609
+ flexGrow: {
610
+ readonly [$$PropertyValue]: "flexGrow";
611
+ };
612
+ };
613
+ fs: (value: {
614
+ readonly [$$PropertyValue]: "flexShrink";
615
+ }) => {
616
+ flexShrink: {
617
+ readonly [$$PropertyValue]: "flexShrink";
618
+ };
619
+ };
620
+ fb: (value: {
621
+ readonly [$$PropertyValue]: "flexBasis";
622
+ }) => {
623
+ flexBasis: {
624
+ readonly [$$PropertyValue]: "flexBasis";
625
+ };
626
+ };
627
+ bc: (value: {
628
+ readonly [$$PropertyValue]: "backgroundColor";
629
+ }) => {
630
+ backgroundColor: {
631
+ readonly [$$PropertyValue]: "backgroundColor";
632
+ };
633
+ };
634
+ br: (value: {
635
+ readonly [$$PropertyValue]: "borderRadius";
636
+ }) => {
637
+ borderRadius: {
638
+ readonly [$$PropertyValue]: "borderRadius";
639
+ };
640
+ };
641
+ btrr: (value: {
642
+ readonly [$$PropertyValue]: "borderTopRightRadius";
643
+ }) => {
644
+ borderTopRightRadius: {
645
+ readonly [$$PropertyValue]: "borderTopRightRadius";
646
+ };
647
+ };
648
+ bbrr: (value: {
649
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
650
+ }) => {
651
+ borderBottomRightRadius: {
652
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
653
+ };
654
+ };
655
+ bblr: (value: {
656
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
657
+ }) => {
658
+ borderBottomLeftRadius: {
659
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
660
+ };
661
+ };
662
+ btlr: (value: {
663
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
664
+ }) => {
665
+ borderTopLeftRadius: {
666
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
667
+ };
668
+ };
669
+ bs: (value: {
670
+ readonly [$$PropertyValue]: "boxShadow";
671
+ }) => {
672
+ boxShadow: {
673
+ readonly [$$PropertyValue]: "boxShadow";
674
+ };
675
+ };
676
+ lh: (value: {
677
+ readonly [$$PropertyValue]: "lineHeight";
678
+ }) => {
679
+ lineHeight: {
680
+ readonly [$$PropertyValue]: "lineHeight";
681
+ };
682
+ };
683
+ ox: (value: {
684
+ readonly [$$PropertyValue]: "overflowX";
685
+ }) => {
686
+ overflowX: {
687
+ readonly [$$PropertyValue]: "overflowX";
688
+ };
689
+ };
690
+ oy: (value: {
691
+ readonly [$$PropertyValue]: "overflowY";
692
+ }) => {
693
+ overflowY: {
694
+ readonly [$$PropertyValue]: "overflowY";
695
+ };
696
+ };
697
+ pe: (value: {
698
+ readonly [$$PropertyValue]: "pointerEvents";
699
+ }) => {
700
+ pointerEvents: {
701
+ readonly [$$PropertyValue]: "pointerEvents";
702
+ };
703
+ };
704
+ us: (value: {
705
+ readonly [$$PropertyValue]: "userSelect";
706
+ }) => {
707
+ WebkitUserSelect: {
708
+ readonly [$$PropertyValue]: "userSelect";
709
+ };
710
+ userSelect: {
711
+ readonly [$$PropertyValue]: "userSelect";
712
+ };
713
+ };
714
+ userSelect: (value: {
715
+ readonly [$$PropertyValue]: "userSelect";
716
+ }) => {
717
+ WebkitUserSelect: {
718
+ readonly [$$PropertyValue]: "userSelect";
719
+ };
720
+ userSelect: {
721
+ readonly [$$PropertyValue]: "userSelect";
722
+ };
723
+ };
724
+ size: (value: {
725
+ readonly [$$PropertyValue]: "width";
726
+ }) => {
727
+ width: {
728
+ readonly [$$PropertyValue]: "width";
729
+ };
730
+ height: {
731
+ readonly [$$PropertyValue]: "width";
732
+ };
733
+ };
734
+ appearance: (value: {
735
+ readonly [$$PropertyValue]: "appearance";
736
+ }) => {
737
+ WebkitAppearance: {
738
+ readonly [$$PropertyValue]: "appearance";
739
+ };
740
+ appearance: {
741
+ readonly [$$PropertyValue]: "appearance";
742
+ };
743
+ };
744
+ backgroundClip: (value: {
745
+ readonly [$$PropertyValue]: "backgroundClip";
746
+ }) => {
747
+ WebkitBackgroundClip: {
748
+ readonly [$$PropertyValue]: "backgroundClip";
749
+ };
750
+ backgroundClip: {
751
+ readonly [$$PropertyValue]: "backgroundClip";
752
+ };
753
+ };
754
+ }>>;
755
+ declare type SwitchVariants = VariantProps<typeof StyledSwitch>;
756
+ declare type SwitchPrimitiveProps = React.ComponentProps<typeof SwitchPrimitive.Root>;
757
+ declare type SwitchProps = SwitchPrimitiveProps & SwitchVariants & {
758
+ css?: CSS;
759
+ };
760
+ export declare const Switch: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<Pick<SwitchProps, "color" | "translate" | "hidden" | "size" | "style" | "form" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "asChild" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "type" | "value" | "checked" | "required" | "onCheckedChange" | "css"> & React.RefAttributes<HTMLButtonElement>>, {}, {
761
+ bp1: "(min-width: 520px)";
762
+ bp2: "(min-width: 900px)";
763
+ bp3: "(min-width: 1200px)";
764
+ bp4: "(min-width: 1800px)";
765
+ motion: "(prefers-reduced-motion)";
766
+ hover: "(any-hover: hover)";
767
+ dark: "(prefers-color-scheme: dark)";
768
+ light: "(prefers-color-scheme: light)";
769
+ }, import("@stitches/react/types/css-util").CSS<{
770
+ bp1: "(min-width: 520px)";
771
+ bp2: "(min-width: 900px)";
772
+ bp3: "(min-width: 1200px)";
773
+ bp4: "(min-width: 1800px)";
774
+ motion: "(prefers-reduced-motion)";
775
+ hover: "(any-hover: hover)";
776
+ dark: "(prefers-color-scheme: dark)";
777
+ light: "(prefers-color-scheme: light)";
778
+ }, {
779
+ colors: {
780
+ hiContrast: string;
781
+ loContrast: string;
782
+ canvas: string;
783
+ panel: string;
784
+ transparentPanel: string;
785
+ shadowLight: string;
786
+ shadowDark: string;
787
+ blackA1: string;
788
+ blackA2: string;
789
+ blackA3: string;
790
+ blackA4: string;
791
+ blackA5: string;
792
+ blackA6: string;
793
+ blackA7: string;
794
+ blackA8: string;
795
+ blackA9: string;
796
+ blackA10: string;
797
+ blackA11: string;
798
+ blackA12: string;
799
+ whiteA1: string;
800
+ whiteA2: string;
801
+ whiteA3: string;
802
+ whiteA4: string;
803
+ whiteA5: string;
804
+ whiteA6: string;
805
+ whiteA7: string;
806
+ whiteA8: string;
807
+ whiteA9: string;
808
+ whiteA10: string;
809
+ whiteA11: string;
810
+ whiteA12: string;
811
+ gold1: string;
812
+ gold2: string;
813
+ gold3: string;
814
+ gold4: string;
815
+ gold5: string;
816
+ gold6: string;
817
+ gold7: string;
818
+ gold8: string;
819
+ gold9: string;
820
+ gold10: string;
821
+ gold11: string;
822
+ gold12: string;
823
+ bronze1: string;
824
+ bronze2: string;
825
+ bronze3: string;
826
+ bronze4: string;
827
+ bronze5: string;
828
+ bronze6: string;
829
+ bronze7: string;
830
+ bronze8: string;
831
+ bronze9: string;
832
+ bronze10: string;
833
+ bronze11: string;
834
+ bronze12: string;
835
+ brown1: string;
836
+ brown2: string;
837
+ brown3: string;
838
+ brown4: string;
839
+ brown5: string;
840
+ brown6: string;
841
+ brown7: string;
842
+ brown8: string;
843
+ brown9: string;
844
+ brown10: string;
845
+ brown11: string;
846
+ brown12: string;
847
+ orange1: string;
848
+ orange2: string;
849
+ orange3: string;
850
+ orange4: string;
851
+ orange5: string;
852
+ orange6: string;
853
+ orange7: string;
854
+ orange8: string;
855
+ orange9: string;
856
+ orange10: string;
857
+ orange11: string;
858
+ orange12: string;
859
+ amber1: string;
860
+ amber2: string;
861
+ amber3: string;
862
+ amber4: string;
863
+ amber5: string;
864
+ amber6: string;
865
+ amber7: string;
866
+ amber8: string;
867
+ amber9: string;
868
+ amber10: string;
869
+ amber11: string;
870
+ amber12: string;
871
+ yellow1: string;
872
+ yellow2: string;
873
+ yellow3: string;
874
+ yellow4: string;
875
+ yellow5: string;
876
+ yellow6: string;
877
+ yellow7: string;
878
+ yellow8: string;
879
+ yellow9: string;
880
+ yellow10: string;
881
+ yellow11: string;
882
+ yellow12: string;
883
+ lime1: string;
884
+ lime2: string;
885
+ lime3: string;
886
+ lime4: string;
887
+ lime5: string;
888
+ lime6: string;
889
+ lime7: string;
890
+ lime8: string;
891
+ lime9: string;
892
+ lime10: string;
893
+ lime11: string;
894
+ lime12: string;
895
+ grass1: string;
896
+ grass2: string;
897
+ grass3: string;
898
+ grass4: string;
899
+ grass5: string;
900
+ grass6: string;
901
+ grass7: string;
902
+ grass8: string;
903
+ grass9: string;
904
+ grass10: string;
905
+ grass11: string;
906
+ grass12: string;
907
+ green1: string;
908
+ green2: string;
909
+ green3: string;
910
+ green4: string;
911
+ green5: string;
912
+ green6: string;
913
+ green7: string;
914
+ green8: string;
915
+ green9: string;
916
+ green10: string;
917
+ green11: string;
918
+ green12: string;
919
+ teal1: string;
920
+ teal2: string;
921
+ teal3: string;
922
+ teal4: string;
923
+ teal5: string;
924
+ teal6: string;
925
+ teal7: string;
926
+ teal8: string;
927
+ teal9: string;
928
+ teal10: string;
929
+ teal11: string;
930
+ teal12: string;
931
+ cyan1: string;
932
+ cyan2: string;
933
+ cyan3: string;
934
+ cyan4: string;
935
+ cyan5: string;
936
+ cyan6: string;
937
+ cyan7: string;
938
+ cyan8: string;
939
+ cyan9: string;
940
+ cyan10: string;
941
+ cyan11: string;
942
+ cyan12: string;
943
+ mint1: string;
944
+ mint2: string;
945
+ mint3: string;
946
+ mint4: string;
947
+ mint5: string;
948
+ mint6: string;
949
+ mint7: string;
950
+ mint8: string;
951
+ mint9: string;
952
+ mint10: string;
953
+ mint11: string;
954
+ mint12: string;
955
+ sky1: string;
956
+ sky2: string;
957
+ sky3: string;
958
+ sky4: string;
959
+ sky5: string;
960
+ sky6: string;
961
+ sky7: string;
962
+ sky8: string;
963
+ sky9: string;
964
+ sky10: string;
965
+ sky11: string;
966
+ sky12: string;
967
+ blue1: string;
968
+ blue2: string;
969
+ blue3: string;
970
+ blue4: string;
971
+ blue5: string;
972
+ blue6: string;
973
+ blue7: string;
974
+ blue8: string;
975
+ blue9: string;
976
+ blue10: string;
977
+ blue11: string;
978
+ blue12: string;
979
+ indigo1: string;
980
+ indigo2: string;
981
+ indigo3: string;
982
+ indigo4: string;
983
+ indigo5: string;
984
+ indigo6: string;
985
+ indigo7: string;
986
+ indigo8: string;
987
+ indigo9: string;
988
+ indigo10: string;
989
+ indigo11: string;
990
+ indigo12: string;
991
+ violet1: string;
992
+ violet2: string;
993
+ violet3: string;
994
+ violet4: string;
995
+ violet5: string;
996
+ violet6: string;
997
+ violet7: string;
998
+ violet8: string;
999
+ violet9: string;
1000
+ violet10: string;
1001
+ violet11: string;
1002
+ violet12: string;
1003
+ purple1: string;
1004
+ purple2: string;
1005
+ purple3: string;
1006
+ purple4: string;
1007
+ purple5: string;
1008
+ purple6: string;
1009
+ purple7: string;
1010
+ purple8: string;
1011
+ purple9: string;
1012
+ purple10: string;
1013
+ purple11: string;
1014
+ purple12: string;
1015
+ plum1: string;
1016
+ plum2: string;
1017
+ plum3: string;
1018
+ plum4: string;
1019
+ plum5: string;
1020
+ plum6: string;
1021
+ plum7: string;
1022
+ plum8: string;
1023
+ plum9: string;
1024
+ plum10: string;
1025
+ plum11: string;
1026
+ plum12: string;
1027
+ pink1: string;
1028
+ pink2: string;
1029
+ pink3: string;
1030
+ pink4: string;
1031
+ pink5: string;
1032
+ pink6: string;
1033
+ pink7: string;
1034
+ pink8: string;
1035
+ pink9: string;
1036
+ pink10: string;
1037
+ pink11: string;
1038
+ pink12: string;
1039
+ crimson1: string;
1040
+ crimson2: string;
1041
+ crimson3: string;
1042
+ crimson4: string;
1043
+ crimson5: string;
1044
+ crimson6: string;
1045
+ crimson7: string;
1046
+ crimson8: string;
1047
+ crimson9: string;
1048
+ crimson10: string;
1049
+ crimson11: string;
1050
+ crimson12: string;
1051
+ red1: string;
1052
+ red2: string;
1053
+ red3: string;
1054
+ red4: string;
1055
+ red5: string;
1056
+ red6: string;
1057
+ red7: string;
1058
+ red8: string;
1059
+ red9: string;
1060
+ red10: string;
1061
+ red11: string;
1062
+ red12: string;
1063
+ tomato1: string;
1064
+ tomato2: string;
1065
+ tomato3: string;
1066
+ tomato4: string;
1067
+ tomato5: string;
1068
+ tomato6: string;
1069
+ tomato7: string;
1070
+ tomato8: string;
1071
+ tomato9: string;
1072
+ tomato10: string;
1073
+ tomato11: string;
1074
+ tomato12: string;
1075
+ sand1: string;
1076
+ sand2: string;
1077
+ sand3: string;
1078
+ sand4: string;
1079
+ sand5: string;
1080
+ sand6: string;
1081
+ sand7: string;
1082
+ sand8: string;
1083
+ sand9: string;
1084
+ sand10: string;
1085
+ sand11: string;
1086
+ sand12: string;
1087
+ olive1: string;
1088
+ olive2: string;
1089
+ olive3: string;
1090
+ olive4: string;
1091
+ olive5: string;
1092
+ olive6: string;
1093
+ olive7: string;
1094
+ olive8: string;
1095
+ olive9: string;
1096
+ olive10: string;
1097
+ olive11: string;
1098
+ olive12: string;
1099
+ sage1: string;
1100
+ sage2: string;
1101
+ sage3: string;
1102
+ sage4: string;
1103
+ sage5: string;
1104
+ sage6: string;
1105
+ sage7: string;
1106
+ sage8: string;
1107
+ sage9: string;
1108
+ sage10: string;
1109
+ sage11: string;
1110
+ sage12: string;
1111
+ slate1: string;
1112
+ slate2: string;
1113
+ slate3: string;
1114
+ slate4: string;
1115
+ slate5: string;
1116
+ slate6: string;
1117
+ slate7: string;
1118
+ slate8: string;
1119
+ slate9: string;
1120
+ slate10: string;
1121
+ slate11: string;
1122
+ slate12: string;
1123
+ mauve1: string;
1124
+ mauve2: string;
1125
+ mauve3: string;
1126
+ mauve4: string;
1127
+ mauve5: string;
1128
+ mauve6: string;
1129
+ mauve7: string;
1130
+ mauve8: string;
1131
+ mauve9: string;
1132
+ mauve10: string;
1133
+ mauve11: string;
1134
+ mauve12: string;
1135
+ gray1: string;
1136
+ gray2: string;
1137
+ gray3: string;
1138
+ gray4: string;
1139
+ gray5: string;
1140
+ gray6: string;
1141
+ gray7: string;
1142
+ gray8: string;
1143
+ gray9: string;
1144
+ gray10: string;
1145
+ gray11: string;
1146
+ gray12: string;
1147
+ };
1148
+ fonts: {
1149
+ untitled: string;
1150
+ mono: string;
1151
+ };
1152
+ space: {
1153
+ 1: string;
1154
+ 2: string;
1155
+ 3: string;
1156
+ 4: string;
1157
+ 5: string;
1158
+ 6: string;
1159
+ 7: string;
1160
+ 8: string;
1161
+ 9: string;
1162
+ };
1163
+ sizes: {
1164
+ 1: string;
1165
+ 2: string;
1166
+ 3: string;
1167
+ 4: string;
1168
+ 5: string;
1169
+ 6: string;
1170
+ 7: string;
1171
+ 8: string;
1172
+ 9: string;
1173
+ };
1174
+ fontSizes: {
1175
+ 1: string;
1176
+ 2: string;
1177
+ 3: string;
1178
+ 4: string;
1179
+ 5: string;
1180
+ 6: string;
1181
+ 7: string;
1182
+ 8: string;
1183
+ 9: string;
1184
+ };
1185
+ radii: {
1186
+ 1: string;
1187
+ 2: string;
1188
+ 3: string;
1189
+ 4: string;
1190
+ round: string;
1191
+ pill: string;
1192
+ };
1193
+ zIndices: {
1194
+ 1: string;
1195
+ 2: string;
1196
+ 3: string;
1197
+ 4: string;
1198
+ max: string;
1199
+ };
1200
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
1201
+ p: (value: {
1202
+ readonly [$$PropertyValue]: "padding";
1203
+ }) => {
1204
+ padding: {
1205
+ readonly [$$PropertyValue]: "padding";
1206
+ };
1207
+ };
1208
+ pt: (value: {
1209
+ readonly [$$PropertyValue]: "paddingTop";
1210
+ }) => {
1211
+ paddingTop: {
1212
+ readonly [$$PropertyValue]: "paddingTop";
1213
+ };
1214
+ };
1215
+ pr: (value: {
1216
+ readonly [$$PropertyValue]: "paddingRight";
1217
+ }) => {
1218
+ paddingRight: {
1219
+ readonly [$$PropertyValue]: "paddingRight";
1220
+ };
1221
+ };
1222
+ pb: (value: {
1223
+ readonly [$$PropertyValue]: "paddingBottom";
1224
+ }) => {
1225
+ paddingBottom: {
1226
+ readonly [$$PropertyValue]: "paddingBottom";
1227
+ };
1228
+ };
1229
+ pl: (value: {
1230
+ readonly [$$PropertyValue]: "paddingLeft";
1231
+ }) => {
1232
+ paddingLeft: {
1233
+ readonly [$$PropertyValue]: "paddingLeft";
1234
+ };
1235
+ };
1236
+ px: (value: {
1237
+ readonly [$$PropertyValue]: "paddingLeft";
1238
+ }) => {
1239
+ paddingLeft: {
1240
+ readonly [$$PropertyValue]: "paddingLeft";
1241
+ };
1242
+ paddingRight: {
1243
+ readonly [$$PropertyValue]: "paddingLeft";
1244
+ };
1245
+ };
1246
+ py: (value: {
1247
+ readonly [$$PropertyValue]: "paddingTop";
1248
+ }) => {
1249
+ paddingTop: {
1250
+ readonly [$$PropertyValue]: "paddingTop";
1251
+ };
1252
+ paddingBottom: {
1253
+ readonly [$$PropertyValue]: "paddingTop";
1254
+ };
1255
+ };
1256
+ m: (value: {
1257
+ readonly [$$PropertyValue]: "margin";
1258
+ }) => {
1259
+ margin: {
1260
+ readonly [$$PropertyValue]: "margin";
1261
+ };
1262
+ };
1263
+ mt: (value: {
1264
+ readonly [$$PropertyValue]: "marginTop";
1265
+ }) => {
1266
+ marginTop: {
1267
+ readonly [$$PropertyValue]: "marginTop";
1268
+ };
1269
+ };
1270
+ mr: (value: {
1271
+ readonly [$$PropertyValue]: "marginRight";
1272
+ }) => {
1273
+ marginRight: {
1274
+ readonly [$$PropertyValue]: "marginRight";
1275
+ };
1276
+ };
1277
+ mb: (value: {
1278
+ readonly [$$PropertyValue]: "marginBottom";
1279
+ }) => {
1280
+ marginBottom: {
1281
+ readonly [$$PropertyValue]: "marginBottom";
1282
+ };
1283
+ };
1284
+ ml: (value: {
1285
+ readonly [$$PropertyValue]: "marginLeft";
1286
+ }) => {
1287
+ marginLeft: {
1288
+ readonly [$$PropertyValue]: "marginLeft";
1289
+ };
1290
+ };
1291
+ mx: (value: {
1292
+ readonly [$$PropertyValue]: "marginLeft";
1293
+ }) => {
1294
+ marginLeft: {
1295
+ readonly [$$PropertyValue]: "marginLeft";
1296
+ };
1297
+ marginRight: {
1298
+ readonly [$$PropertyValue]: "marginLeft";
1299
+ };
1300
+ };
1301
+ my: (value: {
1302
+ readonly [$$PropertyValue]: "marginTop";
1303
+ }) => {
1304
+ marginTop: {
1305
+ readonly [$$PropertyValue]: "marginTop";
1306
+ };
1307
+ marginBottom: {
1308
+ readonly [$$PropertyValue]: "marginTop";
1309
+ };
1310
+ };
1311
+ ta: (value: {
1312
+ readonly [$$PropertyValue]: "textAlign";
1313
+ }) => {
1314
+ textAlign: {
1315
+ readonly [$$PropertyValue]: "textAlign";
1316
+ };
1317
+ };
1318
+ fd: (value: {
1319
+ readonly [$$PropertyValue]: "flexDirection";
1320
+ }) => {
1321
+ flexDirection: {
1322
+ readonly [$$PropertyValue]: "flexDirection";
1323
+ };
1324
+ };
1325
+ fw: (value: {
1326
+ readonly [$$PropertyValue]: "flexWrap";
1327
+ }) => {
1328
+ flexWrap: {
1329
+ readonly [$$PropertyValue]: "flexWrap";
1330
+ };
1331
+ };
1332
+ ai: (value: {
1333
+ readonly [$$PropertyValue]: "alignItems";
1334
+ }) => {
1335
+ alignItems: {
1336
+ readonly [$$PropertyValue]: "alignItems";
1337
+ };
1338
+ };
1339
+ ac: (value: {
1340
+ readonly [$$PropertyValue]: "alignContent";
1341
+ }) => {
1342
+ alignContent: {
1343
+ readonly [$$PropertyValue]: "alignContent";
1344
+ };
1345
+ };
1346
+ jc: (value: {
1347
+ readonly [$$PropertyValue]: "justifyContent";
1348
+ }) => {
1349
+ justifyContent: {
1350
+ readonly [$$PropertyValue]: "justifyContent";
1351
+ };
1352
+ };
1353
+ as: (value: {
1354
+ readonly [$$PropertyValue]: "alignSelf";
1355
+ }) => {
1356
+ alignSelf: {
1357
+ readonly [$$PropertyValue]: "alignSelf";
1358
+ };
1359
+ };
1360
+ fg: (value: {
1361
+ readonly [$$PropertyValue]: "flexGrow";
1362
+ }) => {
1363
+ flexGrow: {
1364
+ readonly [$$PropertyValue]: "flexGrow";
1365
+ };
1366
+ };
1367
+ fs: (value: {
1368
+ readonly [$$PropertyValue]: "flexShrink";
1369
+ }) => {
1370
+ flexShrink: {
1371
+ readonly [$$PropertyValue]: "flexShrink";
1372
+ };
1373
+ };
1374
+ fb: (value: {
1375
+ readonly [$$PropertyValue]: "flexBasis";
1376
+ }) => {
1377
+ flexBasis: {
1378
+ readonly [$$PropertyValue]: "flexBasis";
1379
+ };
1380
+ };
1381
+ bc: (value: {
1382
+ readonly [$$PropertyValue]: "backgroundColor";
1383
+ }) => {
1384
+ backgroundColor: {
1385
+ readonly [$$PropertyValue]: "backgroundColor";
1386
+ };
1387
+ };
1388
+ br: (value: {
1389
+ readonly [$$PropertyValue]: "borderRadius";
1390
+ }) => {
1391
+ borderRadius: {
1392
+ readonly [$$PropertyValue]: "borderRadius";
1393
+ };
1394
+ };
1395
+ btrr: (value: {
1396
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1397
+ }) => {
1398
+ borderTopRightRadius: {
1399
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1400
+ };
1401
+ };
1402
+ bbrr: (value: {
1403
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1404
+ }) => {
1405
+ borderBottomRightRadius: {
1406
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1407
+ };
1408
+ };
1409
+ bblr: (value: {
1410
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1411
+ }) => {
1412
+ borderBottomLeftRadius: {
1413
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1414
+ };
1415
+ };
1416
+ btlr: (value: {
1417
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1418
+ }) => {
1419
+ borderTopLeftRadius: {
1420
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1421
+ };
1422
+ };
1423
+ bs: (value: {
1424
+ readonly [$$PropertyValue]: "boxShadow";
1425
+ }) => {
1426
+ boxShadow: {
1427
+ readonly [$$PropertyValue]: "boxShadow";
1428
+ };
1429
+ };
1430
+ lh: (value: {
1431
+ readonly [$$PropertyValue]: "lineHeight";
1432
+ }) => {
1433
+ lineHeight: {
1434
+ readonly [$$PropertyValue]: "lineHeight";
1435
+ };
1436
+ };
1437
+ ox: (value: {
1438
+ readonly [$$PropertyValue]: "overflowX";
1439
+ }) => {
1440
+ overflowX: {
1441
+ readonly [$$PropertyValue]: "overflowX";
1442
+ };
1443
+ };
1444
+ oy: (value: {
1445
+ readonly [$$PropertyValue]: "overflowY";
1446
+ }) => {
1447
+ overflowY: {
1448
+ readonly [$$PropertyValue]: "overflowY";
1449
+ };
1450
+ };
1451
+ pe: (value: {
1452
+ readonly [$$PropertyValue]: "pointerEvents";
1453
+ }) => {
1454
+ pointerEvents: {
1455
+ readonly [$$PropertyValue]: "pointerEvents";
1456
+ };
1457
+ };
1458
+ us: (value: {
1459
+ readonly [$$PropertyValue]: "userSelect";
1460
+ }) => {
1461
+ WebkitUserSelect: {
1462
+ readonly [$$PropertyValue]: "userSelect";
1463
+ };
1464
+ userSelect: {
1465
+ readonly [$$PropertyValue]: "userSelect";
1466
+ };
1467
+ };
1468
+ userSelect: (value: {
1469
+ readonly [$$PropertyValue]: "userSelect";
1470
+ }) => {
1471
+ WebkitUserSelect: {
1472
+ readonly [$$PropertyValue]: "userSelect";
1473
+ };
1474
+ userSelect: {
1475
+ readonly [$$PropertyValue]: "userSelect";
1476
+ };
1477
+ };
1478
+ size: (value: {
1479
+ readonly [$$PropertyValue]: "width";
1480
+ }) => {
1481
+ width: {
1482
+ readonly [$$PropertyValue]: "width";
1483
+ };
1484
+ height: {
1485
+ readonly [$$PropertyValue]: "width";
1486
+ };
1487
+ };
1488
+ appearance: (value: {
1489
+ readonly [$$PropertyValue]: "appearance";
1490
+ }) => {
1491
+ WebkitAppearance: {
1492
+ readonly [$$PropertyValue]: "appearance";
1493
+ };
1494
+ appearance: {
1495
+ readonly [$$PropertyValue]: "appearance";
1496
+ };
1497
+ };
1498
+ backgroundClip: (value: {
1499
+ readonly [$$PropertyValue]: "backgroundClip";
1500
+ }) => {
1501
+ WebkitBackgroundClip: {
1502
+ readonly [$$PropertyValue]: "backgroundClip";
1503
+ };
1504
+ backgroundClip: {
1505
+ readonly [$$PropertyValue]: "backgroundClip";
1506
+ };
1507
+ };
1508
+ }>>;
1509
+ export {};