@papyrus-ui/styles 0.2.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/css/styles.css +7706 -12102
- package/css/styles.css.map +1 -1
- package/css/styles.min.css +1 -1
- package/css/styles.min.css.map +1 -1
- package/dist/cjs/const/atoms.js +0 -4
- package/dist/cjs/const/atoms.js.map +1 -1
- package/dist/cjs/index.js +4 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/styles/atoms.css.vanilla.js +1 -1
- package/dist/cjs/styles/atoms.css.vanilla.js.map +1 -1
- package/dist/cjs/styles/global.css.vanilla.js +9 -1
- package/dist/cjs/styles/global.css.vanilla.js.map +1 -1
- package/dist/cjs/utils/partition-atoms.js +1 -0
- package/dist/cjs/utils/partition-atoms.js.map +1 -1
- package/dist/cjs/utils/partition-object.js +1 -0
- package/dist/cjs/utils/partition-object.js.map +1 -1
- package/dist/es/const/atoms.js +1 -4
- package/dist/es/const/atoms.js.map +1 -1
- package/dist/es/index.js +2 -4
- package/dist/es/index.js.map +1 -1
- package/dist/es/styles/atoms.css.vanilla.js +1 -1
- package/dist/es/styles/atoms.css.vanilla.js.map +1 -1
- package/dist/es/styles/global.css.vanilla.js +6 -2
- package/dist/es/styles/global.css.vanilla.js.map +1 -1
- package/dist/es/utils/partition-atoms.js +1 -0
- package/dist/es/utils/partition-atoms.js.map +1 -1
- package/dist/es/utils/partition-object.js +1 -0
- package/dist/es/utils/partition-object.js.map +1 -1
- package/dist/types/const/atoms.d.ts +0 -3
- package/dist/types/const/index.d.ts +0 -1
- package/dist/types/index.d.ts +0 -2
- package/dist/types/styles/atoms.css.d.ts +778 -592
- package/dist/types/styles/global.css.d.ts +1537 -121
- package/dist/types/types/design-tokens.d.ts +6 -0
- package/dist/types/types/index.d.ts +1 -1
- package/dist/types/utils/format-tokens.d.ts +4 -0
- package/dist/types/utils/partition-atoms.d.ts +1 -1
- package/dist/types/utils/partition-object.d.ts +1 -1
- package/package.json +1 -2
- package/dist/cjs/const/themes.js +0 -165
- package/dist/cjs/const/themes.js.map +0 -1
- package/dist/cjs/styles/themes.css.vanilla.js +0 -8
- package/dist/cjs/styles/themes.css.vanilla.js.map +0 -1
- package/dist/es/const/themes.js +0 -161
- package/dist/es/const/themes.js.map +0 -1
- package/dist/es/styles/themes.css.vanilla.js +0 -4
- package/dist/es/styles/themes.css.vanilla.js.map +0 -1
- package/dist/types/const/themes.d.ts +0 -2
- package/dist/types/styles/themes.css.d.ts +0 -1
- package/dist/types/types/theme.d.ts +0 -156
- package/fonts/boxicons.eot +0 -0
- package/fonts/boxicons.svg +0 -1660
- package/fonts/boxicons.ttf +0 -0
- package/fonts/boxicons.woff +0 -0
- package/fonts/boxicons.woff2 +0 -0
@@ -138,7 +138,7 @@ declare const responsiveProperties: {
|
|
138
138
|
length: 5;
|
139
139
|
};
|
140
140
|
values: {
|
141
|
-
|
141
|
+
xs: {
|
142
142
|
defaultClass: string;
|
143
143
|
conditions: {
|
144
144
|
mobile: string;
|
@@ -158,7 +158,7 @@ declare const responsiveProperties: {
|
|
158
158
|
desktopLg: string;
|
159
159
|
};
|
160
160
|
};
|
161
|
-
|
161
|
+
md: {
|
162
162
|
defaultClass: string;
|
163
163
|
conditions: {
|
164
164
|
mobile: string;
|
@@ -168,7 +168,7 @@ declare const responsiveProperties: {
|
|
168
168
|
desktopLg: string;
|
169
169
|
};
|
170
170
|
};
|
171
|
-
|
171
|
+
lg: {
|
172
172
|
defaultClass: string;
|
173
173
|
conditions: {
|
174
174
|
mobile: string;
|
@@ -238,6 +238,36 @@ declare const responsiveProperties: {
|
|
238
238
|
desktopLg: string;
|
239
239
|
};
|
240
240
|
};
|
241
|
+
"7xl": {
|
242
|
+
defaultClass: string;
|
243
|
+
conditions: {
|
244
|
+
mobile: string;
|
245
|
+
mobileLg: string;
|
246
|
+
tablet: string;
|
247
|
+
desktop: string;
|
248
|
+
desktopLg: string;
|
249
|
+
};
|
250
|
+
};
|
251
|
+
"8xl": {
|
252
|
+
defaultClass: string;
|
253
|
+
conditions: {
|
254
|
+
mobile: string;
|
255
|
+
mobileLg: string;
|
256
|
+
tablet: string;
|
257
|
+
desktop: string;
|
258
|
+
desktopLg: string;
|
259
|
+
};
|
260
|
+
};
|
261
|
+
"9xl": {
|
262
|
+
defaultClass: string;
|
263
|
+
conditions: {
|
264
|
+
mobile: string;
|
265
|
+
mobileLg: string;
|
266
|
+
tablet: string;
|
267
|
+
desktop: string;
|
268
|
+
desktopLg: string;
|
269
|
+
};
|
270
|
+
};
|
241
271
|
};
|
242
272
|
};
|
243
273
|
textAlign: {
|
@@ -1118,7 +1148,7 @@ declare const responsiveProperties: {
|
|
1118
1148
|
desktopLg: string;
|
1119
1149
|
};
|
1120
1150
|
};
|
1121
|
-
|
1151
|
+
screen: {
|
1122
1152
|
defaultClass: string;
|
1123
1153
|
conditions: {
|
1124
1154
|
mobile: string;
|
@@ -1128,7 +1158,7 @@ declare const responsiveProperties: {
|
|
1128
1158
|
desktopLg: string;
|
1129
1159
|
};
|
1130
1160
|
};
|
1131
|
-
|
1161
|
+
full: {
|
1132
1162
|
defaultClass: string;
|
1133
1163
|
conditions: {
|
1134
1164
|
mobile: string;
|
@@ -1138,7 +1168,7 @@ declare const responsiveProperties: {
|
|
1138
1168
|
desktopLg: string;
|
1139
1169
|
};
|
1140
1170
|
};
|
1141
|
-
|
1171
|
+
px: {
|
1142
1172
|
defaultClass: string;
|
1143
1173
|
conditions: {
|
1144
1174
|
mobile: string;
|
@@ -1148,7 +1178,7 @@ declare const responsiveProperties: {
|
|
1148
1178
|
desktopLg: string;
|
1149
1179
|
};
|
1150
1180
|
};
|
1151
|
-
|
1181
|
+
0.5: {
|
1152
1182
|
defaultClass: string;
|
1153
1183
|
conditions: {
|
1154
1184
|
mobile: string;
|
@@ -1635,7 +1665,7 @@ declare const responsiveProperties: {
|
|
1635
1665
|
desktopLg: string;
|
1636
1666
|
};
|
1637
1667
|
};
|
1638
|
-
|
1668
|
+
xs: {
|
1639
1669
|
defaultClass: string;
|
1640
1670
|
conditions: {
|
1641
1671
|
mobile: string;
|
@@ -1655,7 +1685,7 @@ declare const responsiveProperties: {
|
|
1655
1685
|
desktopLg: string;
|
1656
1686
|
};
|
1657
1687
|
};
|
1658
|
-
|
1688
|
+
md: {
|
1659
1689
|
defaultClass: string;
|
1660
1690
|
conditions: {
|
1661
1691
|
mobile: string;
|
@@ -1665,7 +1695,7 @@ declare const responsiveProperties: {
|
|
1665
1695
|
desktopLg: string;
|
1666
1696
|
};
|
1667
1697
|
};
|
1668
|
-
|
1698
|
+
lg: {
|
1669
1699
|
defaultClass: string;
|
1670
1700
|
conditions: {
|
1671
1701
|
mobile: string;
|
@@ -1705,7 +1735,7 @@ declare const responsiveProperties: {
|
|
1705
1735
|
desktopLg: string;
|
1706
1736
|
};
|
1707
1737
|
};
|
1708
|
-
|
1738
|
+
"4xl": {
|
1709
1739
|
defaultClass: string;
|
1710
1740
|
conditions: {
|
1711
1741
|
mobile: string;
|
@@ -1715,7 +1745,7 @@ declare const responsiveProperties: {
|
|
1715
1745
|
desktopLg: string;
|
1716
1746
|
};
|
1717
1747
|
};
|
1718
|
-
"
|
1748
|
+
"5xl": {
|
1719
1749
|
defaultClass: string;
|
1720
1750
|
conditions: {
|
1721
1751
|
mobile: string;
|
@@ -1725,7 +1755,7 @@ declare const responsiveProperties: {
|
|
1725
1755
|
desktopLg: string;
|
1726
1756
|
};
|
1727
1757
|
};
|
1728
|
-
"
|
1758
|
+
"6xl": {
|
1729
1759
|
defaultClass: string;
|
1730
1760
|
conditions: {
|
1731
1761
|
mobile: string;
|
@@ -1735,7 +1765,7 @@ declare const responsiveProperties: {
|
|
1735
1765
|
desktopLg: string;
|
1736
1766
|
};
|
1737
1767
|
};
|
1738
|
-
"
|
1768
|
+
"7xl": {
|
1739
1769
|
defaultClass: string;
|
1740
1770
|
conditions: {
|
1741
1771
|
mobile: string;
|
@@ -1745,7 +1775,7 @@ declare const responsiveProperties: {
|
|
1745
1775
|
desktopLg: string;
|
1746
1776
|
};
|
1747
1777
|
};
|
1748
|
-
|
1778
|
+
full: {
|
1749
1779
|
defaultClass: string;
|
1750
1780
|
conditions: {
|
1751
1781
|
mobile: string;
|
@@ -1755,7 +1785,7 @@ declare const responsiveProperties: {
|
|
1755
1785
|
desktopLg: string;
|
1756
1786
|
};
|
1757
1787
|
};
|
1758
|
-
|
1788
|
+
min: {
|
1759
1789
|
defaultClass: string;
|
1760
1790
|
conditions: {
|
1761
1791
|
mobile: string;
|
@@ -1765,7 +1795,7 @@ declare const responsiveProperties: {
|
|
1765
1795
|
desktopLg: string;
|
1766
1796
|
};
|
1767
1797
|
};
|
1768
|
-
|
1798
|
+
max: {
|
1769
1799
|
defaultClass: string;
|
1770
1800
|
conditions: {
|
1771
1801
|
mobile: string;
|
@@ -1775,7 +1805,7 @@ declare const responsiveProperties: {
|
|
1775
1805
|
desktopLg: string;
|
1776
1806
|
};
|
1777
1807
|
};
|
1778
|
-
|
1808
|
+
fit: {
|
1779
1809
|
defaultClass: string;
|
1780
1810
|
conditions: {
|
1781
1811
|
mobile: string;
|
@@ -1952,7 +1982,7 @@ declare const responsiveProperties: {
|
|
1952
1982
|
desktopLg: string;
|
1953
1983
|
};
|
1954
1984
|
};
|
1955
|
-
|
1985
|
+
full: {
|
1956
1986
|
defaultClass: string;
|
1957
1987
|
conditions: {
|
1958
1988
|
mobile: string;
|
@@ -1962,7 +1992,7 @@ declare const responsiveProperties: {
|
|
1962
1992
|
desktopLg: string;
|
1963
1993
|
};
|
1964
1994
|
};
|
1965
|
-
|
1995
|
+
px: {
|
1966
1996
|
defaultClass: string;
|
1967
1997
|
conditions: {
|
1968
1998
|
mobile: string;
|
@@ -1972,7 +2002,7 @@ declare const responsiveProperties: {
|
|
1972
2002
|
desktopLg: string;
|
1973
2003
|
};
|
1974
2004
|
};
|
1975
|
-
|
2005
|
+
0.5: {
|
1976
2006
|
defaultClass: string;
|
1977
2007
|
conditions: {
|
1978
2008
|
mobile: string;
|
@@ -2379,7 +2409,7 @@ declare const responsiveProperties: {
|
|
2379
2409
|
desktopLg: string;
|
2380
2410
|
};
|
2381
2411
|
};
|
2382
|
-
|
2412
|
+
screen: {
|
2383
2413
|
defaultClass: string;
|
2384
2414
|
conditions: {
|
2385
2415
|
mobile: string;
|
@@ -2389,7 +2419,7 @@ declare const responsiveProperties: {
|
|
2389
2419
|
desktopLg: string;
|
2390
2420
|
};
|
2391
2421
|
};
|
2392
|
-
|
2422
|
+
full: {
|
2393
2423
|
defaultClass: string;
|
2394
2424
|
conditions: {
|
2395
2425
|
mobile: string;
|
@@ -2399,7 +2429,7 @@ declare const responsiveProperties: {
|
|
2399
2429
|
desktopLg: string;
|
2400
2430
|
};
|
2401
2431
|
};
|
2402
|
-
|
2432
|
+
px: {
|
2403
2433
|
defaultClass: string;
|
2404
2434
|
conditions: {
|
2405
2435
|
mobile: string;
|
@@ -2409,7 +2439,7 @@ declare const responsiveProperties: {
|
|
2409
2439
|
desktopLg: string;
|
2410
2440
|
};
|
2411
2441
|
};
|
2412
|
-
|
2442
|
+
0.5: {
|
2413
2443
|
defaultClass: string;
|
2414
2444
|
conditions: {
|
2415
2445
|
mobile: string;
|
@@ -2956,7 +2986,7 @@ declare const responsiveProperties: {
|
|
2956
2986
|
desktopLg: string;
|
2957
2987
|
};
|
2958
2988
|
};
|
2959
|
-
|
2989
|
+
screen: {
|
2960
2990
|
defaultClass: string;
|
2961
2991
|
conditions: {
|
2962
2992
|
mobile: string;
|
@@ -2966,7 +2996,7 @@ declare const responsiveProperties: {
|
|
2966
2996
|
desktopLg: string;
|
2967
2997
|
};
|
2968
2998
|
};
|
2969
|
-
|
2999
|
+
full: {
|
2970
3000
|
defaultClass: string;
|
2971
3001
|
conditions: {
|
2972
3002
|
mobile: string;
|
@@ -2976,7 +3006,7 @@ declare const responsiveProperties: {
|
|
2976
3006
|
desktopLg: string;
|
2977
3007
|
};
|
2978
3008
|
};
|
2979
|
-
|
3009
|
+
px: {
|
2980
3010
|
defaultClass: string;
|
2981
3011
|
conditions: {
|
2982
3012
|
mobile: string;
|
@@ -2986,7 +3016,7 @@ declare const responsiveProperties: {
|
|
2986
3016
|
desktopLg: string;
|
2987
3017
|
};
|
2988
3018
|
};
|
2989
|
-
|
3019
|
+
0.5: {
|
2990
3020
|
defaultClass: string;
|
2991
3021
|
conditions: {
|
2992
3022
|
mobile: string;
|
@@ -3393,7 +3423,7 @@ declare const responsiveProperties: {
|
|
3393
3423
|
desktopLg: string;
|
3394
3424
|
};
|
3395
3425
|
};
|
3396
|
-
|
3426
|
+
screen: {
|
3397
3427
|
defaultClass: string;
|
3398
3428
|
conditions: {
|
3399
3429
|
mobile: string;
|
@@ -3403,7 +3433,7 @@ declare const responsiveProperties: {
|
|
3403
3433
|
desktopLg: string;
|
3404
3434
|
};
|
3405
3435
|
};
|
3406
|
-
|
3436
|
+
full: {
|
3407
3437
|
defaultClass: string;
|
3408
3438
|
conditions: {
|
3409
3439
|
mobile: string;
|
@@ -3413,7 +3443,7 @@ declare const responsiveProperties: {
|
|
3413
3443
|
desktopLg: string;
|
3414
3444
|
};
|
3415
3445
|
};
|
3416
|
-
|
3446
|
+
px: {
|
3417
3447
|
defaultClass: string;
|
3418
3448
|
conditions: {
|
3419
3449
|
mobile: string;
|
@@ -3423,7 +3453,7 @@ declare const responsiveProperties: {
|
|
3423
3453
|
desktopLg: string;
|
3424
3454
|
};
|
3425
3455
|
};
|
3426
|
-
|
3456
|
+
0.5: {
|
3427
3457
|
defaultClass: string;
|
3428
3458
|
conditions: {
|
3429
3459
|
mobile: string;
|
@@ -3690,7 +3720,17 @@ declare const responsiveProperties: {
|
|
3690
3720
|
desktopLg: string;
|
3691
3721
|
};
|
3692
3722
|
};
|
3693
|
-
|
3723
|
+
button: {
|
3724
|
+
defaultClass: string;
|
3725
|
+
conditions: {
|
3726
|
+
mobile: string;
|
3727
|
+
mobileLg: string;
|
3728
|
+
tablet: string;
|
3729
|
+
desktop: string;
|
3730
|
+
desktopLg: string;
|
3731
|
+
};
|
3732
|
+
};
|
3733
|
+
xs: {
|
3694
3734
|
defaultClass: string;
|
3695
3735
|
conditions: {
|
3696
3736
|
mobile: string;
|
@@ -3710,7 +3750,7 @@ declare const responsiveProperties: {
|
|
3710
3750
|
desktopLg: string;
|
3711
3751
|
};
|
3712
3752
|
};
|
3713
|
-
|
3753
|
+
md: {
|
3714
3754
|
defaultClass: string;
|
3715
3755
|
conditions: {
|
3716
3756
|
mobile: string;
|
@@ -3720,7 +3760,7 @@ declare const responsiveProperties: {
|
|
3720
3760
|
desktopLg: string;
|
3721
3761
|
};
|
3722
3762
|
};
|
3723
|
-
|
3763
|
+
lg: {
|
3724
3764
|
defaultClass: string;
|
3725
3765
|
conditions: {
|
3726
3766
|
mobile: string;
|
@@ -3770,6 +3810,16 @@ declare const responsiveProperties: {
|
|
3770
3810
|
desktopLg: string;
|
3771
3811
|
};
|
3772
3812
|
};
|
3813
|
+
tag: {
|
3814
|
+
defaultClass: string;
|
3815
|
+
conditions: {
|
3816
|
+
mobile: string;
|
3817
|
+
mobileLg: string;
|
3818
|
+
tablet: string;
|
3819
|
+
desktop: string;
|
3820
|
+
desktopLg: string;
|
3821
|
+
};
|
3822
|
+
};
|
3773
3823
|
};
|
3774
3824
|
};
|
3775
3825
|
borderTopRightRadius: {
|
@@ -3787,7 +3837,17 @@ declare const responsiveProperties: {
|
|
3787
3837
|
desktopLg: string;
|
3788
3838
|
};
|
3789
3839
|
};
|
3790
|
-
|
3840
|
+
button: {
|
3841
|
+
defaultClass: string;
|
3842
|
+
conditions: {
|
3843
|
+
mobile: string;
|
3844
|
+
mobileLg: string;
|
3845
|
+
tablet: string;
|
3846
|
+
desktop: string;
|
3847
|
+
desktopLg: string;
|
3848
|
+
};
|
3849
|
+
};
|
3850
|
+
xs: {
|
3791
3851
|
defaultClass: string;
|
3792
3852
|
conditions: {
|
3793
3853
|
mobile: string;
|
@@ -3807,7 +3867,7 @@ declare const responsiveProperties: {
|
|
3807
3867
|
desktopLg: string;
|
3808
3868
|
};
|
3809
3869
|
};
|
3810
|
-
|
3870
|
+
md: {
|
3811
3871
|
defaultClass: string;
|
3812
3872
|
conditions: {
|
3813
3873
|
mobile: string;
|
@@ -3817,7 +3877,7 @@ declare const responsiveProperties: {
|
|
3817
3877
|
desktopLg: string;
|
3818
3878
|
};
|
3819
3879
|
};
|
3820
|
-
|
3880
|
+
lg: {
|
3821
3881
|
defaultClass: string;
|
3822
3882
|
conditions: {
|
3823
3883
|
mobile: string;
|
@@ -3867,6 +3927,16 @@ declare const responsiveProperties: {
|
|
3867
3927
|
desktopLg: string;
|
3868
3928
|
};
|
3869
3929
|
};
|
3930
|
+
tag: {
|
3931
|
+
defaultClass: string;
|
3932
|
+
conditions: {
|
3933
|
+
mobile: string;
|
3934
|
+
mobileLg: string;
|
3935
|
+
tablet: string;
|
3936
|
+
desktop: string;
|
3937
|
+
desktopLg: string;
|
3938
|
+
};
|
3939
|
+
};
|
3870
3940
|
};
|
3871
3941
|
};
|
3872
3942
|
borderBottomLeftRadius: {
|
@@ -3884,7 +3954,17 @@ declare const responsiveProperties: {
|
|
3884
3954
|
desktopLg: string;
|
3885
3955
|
};
|
3886
3956
|
};
|
3887
|
-
|
3957
|
+
button: {
|
3958
|
+
defaultClass: string;
|
3959
|
+
conditions: {
|
3960
|
+
mobile: string;
|
3961
|
+
mobileLg: string;
|
3962
|
+
tablet: string;
|
3963
|
+
desktop: string;
|
3964
|
+
desktopLg: string;
|
3965
|
+
};
|
3966
|
+
};
|
3967
|
+
xs: {
|
3888
3968
|
defaultClass: string;
|
3889
3969
|
conditions: {
|
3890
3970
|
mobile: string;
|
@@ -3904,7 +3984,7 @@ declare const responsiveProperties: {
|
|
3904
3984
|
desktopLg: string;
|
3905
3985
|
};
|
3906
3986
|
};
|
3907
|
-
|
3987
|
+
md: {
|
3908
3988
|
defaultClass: string;
|
3909
3989
|
conditions: {
|
3910
3990
|
mobile: string;
|
@@ -3914,7 +3994,7 @@ declare const responsiveProperties: {
|
|
3914
3994
|
desktopLg: string;
|
3915
3995
|
};
|
3916
3996
|
};
|
3917
|
-
|
3997
|
+
lg: {
|
3918
3998
|
defaultClass: string;
|
3919
3999
|
conditions: {
|
3920
4000
|
mobile: string;
|
@@ -3964,6 +4044,16 @@ declare const responsiveProperties: {
|
|
3964
4044
|
desktopLg: string;
|
3965
4045
|
};
|
3966
4046
|
};
|
4047
|
+
tag: {
|
4048
|
+
defaultClass: string;
|
4049
|
+
conditions: {
|
4050
|
+
mobile: string;
|
4051
|
+
mobileLg: string;
|
4052
|
+
tablet: string;
|
4053
|
+
desktop: string;
|
4054
|
+
desktopLg: string;
|
4055
|
+
};
|
4056
|
+
};
|
3967
4057
|
};
|
3968
4058
|
};
|
3969
4059
|
borderBottomRightRadius: {
|
@@ -3981,7 +4071,17 @@ declare const responsiveProperties: {
|
|
3981
4071
|
desktopLg: string;
|
3982
4072
|
};
|
3983
4073
|
};
|
3984
|
-
|
4074
|
+
button: {
|
4075
|
+
defaultClass: string;
|
4076
|
+
conditions: {
|
4077
|
+
mobile: string;
|
4078
|
+
mobileLg: string;
|
4079
|
+
tablet: string;
|
4080
|
+
desktop: string;
|
4081
|
+
desktopLg: string;
|
4082
|
+
};
|
4083
|
+
};
|
4084
|
+
xs: {
|
3985
4085
|
defaultClass: string;
|
3986
4086
|
conditions: {
|
3987
4087
|
mobile: string;
|
@@ -4001,7 +4101,7 @@ declare const responsiveProperties: {
|
|
4001
4101
|
desktopLg: string;
|
4002
4102
|
};
|
4003
4103
|
};
|
4004
|
-
|
4104
|
+
md: {
|
4005
4105
|
defaultClass: string;
|
4006
4106
|
conditions: {
|
4007
4107
|
mobile: string;
|
@@ -4011,7 +4111,7 @@ declare const responsiveProperties: {
|
|
4011
4111
|
desktopLg: string;
|
4012
4112
|
};
|
4013
4113
|
};
|
4014
|
-
|
4114
|
+
lg: {
|
4015
4115
|
defaultClass: string;
|
4016
4116
|
conditions: {
|
4017
4117
|
mobile: string;
|
@@ -4061,9 +4161,19 @@ declare const responsiveProperties: {
|
|
4061
4161
|
desktopLg: string;
|
4062
4162
|
};
|
4063
4163
|
};
|
4164
|
+
tag: {
|
4165
|
+
defaultClass: string;
|
4166
|
+
conditions: {
|
4167
|
+
mobile: string;
|
4168
|
+
mobileLg: string;
|
4169
|
+
tablet: string;
|
4170
|
+
desktop: string;
|
4171
|
+
desktopLg: string;
|
4172
|
+
};
|
4173
|
+
};
|
4064
4174
|
};
|
4065
4175
|
};
|
4066
|
-
|
4176
|
+
borderStartStartRadius: {
|
4067
4177
|
responsiveArray: ("mobile" | "mobileLg" | "tablet" | "desktop" | "desktopLg")[] & {
|
4068
4178
|
length: 5;
|
4069
4179
|
};
|
@@ -4078,7 +4188,17 @@ declare const responsiveProperties: {
|
|
4078
4188
|
desktopLg: string;
|
4079
4189
|
};
|
4080
4190
|
};
|
4081
|
-
|
4191
|
+
button: {
|
4192
|
+
defaultClass: string;
|
4193
|
+
conditions: {
|
4194
|
+
mobile: string;
|
4195
|
+
mobileLg: string;
|
4196
|
+
tablet: string;
|
4197
|
+
desktop: string;
|
4198
|
+
desktopLg: string;
|
4199
|
+
};
|
4200
|
+
};
|
4201
|
+
xs: {
|
4082
4202
|
defaultClass: string;
|
4083
4203
|
conditions: {
|
4084
4204
|
mobile: string;
|
@@ -4098,7 +4218,7 @@ declare const responsiveProperties: {
|
|
4098
4218
|
desktopLg: string;
|
4099
4219
|
};
|
4100
4220
|
};
|
4101
|
-
|
4221
|
+
md: {
|
4102
4222
|
defaultClass: string;
|
4103
4223
|
conditions: {
|
4104
4224
|
mobile: string;
|
@@ -4108,7 +4228,7 @@ declare const responsiveProperties: {
|
|
4108
4228
|
desktopLg: string;
|
4109
4229
|
};
|
4110
4230
|
};
|
4111
|
-
|
4231
|
+
lg: {
|
4112
4232
|
defaultClass: string;
|
4113
4233
|
conditions: {
|
4114
4234
|
mobile: string;
|
@@ -4158,9 +4278,19 @@ declare const responsiveProperties: {
|
|
4158
4278
|
desktopLg: string;
|
4159
4279
|
};
|
4160
4280
|
};
|
4281
|
+
tag: {
|
4282
|
+
defaultClass: string;
|
4283
|
+
conditions: {
|
4284
|
+
mobile: string;
|
4285
|
+
mobileLg: string;
|
4286
|
+
tablet: string;
|
4287
|
+
desktop: string;
|
4288
|
+
desktopLg: string;
|
4289
|
+
};
|
4290
|
+
};
|
4161
4291
|
};
|
4162
4292
|
};
|
4163
|
-
|
4293
|
+
borderStartEndRadius: {
|
4164
4294
|
responsiveArray: ("mobile" | "mobileLg" | "tablet" | "desktop" | "desktopLg")[] & {
|
4165
4295
|
length: 5;
|
4166
4296
|
};
|
@@ -4175,7 +4305,17 @@ declare const responsiveProperties: {
|
|
4175
4305
|
desktopLg: string;
|
4176
4306
|
};
|
4177
4307
|
};
|
4178
|
-
|
4308
|
+
button: {
|
4309
|
+
defaultClass: string;
|
4310
|
+
conditions: {
|
4311
|
+
mobile: string;
|
4312
|
+
mobileLg: string;
|
4313
|
+
tablet: string;
|
4314
|
+
desktop: string;
|
4315
|
+
desktopLg: string;
|
4316
|
+
};
|
4317
|
+
};
|
4318
|
+
xs: {
|
4179
4319
|
defaultClass: string;
|
4180
4320
|
conditions: {
|
4181
4321
|
mobile: string;
|
@@ -4195,7 +4335,7 @@ declare const responsiveProperties: {
|
|
4195
4335
|
desktopLg: string;
|
4196
4336
|
};
|
4197
4337
|
};
|
4198
|
-
|
4338
|
+
md: {
|
4199
4339
|
defaultClass: string;
|
4200
4340
|
conditions: {
|
4201
4341
|
mobile: string;
|
@@ -4205,7 +4345,7 @@ declare const responsiveProperties: {
|
|
4205
4345
|
desktopLg: string;
|
4206
4346
|
};
|
4207
4347
|
};
|
4208
|
-
|
4348
|
+
lg: {
|
4209
4349
|
defaultClass: string;
|
4210
4350
|
conditions: {
|
4211
4351
|
mobile: string;
|
@@ -4255,9 +4395,19 @@ declare const responsiveProperties: {
|
|
4255
4395
|
desktopLg: string;
|
4256
4396
|
};
|
4257
4397
|
};
|
4398
|
+
tag: {
|
4399
|
+
defaultClass: string;
|
4400
|
+
conditions: {
|
4401
|
+
mobile: string;
|
4402
|
+
mobileLg: string;
|
4403
|
+
tablet: string;
|
4404
|
+
desktop: string;
|
4405
|
+
desktopLg: string;
|
4406
|
+
};
|
4407
|
+
};
|
4258
4408
|
};
|
4259
4409
|
};
|
4260
|
-
|
4410
|
+
borderEndStartRadius: {
|
4261
4411
|
responsiveArray: ("mobile" | "mobileLg" | "tablet" | "desktop" | "desktopLg")[] & {
|
4262
4412
|
length: 5;
|
4263
4413
|
};
|
@@ -4272,7 +4422,17 @@ declare const responsiveProperties: {
|
|
4272
4422
|
desktopLg: string;
|
4273
4423
|
};
|
4274
4424
|
};
|
4275
|
-
|
4425
|
+
button: {
|
4426
|
+
defaultClass: string;
|
4427
|
+
conditions: {
|
4428
|
+
mobile: string;
|
4429
|
+
mobileLg: string;
|
4430
|
+
tablet: string;
|
4431
|
+
desktop: string;
|
4432
|
+
desktopLg: string;
|
4433
|
+
};
|
4434
|
+
};
|
4435
|
+
xs: {
|
4276
4436
|
defaultClass: string;
|
4277
4437
|
conditions: {
|
4278
4438
|
mobile: string;
|
@@ -4292,7 +4452,7 @@ declare const responsiveProperties: {
|
|
4292
4452
|
desktopLg: string;
|
4293
4453
|
};
|
4294
4454
|
};
|
4295
|
-
|
4455
|
+
md: {
|
4296
4456
|
defaultClass: string;
|
4297
4457
|
conditions: {
|
4298
4458
|
mobile: string;
|
@@ -4302,7 +4462,7 @@ declare const responsiveProperties: {
|
|
4302
4462
|
desktopLg: string;
|
4303
4463
|
};
|
4304
4464
|
};
|
4305
|
-
|
4465
|
+
lg: {
|
4306
4466
|
defaultClass: string;
|
4307
4467
|
conditions: {
|
4308
4468
|
mobile: string;
|
@@ -4352,9 +4512,19 @@ declare const responsiveProperties: {
|
|
4352
4512
|
desktopLg: string;
|
4353
4513
|
};
|
4354
4514
|
};
|
4515
|
+
tag: {
|
4516
|
+
defaultClass: string;
|
4517
|
+
conditions: {
|
4518
|
+
mobile: string;
|
4519
|
+
mobileLg: string;
|
4520
|
+
tablet: string;
|
4521
|
+
desktop: string;
|
4522
|
+
desktopLg: string;
|
4523
|
+
};
|
4524
|
+
};
|
4355
4525
|
};
|
4356
4526
|
};
|
4357
|
-
|
4527
|
+
borderEndEndRadius: {
|
4358
4528
|
responsiveArray: ("mobile" | "mobileLg" | "tablet" | "desktop" | "desktopLg")[] & {
|
4359
4529
|
length: 5;
|
4360
4530
|
};
|
@@ -4369,7 +4539,17 @@ declare const responsiveProperties: {
|
|
4369
4539
|
desktopLg: string;
|
4370
4540
|
};
|
4371
4541
|
};
|
4372
|
-
|
4542
|
+
button: {
|
4543
|
+
defaultClass: string;
|
4544
|
+
conditions: {
|
4545
|
+
mobile: string;
|
4546
|
+
mobileLg: string;
|
4547
|
+
tablet: string;
|
4548
|
+
desktop: string;
|
4549
|
+
desktopLg: string;
|
4550
|
+
};
|
4551
|
+
};
|
4552
|
+
xs: {
|
4373
4553
|
defaultClass: string;
|
4374
4554
|
conditions: {
|
4375
4555
|
mobile: string;
|
@@ -4389,7 +4569,7 @@ declare const responsiveProperties: {
|
|
4389
4569
|
desktopLg: string;
|
4390
4570
|
};
|
4391
4571
|
};
|
4392
|
-
|
4572
|
+
md: {
|
4393
4573
|
defaultClass: string;
|
4394
4574
|
conditions: {
|
4395
4575
|
mobile: string;
|
@@ -4399,7 +4579,7 @@ declare const responsiveProperties: {
|
|
4399
4579
|
desktopLg: string;
|
4400
4580
|
};
|
4401
4581
|
};
|
4402
|
-
|
4582
|
+
lg: {
|
4403
4583
|
defaultClass: string;
|
4404
4584
|
conditions: {
|
4405
4585
|
mobile: string;
|
@@ -4449,6 +4629,16 @@ declare const responsiveProperties: {
|
|
4449
4629
|
desktopLg: string;
|
4450
4630
|
};
|
4451
4631
|
};
|
4632
|
+
tag: {
|
4633
|
+
defaultClass: string;
|
4634
|
+
conditions: {
|
4635
|
+
mobile: string;
|
4636
|
+
mobileLg: string;
|
4637
|
+
tablet: string;
|
4638
|
+
desktop: string;
|
4639
|
+
desktopLg: string;
|
4640
|
+
};
|
4641
|
+
};
|
4452
4642
|
};
|
4453
4643
|
};
|
4454
4644
|
borderBottomWidth: {
|
@@ -4958,16 +5148,6 @@ declare const responsiveProperties: {
|
|
4958
5148
|
desktopLg: string;
|
4959
5149
|
};
|
4960
5150
|
};
|
4961
|
-
0.5: {
|
4962
|
-
defaultClass: string;
|
4963
|
-
conditions: {
|
4964
|
-
mobile: string;
|
4965
|
-
mobileLg: string;
|
4966
|
-
tablet: string;
|
4967
|
-
desktop: string;
|
4968
|
-
desktopLg: string;
|
4969
|
-
};
|
4970
|
-
};
|
4971
5151
|
"-px": {
|
4972
5152
|
defaultClass: string;
|
4973
5153
|
conditions: {
|
@@ -5328,6 +5508,16 @@ declare const responsiveProperties: {
|
|
5328
5508
|
desktopLg: string;
|
5329
5509
|
};
|
5330
5510
|
};
|
5511
|
+
0.5: {
|
5512
|
+
defaultClass: string;
|
5513
|
+
conditions: {
|
5514
|
+
mobile: string;
|
5515
|
+
mobileLg: string;
|
5516
|
+
tablet: string;
|
5517
|
+
desktop: string;
|
5518
|
+
desktopLg: string;
|
5519
|
+
};
|
5520
|
+
};
|
5331
5521
|
1.5: {
|
5332
5522
|
defaultClass: string;
|
5333
5523
|
conditions: {
|
@@ -5675,16 +5865,6 @@ declare const responsiveProperties: {
|
|
5675
5865
|
desktopLg: string;
|
5676
5866
|
};
|
5677
5867
|
};
|
5678
|
-
0.5: {
|
5679
|
-
defaultClass: string;
|
5680
|
-
conditions: {
|
5681
|
-
mobile: string;
|
5682
|
-
mobileLg: string;
|
5683
|
-
tablet: string;
|
5684
|
-
desktop: string;
|
5685
|
-
desktopLg: string;
|
5686
|
-
};
|
5687
|
-
};
|
5688
5868
|
"-px": {
|
5689
5869
|
defaultClass: string;
|
5690
5870
|
conditions: {
|
@@ -6045,6 +6225,16 @@ declare const responsiveProperties: {
|
|
6045
6225
|
desktopLg: string;
|
6046
6226
|
};
|
6047
6227
|
};
|
6228
|
+
0.5: {
|
6229
|
+
defaultClass: string;
|
6230
|
+
conditions: {
|
6231
|
+
mobile: string;
|
6232
|
+
mobileLg: string;
|
6233
|
+
tablet: string;
|
6234
|
+
desktop: string;
|
6235
|
+
desktopLg: string;
|
6236
|
+
};
|
6237
|
+
};
|
6048
6238
|
1.5: {
|
6049
6239
|
defaultClass: string;
|
6050
6240
|
conditions: {
|
@@ -6392,16 +6582,6 @@ declare const responsiveProperties: {
|
|
6392
6582
|
desktopLg: string;
|
6393
6583
|
};
|
6394
6584
|
};
|
6395
|
-
0.5: {
|
6396
|
-
defaultClass: string;
|
6397
|
-
conditions: {
|
6398
|
-
mobile: string;
|
6399
|
-
mobileLg: string;
|
6400
|
-
tablet: string;
|
6401
|
-
desktop: string;
|
6402
|
-
desktopLg: string;
|
6403
|
-
};
|
6404
|
-
};
|
6405
6585
|
"-px": {
|
6406
6586
|
defaultClass: string;
|
6407
6587
|
conditions: {
|
@@ -6762,6 +6942,16 @@ declare const responsiveProperties: {
|
|
6762
6942
|
desktopLg: string;
|
6763
6943
|
};
|
6764
6944
|
};
|
6945
|
+
0.5: {
|
6946
|
+
defaultClass: string;
|
6947
|
+
conditions: {
|
6948
|
+
mobile: string;
|
6949
|
+
mobileLg: string;
|
6950
|
+
tablet: string;
|
6951
|
+
desktop: string;
|
6952
|
+
desktopLg: string;
|
6953
|
+
};
|
6954
|
+
};
|
6765
6955
|
1.5: {
|
6766
6956
|
defaultClass: string;
|
6767
6957
|
conditions: {
|
@@ -7109,16 +7299,6 @@ declare const responsiveProperties: {
|
|
7109
7299
|
desktopLg: string;
|
7110
7300
|
};
|
7111
7301
|
};
|
7112
|
-
0.5: {
|
7113
|
-
defaultClass: string;
|
7114
|
-
conditions: {
|
7115
|
-
mobile: string;
|
7116
|
-
mobileLg: string;
|
7117
|
-
tablet: string;
|
7118
|
-
desktop: string;
|
7119
|
-
desktopLg: string;
|
7120
|
-
};
|
7121
|
-
};
|
7122
7302
|
"-px": {
|
7123
7303
|
defaultClass: string;
|
7124
7304
|
conditions: {
|
@@ -7479,6 +7659,16 @@ declare const responsiveProperties: {
|
|
7479
7659
|
desktopLg: string;
|
7480
7660
|
};
|
7481
7661
|
};
|
7662
|
+
0.5: {
|
7663
|
+
defaultClass: string;
|
7664
|
+
conditions: {
|
7665
|
+
mobile: string;
|
7666
|
+
mobileLg: string;
|
7667
|
+
tablet: string;
|
7668
|
+
desktop: string;
|
7669
|
+
desktopLg: string;
|
7670
|
+
};
|
7671
|
+
};
|
7482
7672
|
1.5: {
|
7483
7673
|
defaultClass: string;
|
7484
7674
|
conditions: {
|
@@ -7826,16 +8016,6 @@ declare const responsiveProperties: {
|
|
7826
8016
|
desktopLg: string;
|
7827
8017
|
};
|
7828
8018
|
};
|
7829
|
-
0.5: {
|
7830
|
-
defaultClass: string;
|
7831
|
-
conditions: {
|
7832
|
-
mobile: string;
|
7833
|
-
mobileLg: string;
|
7834
|
-
tablet: string;
|
7835
|
-
desktop: string;
|
7836
|
-
desktopLg: string;
|
7837
|
-
};
|
7838
|
-
};
|
7839
8019
|
"-px": {
|
7840
8020
|
defaultClass: string;
|
7841
8021
|
conditions: {
|
@@ -8196,6 +8376,16 @@ declare const responsiveProperties: {
|
|
8196
8376
|
desktopLg: string;
|
8197
8377
|
};
|
8198
8378
|
};
|
8379
|
+
0.5: {
|
8380
|
+
defaultClass: string;
|
8381
|
+
conditions: {
|
8382
|
+
mobile: string;
|
8383
|
+
mobileLg: string;
|
8384
|
+
tablet: string;
|
8385
|
+
desktop: string;
|
8386
|
+
desktopLg: string;
|
8387
|
+
};
|
8388
|
+
};
|
8199
8389
|
1.5: {
|
8200
8390
|
defaultClass: string;
|
8201
8391
|
conditions: {
|
@@ -8543,16 +8733,6 @@ declare const responsiveProperties: {
|
|
8543
8733
|
desktopLg: string;
|
8544
8734
|
};
|
8545
8735
|
};
|
8546
|
-
0.5: {
|
8547
|
-
defaultClass: string;
|
8548
|
-
conditions: {
|
8549
|
-
mobile: string;
|
8550
|
-
mobileLg: string;
|
8551
|
-
tablet: string;
|
8552
|
-
desktop: string;
|
8553
|
-
desktopLg: string;
|
8554
|
-
};
|
8555
|
-
};
|
8556
8736
|
"-px": {
|
8557
8737
|
defaultClass: string;
|
8558
8738
|
conditions: {
|
@@ -8913,6 +9093,16 @@ declare const responsiveProperties: {
|
|
8913
9093
|
desktopLg: string;
|
8914
9094
|
};
|
8915
9095
|
};
|
9096
|
+
0.5: {
|
9097
|
+
defaultClass: string;
|
9098
|
+
conditions: {
|
9099
|
+
mobile: string;
|
9100
|
+
mobileLg: string;
|
9101
|
+
tablet: string;
|
9102
|
+
desktop: string;
|
9103
|
+
desktopLg: string;
|
9104
|
+
};
|
9105
|
+
};
|
8916
9106
|
1.5: {
|
8917
9107
|
defaultClass: string;
|
8918
9108
|
conditions: {
|
@@ -9250,7 +9440,7 @@ declare const responsiveProperties: {
|
|
9250
9440
|
desktopLg: string;
|
9251
9441
|
};
|
9252
9442
|
};
|
9253
|
-
|
9443
|
+
px: {
|
9254
9444
|
defaultClass: string;
|
9255
9445
|
conditions: {
|
9256
9446
|
mobile: string;
|
@@ -9260,7 +9450,7 @@ declare const responsiveProperties: {
|
|
9260
9450
|
desktopLg: string;
|
9261
9451
|
};
|
9262
9452
|
};
|
9263
|
-
|
9453
|
+
0.5: {
|
9264
9454
|
defaultClass: string;
|
9265
9455
|
conditions: {
|
9266
9456
|
mobile: string;
|
@@ -9607,7 +9797,7 @@ declare const responsiveProperties: {
|
|
9607
9797
|
desktopLg: string;
|
9608
9798
|
};
|
9609
9799
|
};
|
9610
|
-
|
9800
|
+
px: {
|
9611
9801
|
defaultClass: string;
|
9612
9802
|
conditions: {
|
9613
9803
|
mobile: string;
|
@@ -9617,7 +9807,7 @@ declare const responsiveProperties: {
|
|
9617
9807
|
desktopLg: string;
|
9618
9808
|
};
|
9619
9809
|
};
|
9620
|
-
|
9810
|
+
0.5: {
|
9621
9811
|
defaultClass: string;
|
9622
9812
|
conditions: {
|
9623
9813
|
mobile: string;
|
@@ -9964,7 +10154,7 @@ declare const responsiveProperties: {
|
|
9964
10154
|
desktopLg: string;
|
9965
10155
|
};
|
9966
10156
|
};
|
9967
|
-
|
10157
|
+
px: {
|
9968
10158
|
defaultClass: string;
|
9969
10159
|
conditions: {
|
9970
10160
|
mobile: string;
|
@@ -9974,7 +10164,7 @@ declare const responsiveProperties: {
|
|
9974
10164
|
desktopLg: string;
|
9975
10165
|
};
|
9976
10166
|
};
|
9977
|
-
|
10167
|
+
0.5: {
|
9978
10168
|
defaultClass: string;
|
9979
10169
|
conditions: {
|
9980
10170
|
mobile: string;
|
@@ -10321,7 +10511,7 @@ declare const responsiveProperties: {
|
|
10321
10511
|
desktopLg: string;
|
10322
10512
|
};
|
10323
10513
|
};
|
10324
|
-
|
10514
|
+
px: {
|
10325
10515
|
defaultClass: string;
|
10326
10516
|
conditions: {
|
10327
10517
|
mobile: string;
|
@@ -10331,7 +10521,7 @@ declare const responsiveProperties: {
|
|
10331
10521
|
desktopLg: string;
|
10332
10522
|
};
|
10333
10523
|
};
|
10334
|
-
|
10524
|
+
0.5: {
|
10335
10525
|
defaultClass: string;
|
10336
10526
|
conditions: {
|
10337
10527
|
mobile: string;
|
@@ -10678,7 +10868,7 @@ declare const responsiveProperties: {
|
|
10678
10868
|
desktopLg: string;
|
10679
10869
|
};
|
10680
10870
|
};
|
10681
|
-
|
10871
|
+
px: {
|
10682
10872
|
defaultClass: string;
|
10683
10873
|
conditions: {
|
10684
10874
|
mobile: string;
|
@@ -10688,7 +10878,7 @@ declare const responsiveProperties: {
|
|
10688
10878
|
desktopLg: string;
|
10689
10879
|
};
|
10690
10880
|
};
|
10691
|
-
|
10881
|
+
0.5: {
|
10692
10882
|
defaultClass: string;
|
10693
10883
|
conditions: {
|
10694
10884
|
mobile: string;
|
@@ -11035,7 +11225,7 @@ declare const responsiveProperties: {
|
|
11035
11225
|
desktopLg: string;
|
11036
11226
|
};
|
11037
11227
|
};
|
11038
|
-
|
11228
|
+
px: {
|
11039
11229
|
defaultClass: string;
|
11040
11230
|
conditions: {
|
11041
11231
|
mobile: string;
|
@@ -11045,7 +11235,7 @@ declare const responsiveProperties: {
|
|
11045
11235
|
desktopLg: string;
|
11046
11236
|
};
|
11047
11237
|
};
|
11048
|
-
|
11238
|
+
0.5: {
|
11049
11239
|
defaultClass: string;
|
11050
11240
|
conditions: {
|
11051
11241
|
mobile: string;
|
@@ -11322,22 +11512,22 @@ declare const responsiveProperties: {
|
|
11322
11512
|
mappings: "borderBottomRightRadius"[];
|
11323
11513
|
};
|
11324
11514
|
roundedStart: {
|
11325
|
-
mappings: ("
|
11515
|
+
mappings: ("borderStartStartRadius" | "borderEndStartRadius")[];
|
11326
11516
|
};
|
11327
11517
|
roundedEnd: {
|
11328
|
-
mappings: ("
|
11518
|
+
mappings: ("borderStartEndRadius" | "borderEndEndRadius")[];
|
11329
11519
|
};
|
11330
11520
|
roundedTopStart: {
|
11331
|
-
mappings: "
|
11521
|
+
mappings: "borderStartStartRadius"[];
|
11332
11522
|
};
|
11333
11523
|
roundedTopEnd: {
|
11334
|
-
mappings: "
|
11524
|
+
mappings: "borderStartEndRadius"[];
|
11335
11525
|
};
|
11336
11526
|
roundedBottomStart: {
|
11337
|
-
mappings: "
|
11527
|
+
mappings: "borderEndStartRadius"[];
|
11338
11528
|
};
|
11339
11529
|
roundedBottomEnd: {
|
11340
|
-
mappings: "
|
11530
|
+
mappings: "borderEndEndRadius"[];
|
11341
11531
|
};
|
11342
11532
|
border: {
|
11343
11533
|
mappings: ("borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderTopWidth")[];
|
@@ -11428,40 +11618,36 @@ declare const responsiveProperties: {
|
|
11428
11618
|
export declare type Atoms = Parameters<typeof atoms>[0];
|
11429
11619
|
export declare type PositionAtoms = Pick<Atoms, 'position' | 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'zIndex'>;
|
11430
11620
|
export declare type FlexAtoms = Pick<Atoms, 'alignItems' | 'justifyContent' | 'flexDirection' | 'flexWrap'>;
|
11431
|
-
export declare type FlexItemAtoms = Pick<Atoms, 'alignSelf' | 'flex' | 'order'
|
11621
|
+
export declare type FlexItemAtoms = Pick<Atoms, 'alignSelf' | 'flex' | 'order'>;
|
11432
11622
|
export declare type SizingAtoms = Pick<Atoms, 'aspectRatio' | 'inset' | 'width' | 'minWidth' | 'maxWidth' | 'height' | 'minHeight' | 'maxHeight'>;
|
11433
11623
|
export declare type RoundedAtoms = Pick<Atoms, 'rounded' | 'roundedTop' | 'roundedBottom' | 'roundedLeft' | 'roundedRight' | 'roundedStart' | 'roundedEnd' | 'roundedTopLeft' | 'roundedTopRight' | 'roundedBottomLeft' | 'roundedBottomRight' | 'roundedTopStart' | 'roundedTopEnd' | 'roundedBottomStart' | 'roundedBottomEnd'>;
|
11434
11624
|
export declare type BorderAtoms = Pick<Atoms, 'border' | 'borderTop' | 'borderBottom' | 'borderLeft' | 'borderRight' | 'borderStart' | 'borderEnd' | 'borderX' | 'borderY' | 'borderColor'>;
|
11435
|
-
export declare type TextAtoms = Pick<Atoms, 'color' | '
|
11625
|
+
export declare type TextAtoms = Pick<Atoms, 'color' | 'whiteSpace' | 'textAlign' | 'textTransform' | 'textDecoration'>;
|
11436
11626
|
export declare type MarginAtoms = Pick<Atoms, 'm' | 'mt' | 'mb' | 'ml' | 'mr' | 'ms' | 'me' | 'mx' | 'my'>;
|
11437
11627
|
export declare type PaddingAtoms = Pick<Atoms, 'p' | 'pt' | 'pb' | 'pl' | 'pr' | 'ps' | 'pe' | 'px' | 'py'>;
|
11438
11628
|
export declare type OverflowAtoms = Pick<Atoms, 'overflow' | 'overflowX' | 'overflowY'>;
|
11439
11629
|
export declare const atoms: ((props: {
|
11440
|
-
top?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11441
|
-
right?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11442
|
-
bottom?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11443
|
-
left?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11444
|
-
insetInlineStart?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11445
|
-
insetInlineEnd?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11630
|
+
top?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11631
|
+
right?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11632
|
+
bottom?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11633
|
+
left?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11634
|
+
insetInlineStart?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11635
|
+
insetInlineEnd?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11446
11636
|
borderStyle?: "none" | "solid" | "dashed" | "dotted" | "double" | "hidden" | undefined;
|
11447
|
-
boxShadow?: "inset" | "
|
11448
|
-
fontFamily?: "secondary" | "primary" | undefined;
|
11449
|
-
fontWeight?: "black" | "medium" | "thin" | "light" | "bold" | "extraLight" | "semiBold" | "extraBold" | "regular" | undefined;
|
11450
|
-
letterSpacing?: "normal" | "wider" | "widest" | "wide" | "tighter" | "tight" | undefined;
|
11451
|
-
lineHeight?: "none" | "normal" | "loose" | "tight" | "relaxed" | "snug" | undefined;
|
11637
|
+
boxShadow?: "inset" | "sm" | "md" | "lg" | "focus" | "focusDanger" | "focusSuccess" | undefined;
|
11452
11638
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | undefined;
|
11453
|
-
objectFit?: "contain" | "cover" | undefined;
|
11454
11639
|
textDecoration?: "none" | "underline" | "line-through" | "overline" | undefined;
|
11455
11640
|
textOverflow?: "ellipsis" | "clip" | undefined;
|
11456
|
-
transition?: "collapse" | "base" | "fade" | undefined;
|
11457
|
-
verticalAlign?: "baseline" | "top" | "middle" | "bottom" | undefined;
|
11458
11641
|
whiteSpace?: "nowrap" | "normal" | undefined;
|
11642
|
+
objectFit?: "contain" | "cover" | undefined;
|
11643
|
+
verticalAlign?: "baseline" | "top" | "middle" | "bottom" | undefined;
|
11644
|
+
transition?: "collapse" | "base" | "fade" | undefined;
|
11459
11645
|
pointerEvents?: "none" | "auto" | undefined;
|
11460
11646
|
zIndex?: 0 | 10 | 20 | 30 | 40 | 50 | undefined;
|
11461
|
-
inset?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11462
|
-
start?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11463
|
-
end?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11464
|
-
shadow?: "inset" | "
|
11647
|
+
inset?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11648
|
+
start?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11649
|
+
end?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11650
|
+
shadow?: "inset" | "sm" | "md" | "lg" | "focus" | "focusDanger" | "focusSuccess" | undefined;
|
11465
11651
|
} & {
|
11466
11652
|
position?: ("absolute" | "fixed" | "relative" | "static" | "sticky" | {
|
11467
11653
|
mobile?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
|
@@ -11477,13 +11663,13 @@ export declare const atoms: ((props: {
|
|
11477
11663
|
desktop?: "block" | "inline-block" | "flex" | "inline-flex" | "inline" | "none" | undefined;
|
11478
11664
|
desktopLg?: "block" | "inline-block" | "flex" | "inline-flex" | "inline" | "none" | undefined;
|
11479
11665
|
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "block" | "inline-block" | "flex" | "inline-flex" | "inline" | "none" | null>;
|
11480
|
-
fontSize?: ("
|
11481
|
-
mobile?: "
|
11482
|
-
mobileLg?: "
|
11483
|
-
tablet?: "
|
11484
|
-
desktop?: "
|
11485
|
-
desktopLg?: "
|
11486
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "
|
11666
|
+
fontSize?: ("xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl" | {
|
11667
|
+
mobile?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl" | undefined;
|
11668
|
+
mobileLg?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl" | undefined;
|
11669
|
+
tablet?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl" | undefined;
|
11670
|
+
desktop?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl" | undefined;
|
11671
|
+
desktopLg?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl" | undefined;
|
11672
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl" | null>;
|
11487
11673
|
textAlign?: ("center" | "end" | "start" | "left" | "right" | "justify" | {
|
11488
11674
|
mobile?: "center" | "end" | "start" | "left" | "right" | "justify" | undefined;
|
11489
11675
|
mobileLg?: "center" | "end" | "start" | "left" | "right" | "justify" | undefined;
|
@@ -11547,104 +11733,104 @@ export declare const atoms: ((props: {
|
|
11547
11733
|
desktop?: "auto" | "square" | "landscape" | "photo" | "widescreen" | "portrait" | "portraitPhoto" | "portraitWidescreen" | undefined;
|
11548
11734
|
desktopLg?: "auto" | "square" | "landscape" | "photo" | "widescreen" | "portrait" | "portraitPhoto" | "portraitWidescreen" | undefined;
|
11549
11735
|
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "auto" | "square" | "landscape" | "photo" | "widescreen" | "portrait" | "portraitPhoto" | "portraitWidescreen" | null>;
|
11550
|
-
width?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11551
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11552
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11553
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11554
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11555
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11556
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11557
|
-
maxWidth?: (0 | "none" | "
|
11558
|
-
mobile?: 0 | "none" | "
|
11559
|
-
mobileLg?: 0 | "none" | "
|
11560
|
-
tablet?: 0 | "none" | "
|
11561
|
-
desktop?: 0 | "none" | "
|
11562
|
-
desktopLg?: 0 | "none" | "
|
11563
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | "none" | "
|
11564
|
-
minWidth?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11565
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11566
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11567
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11568
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11569
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11570
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11571
|
-
height?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11572
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11573
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11574
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11575
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11576
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11577
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11578
|
-
maxHeight?: (0 | 5 | "none" | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11579
|
-
mobile?: 0 | 5 | "none" | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11580
|
-
mobileLg?: 0 | 5 | "none" | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11581
|
-
tablet?: 0 | 5 | "none" | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11582
|
-
desktop?: 0 | 5 | "none" | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11583
|
-
desktopLg?: 0 | 5 | "none" | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11584
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | "none" | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11585
|
-
minHeight?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11586
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11587
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11588
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11589
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11590
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11591
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11592
|
-
borderTopLeftRadius?: ("none" | "
|
11593
|
-
mobile?: "none" | "
|
11594
|
-
mobileLg?: "none" | "
|
11595
|
-
tablet?: "none" | "
|
11596
|
-
desktop?: "none" | "
|
11597
|
-
desktopLg?: "none" | "
|
11598
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "
|
11599
|
-
borderTopRightRadius?:
|
11600
|
-
mobile?: "none" | "
|
11601
|
-
mobileLg?: "none" | "
|
11602
|
-
tablet?: "none" | "
|
11603
|
-
desktop?: "none" | "
|
11604
|
-
desktopLg?: "none" | "
|
11605
|
-
} | undefined)
|
11606
|
-
borderBottomLeftRadius?:
|
11607
|
-
mobile?: "none" | "
|
11608
|
-
mobileLg?: "none" | "
|
11609
|
-
tablet?: "none" | "
|
11610
|
-
desktop?: "none" | "
|
11611
|
-
desktopLg?: "none" | "
|
11612
|
-
} | undefined)
|
11613
|
-
borderBottomRightRadius?:
|
11614
|
-
mobile?: "none" | "
|
11615
|
-
mobileLg?: "none" | "
|
11616
|
-
tablet?: "none" | "
|
11617
|
-
desktop?: "none" | "
|
11618
|
-
desktopLg?: "none" | "
|
11619
|
-
} | undefined)
|
11620
|
-
|
11621
|
-
mobile?: "none" | "
|
11622
|
-
mobileLg?: "none" | "
|
11623
|
-
tablet?: "none" | "
|
11624
|
-
desktop?: "none" | "
|
11625
|
-
desktopLg?: "none" | "
|
11626
|
-
} | undefined)
|
11627
|
-
|
11628
|
-
mobile?: "none" | "
|
11629
|
-
mobileLg?: "none" | "
|
11630
|
-
tablet?: "none" | "
|
11631
|
-
desktop?: "none" | "
|
11632
|
-
desktopLg?: "none" | "
|
11633
|
-
} | undefined)
|
11634
|
-
|
11635
|
-
mobile?: "none" | "
|
11636
|
-
mobileLg?: "none" | "
|
11637
|
-
tablet?: "none" | "
|
11638
|
-
desktop?: "none" | "
|
11639
|
-
desktopLg?: "none" | "
|
11640
|
-
} | undefined)
|
11641
|
-
|
11642
|
-
mobile?: "none" | "
|
11643
|
-
mobileLg?: "none" | "
|
11644
|
-
tablet?: "none" | "
|
11645
|
-
desktop?: "none" | "
|
11646
|
-
desktopLg?: "none" | "
|
11647
|
-
} | undefined)
|
11736
|
+
width?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "1/2" | "1/3" | "1/4" | "2/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | {
|
11737
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "1/2" | "1/3" | "1/4" | "2/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | undefined;
|
11738
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "1/2" | "1/3" | "1/4" | "2/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | undefined;
|
11739
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "1/2" | "1/3" | "1/4" | "2/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | undefined;
|
11740
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "1/2" | "1/3" | "1/4" | "2/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | undefined;
|
11741
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "1/2" | "1/3" | "1/4" | "2/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | undefined;
|
11742
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "1/2" | "1/3" | "1/4" | "2/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | null>;
|
11743
|
+
maxWidth?: (0 | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "full" | "min" | "max" | "fit" | "prose" | {
|
11744
|
+
mobile?: 0 | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "full" | "min" | "max" | "fit" | "prose" | undefined;
|
11745
|
+
mobileLg?: 0 | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "full" | "min" | "max" | "fit" | "prose" | undefined;
|
11746
|
+
tablet?: 0 | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "full" | "min" | "max" | "fit" | "prose" | undefined;
|
11747
|
+
desktop?: 0 | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "full" | "min" | "max" | "fit" | "prose" | undefined;
|
11748
|
+
desktopLg?: 0 | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "full" | "min" | "max" | "fit" | "prose" | undefined;
|
11749
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "full" | "min" | "max" | "fit" | "prose" | null>;
|
11750
|
+
minWidth?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | {
|
11751
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | undefined;
|
11752
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | undefined;
|
11753
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | undefined;
|
11754
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | undefined;
|
11755
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | undefined;
|
11756
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | null>;
|
11757
|
+
height?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "1/2" | "1/3" | "1/4" | "2/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "svw" | "lvw" | "dvw" | "min" | "max" | "fit" | {
|
11758
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "1/2" | "1/3" | "1/4" | "2/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "svw" | "lvw" | "dvw" | "min" | "max" | "fit" | undefined;
|
11759
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "1/2" | "1/3" | "1/4" | "2/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "svw" | "lvw" | "dvw" | "min" | "max" | "fit" | undefined;
|
11760
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "1/2" | "1/3" | "1/4" | "2/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "svw" | "lvw" | "dvw" | "min" | "max" | "fit" | undefined;
|
11761
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "1/2" | "1/3" | "1/4" | "2/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "svw" | "lvw" | "dvw" | "min" | "max" | "fit" | undefined;
|
11762
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "1/2" | "1/3" | "1/4" | "2/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "svw" | "lvw" | "dvw" | "min" | "max" | "fit" | undefined;
|
11763
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "3/4" | "2/3" | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "1/2" | "1/3" | "1/4" | "2/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "svw" | "lvw" | "dvw" | "min" | "max" | "fit" | null>;
|
11764
|
+
maxHeight?: (0 | 5 | "none" | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | {
|
11765
|
+
mobile?: 0 | 5 | "none" | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | undefined;
|
11766
|
+
mobileLg?: 0 | 5 | "none" | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | undefined;
|
11767
|
+
tablet?: 0 | 5 | "none" | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | undefined;
|
11768
|
+
desktop?: 0 | 5 | "none" | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | undefined;
|
11769
|
+
desktopLg?: 0 | 5 | "none" | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | undefined;
|
11770
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | "none" | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | null>;
|
11771
|
+
minHeight?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | {
|
11772
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | undefined;
|
11773
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | undefined;
|
11774
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | undefined;
|
11775
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | undefined;
|
11776
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | undefined;
|
11777
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "screen" | "full" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | "min" | "max" | "fit" | "svh" | "lvh" | "dvh" | null>;
|
11778
|
+
borderTopLeftRadius?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
11779
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11780
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11781
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11782
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11783
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11784
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
11785
|
+
borderTopRightRadius?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
11786
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11787
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11788
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11789
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11790
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11791
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
11792
|
+
borderBottomLeftRadius?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
11793
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11794
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11795
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11796
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11797
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11798
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
11799
|
+
borderBottomRightRadius?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
11800
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11801
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11802
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11803
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11804
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11805
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
11806
|
+
borderStartStartRadius?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
11807
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11808
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11809
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11810
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11811
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11812
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
11813
|
+
borderStartEndRadius?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
11814
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11815
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11816
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11817
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11818
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11819
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
11820
|
+
borderEndStartRadius?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
11821
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11822
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11823
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11824
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11825
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11826
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
11827
|
+
borderEndEndRadius?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
11828
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11829
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11830
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11831
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11832
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11833
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
11648
11834
|
borderBottomWidth?: (0 | 2 | 4 | 1 | 8 | {
|
11649
11835
|
mobile?: 0 | 2 | 4 | 1 | 8 | undefined;
|
11650
11836
|
mobileLg?: 0 | 2 | 4 | 1 | 8 | undefined;
|
@@ -11687,90 +11873,90 @@ export declare const atoms: ((props: {
|
|
11687
11873
|
desktop?: 0 | 2 | 4 | 1 | 8 | undefined;
|
11688
11874
|
desktopLg?: 0 | 2 | 4 | 1 | 8 | undefined;
|
11689
11875
|
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 2 | 4 | 1 | 8 | null>;
|
11690
|
-
marginBottom?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11691
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11692
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11693
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11694
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11695
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11696
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11697
|
-
marginLeft?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11698
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11699
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11700
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11701
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11702
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11703
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11704
|
-
marginRight?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11705
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11706
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11707
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11708
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11709
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11710
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11711
|
-
marginTop?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11712
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11713
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11714
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11715
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11716
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11717
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11718
|
-
marginInlineStart?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11719
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11720
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11721
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11722
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11723
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11724
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11725
|
-
marginInlineEnd?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11726
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11727
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11728
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11729
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11730
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11731
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11732
|
-
paddingBottom?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11733
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11734
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11735
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11736
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11737
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11738
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11739
|
-
paddingLeft?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11740
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11741
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11742
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11743
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11744
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11745
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11746
|
-
paddingRight?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11747
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11748
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11749
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11750
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11751
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11752
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11753
|
-
paddingTop?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11754
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11755
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11756
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11757
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11758
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11759
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11760
|
-
paddingInlineStart?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11761
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11762
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11763
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11764
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11765
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11766
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11767
|
-
paddingInlineEnd?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11768
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11769
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11770
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11771
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11772
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11773
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
11876
|
+
marginBottom?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
11877
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11878
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11879
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11880
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11881
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11882
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
11883
|
+
marginLeft?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
11884
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11885
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11886
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11887
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11888
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11889
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
11890
|
+
marginRight?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
11891
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11892
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11893
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11894
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11895
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11896
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
11897
|
+
marginTop?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
11898
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11899
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11900
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11901
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11902
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11903
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
11904
|
+
marginInlineStart?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
11905
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11906
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11907
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11908
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11909
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11910
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
11911
|
+
marginInlineEnd?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
11912
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11913
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11914
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11915
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11916
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11917
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
11918
|
+
paddingBottom?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
11919
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11920
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11921
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11922
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11923
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11924
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
11925
|
+
paddingLeft?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
11926
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11927
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11928
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11929
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11930
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11931
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
11932
|
+
paddingRight?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
11933
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11934
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11935
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11936
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11937
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11938
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
11939
|
+
paddingTop?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
11940
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11941
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11942
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11943
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11944
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11945
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
11946
|
+
paddingInlineStart?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
11947
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11948
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11949
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11950
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11951
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11952
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
11953
|
+
paddingInlineEnd?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
11954
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11955
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11956
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11957
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11958
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
11959
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
11774
11960
|
overflowX?: ("auto" | "hidden" | {
|
11775
11961
|
mobile?: "auto" | "hidden" | undefined;
|
11776
11962
|
mobileLg?: "auto" | "hidden" | undefined;
|
@@ -11785,111 +11971,111 @@ export declare const atoms: ((props: {
|
|
11785
11971
|
desktop?: "auto" | "hidden" | undefined;
|
11786
11972
|
desktopLg?: "auto" | "hidden" | undefined;
|
11787
11973
|
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "auto" | "hidden" | null>;
|
11788
|
-
rounded?:
|
11789
|
-
mobile?: "none" | "
|
11790
|
-
mobileLg?: "none" | "
|
11791
|
-
tablet?: "none" | "
|
11792
|
-
desktop?: "none" | "
|
11793
|
-
desktopLg?: "none" | "
|
11794
|
-
} | undefined)
|
11795
|
-
roundedTop?:
|
11796
|
-
mobile?: "none" | "
|
11797
|
-
mobileLg?: "none" | "
|
11798
|
-
tablet?: "none" | "
|
11799
|
-
desktop?: "none" | "
|
11800
|
-
desktopLg?: "none" | "
|
11801
|
-
} | undefined)
|
11802
|
-
roundedRight?:
|
11803
|
-
mobile?: "none" | "
|
11804
|
-
mobileLg?: "none" | "
|
11805
|
-
tablet?: "none" | "
|
11806
|
-
desktop?: "none" | "
|
11807
|
-
desktopLg?: "none" | "
|
11808
|
-
} | undefined)
|
11809
|
-
roundedBottom?:
|
11810
|
-
mobile?: "none" | "
|
11811
|
-
mobileLg?: "none" | "
|
11812
|
-
tablet?: "none" | "
|
11813
|
-
desktop?: "none" | "
|
11814
|
-
desktopLg?: "none" | "
|
11815
|
-
} | undefined)
|
11816
|
-
roundedLeft?:
|
11817
|
-
mobile?: "none" | "
|
11818
|
-
mobileLg?: "none" | "
|
11819
|
-
tablet?: "none" | "
|
11820
|
-
desktop?: "none" | "
|
11821
|
-
desktopLg?: "none" | "
|
11822
|
-
} | undefined)
|
11823
|
-
roundedTopRight?:
|
11824
|
-
mobile?: "none" | "
|
11825
|
-
mobileLg?: "none" | "
|
11826
|
-
tablet?: "none" | "
|
11827
|
-
desktop?: "none" | "
|
11828
|
-
desktopLg?: "none" | "
|
11829
|
-
} | undefined)
|
11830
|
-
roundedTopLeft?: ("none" | "
|
11831
|
-
mobile?: "none" | "
|
11832
|
-
mobileLg?: "none" | "
|
11833
|
-
tablet?: "none" | "
|
11834
|
-
desktop?: "none" | "
|
11835
|
-
desktopLg?: "none" | "
|
11836
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "
|
11837
|
-
roundedBottomLeft?:
|
11838
|
-
mobile?: "none" | "
|
11839
|
-
mobileLg?: "none" | "
|
11840
|
-
tablet?: "none" | "
|
11841
|
-
desktop?: "none" | "
|
11842
|
-
desktopLg?: "none" | "
|
11843
|
-
} | undefined)
|
11844
|
-
roundedBottomRight?:
|
11845
|
-
mobile?: "none" | "
|
11846
|
-
mobileLg?: "none" | "
|
11847
|
-
tablet?: "none" | "
|
11848
|
-
desktop?: "none" | "
|
11849
|
-
desktopLg?: "none" | "
|
11850
|
-
} | undefined)
|
11851
|
-
roundedStart?:
|
11852
|
-
mobile?: "none" | "
|
11853
|
-
mobileLg?: "none" | "
|
11854
|
-
tablet?: "none" | "
|
11855
|
-
desktop?: "none" | "
|
11856
|
-
desktopLg?: "none" | "
|
11857
|
-
} | undefined)
|
11858
|
-
roundedEnd?:
|
11859
|
-
mobile?: "none" | "
|
11860
|
-
mobileLg?: "none" | "
|
11861
|
-
tablet?: "none" | "
|
11862
|
-
desktop?: "none" | "
|
11863
|
-
desktopLg?: "none" | "
|
11864
|
-
} | undefined)
|
11865
|
-
roundedTopStart?:
|
11866
|
-
mobile?: "none" | "
|
11867
|
-
mobileLg?: "none" | "
|
11868
|
-
tablet?: "none" | "
|
11869
|
-
desktop?: "none" | "
|
11870
|
-
desktopLg?: "none" | "
|
11871
|
-
} | undefined)
|
11872
|
-
roundedTopEnd?:
|
11873
|
-
mobile?: "none" | "
|
11874
|
-
mobileLg?: "none" | "
|
11875
|
-
tablet?: "none" | "
|
11876
|
-
desktop?: "none" | "
|
11877
|
-
desktopLg?: "none" | "
|
11878
|
-
} | undefined)
|
11879
|
-
roundedBottomStart?:
|
11880
|
-
mobile?: "none" | "
|
11881
|
-
mobileLg?: "none" | "
|
11882
|
-
tablet?: "none" | "
|
11883
|
-
desktop?: "none" | "
|
11884
|
-
desktopLg?: "none" | "
|
11885
|
-
} | undefined)
|
11886
|
-
roundedBottomEnd?:
|
11887
|
-
mobile?: "none" | "
|
11888
|
-
mobileLg?: "none" | "
|
11889
|
-
tablet?: "none" | "
|
11890
|
-
desktop?: "none" | "
|
11891
|
-
desktopLg?: "none" | "
|
11892
|
-
} | undefined)
|
11974
|
+
rounded?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
11975
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11976
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11977
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11978
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11979
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11980
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
11981
|
+
roundedTop?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
11982
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11983
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11984
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11985
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11986
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11987
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
11988
|
+
roundedRight?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
11989
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11990
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11991
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11992
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11993
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11994
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
11995
|
+
roundedBottom?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
11996
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11997
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11998
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
11999
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12000
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12001
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
12002
|
+
roundedLeft?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
12003
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12004
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12005
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12006
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12007
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12008
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
12009
|
+
roundedTopRight?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
12010
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12011
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12012
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12013
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12014
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12015
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
12016
|
+
roundedTopLeft?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
12017
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12018
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12019
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12020
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12021
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12022
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
12023
|
+
roundedBottomLeft?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
12024
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12025
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12026
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12027
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12028
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12029
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
12030
|
+
roundedBottomRight?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
12031
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12032
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12033
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12034
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12035
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12036
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
12037
|
+
roundedStart?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
12038
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12039
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12040
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12041
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12042
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12043
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
12044
|
+
roundedEnd?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
12045
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12046
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12047
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12048
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12049
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12050
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
12051
|
+
roundedTopStart?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
12052
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12053
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12054
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12055
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12056
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12057
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
12058
|
+
roundedTopEnd?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
12059
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12060
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12061
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12062
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12063
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12064
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
12065
|
+
roundedBottomStart?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
12066
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12067
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12068
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12069
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12070
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12071
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
12072
|
+
roundedBottomEnd?: ("none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | {
|
12073
|
+
mobile?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12074
|
+
mobileLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12075
|
+
tablet?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12076
|
+
desktop?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12077
|
+
desktopLg?: "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | undefined;
|
12078
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "none" | "button" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "tag" | null>;
|
11893
12079
|
border?: (0 | 2 | 4 | 1 | 8 | {
|
11894
12080
|
mobile?: 0 | 2 | 4 | 1 | 8 | undefined;
|
11895
12081
|
mobileLg?: 0 | 2 | 4 | 1 | 8 | undefined;
|
@@ -11953,132 +12139,132 @@ export declare const atoms: ((props: {
|
|
11953
12139
|
desktop?: 0 | 2 | 4 | 1 | 8 | undefined;
|
11954
12140
|
desktopLg?: 0 | 2 | 4 | 1 | 8 | undefined;
|
11955
12141
|
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 2 | 4 | 1 | 8 | null>;
|
11956
|
-
m?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11957
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11958
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11959
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11960
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11961
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11962
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11963
|
-
mb?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11964
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11965
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11966
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11967
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11968
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11969
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11970
|
-
ml?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11971
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11972
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11973
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11974
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11975
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11976
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11977
|
-
mr?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11978
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11979
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11980
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11981
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11982
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11983
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11984
|
-
mt?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11985
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11986
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11987
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11988
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11989
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11990
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11991
|
-
mx?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11992
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11993
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11994
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11995
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11996
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11997
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11998
|
-
my?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
11999
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12000
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12001
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12002
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12003
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12004
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12005
|
-
ms?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12006
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12007
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12008
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12009
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12010
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12011
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12012
|
-
me?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12013
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12014
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12015
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12016
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12017
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12018
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 |
|
12019
|
-
p?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12020
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12021
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12022
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12023
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12024
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12025
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12026
|
-
pb?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12027
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12028
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12029
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12030
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12031
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12032
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12033
|
-
pl?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12034
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12035
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12036
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12037
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12038
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12039
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12040
|
-
pr?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12041
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12042
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12043
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12044
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12045
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12046
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12047
|
-
pt?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12048
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12049
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12050
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12051
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12052
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12053
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12054
|
-
px?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12055
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12056
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12057
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12058
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12059
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12060
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12061
|
-
py?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12062
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12063
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12064
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12065
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12066
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12067
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12068
|
-
ps?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12069
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12070
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12071
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12072
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12073
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12074
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12075
|
-
pe?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12076
|
-
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12077
|
-
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12078
|
-
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12079
|
-
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12080
|
-
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12081
|
-
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | 0.5 |
|
12142
|
+
m?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12143
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12144
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12145
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12146
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12147
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12148
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12149
|
+
mb?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12150
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12151
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12152
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12153
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12154
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12155
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12156
|
+
ml?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12157
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12158
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12159
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12160
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12161
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12162
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12163
|
+
mr?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12164
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12165
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12166
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12167
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12168
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12169
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12170
|
+
mt?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12171
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12172
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12173
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12174
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12175
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12176
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12177
|
+
mx?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12178
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12179
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12180
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12181
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12182
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12183
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12184
|
+
my?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12185
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12186
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12187
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12188
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12189
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12190
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12191
|
+
ms?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12192
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12193
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12194
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12195
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12196
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12197
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12198
|
+
me?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12199
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12200
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12201
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12202
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12203
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12204
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | "auto" | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "-px" | "-0.5" | "-1" | "-1.5" | "-2" | "-2.5" | "-3" | "-3.5" | "-4" | "-5" | "-5.5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12205
|
+
p?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12206
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12207
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12208
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12209
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12210
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12211
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12212
|
+
pb?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12213
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12214
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12215
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12216
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12217
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12218
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12219
|
+
pl?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12220
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12221
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12222
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12223
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12224
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12225
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12226
|
+
pr?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12227
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12228
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12229
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12230
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12231
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12232
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12233
|
+
pt?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12234
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12235
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12236
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12237
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12238
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12239
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12240
|
+
px?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12241
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12242
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12243
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12244
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12245
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12246
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12247
|
+
py?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12248
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12249
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12250
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12251
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12252
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12253
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12254
|
+
ps?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12255
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12256
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12257
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12258
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12259
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12260
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12261
|
+
pe?: (0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | {
|
12262
|
+
mobile?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12263
|
+
mobileLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12264
|
+
tablet?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12265
|
+
desktop?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12266
|
+
desktopLg?: 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
|
12267
|
+
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, 0 | 5 | 6 | 2 | 4 | 7 | 9 | 10 | 1 | 8 | 3 | 11 | 12 | 20 | 40 | "px" | 0.5 | 1.5 | 2.5 | 3.5 | 14 | 16 | 24 | 28 | 32 | 36 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null>;
|
12082
12268
|
overflow?: ("auto" | "hidden" | {
|
12083
12269
|
mobile?: "auto" | "hidden" | undefined;
|
12084
12270
|
mobileLg?: "auto" | "hidden" | undefined;
|
@@ -12087,23 +12273,23 @@ export declare const atoms: ((props: {
|
|
12087
12273
|
desktopLg?: "auto" | "hidden" | undefined;
|
12088
12274
|
} | undefined) | import("@vanilla-extract/sprinkles").ResponsiveArray<5 | 2 | 4 | 1 | 3, "auto" | "hidden" | null>;
|
12089
12275
|
} & {
|
12090
|
-
borderColor?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "
|
12091
|
-
lightMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "
|
12092
|
-
darkMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "
|
12276
|
+
borderColor?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "disabled" | "primary900" | "primary800" | "primary700" | "primary600" | "primary500" | "primary400" | "primary300" | "primary200" | "primary100" | "primary50" | "secondary900" | "secondary800" | "secondary700" | "secondary600" | "secondary500" | "secondary400" | "secondary300" | "secondary200" | "secondary100" | "secondary50" | "info900" | "info800" | "info700" | "info600" | "info500" | "info400" | "info300" | "info200" | "info100" | "info50" | "success900" | "success800" | "success700" | "success600" | "success500" | "success400" | "success300" | "success200" | "success100" | "success50" | "warning900" | "warning800" | "warning700" | "warning600" | "warning500" | "warning400" | "warning300" | "warning200" | "warning100" | "warning50" | "danger900" | "danger800" | "danger700" | "danger600" | "danger500" | "danger400" | "danger300" | "danger200" | "danger100" | "danger50" | "neutral900" | "neutral800" | "neutral700" | "neutral600" | "neutral500" | "neutral400" | "neutral300" | "neutral200" | "neutral100" | "neutral50" | "light900" | "light800" | "light700" | "light600" | "light500" | "light400" | "light300" | "light200" | "light100" | "light50" | "dark900" | "dark800" | "dark700" | "dark600" | "dark500" | "dark400" | "dark300" | "dark200" | "dark100" | "dark50" | {
|
12277
|
+
lightMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "disabled" | "primary900" | "primary800" | "primary700" | "primary600" | "primary500" | "primary400" | "primary300" | "primary200" | "primary100" | "primary50" | "secondary900" | "secondary800" | "secondary700" | "secondary600" | "secondary500" | "secondary400" | "secondary300" | "secondary200" | "secondary100" | "secondary50" | "info900" | "info800" | "info700" | "info600" | "info500" | "info400" | "info300" | "info200" | "info100" | "info50" | "success900" | "success800" | "success700" | "success600" | "success500" | "success400" | "success300" | "success200" | "success100" | "success50" | "warning900" | "warning800" | "warning700" | "warning600" | "warning500" | "warning400" | "warning300" | "warning200" | "warning100" | "warning50" | "danger900" | "danger800" | "danger700" | "danger600" | "danger500" | "danger400" | "danger300" | "danger200" | "danger100" | "danger50" | "neutral900" | "neutral800" | "neutral700" | "neutral600" | "neutral500" | "neutral400" | "neutral300" | "neutral200" | "neutral100" | "neutral50" | "light900" | "light800" | "light700" | "light600" | "light500" | "light400" | "light300" | "light200" | "light100" | "light50" | "dark900" | "dark800" | "dark700" | "dark600" | "dark500" | "dark400" | "dark300" | "dark200" | "dark100" | "dark50" | undefined;
|
12278
|
+
darkMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "disabled" | "primary900" | "primary800" | "primary700" | "primary600" | "primary500" | "primary400" | "primary300" | "primary200" | "primary100" | "primary50" | "secondary900" | "secondary800" | "secondary700" | "secondary600" | "secondary500" | "secondary400" | "secondary300" | "secondary200" | "secondary100" | "secondary50" | "info900" | "info800" | "info700" | "info600" | "info500" | "info400" | "info300" | "info200" | "info100" | "info50" | "success900" | "success800" | "success700" | "success600" | "success500" | "success400" | "success300" | "success200" | "success100" | "success50" | "warning900" | "warning800" | "warning700" | "warning600" | "warning500" | "warning400" | "warning300" | "warning200" | "warning100" | "warning50" | "danger900" | "danger800" | "danger700" | "danger600" | "danger500" | "danger400" | "danger300" | "danger200" | "danger100" | "danger50" | "neutral900" | "neutral800" | "neutral700" | "neutral600" | "neutral500" | "neutral400" | "neutral300" | "neutral200" | "neutral100" | "neutral50" | "light900" | "light800" | "light700" | "light600" | "light500" | "light400" | "light300" | "light200" | "light100" | "light50" | "dark900" | "dark800" | "dark700" | "dark600" | "dark500" | "dark400" | "dark300" | "dark200" | "dark100" | "dark50" | undefined;
|
12093
12279
|
} | undefined;
|
12094
|
-
color?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "
|
12095
|
-
lightMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "
|
12096
|
-
darkMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "
|
12280
|
+
color?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "disabled" | "primary900" | "primary800" | "primary700" | "primary600" | "primary500" | "primary400" | "primary300" | "primary200" | "primary100" | "primary50" | "secondary900" | "secondary800" | "secondary700" | "secondary600" | "secondary500" | "secondary400" | "secondary300" | "secondary200" | "secondary100" | "secondary50" | "info900" | "info800" | "info700" | "info600" | "info500" | "info400" | "info300" | "info200" | "info100" | "info50" | "success900" | "success800" | "success700" | "success600" | "success500" | "success400" | "success300" | "success200" | "success100" | "success50" | "warning900" | "warning800" | "warning700" | "warning600" | "warning500" | "warning400" | "warning300" | "warning200" | "warning100" | "warning50" | "danger900" | "danger800" | "danger700" | "danger600" | "danger500" | "danger400" | "danger300" | "danger200" | "danger100" | "danger50" | "neutral900" | "neutral800" | "neutral700" | "neutral600" | "neutral500" | "neutral400" | "neutral300" | "neutral200" | "neutral100" | "neutral50" | "light900" | "light800" | "light700" | "light600" | "light500" | "light400" | "light300" | "light200" | "light100" | "light50" | "dark900" | "dark800" | "dark700" | "dark600" | "dark500" | "dark400" | "dark300" | "dark200" | "dark100" | "dark50" | {
|
12281
|
+
lightMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "disabled" | "primary900" | "primary800" | "primary700" | "primary600" | "primary500" | "primary400" | "primary300" | "primary200" | "primary100" | "primary50" | "secondary900" | "secondary800" | "secondary700" | "secondary600" | "secondary500" | "secondary400" | "secondary300" | "secondary200" | "secondary100" | "secondary50" | "info900" | "info800" | "info700" | "info600" | "info500" | "info400" | "info300" | "info200" | "info100" | "info50" | "success900" | "success800" | "success700" | "success600" | "success500" | "success400" | "success300" | "success200" | "success100" | "success50" | "warning900" | "warning800" | "warning700" | "warning600" | "warning500" | "warning400" | "warning300" | "warning200" | "warning100" | "warning50" | "danger900" | "danger800" | "danger700" | "danger600" | "danger500" | "danger400" | "danger300" | "danger200" | "danger100" | "danger50" | "neutral900" | "neutral800" | "neutral700" | "neutral600" | "neutral500" | "neutral400" | "neutral300" | "neutral200" | "neutral100" | "neutral50" | "light900" | "light800" | "light700" | "light600" | "light500" | "light400" | "light300" | "light200" | "light100" | "light50" | "dark900" | "dark800" | "dark700" | "dark600" | "dark500" | "dark400" | "dark300" | "dark200" | "dark100" | "dark50" | undefined;
|
12282
|
+
darkMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "disabled" | "primary900" | "primary800" | "primary700" | "primary600" | "primary500" | "primary400" | "primary300" | "primary200" | "primary100" | "primary50" | "secondary900" | "secondary800" | "secondary700" | "secondary600" | "secondary500" | "secondary400" | "secondary300" | "secondary200" | "secondary100" | "secondary50" | "info900" | "info800" | "info700" | "info600" | "info500" | "info400" | "info300" | "info200" | "info100" | "info50" | "success900" | "success800" | "success700" | "success600" | "success500" | "success400" | "success300" | "success200" | "success100" | "success50" | "warning900" | "warning800" | "warning700" | "warning600" | "warning500" | "warning400" | "warning300" | "warning200" | "warning100" | "warning50" | "danger900" | "danger800" | "danger700" | "danger600" | "danger500" | "danger400" | "danger300" | "danger200" | "danger100" | "danger50" | "neutral900" | "neutral800" | "neutral700" | "neutral600" | "neutral500" | "neutral400" | "neutral300" | "neutral200" | "neutral100" | "neutral50" | "light900" | "light800" | "light700" | "light600" | "light500" | "light400" | "light300" | "light200" | "light100" | "light50" | "dark900" | "dark800" | "dark700" | "dark600" | "dark500" | "dark400" | "dark300" | "dark200" | "dark100" | "dark50" | undefined;
|
12097
12283
|
} | undefined;
|
12098
|
-
background?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "
|
12099
|
-
lightMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "
|
12100
|
-
darkMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "
|
12284
|
+
background?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "disabled" | "primary900" | "primary800" | "primary700" | "primary600" | "primary500" | "primary400" | "primary300" | "primary200" | "primary100" | "primary50" | "secondary900" | "secondary800" | "secondary700" | "secondary600" | "secondary500" | "secondary400" | "secondary300" | "secondary200" | "secondary100" | "secondary50" | "info900" | "info800" | "info700" | "info600" | "info500" | "info400" | "info300" | "info200" | "info100" | "info50" | "success900" | "success800" | "success700" | "success600" | "success500" | "success400" | "success300" | "success200" | "success100" | "success50" | "warning900" | "warning800" | "warning700" | "warning600" | "warning500" | "warning400" | "warning300" | "warning200" | "warning100" | "warning50" | "danger900" | "danger800" | "danger700" | "danger600" | "danger500" | "danger400" | "danger300" | "danger200" | "danger100" | "danger50" | "neutral900" | "neutral800" | "neutral700" | "neutral600" | "neutral500" | "neutral400" | "neutral300" | "neutral200" | "neutral100" | "neutral50" | "light900" | "light800" | "light700" | "light600" | "light500" | "light400" | "light300" | "light200" | "light100" | "light50" | "dark900" | "dark800" | "dark700" | "dark600" | "dark500" | "dark400" | "dark300" | "dark200" | "dark100" | "dark50" | "highlight" | {
|
12285
|
+
lightMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "disabled" | "primary900" | "primary800" | "primary700" | "primary600" | "primary500" | "primary400" | "primary300" | "primary200" | "primary100" | "primary50" | "secondary900" | "secondary800" | "secondary700" | "secondary600" | "secondary500" | "secondary400" | "secondary300" | "secondary200" | "secondary100" | "secondary50" | "info900" | "info800" | "info700" | "info600" | "info500" | "info400" | "info300" | "info200" | "info100" | "info50" | "success900" | "success800" | "success700" | "success600" | "success500" | "success400" | "success300" | "success200" | "success100" | "success50" | "warning900" | "warning800" | "warning700" | "warning600" | "warning500" | "warning400" | "warning300" | "warning200" | "warning100" | "warning50" | "danger900" | "danger800" | "danger700" | "danger600" | "danger500" | "danger400" | "danger300" | "danger200" | "danger100" | "danger50" | "neutral900" | "neutral800" | "neutral700" | "neutral600" | "neutral500" | "neutral400" | "neutral300" | "neutral200" | "neutral100" | "neutral50" | "light900" | "light800" | "light700" | "light600" | "light500" | "light400" | "light300" | "light200" | "light100" | "light50" | "dark900" | "dark800" | "dark700" | "dark600" | "dark500" | "dark400" | "dark300" | "dark200" | "dark100" | "dark50" | "highlight" | undefined;
|
12286
|
+
darkMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "disabled" | "primary900" | "primary800" | "primary700" | "primary600" | "primary500" | "primary400" | "primary300" | "primary200" | "primary100" | "primary50" | "secondary900" | "secondary800" | "secondary700" | "secondary600" | "secondary500" | "secondary400" | "secondary300" | "secondary200" | "secondary100" | "secondary50" | "info900" | "info800" | "info700" | "info600" | "info500" | "info400" | "info300" | "info200" | "info100" | "info50" | "success900" | "success800" | "success700" | "success600" | "success500" | "success400" | "success300" | "success200" | "success100" | "success50" | "warning900" | "warning800" | "warning700" | "warning600" | "warning500" | "warning400" | "warning300" | "warning200" | "warning100" | "warning50" | "danger900" | "danger800" | "danger700" | "danger600" | "danger500" | "danger400" | "danger300" | "danger200" | "danger100" | "danger50" | "neutral900" | "neutral800" | "neutral700" | "neutral600" | "neutral500" | "neutral400" | "neutral300" | "neutral200" | "neutral100" | "neutral50" | "light900" | "light800" | "light700" | "light600" | "light500" | "light400" | "light300" | "light200" | "light100" | "light50" | "dark900" | "dark800" | "dark700" | "dark600" | "dark500" | "dark400" | "dark300" | "dark200" | "dark100" | "dark50" | "highlight" | undefined;
|
12101
12287
|
} | undefined;
|
12102
|
-
bg?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "
|
12103
|
-
lightMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "
|
12104
|
-
darkMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "
|
12288
|
+
bg?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "disabled" | "primary900" | "primary800" | "primary700" | "primary600" | "primary500" | "primary400" | "primary300" | "primary200" | "primary100" | "primary50" | "secondary900" | "secondary800" | "secondary700" | "secondary600" | "secondary500" | "secondary400" | "secondary300" | "secondary200" | "secondary100" | "secondary50" | "info900" | "info800" | "info700" | "info600" | "info500" | "info400" | "info300" | "info200" | "info100" | "info50" | "success900" | "success800" | "success700" | "success600" | "success500" | "success400" | "success300" | "success200" | "success100" | "success50" | "warning900" | "warning800" | "warning700" | "warning600" | "warning500" | "warning400" | "warning300" | "warning200" | "warning100" | "warning50" | "danger900" | "danger800" | "danger700" | "danger600" | "danger500" | "danger400" | "danger300" | "danger200" | "danger100" | "danger50" | "neutral900" | "neutral800" | "neutral700" | "neutral600" | "neutral500" | "neutral400" | "neutral300" | "neutral200" | "neutral100" | "neutral50" | "light900" | "light800" | "light700" | "light600" | "light500" | "light400" | "light300" | "light200" | "light100" | "light50" | "dark900" | "dark800" | "dark700" | "dark600" | "dark500" | "dark400" | "dark300" | "dark200" | "dark100" | "dark50" | "highlight" | {
|
12289
|
+
lightMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "disabled" | "primary900" | "primary800" | "primary700" | "primary600" | "primary500" | "primary400" | "primary300" | "primary200" | "primary100" | "primary50" | "secondary900" | "secondary800" | "secondary700" | "secondary600" | "secondary500" | "secondary400" | "secondary300" | "secondary200" | "secondary100" | "secondary50" | "info900" | "info800" | "info700" | "info600" | "info500" | "info400" | "info300" | "info200" | "info100" | "info50" | "success900" | "success800" | "success700" | "success600" | "success500" | "success400" | "success300" | "success200" | "success100" | "success50" | "warning900" | "warning800" | "warning700" | "warning600" | "warning500" | "warning400" | "warning300" | "warning200" | "warning100" | "warning50" | "danger900" | "danger800" | "danger700" | "danger600" | "danger500" | "danger400" | "danger300" | "danger200" | "danger100" | "danger50" | "neutral900" | "neutral800" | "neutral700" | "neutral600" | "neutral500" | "neutral400" | "neutral300" | "neutral200" | "neutral100" | "neutral50" | "light900" | "light800" | "light700" | "light600" | "light500" | "light400" | "light300" | "light200" | "light100" | "light50" | "dark900" | "dark800" | "dark700" | "dark600" | "dark500" | "dark400" | "dark300" | "dark200" | "dark100" | "dark50" | "highlight" | undefined;
|
12290
|
+
darkMode?: "currentColor" | "inherit" | "transparent" | "black" | "white" | "disabled" | "primary900" | "primary800" | "primary700" | "primary600" | "primary500" | "primary400" | "primary300" | "primary200" | "primary100" | "primary50" | "secondary900" | "secondary800" | "secondary700" | "secondary600" | "secondary500" | "secondary400" | "secondary300" | "secondary200" | "secondary100" | "secondary50" | "info900" | "info800" | "info700" | "info600" | "info500" | "info400" | "info300" | "info200" | "info100" | "info50" | "success900" | "success800" | "success700" | "success600" | "success500" | "success400" | "success300" | "success200" | "success100" | "success50" | "warning900" | "warning800" | "warning700" | "warning600" | "warning500" | "warning400" | "warning300" | "warning200" | "warning100" | "warning50" | "danger900" | "danger800" | "danger700" | "danger600" | "danger500" | "danger400" | "danger300" | "danger200" | "danger100" | "danger50" | "neutral900" | "neutral800" | "neutral700" | "neutral600" | "neutral500" | "neutral400" | "neutral300" | "neutral200" | "neutral100" | "neutral50" | "light900" | "light800" | "light700" | "light600" | "light500" | "light400" | "light300" | "light200" | "light100" | "light50" | "dark900" | "dark800" | "dark700" | "dark600" | "dark500" | "dark400" | "dark300" | "dark200" | "dark100" | "dark50" | "highlight" | undefined;
|
12105
12291
|
} | undefined;
|
12106
12292
|
}) => string) & {
|
12107
|
-
properties: Set<"flex" | "end" | "start" | "left" | "right" | "top" | "bottom" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomWidth" | "
|
12293
|
+
properties: Set<"flex" | "end" | "start" | "left" | "right" | "top" | "bottom" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomWidth" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndWidth" | "borderInlineStartWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopWidth" | "boxShadow" | "color" | "display" | "flexDirection" | "flexWrap" | "fontSize" | "height" | "inset" | "insetInlineEnd" | "insetInlineStart" | "justifyContent" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "objectFit" | "order" | "overflowX" | "overflowY" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "pointerEvents" | "position" | "textAlign" | "textOverflow" | "textTransform" | "verticalAlign" | "whiteSpace" | "width" | "zIndex" | "background" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRight" | "borderStyle" | "borderTop" | "overflow" | "textDecoration" | "transition" | "shadow" | "px" | "rounded" | "roundedTop" | "roundedRight" | "roundedBottom" | "roundedLeft" | "roundedTopRight" | "roundedTopLeft" | "roundedBottomLeft" | "roundedBottomRight" | "roundedStart" | "roundedEnd" | "roundedTopStart" | "roundedTopEnd" | "roundedBottomStart" | "roundedBottomEnd" | "borderStart" | "borderEnd" | "borderX" | "borderY" | "m" | "mb" | "ml" | "mr" | "mt" | "mx" | "my" | "ms" | "me" | "p" | "pb" | "pl" | "pr" | "pt" | "py" | "ps" | "pe" | "bg">;
|
12108
12294
|
};
|
12109
12295
|
export {};
|