@nextui-org/react 1.0.1-alpha.7 → 1.0.2-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (837) hide show
  1. package/README.md +53 -45
  2. package/avatar/package.json +6 -0
  3. package/backdrop/package.json +6 -0
  4. package/button/package.json +6 -0
  5. package/card/package.json +6 -0
  6. package/checkbox/package.json +6 -0
  7. package/cjs/avatar/avatar-group.d.ts +13 -0
  8. package/cjs/avatar/avatar-group.js +35 -0
  9. package/cjs/avatar/avatar-group.styles.d.ts +1785 -0
  10. package/cjs/avatar/avatar-group.styles.js +52 -0
  11. package/cjs/avatar/avatar.d.ts +21 -0
  12. package/cjs/avatar/avatar.js +75 -0
  13. package/cjs/avatar/avatar.styles.d.ts +904 -0
  14. package/cjs/avatar/avatar.styles.js +334 -0
  15. package/cjs/avatar/index.d.ts +7 -0
  16. package/cjs/avatar/index.js +22 -0
  17. package/cjs/backdrop/backdrop.d.ts +37 -0
  18. package/cjs/backdrop/backdrop.js +137 -0
  19. package/cjs/backdrop/backdrop.styles.d.ts +2677 -0
  20. package/cjs/backdrop/backdrop.styles.js +119 -0
  21. package/cjs/backdrop/index.d.ts +5 -0
  22. package/cjs/backdrop/index.js +16 -0
  23. package/{dist/components → cjs}/button/button-group-context.d.ts +3 -2
  24. package/cjs/button/button-group-context.js +21 -0
  25. package/cjs/button/button-group.d.ts +34 -0
  26. package/cjs/button/button-group.js +81 -0
  27. package/cjs/button/button-group.styles.d.ts +899 -0
  28. package/cjs/button/button-group.styles.js +136 -0
  29. package/cjs/button/button-icon.d.ts +909 -0
  30. package/cjs/button/button-icon.js +68 -0
  31. package/cjs/button/button.d.ts +30 -0
  32. package/cjs/button/button.js +145 -0
  33. package/cjs/button/button.styles.d.ts +907 -0
  34. package/cjs/button/button.styles.js +695 -0
  35. package/cjs/button/index.d.ts +10 -0
  36. package/cjs/button/index.js +25 -0
  37. package/{dist/components → cjs}/button/utils.d.ts +2 -2
  38. package/cjs/button/utils.js +27 -0
  39. package/cjs/card/card.d.ts +23 -0
  40. package/cjs/card/card.js +117 -0
  41. package/cjs/card/card.styles.d.ts +3575 -0
  42. package/cjs/card/card.styles.js +267 -0
  43. package/cjs/card/index.d.ts +5 -0
  44. package/cjs/card/index.js +24 -0
  45. package/{dist/components → cjs}/checkbox/checkbox-context.d.ts +3 -2
  46. package/cjs/checkbox/checkbox-context.js +25 -0
  47. package/cjs/checkbox/checkbox-group.d.ts +29 -0
  48. package/cjs/checkbox/checkbox-group.js +89 -0
  49. package/{dist/components → cjs}/checkbox/checkbox.d.ts +21 -10
  50. package/cjs/checkbox/checkbox.js +192 -0
  51. package/cjs/checkbox/checkbox.styles.d.ts +8054 -0
  52. package/cjs/checkbox/checkbox.styles.js +563 -0
  53. package/cjs/checkbox/index.d.ts +6 -0
  54. package/cjs/checkbox/index.js +26 -0
  55. package/cjs/code/code.d.ts +15 -0
  56. package/cjs/code/code.js +42 -0
  57. package/cjs/code/code.styles.d.ts +1782 -0
  58. package/cjs/code/code.styles.js +14 -0
  59. package/cjs/code/index.d.ts +5 -0
  60. package/cjs/code/index.js +15 -0
  61. package/{dist/components → cjs}/col/col.d.ts +5 -7
  62. package/cjs/col/col.js +46 -0
  63. package/cjs/col/col.styles.d.ts +893 -0
  64. package/cjs/col/col.styles.js +16 -0
  65. package/cjs/col/index.d.ts +5 -0
  66. package/cjs/col/index.js +14 -0
  67. package/cjs/collapse/collapse-context.d.ts +9 -0
  68. package/cjs/collapse/collapse-context.js +20 -0
  69. package/cjs/collapse/collapse-group.d.ts +18 -0
  70. package/cjs/collapse/collapse-group.js +90 -0
  71. package/cjs/collapse/collapse-icon.d.ts +19 -0
  72. package/cjs/collapse/collapse-icon.js +41 -0
  73. package/cjs/collapse/collapse.d.ts +41 -0
  74. package/cjs/collapse/collapse.js +190 -0
  75. package/cjs/collapse/collapse.styles.d.ts +4472 -0
  76. package/cjs/collapse/collapse.styles.js +254 -0
  77. package/cjs/collapse/index.d.ts +6 -0
  78. package/cjs/collapse/index.js +22 -0
  79. package/cjs/container/container.d.ts +40 -0
  80. package/cjs/container/container.js +91 -0
  81. package/cjs/container/container.styles.d.ts +896 -0
  82. package/cjs/container/container.styles.js +45 -0
  83. package/cjs/container/index.d.ts +5 -0
  84. package/cjs/container/index.js +14 -0
  85. package/{dist/components → cjs}/css-baseline/css-baseline.d.ts +2 -2
  86. package/cjs/css-baseline/css-baseline.js +247 -0
  87. package/{dist/components → cjs}/css-baseline/index.d.ts +0 -0
  88. package/cjs/css-baseline/index.js +11 -0
  89. package/cjs/divider/divider.d.ts +22 -0
  90. package/cjs/divider/divider.js +82 -0
  91. package/cjs/divider/divider.styles.d.ts +1787 -0
  92. package/cjs/divider/divider.styles.js +77 -0
  93. package/cjs/divider/index.d.ts +5 -0
  94. package/cjs/divider/index.js +15 -0
  95. package/cjs/grid/grid-container.d.ts +22 -0
  96. package/cjs/grid/grid-container.js +60 -0
  97. package/{dist/components/grid/basic-item.d.ts → cjs/grid/grid-item.d.ts} +14 -5
  98. package/cjs/grid/grid-item.js +123 -0
  99. package/cjs/grid/grid.d.ts +9 -0
  100. package/cjs/grid/grid.js +29 -0
  101. package/cjs/grid/grid.styles.d.ts +1783 -0
  102. package/cjs/grid/grid.styles.js +15 -0
  103. package/cjs/grid/index.d.ts +7 -0
  104. package/cjs/grid/index.js +18 -0
  105. package/{dist/components → cjs}/image/image.d.ts +17 -15
  106. package/cjs/image/image.js +150 -0
  107. package/cjs/image/image.skeleton.d.ts +19 -0
  108. package/cjs/image/image.skeleton.js +50 -0
  109. package/cjs/image/image.styles.d.ts +2676 -0
  110. package/cjs/image/image.styles.js +57 -0
  111. package/cjs/image/index.d.ts +5 -0
  112. package/cjs/image/index.js +16 -0
  113. package/cjs/index.d.ts +79 -0
  114. package/cjs/index.js +435 -0
  115. package/cjs/input/index.d.ts +7 -0
  116. package/cjs/input/index.js +30 -0
  117. package/cjs/input/input-password.d.ts +98 -0
  118. package/cjs/input/input-password.js +80 -0
  119. package/cjs/input/input-props.d.ts +66 -0
  120. package/cjs/input/input-props.js +30 -0
  121. package/cjs/input/input.d.ts +18 -0
  122. package/cjs/input/input.js +317 -0
  123. package/cjs/input/input.styles.d.ts +9854 -0
  124. package/cjs/input/input.styles.js +878 -0
  125. package/cjs/input/password-icon.d.ts +6 -0
  126. package/cjs/input/password-icon.js +51 -0
  127. package/{dist/components → cjs}/link/icon.d.ts +0 -0
  128. package/cjs/link/icon.js +42 -0
  129. package/cjs/link/index.d.ts +5 -0
  130. package/cjs/link/index.js +15 -0
  131. package/cjs/link/link.d.ts +43 -0
  132. package/cjs/link/link.js +42 -0
  133. package/cjs/link/link.styles.d.ts +1788 -0
  134. package/cjs/link/link.styles.js +135 -0
  135. package/cjs/loading/index.d.ts +7 -0
  136. package/cjs/loading/index.js +24 -0
  137. package/{dist/components → cjs}/loading/loading.d.ts +11 -9
  138. package/cjs/loading/loading.js +80 -0
  139. package/cjs/loading/loading.styles.d.ts +5356 -0
  140. package/cjs/loading/loading.styles.js +438 -0
  141. package/cjs/loading/spinner.d.ts +17 -0
  142. package/cjs/loading/spinner.js +47 -0
  143. package/cjs/modal/index.d.ts +8 -0
  144. package/cjs/modal/index.js +28 -0
  145. package/cjs/modal/modal-body.d.ts +45 -0
  146. package/cjs/modal/modal-body.js +62 -0
  147. package/cjs/modal/modal-close-button.d.ts +13 -0
  148. package/cjs/modal/modal-close-button.js +49 -0
  149. package/cjs/modal/modal-context.d.ts +8 -0
  150. package/cjs/modal/modal-context.js +18 -0
  151. package/cjs/modal/modal-footer.d.ts +24 -0
  152. package/cjs/modal/modal-footer.js +69 -0
  153. package/cjs/modal/modal-header.d.ts +24 -0
  154. package/cjs/modal/modal-header.js +69 -0
  155. package/cjs/modal/modal-wrapper.d.ts +24 -0
  156. package/cjs/modal/modal-wrapper.js +153 -0
  157. package/cjs/modal/modal.d.ts +42 -0
  158. package/cjs/modal/modal.js +159 -0
  159. package/cjs/modal/modal.styles.d.ts +5362 -0
  160. package/cjs/modal/modal.styles.js +243 -0
  161. package/cjs/modal/use-modal.d.ts +11 -0
  162. package/cjs/modal/use-modal.js +25 -0
  163. package/cjs/pagination/index.d.ts +7 -0
  164. package/cjs/pagination/index.js +19 -0
  165. package/cjs/pagination/pagination-ellipsis.d.ts +11 -0
  166. package/cjs/pagination/pagination-ellipsis.js +86 -0
  167. package/cjs/pagination/pagination-highlight.d.ts +14 -0
  168. package/cjs/pagination/pagination-highlight.js +52 -0
  169. package/cjs/pagination/pagination-icon.d.ts +16 -0
  170. package/cjs/pagination/pagination-icon.js +59 -0
  171. package/cjs/pagination/pagination-item.d.ts +22 -0
  172. package/cjs/pagination/pagination-item.js +104 -0
  173. package/cjs/pagination/pagination.d.ts +46 -0
  174. package/cjs/pagination/pagination.js +169 -0
  175. package/cjs/pagination/pagination.styles.d.ts +5369 -0
  176. package/cjs/pagination/pagination.styles.js +361 -0
  177. package/cjs/progress/index.d.ts +5 -0
  178. package/cjs/progress/index.js +15 -0
  179. package/cjs/progress/progress.d.ts +65 -0
  180. package/cjs/progress/progress.js +101 -0
  181. package/cjs/progress/progress.styles.d.ts +1793 -0
  182. package/cjs/progress/progress.styles.js +165 -0
  183. package/cjs/radio/index.d.ts +4 -0
  184. package/cjs/radio/index.js +24 -0
  185. package/{dist/components → cjs}/radio/radio-context.d.ts +3 -2
  186. package/cjs/radio/radio-context.js +24 -0
  187. package/cjs/radio/radio-group.d.ts +30 -0
  188. package/cjs/radio/radio-group.js +78 -0
  189. package/{dist/components → cjs}/radio/radio.d.ts +19 -16
  190. package/cjs/radio/radio.js +156 -0
  191. package/cjs/radio/radio.styles.d.ts +5357 -0
  192. package/cjs/radio/radio.styles.js +240 -0
  193. package/cjs/row/index.d.ts +5 -0
  194. package/cjs/row/index.js +14 -0
  195. package/cjs/row/row.d.ts +21 -0
  196. package/cjs/row/row.js +54 -0
  197. package/cjs/row/row.styles.d.ts +895 -0
  198. package/cjs/row/row.styles.js +25 -0
  199. package/cjs/snippet/index.d.ts +5 -0
  200. package/cjs/snippet/index.js +16 -0
  201. package/{dist/components → cjs}/snippet/snippet-icon.d.ts +5 -2
  202. package/cjs/snippet/snippet-icon.js +52 -0
  203. package/cjs/snippet/snippet.d.ts +35 -0
  204. package/cjs/snippet/snippet.js +137 -0
  205. package/cjs/snippet/snippet.styles.d.ts +3570 -0
  206. package/cjs/snippet/snippet.styles.js +141 -0
  207. package/cjs/spacer/index.d.ts +5 -0
  208. package/cjs/spacer/index.js +14 -0
  209. package/cjs/spacer/spacer.d.ts +41 -0
  210. package/cjs/spacer/spacer.js +49 -0
  211. package/cjs/spacer/spacer.styles.d.ts +894 -0
  212. package/cjs/spacer/spacer.styles.js +24 -0
  213. package/cjs/switch/index.d.ts +5 -0
  214. package/cjs/switch/index.js +17 -0
  215. package/cjs/switch/switch.d.ts +82 -0
  216. package/cjs/switch/switch.js +142 -0
  217. package/cjs/switch/switch.styles.d.ts +3576 -0
  218. package/cjs/switch/switch.styles.js +283 -0
  219. package/cjs/text/child.d.ts +21 -0
  220. package/cjs/text/child.js +83 -0
  221. package/cjs/text/index.d.ts +4 -0
  222. package/cjs/text/index.js +14 -0
  223. package/{dist/components → cjs}/text/text.d.ts +13 -17
  224. package/cjs/text/text.js +124 -0
  225. package/cjs/text/text.styles.d.ts +894 -0
  226. package/cjs/text/text.styles.js +41 -0
  227. package/cjs/textarea/index.d.ts +3 -0
  228. package/cjs/textarea/index.js +12 -0
  229. package/cjs/textarea/textarea.d.ts +42 -0
  230. package/cjs/textarea/textarea.js +126 -0
  231. package/cjs/textarea/utils.d.ts +13 -0
  232. package/cjs/textarea/utils.js +126 -0
  233. package/cjs/theme/common.d.ts +1584 -0
  234. package/cjs/theme/common.js +490 -0
  235. package/cjs/theme/dark-theme.d.ts +33 -0
  236. package/cjs/theme/dark-theme.js +38 -0
  237. package/cjs/theme/index.js +31 -0
  238. package/cjs/theme/light-theme.d.ts +28 -0
  239. package/cjs/theme/light-theme.js +33 -0
  240. package/cjs/theme/ssr-provider.d.ts +7 -0
  241. package/cjs/theme/ssr-provider.js +51 -0
  242. package/cjs/theme/stitches.config.d.ts +8700 -0
  243. package/cjs/theme/stitches.config.js +88 -0
  244. package/cjs/theme/theme-context.d.ts +5 -0
  245. package/cjs/theme/theme-context.js +22 -0
  246. package/cjs/theme/theme-provider.d.ts +14 -0
  247. package/cjs/theme/theme-provider.js +115 -0
  248. package/cjs/theme/types.d.ts +75 -0
  249. package/cjs/theme/types.js +3 -0
  250. package/cjs/theme/utils.d.ts +16 -0
  251. package/cjs/theme/utils.js +113 -0
  252. package/cjs/tooltip/index.d.ts +6 -0
  253. package/cjs/tooltip/index.js +17 -0
  254. package/cjs/tooltip/placement.d.ts +39 -0
  255. package/cjs/tooltip/placement.js +193 -0
  256. package/cjs/tooltip/tooltip-content.d.ts +27 -0
  257. package/cjs/tooltip/tooltip-content.js +135 -0
  258. package/cjs/tooltip/tooltip.d.ts +56 -0
  259. package/cjs/tooltip/tooltip.js +141 -0
  260. package/cjs/tooltip/tooltip.styles.d.ts +3571 -0
  261. package/cjs/tooltip/tooltip.styles.js +159 -0
  262. package/cjs/use-body-scroll/index.d.ts +3 -0
  263. package/cjs/use-body-scroll/index.js +12 -0
  264. package/cjs/use-body-scroll/use-body-scroll.d.ts +9 -0
  265. package/cjs/use-body-scroll/use-body-scroll.js +77 -0
  266. package/cjs/use-click-anywhere/index.d.ts +2 -0
  267. package/cjs/use-click-anywhere/index.js +12 -0
  268. package/cjs/use-click-anywhere/use-click-anywhere.d.ts +2 -0
  269. package/cjs/use-click-anywhere/use-click-anywhere.js +19 -0
  270. package/cjs/use-click-away/index.d.ts +2 -0
  271. package/cjs/use-click-away/index.js +12 -0
  272. package/cjs/use-click-away/use-click-away.d.ts +3 -0
  273. package/cjs/use-click-away/use-click-away.js +23 -0
  274. package/cjs/use-clipboard/index.d.ts +3 -0
  275. package/cjs/use-clipboard/index.js +12 -0
  276. package/{dist/hooks → cjs/use-clipboard}/use-clipboard.d.ts +0 -0
  277. package/cjs/use-clipboard/use-clipboard.js +57 -0
  278. package/cjs/use-current-state/index.d.ts +2 -0
  279. package/cjs/use-current-state/index.js +12 -0
  280. package/{dist/hooks → cjs/use-current-state}/use-current-state.d.ts +0 -0
  281. package/cjs/use-current-state/use-current-state.js +28 -0
  282. package/cjs/use-drip/index.d.ts +2 -0
  283. package/cjs/use-drip/index.js +12 -0
  284. package/cjs/use-drip/use-drip.d.ts +9 -0
  285. package/cjs/use-drip/use-drip.js +38 -0
  286. package/cjs/use-input/index.d.ts +2 -0
  287. package/cjs/use-input/index.js +12 -0
  288. package/cjs/use-input/use-input.d.ts +13 -0
  289. package/cjs/use-input/use-input.js +32 -0
  290. package/cjs/use-keyboard/codes.d.ts +92 -0
  291. package/cjs/use-keyboard/codes.js +104 -0
  292. package/cjs/use-keyboard/helper.d.ts +3 -0
  293. package/cjs/use-keyboard/helper.js +35 -0
  294. package/cjs/use-keyboard/index.d.ts +5 -0
  295. package/cjs/use-keyboard/index.js +15 -0
  296. package/cjs/use-keyboard/use-keyboard.d.ts +22 -0
  297. package/cjs/use-keyboard/use-keyboard.js +76 -0
  298. package/cjs/use-pagination/index.d.ts +20 -0
  299. package/cjs/use-pagination/index.js +88 -0
  300. package/cjs/use-portal/index.d.ts +2 -0
  301. package/cjs/use-portal/index.js +12 -0
  302. package/{dist/hooks → cjs/use-portal}/use-portal.d.ts +0 -0
  303. package/cjs/use-portal/use-portal.js +43 -0
  304. package/cjs/use-real-shape/index.d.ts +2 -0
  305. package/cjs/use-real-shape/index.js +12 -0
  306. package/{dist/hooks → cjs/use-real-shape}/use-real-shape.d.ts +0 -0
  307. package/cjs/use-real-shape/use-real-shape.js +55 -0
  308. package/cjs/use-resize/index.d.ts +2 -0
  309. package/cjs/use-resize/index.js +12 -0
  310. package/{dist/hooks → cjs/use-resize}/use-resize.d.ts +0 -0
  311. package/cjs/use-resize/use-resize.js +23 -0
  312. package/cjs/use-ssr/index.d.ts +2 -0
  313. package/cjs/use-ssr/index.js +12 -0
  314. package/{dist/hooks → cjs/use-ssr}/use-ssr.d.ts +0 -0
  315. package/cjs/use-ssr/use-ssr.js +25 -0
  316. package/cjs/use-theme/index.d.ts +2 -0
  317. package/cjs/use-theme/index.js +12 -0
  318. package/cjs/use-theme/use-theme.d.ts +3 -0
  319. package/cjs/use-theme/use-theme.js +16 -0
  320. package/cjs/use-warning/index.d.ts +2 -0
  321. package/cjs/use-warning/index.js +12 -0
  322. package/{dist/hooks → cjs/use-warning}/use-warning.d.ts +0 -0
  323. package/cjs/use-warning/use-warning.js +23 -0
  324. package/cjs/user/index.d.ts +6 -0
  325. package/cjs/user/index.js +21 -0
  326. package/cjs/user/user-link.d.ts +32 -0
  327. package/cjs/user/user-link.js +46 -0
  328. package/{dist/components → cjs}/user/user.d.ts +12 -7
  329. package/cjs/user/user.js +63 -0
  330. package/cjs/user/user.styles.d.ts +4456 -0
  331. package/cjs/user/user.styles.js +56 -0
  332. package/cjs/utils/assertion.d.ts +8 -0
  333. package/cjs/utils/assertion.js +42 -0
  334. package/cjs/utils/clear-icon.d.ts +16 -0
  335. package/cjs/utils/clear-icon.js +70 -0
  336. package/cjs/utils/clsx.d.ts +1 -0
  337. package/cjs/utils/clsx.js +57 -0
  338. package/cjs/utils/collections.d.ts +12 -0
  339. package/cjs/utils/collections.js +110 -0
  340. package/{dist → cjs}/utils/color.d.ts +6 -6
  341. package/cjs/utils/color.js +187 -0
  342. package/cjs/utils/css-transition.d.ts +27 -0
  343. package/cjs/utils/css-transition.js +76 -0
  344. package/cjs/utils/deep-merge.d.ts +1 -0
  345. package/cjs/utils/deep-merge.js +33 -0
  346. package/{dist → cjs}/utils/dimensions.d.ts +0 -0
  347. package/cjs/utils/dimensions.js +10 -0
  348. package/cjs/utils/dom.js +110 -0
  349. package/cjs/utils/drip.d.ts +936 -0
  350. package/cjs/utils/drip.js +116 -0
  351. package/cjs/utils/expand.d.ts +20 -0
  352. package/cjs/utils/expand.js +109 -0
  353. package/cjs/utils/icons.js +481 -0
  354. package/cjs/utils/numbers.d.ts +9 -0
  355. package/cjs/utils/numbers.js +23 -0
  356. package/cjs/utils/object.d.ts +11 -0
  357. package/cjs/utils/object.js +40 -0
  358. package/cjs/utils/prop-types.d.ts +54 -0
  359. package/cjs/utils/prop-types.js +56 -0
  360. package/cjs/utils/react.js +24 -0
  361. package/cjs/utils/strings.js +18 -0
  362. package/cjs/utils/types.d.js +3 -0
  363. package/{dist → cjs}/utils/with-defaults.d.ts +0 -0
  364. package/cjs/utils/with-defaults.js +13 -0
  365. package/code/package.json +6 -0
  366. package/col/package.json +6 -0
  367. package/collapse/package.json +6 -0
  368. package/container/package.json +6 -0
  369. package/css-baseline/package.json +6 -0
  370. package/divider/package.json +6 -0
  371. package/esm/avatar/avatar-group.d.ts +13 -0
  372. package/esm/avatar/avatar-group.js +35 -0
  373. package/esm/avatar/avatar-group.styles.d.ts +1785 -0
  374. package/esm/avatar/avatar-group.styles.js +52 -0
  375. package/esm/avatar/avatar.d.ts +21 -0
  376. package/esm/avatar/avatar.js +75 -0
  377. package/esm/avatar/avatar.styles.d.ts +904 -0
  378. package/esm/avatar/avatar.styles.js +334 -0
  379. package/esm/avatar/index.d.ts +7 -0
  380. package/esm/avatar/index.js +22 -0
  381. package/esm/backdrop/backdrop.d.ts +37 -0
  382. package/esm/backdrop/backdrop.js +137 -0
  383. package/esm/backdrop/backdrop.styles.d.ts +2677 -0
  384. package/esm/backdrop/backdrop.styles.js +119 -0
  385. package/esm/backdrop/index.d.ts +5 -0
  386. package/esm/backdrop/index.js +16 -0
  387. package/esm/button/button-group-context.d.ts +20 -0
  388. package/esm/button/button-group-context.js +21 -0
  389. package/esm/button/button-group.d.ts +34 -0
  390. package/esm/button/button-group.js +81 -0
  391. package/esm/button/button-group.styles.d.ts +899 -0
  392. package/esm/button/button-group.styles.js +136 -0
  393. package/esm/button/button-icon.d.ts +909 -0
  394. package/esm/button/button-icon.js +68 -0
  395. package/esm/button/button.d.ts +30 -0
  396. package/esm/button/button.js +145 -0
  397. package/esm/button/button.styles.d.ts +907 -0
  398. package/esm/button/button.styles.js +695 -0
  399. package/esm/button/index.d.ts +10 -0
  400. package/esm/button/index.js +25 -0
  401. package/esm/button/utils.d.ts +4 -0
  402. package/esm/button/utils.js +27 -0
  403. package/esm/card/card.d.ts +23 -0
  404. package/esm/card/card.js +117 -0
  405. package/esm/card/card.styles.d.ts +3575 -0
  406. package/esm/card/card.styles.js +267 -0
  407. package/esm/card/index.d.ts +5 -0
  408. package/esm/card/index.js +24 -0
  409. package/esm/checkbox/checkbox-context.d.ts +13 -0
  410. package/esm/checkbox/checkbox-context.js +25 -0
  411. package/esm/checkbox/checkbox-group.d.ts +29 -0
  412. package/esm/checkbox/checkbox-group.js +89 -0
  413. package/esm/checkbox/checkbox.d.ts +58 -0
  414. package/esm/checkbox/checkbox.js +192 -0
  415. package/esm/checkbox/checkbox.styles.d.ts +8054 -0
  416. package/esm/checkbox/checkbox.styles.js +563 -0
  417. package/esm/checkbox/index.d.ts +6 -0
  418. package/esm/checkbox/index.js +26 -0
  419. package/esm/code/code.d.ts +15 -0
  420. package/esm/code/code.js +42 -0
  421. package/esm/code/code.styles.d.ts +1782 -0
  422. package/esm/code/code.styles.js +14 -0
  423. package/esm/code/index.d.ts +5 -0
  424. package/esm/code/index.js +15 -0
  425. package/esm/col/col.d.ts +20 -0
  426. package/esm/col/col.js +46 -0
  427. package/esm/col/col.styles.d.ts +893 -0
  428. package/esm/col/col.styles.js +16 -0
  429. package/esm/col/index.d.ts +5 -0
  430. package/esm/col/index.js +14 -0
  431. package/esm/collapse/collapse-context.d.ts +9 -0
  432. package/esm/collapse/collapse-context.js +20 -0
  433. package/esm/collapse/collapse-group.d.ts +18 -0
  434. package/esm/collapse/collapse-group.js +90 -0
  435. package/esm/collapse/collapse-icon.d.ts +19 -0
  436. package/esm/collapse/collapse-icon.js +41 -0
  437. package/esm/collapse/collapse.d.ts +41 -0
  438. package/esm/collapse/collapse.js +190 -0
  439. package/esm/collapse/collapse.styles.d.ts +4472 -0
  440. package/esm/collapse/collapse.styles.js +254 -0
  441. package/esm/collapse/index.d.ts +6 -0
  442. package/esm/collapse/index.js +22 -0
  443. package/esm/container/container.d.ts +40 -0
  444. package/esm/container/container.js +91 -0
  445. package/esm/container/container.styles.d.ts +896 -0
  446. package/esm/container/container.styles.js +45 -0
  447. package/esm/container/index.d.ts +5 -0
  448. package/esm/container/index.js +14 -0
  449. package/esm/css-baseline/css-baseline.d.ts +9 -0
  450. package/esm/css-baseline/css-baseline.js +247 -0
  451. package/esm/css-baseline/index.d.ts +1 -0
  452. package/esm/css-baseline/index.js +11 -0
  453. package/esm/divider/divider.d.ts +22 -0
  454. package/esm/divider/divider.js +82 -0
  455. package/esm/divider/divider.styles.d.ts +1787 -0
  456. package/esm/divider/divider.styles.js +77 -0
  457. package/esm/divider/index.d.ts +5 -0
  458. package/esm/divider/index.js +15 -0
  459. package/esm/grid/grid-container.d.ts +22 -0
  460. package/esm/grid/grid-container.js +60 -0
  461. package/esm/grid/grid-item.d.ts +37 -0
  462. package/esm/grid/grid-item.js +123 -0
  463. package/esm/grid/grid.d.ts +9 -0
  464. package/esm/grid/grid.js +29 -0
  465. package/esm/grid/grid.styles.d.ts +1783 -0
  466. package/esm/grid/grid.styles.js +15 -0
  467. package/esm/grid/index.d.ts +7 -0
  468. package/esm/grid/index.js +18 -0
  469. package/esm/image/image.d.ts +29 -0
  470. package/esm/image/image.js +150 -0
  471. package/esm/image/image.skeleton.d.ts +19 -0
  472. package/esm/image/image.skeleton.js +50 -0
  473. package/esm/image/image.styles.d.ts +2676 -0
  474. package/esm/image/image.styles.js +57 -0
  475. package/esm/image/index.d.ts +5 -0
  476. package/esm/image/index.js +16 -0
  477. package/esm/index.d.ts +79 -0
  478. package/esm/index.js +435 -0
  479. package/esm/input/index.d.ts +7 -0
  480. package/esm/input/index.js +30 -0
  481. package/esm/input/input-password.d.ts +98 -0
  482. package/esm/input/input-password.js +80 -0
  483. package/esm/input/input-props.d.ts +66 -0
  484. package/esm/input/input-props.js +30 -0
  485. package/esm/input/input.d.ts +18 -0
  486. package/esm/input/input.js +317 -0
  487. package/esm/input/input.styles.d.ts +9854 -0
  488. package/esm/input/input.styles.js +878 -0
  489. package/esm/input/password-icon.d.ts +6 -0
  490. package/esm/input/password-icon.js +51 -0
  491. package/esm/link/icon.d.ts +4 -0
  492. package/esm/link/icon.js +42 -0
  493. package/esm/link/index.d.ts +5 -0
  494. package/esm/link/index.js +15 -0
  495. package/esm/link/link.d.ts +43 -0
  496. package/esm/link/link.js +42 -0
  497. package/esm/link/link.styles.d.ts +1788 -0
  498. package/esm/link/link.styles.js +135 -0
  499. package/esm/loading/index.d.ts +7 -0
  500. package/esm/loading/index.js +24 -0
  501. package/esm/loading/loading.d.ts +24 -0
  502. package/esm/loading/loading.js +80 -0
  503. package/esm/loading/loading.styles.d.ts +5356 -0
  504. package/esm/loading/loading.styles.js +438 -0
  505. package/esm/loading/spinner.d.ts +17 -0
  506. package/esm/loading/spinner.js +47 -0
  507. package/esm/modal/index.d.ts +8 -0
  508. package/esm/modal/index.js +28 -0
  509. package/esm/modal/modal-body.d.ts +45 -0
  510. package/esm/modal/modal-body.js +62 -0
  511. package/esm/modal/modal-close-button.d.ts +13 -0
  512. package/esm/modal/modal-close-button.js +49 -0
  513. package/esm/modal/modal-context.d.ts +8 -0
  514. package/esm/modal/modal-context.js +18 -0
  515. package/esm/modal/modal-footer.d.ts +24 -0
  516. package/esm/modal/modal-footer.js +69 -0
  517. package/esm/modal/modal-header.d.ts +24 -0
  518. package/esm/modal/modal-header.js +69 -0
  519. package/esm/modal/modal-wrapper.d.ts +24 -0
  520. package/esm/modal/modal-wrapper.js +153 -0
  521. package/esm/modal/modal.d.ts +42 -0
  522. package/esm/modal/modal.js +159 -0
  523. package/esm/modal/modal.styles.d.ts +5362 -0
  524. package/esm/modal/modal.styles.js +243 -0
  525. package/esm/modal/use-modal.d.ts +11 -0
  526. package/esm/modal/use-modal.js +25 -0
  527. package/esm/pagination/index.d.ts +7 -0
  528. package/esm/pagination/index.js +19 -0
  529. package/esm/pagination/pagination-ellipsis.d.ts +11 -0
  530. package/esm/pagination/pagination-ellipsis.js +86 -0
  531. package/esm/pagination/pagination-highlight.d.ts +14 -0
  532. package/esm/pagination/pagination-highlight.js +52 -0
  533. package/esm/pagination/pagination-icon.d.ts +16 -0
  534. package/esm/pagination/pagination-icon.js +59 -0
  535. package/esm/pagination/pagination-item.d.ts +22 -0
  536. package/esm/pagination/pagination-item.js +104 -0
  537. package/esm/pagination/pagination.d.ts +46 -0
  538. package/esm/pagination/pagination.js +169 -0
  539. package/esm/pagination/pagination.styles.d.ts +5369 -0
  540. package/esm/pagination/pagination.styles.js +361 -0
  541. package/esm/progress/index.d.ts +5 -0
  542. package/esm/progress/index.js +15 -0
  543. package/esm/progress/progress.d.ts +65 -0
  544. package/esm/progress/progress.js +101 -0
  545. package/esm/progress/progress.styles.d.ts +1793 -0
  546. package/esm/progress/progress.styles.js +165 -0
  547. package/esm/radio/index.d.ts +4 -0
  548. package/esm/radio/index.js +24 -0
  549. package/esm/radio/radio-context.d.ts +13 -0
  550. package/esm/radio/radio-context.js +24 -0
  551. package/esm/radio/radio-group.d.ts +30 -0
  552. package/esm/radio/radio-group.js +78 -0
  553. package/esm/radio/radio.d.ts +45 -0
  554. package/esm/radio/radio.js +156 -0
  555. package/esm/radio/radio.styles.d.ts +5357 -0
  556. package/esm/radio/radio.styles.js +240 -0
  557. package/esm/row/index.d.ts +5 -0
  558. package/esm/row/index.js +14 -0
  559. package/esm/row/row.d.ts +21 -0
  560. package/esm/row/row.js +54 -0
  561. package/esm/row/row.styles.d.ts +895 -0
  562. package/esm/row/row.styles.js +25 -0
  563. package/esm/snippet/index.d.ts +5 -0
  564. package/esm/snippet/index.js +16 -0
  565. package/esm/snippet/snippet-icon.d.ts +21 -0
  566. package/esm/snippet/snippet-icon.js +52 -0
  567. package/esm/snippet/snippet.d.ts +35 -0
  568. package/esm/snippet/snippet.js +137 -0
  569. package/esm/snippet/snippet.styles.d.ts +3570 -0
  570. package/esm/snippet/snippet.styles.js +141 -0
  571. package/esm/spacer/index.d.ts +5 -0
  572. package/esm/spacer/index.js +14 -0
  573. package/esm/spacer/spacer.d.ts +41 -0
  574. package/esm/spacer/spacer.js +49 -0
  575. package/esm/spacer/spacer.styles.d.ts +894 -0
  576. package/esm/spacer/spacer.styles.js +24 -0
  577. package/esm/switch/index.d.ts +5 -0
  578. package/esm/switch/index.js +17 -0
  579. package/esm/switch/switch.d.ts +82 -0
  580. package/esm/switch/switch.js +142 -0
  581. package/esm/switch/switch.styles.d.ts +3576 -0
  582. package/esm/switch/switch.styles.js +283 -0
  583. package/esm/text/child.d.ts +21 -0
  584. package/esm/text/child.js +83 -0
  585. package/esm/text/index.d.ts +4 -0
  586. package/esm/text/index.js +14 -0
  587. package/esm/text/text.d.ts +59 -0
  588. package/esm/text/text.js +124 -0
  589. package/esm/text/text.styles.d.ts +894 -0
  590. package/esm/text/text.styles.js +41 -0
  591. package/esm/textarea/index.d.ts +3 -0
  592. package/esm/textarea/index.js +12 -0
  593. package/esm/textarea/textarea.d.ts +42 -0
  594. package/esm/textarea/textarea.js +126 -0
  595. package/esm/textarea/utils.d.ts +13 -0
  596. package/esm/textarea/utils.js +126 -0
  597. package/esm/theme/common.d.ts +1584 -0
  598. package/esm/theme/common.js +490 -0
  599. package/esm/theme/dark-theme.d.ts +33 -0
  600. package/esm/theme/dark-theme.js +38 -0
  601. package/esm/theme/index.js +31 -0
  602. package/esm/theme/light-theme.d.ts +28 -0
  603. package/esm/theme/light-theme.js +33 -0
  604. package/esm/theme/ssr-provider.d.ts +7 -0
  605. package/esm/theme/ssr-provider.js +51 -0
  606. package/esm/theme/stitches.config.d.ts +8700 -0
  607. package/esm/theme/stitches.config.js +88 -0
  608. package/esm/theme/theme-context.d.ts +5 -0
  609. package/esm/theme/theme-context.js +22 -0
  610. package/esm/theme/theme-provider.d.ts +14 -0
  611. package/esm/theme/theme-provider.js +115 -0
  612. package/esm/theme/types.d.ts +75 -0
  613. package/esm/theme/types.js +3 -0
  614. package/esm/theme/utils.d.ts +16 -0
  615. package/esm/theme/utils.js +113 -0
  616. package/esm/tooltip/index.d.ts +6 -0
  617. package/esm/tooltip/index.js +17 -0
  618. package/esm/tooltip/placement.d.ts +39 -0
  619. package/esm/tooltip/placement.js +193 -0
  620. package/esm/tooltip/tooltip-content.d.ts +27 -0
  621. package/esm/tooltip/tooltip-content.js +135 -0
  622. package/esm/tooltip/tooltip.d.ts +56 -0
  623. package/esm/tooltip/tooltip.js +141 -0
  624. package/esm/tooltip/tooltip.styles.d.ts +3571 -0
  625. package/esm/tooltip/tooltip.styles.js +159 -0
  626. package/esm/use-body-scroll/index.d.ts +3 -0
  627. package/esm/use-body-scroll/index.js +12 -0
  628. package/esm/use-body-scroll/use-body-scroll.d.ts +9 -0
  629. package/esm/use-body-scroll/use-body-scroll.js +77 -0
  630. package/esm/use-click-anywhere/index.d.ts +2 -0
  631. package/esm/use-click-anywhere/index.js +12 -0
  632. package/esm/use-click-anywhere/use-click-anywhere.d.ts +2 -0
  633. package/esm/use-click-anywhere/use-click-anywhere.js +19 -0
  634. package/esm/use-click-away/index.d.ts +2 -0
  635. package/esm/use-click-away/index.js +12 -0
  636. package/esm/use-click-away/use-click-away.d.ts +3 -0
  637. package/esm/use-click-away/use-click-away.js +23 -0
  638. package/esm/use-clipboard/index.d.ts +3 -0
  639. package/esm/use-clipboard/index.js +12 -0
  640. package/esm/use-clipboard/use-clipboard.d.ts +8 -0
  641. package/esm/use-clipboard/use-clipboard.js +57 -0
  642. package/esm/use-current-state/index.d.ts +2 -0
  643. package/esm/use-current-state/index.js +12 -0
  644. package/esm/use-current-state/use-current-state.d.ts +8 -0
  645. package/esm/use-current-state/use-current-state.js +28 -0
  646. package/esm/use-drip/index.d.ts +2 -0
  647. package/esm/use-drip/index.js +12 -0
  648. package/esm/use-drip/use-drip.d.ts +9 -0
  649. package/esm/use-drip/use-drip.js +38 -0
  650. package/esm/use-input/index.d.ts +2 -0
  651. package/esm/use-input/index.js +12 -0
  652. package/esm/use-input/use-input.d.ts +13 -0
  653. package/esm/use-input/use-input.js +32 -0
  654. package/esm/use-keyboard/codes.d.ts +92 -0
  655. package/esm/use-keyboard/codes.js +104 -0
  656. package/esm/use-keyboard/helper.d.ts +3 -0
  657. package/esm/use-keyboard/helper.js +35 -0
  658. package/esm/use-keyboard/index.d.ts +5 -0
  659. package/esm/use-keyboard/index.js +15 -0
  660. package/esm/use-keyboard/use-keyboard.d.ts +22 -0
  661. package/esm/use-keyboard/use-keyboard.js +76 -0
  662. package/esm/use-pagination/index.d.ts +20 -0
  663. package/esm/use-pagination/index.js +88 -0
  664. package/esm/use-portal/index.d.ts +2 -0
  665. package/esm/use-portal/index.js +12 -0
  666. package/esm/use-portal/use-portal.d.ts +2 -0
  667. package/esm/use-portal/use-portal.js +43 -0
  668. package/esm/use-real-shape/index.d.ts +2 -0
  669. package/esm/use-real-shape/index.js +12 -0
  670. package/esm/use-real-shape/use-real-shape.d.ts +9 -0
  671. package/esm/use-real-shape/use-real-shape.js +55 -0
  672. package/esm/use-resize/index.d.ts +2 -0
  673. package/esm/use-resize/index.js +12 -0
  674. package/esm/use-resize/use-resize.d.ts +2 -0
  675. package/esm/use-resize/use-resize.js +23 -0
  676. package/esm/use-ssr/index.d.ts +2 -0
  677. package/esm/use-ssr/index.js +12 -0
  678. package/esm/use-ssr/use-ssr.d.ts +6 -0
  679. package/esm/use-ssr/use-ssr.js +25 -0
  680. package/esm/use-theme/index.d.ts +2 -0
  681. package/esm/use-theme/index.js +12 -0
  682. package/esm/use-theme/use-theme.d.ts +3 -0
  683. package/esm/use-theme/use-theme.js +16 -0
  684. package/esm/use-warning/index.d.ts +2 -0
  685. package/esm/use-warning/index.js +12 -0
  686. package/esm/use-warning/use-warning.d.ts +2 -0
  687. package/esm/use-warning/use-warning.js +23 -0
  688. package/esm/user/index.d.ts +6 -0
  689. package/esm/user/index.js +21 -0
  690. package/esm/user/user-link.d.ts +32 -0
  691. package/esm/user/user-link.js +46 -0
  692. package/esm/user/user.d.ts +35 -0
  693. package/esm/user/user.js +63 -0
  694. package/esm/user/user.styles.d.ts +4456 -0
  695. package/esm/user/user.styles.js +56 -0
  696. package/esm/utils/assertion.d.ts +8 -0
  697. package/esm/utils/assertion.js +42 -0
  698. package/esm/utils/clear-icon.d.ts +16 -0
  699. package/esm/utils/clear-icon.js +70 -0
  700. package/esm/utils/clsx.d.ts +1 -0
  701. package/esm/utils/clsx.js +57 -0
  702. package/esm/utils/collections.d.ts +12 -0
  703. package/esm/utils/collections.js +110 -0
  704. package/esm/utils/color.d.ts +28 -0
  705. package/esm/utils/color.js +187 -0
  706. package/esm/utils/css-transition.d.ts +27 -0
  707. package/esm/utils/css-transition.js +76 -0
  708. package/esm/utils/deep-merge.d.ts +1 -0
  709. package/esm/utils/deep-merge.js +33 -0
  710. package/esm/utils/dimensions.d.ts +1 -0
  711. package/esm/utils/dimensions.js +10 -0
  712. package/esm/utils/dom.js +110 -0
  713. package/esm/utils/drip.d.ts +936 -0
  714. package/esm/utils/drip.js +116 -0
  715. package/esm/utils/expand.d.ts +20 -0
  716. package/esm/utils/expand.js +109 -0
  717. package/esm/utils/icons.js +481 -0
  718. package/esm/utils/numbers.d.ts +9 -0
  719. package/esm/utils/numbers.js +23 -0
  720. package/esm/utils/object.d.ts +11 -0
  721. package/esm/utils/object.js +40 -0
  722. package/esm/utils/prop-types.d.ts +54 -0
  723. package/esm/utils/prop-types.js +56 -0
  724. package/esm/utils/react.js +24 -0
  725. package/esm/utils/strings.js +18 -0
  726. package/esm/utils/types.d.js +3 -0
  727. package/esm/utils/with-defaults.d.ts +3 -0
  728. package/esm/utils/with-defaults.js +13 -0
  729. package/grid/package.json +6 -0
  730. package/image/package.json +6 -0
  731. package/input/package.json +6 -0
  732. package/link/package.json +6 -0
  733. package/loading/package.json +6 -0
  734. package/modal/package.json +6 -0
  735. package/package.json +16 -76
  736. package/pagination/package.json +6 -0
  737. package/progress/package.json +6 -0
  738. package/radio/package.json +6 -0
  739. package/row/package.json +6 -0
  740. package/snippet/package.json +6 -0
  741. package/spacer/package.json +6 -0
  742. package/switch/package.json +6 -0
  743. package/text/package.json +6 -0
  744. package/textarea/package.json +6 -0
  745. package/tooltip/package.json +6 -0
  746. package/umd/nextui.js +14059 -0
  747. package/umd/nextui.min.js +2 -0
  748. package/umd/nextui.min.js.LICENSE.txt +14 -0
  749. package/use-body-scroll/package.json +6 -0
  750. package/use-click-anywhere/package.json +6 -0
  751. package/use-click-away/package.json +6 -0
  752. package/use-clipboard/package.json +6 -0
  753. package/use-current-state/package.json +6 -0
  754. package/use-drip/package.json +6 -0
  755. package/use-input/package.json +6 -0
  756. package/use-keyboard/package.json +6 -0
  757. package/use-portal/package.json +6 -0
  758. package/use-real-shape/package.json +6 -0
  759. package/use-resize/package.json +6 -0
  760. package/use-ssr/package.json +6 -0
  761. package/use-theme/package.json +6 -0
  762. package/use-warning/package.json +6 -0
  763. package/user/package.json +6 -0
  764. package/utils/package.json +6 -0
  765. package/dist/components/avatar/avatar-group.d.ts +0 -17
  766. package/dist/components/avatar/avatar.d.ts +0 -33
  767. package/dist/components/avatar/index.d.ts +0 -2
  768. package/dist/components/button/button-group.d.ts +0 -56
  769. package/dist/components/button/button-icon.d.ts +0 -17
  770. package/dist/components/button/button-loading.d.ts +0 -18
  771. package/dist/components/button/button.d.ts +0 -51
  772. package/dist/components/button/button.drip.d.ts +0 -20
  773. package/dist/components/button/index.d.ts +0 -2
  774. package/dist/components/button/styles.d.ts +0 -40
  775. package/dist/components/card/card-content.d.ts +0 -13
  776. package/dist/components/card/card-footer.d.ts +0 -16
  777. package/dist/components/card/card.d.ts +0 -33
  778. package/dist/components/card/index.d.ts +0 -2
  779. package/dist/components/card/styles.d.ts +0 -12
  780. package/dist/components/checkbox/checkbox-group.d.ts +0 -31
  781. package/dist/components/checkbox/index.d.ts +0 -5
  782. package/dist/components/checkbox/styles.d.ts +0 -4
  783. package/dist/components/code/code.d.ts +0 -17
  784. package/dist/components/code/index.d.ts +0 -4
  785. package/dist/components/col/index.d.ts +0 -4
  786. package/dist/components/container/container.d.ts +0 -39
  787. package/dist/components/container/index.d.ts +0 -2
  788. package/dist/components/divider/divider.d.ts +0 -30
  789. package/dist/components/divider/index.d.ts +0 -2
  790. package/dist/components/grid/grid-container.d.ts +0 -18
  791. package/dist/components/grid/grid.d.ts +0 -16
  792. package/dist/components/grid/index.d.ts +0 -2
  793. package/dist/components/image/image-browser-https-icon.d.ts +0 -3
  794. package/dist/components/image/image-browser.d.ts +0 -31
  795. package/dist/components/image/image.skeleton.d.ts +0 -12
  796. package/dist/components/image/index.d.ts +0 -2
  797. package/dist/components/image/styles.d.ts +0 -9
  798. package/dist/components/index.d.ts +0 -20
  799. package/dist/components/link/index.d.ts +0 -4
  800. package/dist/components/link/link.d.ts +0 -39
  801. package/dist/components/loading/index.d.ts +0 -2
  802. package/dist/components/loading/spinner.d.ts +0 -16
  803. package/dist/components/loading/styles.d.ts +0 -18
  804. package/dist/components/radio/index.d.ts +0 -2
  805. package/dist/components/radio/radio-description.d.ts +0 -13
  806. package/dist/components/radio/radio-group.d.ts +0 -33
  807. package/dist/components/row/index.d.ts +0 -4
  808. package/dist/components/row/row.d.ts +0 -32
  809. package/dist/components/snippet/index.d.ts +0 -2
  810. package/dist/components/snippet/snippet.d.ts +0 -36
  811. package/dist/components/snippet/styles.d.ts +0 -8
  812. package/dist/components/spacer/index.d.ts +0 -4
  813. package/dist/components/spacer/spacer.d.ts +0 -27
  814. package/dist/components/switch/index.d.ts +0 -2
  815. package/dist/components/switch/styles.d.ts +0 -6
  816. package/dist/components/switch/switch.d.ts +0 -50
  817. package/dist/components/text/child.d.ts +0 -22
  818. package/dist/components/text/index.d.ts +0 -4
  819. package/dist/components/user/index.d.ts +0 -2
  820. package/dist/components/user/user-link.d.ts +0 -16
  821. package/dist/hooks/index.d.ts +0 -5
  822. package/dist/hooks/use-theme.d.ts +0 -3
  823. package/dist/index.d.ts +0 -3
  824. package/dist/index.js +0 -1
  825. package/dist/index.min.js +0 -1
  826. package/dist/theme/common.d.ts +0 -63
  827. package/dist/theme/dark.d.ts +0 -8
  828. package/dist/theme/default.d.ts +0 -8
  829. package/dist/theme/index.d.ts +0 -2
  830. package/dist/theme/shared.d.ts +0 -4
  831. package/dist/theme/theme-context.d.ts +0 -4
  832. package/dist/theme/theme-provider.d.ts +0 -7
  833. package/dist/theme/types.d.ts +0 -94
  834. package/dist/theme/utils.d.ts +0 -7
  835. package/dist/utils/collections.d.ts +0 -4
  836. package/dist/utils/object.d.ts +0 -5
  837. package/dist/utils/prop-types.d.ts +0 -37
@@ -0,0 +1,4456 @@
1
+ import { VariantProps } from '../theme/stitches.config';
2
+ export declare const StyledUser: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
3
+ xs: string;
4
+ sm: string;
5
+ md: string;
6
+ lg: string;
7
+ xl: string;
8
+ xsMax: string;
9
+ smMax: string;
10
+ mdMax: string;
11
+ lgMax: string;
12
+ xlMax: string;
13
+ motion: string;
14
+ safari: string;
15
+ hover: string;
16
+ dark: string;
17
+ light: string;
18
+ }, import("@stitches/react/types/css-util").CSS<{
19
+ xs: string;
20
+ sm: string;
21
+ md: string;
22
+ lg: string;
23
+ xl: string;
24
+ xsMax: string;
25
+ smMax: string;
26
+ mdMax: string;
27
+ lgMax: string;
28
+ xlMax: string;
29
+ motion: string;
30
+ safari: string;
31
+ hover: string;
32
+ dark: string;
33
+ light: string;
34
+ }, {
35
+ shadows: {
36
+ xs: string;
37
+ sm: string;
38
+ md: string;
39
+ lg: string;
40
+ xl: string;
41
+ };
42
+ colors: {
43
+ accents1: string;
44
+ accents2: string;
45
+ accents3: string;
46
+ accents4: string;
47
+ accents5: string;
48
+ accents6: string;
49
+ accents7: string;
50
+ accents8: string;
51
+ accents9: string;
52
+ text: string;
53
+ background: string;
54
+ foreground: string;
55
+ codeLight: string;
56
+ code: string;
57
+ border: string;
58
+ selection: string;
59
+ white: string;
60
+ black: string;
61
+ blue100: string;
62
+ blue200: string;
63
+ blue300: string;
64
+ blue400: string;
65
+ blue500: string;
66
+ blue600: string;
67
+ blue700: string;
68
+ blue800: string;
69
+ blue900: string;
70
+ purple100: string;
71
+ purple200: string;
72
+ purple300: string;
73
+ purple400: string;
74
+ purple500: string;
75
+ purple600: string;
76
+ purple700: string;
77
+ purple800: string;
78
+ purple900: string;
79
+ green100: string;
80
+ green200: string;
81
+ green300: string;
82
+ green400: string;
83
+ green500: string;
84
+ green600: string;
85
+ green700: string;
86
+ green800: string;
87
+ green900: string;
88
+ yellow100: string;
89
+ yellow200: string;
90
+ yellow300: string;
91
+ yellow400: string;
92
+ yellow500: string;
93
+ yellow600: string;
94
+ yellow700: string;
95
+ yellow800: string;
96
+ yellow900: string;
97
+ red100: string;
98
+ red200: string;
99
+ red300: string;
100
+ red400: string;
101
+ red500: string;
102
+ red600: string;
103
+ red700: string;
104
+ red800: string;
105
+ red900: string;
106
+ cyan100: string;
107
+ cyan200: string;
108
+ cyan300: string;
109
+ cyan400: string;
110
+ cyan500: string;
111
+ cyan600: string;
112
+ cyan700: string;
113
+ cyan800: string;
114
+ cyan900: string;
115
+ pink100: string;
116
+ pink200: string;
117
+ pink300: string;
118
+ pink400: string;
119
+ pink500: string;
120
+ pink600: string;
121
+ pink700: string;
122
+ pink800: string;
123
+ pink900: string;
124
+ gray100: string;
125
+ gray200: string;
126
+ gray300: string;
127
+ gray400: string;
128
+ gray500: string;
129
+ gray600: string;
130
+ gray700: string;
131
+ gray800: string;
132
+ gray900: string;
133
+ primaryLight: string;
134
+ primary: string;
135
+ primaryDark: string;
136
+ secondaryLight: string;
137
+ secondary: string;
138
+ secondaryDark: string;
139
+ successLight: string;
140
+ success: string;
141
+ successDark: string;
142
+ warningLight: string;
143
+ warning: string;
144
+ warningDark: string;
145
+ errorLight: string;
146
+ error: string;
147
+ errorDark: string;
148
+ gradient: string;
149
+ link: string;
150
+ };
151
+ fonts: {
152
+ sans: string;
153
+ mono: string;
154
+ };
155
+ fontSizes: {
156
+ tiny: string;
157
+ xs: string;
158
+ base: string;
159
+ sm: string;
160
+ md: string;
161
+ lg: string;
162
+ xl: string;
163
+ };
164
+ fontWeights: {
165
+ hairline: number;
166
+ thin: number;
167
+ light: number;
168
+ normal: number;
169
+ medium: number;
170
+ semibold: number;
171
+ bold: number;
172
+ extrabold: number;
173
+ black: number;
174
+ };
175
+ lineHeights: {
176
+ xs: number;
177
+ sm: number;
178
+ md: number;
179
+ lg: number;
180
+ xl: number;
181
+ };
182
+ letterSpacings: {
183
+ tighter: string;
184
+ tight: string;
185
+ normal: string;
186
+ wide: string;
187
+ wider: string;
188
+ widest: string;
189
+ };
190
+ space: {
191
+ 0: string;
192
+ xs: string;
193
+ sm: string;
194
+ md: string;
195
+ lg: string;
196
+ xl: string;
197
+ px: string;
198
+ 1: string;
199
+ 2: string;
200
+ 3: string;
201
+ 4: string;
202
+ 5: string;
203
+ 6: string;
204
+ 7: string;
205
+ 8: string;
206
+ 9: string;
207
+ 10: string;
208
+ 11: string;
209
+ 12: string;
210
+ 13: string;
211
+ 14: string;
212
+ 15: string;
213
+ 16: string;
214
+ 17: string;
215
+ 18: string;
216
+ 20: string;
217
+ 24: string;
218
+ 28: string;
219
+ 32: string;
220
+ 36: string;
221
+ 40: string;
222
+ 44: string;
223
+ 48: string;
224
+ 52: string;
225
+ 56: string;
226
+ 60: string;
227
+ 64: string;
228
+ 72: string;
229
+ 80: string;
230
+ 96: string;
231
+ };
232
+ radii: {
233
+ xs: string;
234
+ sm: string;
235
+ md: string;
236
+ base: string;
237
+ lg: string;
238
+ xl: string;
239
+ squared: string;
240
+ rounded: string;
241
+ pill: string;
242
+ };
243
+ zIndices: {
244
+ 1: string;
245
+ 2: string;
246
+ 3: string;
247
+ 4: string;
248
+ 5: string;
249
+ 10: string;
250
+ max: string;
251
+ };
252
+ borderWeights: {
253
+ light: string;
254
+ normal: string;
255
+ bold: string;
256
+ extrabold: string;
257
+ black: string;
258
+ };
259
+ transitions: {
260
+ default: string;
261
+ };
262
+ breakpoints: {
263
+ xs: string;
264
+ sm: string;
265
+ md: string;
266
+ lg: string;
267
+ xl: string;
268
+ };
269
+ }, {
270
+ width: string;
271
+ height: string;
272
+ minWidth: string;
273
+ maxWidth: string;
274
+ minHeight: string;
275
+ maxHeight: string;
276
+ flexBasis: string;
277
+ gridTemplateColumns: string;
278
+ gridTemplateRows: string;
279
+ blockSize: string;
280
+ minBlockSize: string;
281
+ maxBlockSize: string;
282
+ inlineSize: string;
283
+ minInlineSize: string;
284
+ maxInlineSize: string;
285
+ borderWidth: string;
286
+ gap: "space";
287
+ gridGap: "space";
288
+ columnGap: "space";
289
+ gridColumnGap: "space";
290
+ rowGap: "space";
291
+ gridRowGap: "space";
292
+ inset: "space";
293
+ insetBlock: "space";
294
+ insetBlockEnd: "space";
295
+ insetBlockStart: "space";
296
+ insetInline: "space";
297
+ insetInlineEnd: "space";
298
+ insetInlineStart: "space";
299
+ margin: "space";
300
+ marginTop: "space";
301
+ marginRight: "space";
302
+ marginBottom: "space";
303
+ marginLeft: "space";
304
+ marginBlock: "space";
305
+ marginBlockEnd: "space";
306
+ marginBlockStart: "space";
307
+ marginInline: "space";
308
+ marginInlineEnd: "space";
309
+ marginInlineStart: "space";
310
+ padding: "space";
311
+ paddingTop: "space";
312
+ paddingRight: "space";
313
+ paddingBottom: "space";
314
+ paddingLeft: "space";
315
+ paddingBlock: "space";
316
+ paddingBlockEnd: "space";
317
+ paddingBlockStart: "space";
318
+ paddingInline: "space";
319
+ paddingInlineEnd: "space";
320
+ paddingInlineStart: "space";
321
+ scrollMargin: "space";
322
+ scrollMarginTop: "space";
323
+ scrollMarginRight: "space";
324
+ scrollMarginBottom: "space";
325
+ scrollMarginLeft: "space";
326
+ scrollMarginBlock: "space";
327
+ scrollMarginBlockEnd: "space";
328
+ scrollMarginBlockStart: "space";
329
+ scrollMarginInline: "space";
330
+ scrollMarginInlineEnd: "space";
331
+ scrollMarginInlineStart: "space";
332
+ scrollPadding: "space";
333
+ scrollPaddingTop: "space";
334
+ scrollPaddingRight: "space";
335
+ scrollPaddingBottom: "space";
336
+ scrollPaddingLeft: "space";
337
+ scrollPaddingBlock: "space";
338
+ scrollPaddingBlockEnd: "space";
339
+ scrollPaddingBlockStart: "space";
340
+ scrollPaddingInline: "space";
341
+ scrollPaddingInlineEnd: "space";
342
+ scrollPaddingInlineStart: "space";
343
+ top: "space";
344
+ right: "space";
345
+ bottom: "space";
346
+ left: "space";
347
+ fontSize: "fontSizes";
348
+ background: "colors";
349
+ backgroundColor: "colors";
350
+ backgroundImage: "colors";
351
+ borderImage: "colors";
352
+ border: "colors";
353
+ borderBlock: "colors";
354
+ borderBlockEnd: "colors";
355
+ borderBlockStart: "colors";
356
+ borderBottom: "colors";
357
+ borderBottomColor: "colors";
358
+ borderColor: "colors";
359
+ borderInline: "colors";
360
+ borderInlineEnd: "colors";
361
+ borderInlineStart: "colors";
362
+ borderLeft: "colors";
363
+ borderLeftColor: "colors";
364
+ borderRight: "colors";
365
+ borderRightColor: "colors";
366
+ borderTop: "colors";
367
+ borderTopColor: "colors";
368
+ caretColor: "colors";
369
+ color: "colors";
370
+ columnRuleColor: "colors";
371
+ outline: "colors";
372
+ outlineColor: "colors";
373
+ fill: "colors";
374
+ stroke: "colors";
375
+ textDecorationColor: "colors";
376
+ fontFamily: "fonts";
377
+ fontWeight: "fontWeights";
378
+ lineHeight: "lineHeights";
379
+ letterSpacing: "letterSpacings";
380
+ borderTopWidth: "borderWidths";
381
+ borderLeftWidth: "borderWidths";
382
+ borderRightWidth: "borderWidths";
383
+ borderBottomWidth: "borderWidths";
384
+ borderStyle: "borderStyles";
385
+ borderTopStyle: "borderStyles";
386
+ borderLeftStyle: "borderStyles";
387
+ borderRightStyle: "borderStyles";
388
+ borderBottomStyle: "borderStyles";
389
+ borderRadius: "radii";
390
+ borderTopLeftRadius: "radii";
391
+ borderTopRightRadius: "radii";
392
+ borderBottomRightRadius: "radii";
393
+ borderBottomLeftRadius: "radii";
394
+ boxShadow: "shadows";
395
+ textShadow: "shadows";
396
+ transition: "transitions";
397
+ zIndex: "zIndices";
398
+ }, {
399
+ p: (value: {
400
+ readonly [$$PropertyValue]: "padding";
401
+ }) => {
402
+ padding: {
403
+ readonly [$$PropertyValue]: "padding";
404
+ };
405
+ };
406
+ pt: (value: {
407
+ readonly [$$PropertyValue]: "paddingTop";
408
+ }) => {
409
+ paddingTop: {
410
+ readonly [$$PropertyValue]: "paddingTop";
411
+ };
412
+ };
413
+ pr: (value: {
414
+ readonly [$$PropertyValue]: "paddingRight";
415
+ }) => {
416
+ paddingRight: {
417
+ readonly [$$PropertyValue]: "paddingRight";
418
+ };
419
+ };
420
+ pb: (value: {
421
+ readonly [$$PropertyValue]: "paddingBottom";
422
+ }) => {
423
+ paddingBottom: {
424
+ readonly [$$PropertyValue]: "paddingBottom";
425
+ };
426
+ };
427
+ pl: (value: {
428
+ readonly [$$PropertyValue]: "paddingLeft";
429
+ }) => {
430
+ paddingLeft: {
431
+ readonly [$$PropertyValue]: "paddingLeft";
432
+ };
433
+ };
434
+ px: (value: {
435
+ readonly [$$PropertyValue]: "paddingLeft";
436
+ }) => {
437
+ paddingLeft: {
438
+ readonly [$$PropertyValue]: "paddingLeft";
439
+ };
440
+ paddingRight: {
441
+ readonly [$$PropertyValue]: "paddingLeft";
442
+ };
443
+ };
444
+ py: (value: {
445
+ readonly [$$PropertyValue]: "paddingTop";
446
+ }) => {
447
+ paddingTop: {
448
+ readonly [$$PropertyValue]: "paddingTop";
449
+ };
450
+ paddingBottom: {
451
+ readonly [$$PropertyValue]: "paddingTop";
452
+ };
453
+ };
454
+ m: (value: {
455
+ readonly [$$PropertyValue]: "margin";
456
+ }) => {
457
+ margin: {
458
+ readonly [$$PropertyValue]: "margin";
459
+ };
460
+ };
461
+ mt: (value: {
462
+ readonly [$$PropertyValue]: "marginTop";
463
+ }) => {
464
+ marginTop: {
465
+ readonly [$$PropertyValue]: "marginTop";
466
+ };
467
+ };
468
+ mr: (value: {
469
+ readonly [$$PropertyValue]: "marginRight";
470
+ }) => {
471
+ marginRight: {
472
+ readonly [$$PropertyValue]: "marginRight";
473
+ };
474
+ };
475
+ mb: (value: {
476
+ readonly [$$PropertyValue]: "marginBottom";
477
+ }) => {
478
+ marginBottom: {
479
+ readonly [$$PropertyValue]: "marginBottom";
480
+ };
481
+ };
482
+ ml: (value: {
483
+ readonly [$$PropertyValue]: "marginLeft";
484
+ }) => {
485
+ marginLeft: {
486
+ readonly [$$PropertyValue]: "marginLeft";
487
+ };
488
+ };
489
+ mx: (value: {
490
+ readonly [$$PropertyValue]: "marginLeft";
491
+ }) => {
492
+ marginLeft: {
493
+ readonly [$$PropertyValue]: "marginLeft";
494
+ };
495
+ marginRight: {
496
+ readonly [$$PropertyValue]: "marginLeft";
497
+ };
498
+ };
499
+ my: (value: {
500
+ readonly [$$PropertyValue]: "marginTop";
501
+ }) => {
502
+ marginTop: {
503
+ readonly [$$PropertyValue]: "marginTop";
504
+ };
505
+ marginBottom: {
506
+ readonly [$$PropertyValue]: "marginTop";
507
+ };
508
+ };
509
+ ta: (value: {
510
+ readonly [$$PropertyValue]: "textAlign";
511
+ }) => {
512
+ textAlign: {
513
+ readonly [$$PropertyValue]: "textAlign";
514
+ };
515
+ };
516
+ tt: (value: {
517
+ readonly [$$PropertyValue]: "textTransform";
518
+ }) => {
519
+ textTransform: {
520
+ readonly [$$PropertyValue]: "textTransform";
521
+ };
522
+ };
523
+ to: (value: {
524
+ readonly [$$PropertyValue]: "textOverflow";
525
+ }) => {
526
+ textOverflow: {
527
+ readonly [$$PropertyValue]: "textOverflow";
528
+ };
529
+ };
530
+ d: (value: {
531
+ readonly [$$PropertyValue]: "display";
532
+ }) => {
533
+ display: {
534
+ readonly [$$PropertyValue]: "display";
535
+ };
536
+ };
537
+ dflex: (value: {
538
+ readonly [$$PropertyValue]: "alignItems";
539
+ }) => {
540
+ display: string;
541
+ alignItems: {
542
+ readonly [$$PropertyValue]: "alignItems";
543
+ };
544
+ justifyContent: {
545
+ readonly [$$PropertyValue]: "alignItems";
546
+ };
547
+ };
548
+ fd: (value: {
549
+ readonly [$$PropertyValue]: "flexDirection";
550
+ }) => {
551
+ flexDirection: {
552
+ readonly [$$PropertyValue]: "flexDirection";
553
+ };
554
+ };
555
+ fw: (value: {
556
+ readonly [$$PropertyValue]: "flexWrap";
557
+ }) => {
558
+ flexWrap: {
559
+ readonly [$$PropertyValue]: "flexWrap";
560
+ };
561
+ };
562
+ ai: (value: {
563
+ readonly [$$PropertyValue]: "alignItems";
564
+ }) => {
565
+ alignItems: {
566
+ readonly [$$PropertyValue]: "alignItems";
567
+ };
568
+ };
569
+ ac: (value: {
570
+ readonly [$$PropertyValue]: "alignContent";
571
+ }) => {
572
+ alignContent: {
573
+ readonly [$$PropertyValue]: "alignContent";
574
+ };
575
+ };
576
+ jc: (value: {
577
+ readonly [$$PropertyValue]: "justifyContent";
578
+ }) => {
579
+ justifyContent: {
580
+ readonly [$$PropertyValue]: "justifyContent";
581
+ };
582
+ };
583
+ as: (value: {
584
+ readonly [$$PropertyValue]: "alignSelf";
585
+ }) => {
586
+ alignSelf: {
587
+ readonly [$$PropertyValue]: "alignSelf";
588
+ };
589
+ };
590
+ fg: (value: {
591
+ readonly [$$PropertyValue]: "flexGrow";
592
+ }) => {
593
+ flexGrow: {
594
+ readonly [$$PropertyValue]: "flexGrow";
595
+ };
596
+ };
597
+ fs: (value: {
598
+ readonly [$$PropertyValue]: "fontSize";
599
+ }) => {
600
+ fontSize: {
601
+ readonly [$$PropertyValue]: "fontSize";
602
+ };
603
+ };
604
+ fb: (value: {
605
+ readonly [$$PropertyValue]: "flexBasis";
606
+ }) => {
607
+ flexBasis: {
608
+ readonly [$$PropertyValue]: "flexBasis";
609
+ };
610
+ };
611
+ bc: (value: {
612
+ readonly [$$PropertyValue]: "backgroundColor";
613
+ }) => {
614
+ backgroundColor: {
615
+ readonly [$$PropertyValue]: "backgroundColor";
616
+ };
617
+ };
618
+ bf: (value: {
619
+ readonly [$$PropertyValue]: "backdropFilter";
620
+ }) => {
621
+ backdropFilter: {
622
+ readonly [$$PropertyValue]: "backdropFilter";
623
+ };
624
+ };
625
+ bg: (value: {
626
+ readonly [$$PropertyValue]: "backgroundColor";
627
+ }) => {
628
+ background: {
629
+ readonly [$$PropertyValue]: "backgroundColor";
630
+ };
631
+ };
632
+ bgBlur: (value: {
633
+ readonly [$$PropertyValue]: "backgroundColor";
634
+ }) => {
635
+ bf: string;
636
+ bg: string;
637
+ };
638
+ bgColor: (value: {
639
+ readonly [$$PropertyValue]: "backgroundColor";
640
+ }) => {
641
+ backgroundColor: {
642
+ readonly [$$PropertyValue]: "backgroundColor";
643
+ };
644
+ };
645
+ backgroundClip: (value: {
646
+ readonly [$$PropertyValue]: "backgroundClip";
647
+ }) => {
648
+ WebkitBackgroundClip: {
649
+ readonly [$$PropertyValue]: "backgroundClip";
650
+ };
651
+ backgroundClip: {
652
+ readonly [$$PropertyValue]: "backgroundClip";
653
+ };
654
+ };
655
+ bgClip: (value: {
656
+ readonly [$$PropertyValue]: "backgroundClip";
657
+ }) => {
658
+ WebkitBackgroundClip: {
659
+ readonly [$$PropertyValue]: "backgroundClip";
660
+ };
661
+ backgroundClip: {
662
+ readonly [$$PropertyValue]: "backgroundClip";
663
+ };
664
+ };
665
+ br: (value: {
666
+ readonly [$$PropertyValue]: "borderRadius";
667
+ }) => {
668
+ borderRadius: {
669
+ readonly [$$PropertyValue]: "borderRadius";
670
+ };
671
+ };
672
+ bw: (value: {
673
+ readonly [$$PropertyValue]: "borderWidth";
674
+ }) => {
675
+ borderWidth: {
676
+ readonly [$$PropertyValue]: "borderWidth";
677
+ };
678
+ };
679
+ btrr: (value: {
680
+ readonly [$$PropertyValue]: "borderTopRightRadius";
681
+ }) => {
682
+ borderTopRightRadius: {
683
+ readonly [$$PropertyValue]: "borderTopRightRadius";
684
+ };
685
+ };
686
+ bbrr: (value: {
687
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
688
+ }) => {
689
+ borderBottomRightRadius: {
690
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
691
+ };
692
+ };
693
+ bblr: (value: {
694
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
695
+ }) => {
696
+ borderBottomLeftRadius: {
697
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
698
+ };
699
+ };
700
+ btlr: (value: {
701
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
702
+ }) => {
703
+ borderTopLeftRadius: {
704
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
705
+ };
706
+ };
707
+ bs: (value: {
708
+ readonly [$$PropertyValue]: "boxShadow";
709
+ }) => {
710
+ boxShadow: {
711
+ readonly [$$PropertyValue]: "boxShadow";
712
+ };
713
+ };
714
+ normalShadow: (value: {
715
+ readonly [$$PropertyValue]: "backgroundColor";
716
+ }) => {
717
+ boxShadow: string;
718
+ };
719
+ normalShadowVar: (value: {
720
+ readonly [$$PropertyValue]: "backgroundColor";
721
+ }) => {
722
+ boxShadow: string;
723
+ };
724
+ lh: (value: {
725
+ readonly [$$PropertyValue]: "lineHeight";
726
+ }) => {
727
+ lineHeight: {
728
+ readonly [$$PropertyValue]: "lineHeight";
729
+ };
730
+ };
731
+ ov: (value: {
732
+ readonly [$$PropertyValue]: "overflow";
733
+ }) => {
734
+ overflow: {
735
+ readonly [$$PropertyValue]: "overflow";
736
+ };
737
+ };
738
+ ox: (value: {
739
+ readonly [$$PropertyValue]: "overflowX";
740
+ }) => {
741
+ overflowX: {
742
+ readonly [$$PropertyValue]: "overflowX";
743
+ };
744
+ };
745
+ oy: (value: {
746
+ readonly [$$PropertyValue]: "overflowY";
747
+ }) => {
748
+ overflowY: {
749
+ readonly [$$PropertyValue]: "overflowY";
750
+ };
751
+ };
752
+ pe: (value: {
753
+ readonly [$$PropertyValue]: "pointerEvents";
754
+ }) => {
755
+ pointerEvents: {
756
+ readonly [$$PropertyValue]: "pointerEvents";
757
+ };
758
+ };
759
+ events: (value: {
760
+ readonly [$$PropertyValue]: "pointerEvents";
761
+ }) => {
762
+ pointerEvents: {
763
+ readonly [$$PropertyValue]: "pointerEvents";
764
+ };
765
+ };
766
+ us: (value: {
767
+ readonly [$$PropertyValue]: "userSelect";
768
+ }) => {
769
+ WebkitUserSelect: {
770
+ readonly [$$PropertyValue]: "userSelect";
771
+ };
772
+ userSelect: {
773
+ readonly [$$PropertyValue]: "userSelect";
774
+ };
775
+ };
776
+ userSelect: (value: {
777
+ readonly [$$PropertyValue]: "userSelect";
778
+ }) => {
779
+ WebkitUserSelect: {
780
+ readonly [$$PropertyValue]: "userSelect";
781
+ };
782
+ userSelect: {
783
+ readonly [$$PropertyValue]: "userSelect";
784
+ };
785
+ };
786
+ w: (value: {
787
+ readonly [$$PropertyValue]: "width";
788
+ }) => {
789
+ width: {
790
+ readonly [$$PropertyValue]: "width";
791
+ };
792
+ };
793
+ h: (value: {
794
+ readonly [$$PropertyValue]: "height";
795
+ }) => {
796
+ height: {
797
+ readonly [$$PropertyValue]: "height";
798
+ };
799
+ };
800
+ mw: (value: {
801
+ readonly [$$PropertyValue]: "maxWidth";
802
+ }) => {
803
+ maxWidth: {
804
+ readonly [$$PropertyValue]: "maxWidth";
805
+ };
806
+ };
807
+ maxW: (value: {
808
+ readonly [$$PropertyValue]: "maxWidth";
809
+ }) => {
810
+ maxWidth: {
811
+ readonly [$$PropertyValue]: "maxWidth";
812
+ };
813
+ };
814
+ mh: (value: {
815
+ readonly [$$PropertyValue]: "maxHeight";
816
+ }) => {
817
+ maxHeight: {
818
+ readonly [$$PropertyValue]: "maxHeight";
819
+ };
820
+ };
821
+ maxH: (value: {
822
+ readonly [$$PropertyValue]: "maxHeight";
823
+ }) => {
824
+ maxHeight: {
825
+ readonly [$$PropertyValue]: "maxHeight";
826
+ };
827
+ };
828
+ size: (value: {
829
+ readonly [$$PropertyValue]: "width";
830
+ }) => {
831
+ width: {
832
+ readonly [$$PropertyValue]: "width";
833
+ };
834
+ height: {
835
+ readonly [$$PropertyValue]: "width";
836
+ };
837
+ };
838
+ sizeMin: (value: {
839
+ readonly [$$PropertyValue]: "width";
840
+ }) => {
841
+ minWidth: {
842
+ readonly [$$PropertyValue]: "width";
843
+ };
844
+ minHeight: {
845
+ readonly [$$PropertyValue]: "width";
846
+ };
847
+ width: {
848
+ readonly [$$PropertyValue]: "width";
849
+ };
850
+ height: {
851
+ readonly [$$PropertyValue]: "width";
852
+ };
853
+ };
854
+ sizeMax: (value: {
855
+ readonly [$$PropertyValue]: "width";
856
+ }) => {
857
+ maxWidth: {
858
+ readonly [$$PropertyValue]: "width";
859
+ };
860
+ maxHeight: {
861
+ readonly [$$PropertyValue]: "width";
862
+ };
863
+ };
864
+ appearance: (value: {
865
+ readonly [$$PropertyValue]: "appearance";
866
+ }) => {
867
+ WebkitAppearance: {
868
+ readonly [$$PropertyValue]: "appearance";
869
+ };
870
+ appearance: {
871
+ readonly [$$PropertyValue]: "appearance";
872
+ };
873
+ };
874
+ scale: (value: {
875
+ readonly [$$PropertyValue]: "scale";
876
+ }) => {
877
+ transform: string;
878
+ };
879
+ linearGradient: (value: {
880
+ readonly [$$PropertyValue]: "backgroundImage";
881
+ }) => {
882
+ backgroundImage: string;
883
+ };
884
+ textGradient: (value: {
885
+ readonly [$$PropertyValue]: "backgroundImage";
886
+ }) => {
887
+ backgroundImage: string;
888
+ WebkitBackgroundClip: string;
889
+ WebkitTextFillColor: string;
890
+ };
891
+ }>>;
892
+ export declare const StyledUserInfo: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
893
+ xs: string;
894
+ sm: string;
895
+ md: string;
896
+ lg: string;
897
+ xl: string;
898
+ xsMax: string;
899
+ smMax: string;
900
+ mdMax: string;
901
+ lgMax: string;
902
+ xlMax: string;
903
+ motion: string;
904
+ safari: string;
905
+ hover: string;
906
+ dark: string;
907
+ light: string;
908
+ }, import("@stitches/react/types/css-util").CSS<{
909
+ xs: string;
910
+ sm: string;
911
+ md: string;
912
+ lg: string;
913
+ xl: string;
914
+ xsMax: string;
915
+ smMax: string;
916
+ mdMax: string;
917
+ lgMax: string;
918
+ xlMax: string;
919
+ motion: string;
920
+ safari: string;
921
+ hover: string;
922
+ dark: string;
923
+ light: string;
924
+ }, {
925
+ shadows: {
926
+ xs: string;
927
+ sm: string;
928
+ md: string;
929
+ lg: string;
930
+ xl: string;
931
+ };
932
+ colors: {
933
+ accents1: string;
934
+ accents2: string;
935
+ accents3: string;
936
+ accents4: string;
937
+ accents5: string;
938
+ accents6: string;
939
+ accents7: string;
940
+ accents8: string;
941
+ accents9: string;
942
+ text: string;
943
+ background: string;
944
+ foreground: string;
945
+ codeLight: string;
946
+ code: string;
947
+ border: string;
948
+ selection: string;
949
+ white: string;
950
+ black: string;
951
+ blue100: string;
952
+ blue200: string;
953
+ blue300: string;
954
+ blue400: string;
955
+ blue500: string;
956
+ blue600: string;
957
+ blue700: string;
958
+ blue800: string;
959
+ blue900: string;
960
+ purple100: string;
961
+ purple200: string;
962
+ purple300: string;
963
+ purple400: string;
964
+ purple500: string;
965
+ purple600: string;
966
+ purple700: string;
967
+ purple800: string;
968
+ purple900: string;
969
+ green100: string;
970
+ green200: string;
971
+ green300: string;
972
+ green400: string;
973
+ green500: string;
974
+ green600: string;
975
+ green700: string;
976
+ green800: string;
977
+ green900: string;
978
+ yellow100: string;
979
+ yellow200: string;
980
+ yellow300: string;
981
+ yellow400: string;
982
+ yellow500: string;
983
+ yellow600: string;
984
+ yellow700: string;
985
+ yellow800: string;
986
+ yellow900: string;
987
+ red100: string;
988
+ red200: string;
989
+ red300: string;
990
+ red400: string;
991
+ red500: string;
992
+ red600: string;
993
+ red700: string;
994
+ red800: string;
995
+ red900: string;
996
+ cyan100: string;
997
+ cyan200: string;
998
+ cyan300: string;
999
+ cyan400: string;
1000
+ cyan500: string;
1001
+ cyan600: string;
1002
+ cyan700: string;
1003
+ cyan800: string;
1004
+ cyan900: string;
1005
+ pink100: string;
1006
+ pink200: string;
1007
+ pink300: string;
1008
+ pink400: string;
1009
+ pink500: string;
1010
+ pink600: string;
1011
+ pink700: string;
1012
+ pink800: string;
1013
+ pink900: string;
1014
+ gray100: string;
1015
+ gray200: string;
1016
+ gray300: string;
1017
+ gray400: string;
1018
+ gray500: string;
1019
+ gray600: string;
1020
+ gray700: string;
1021
+ gray800: string;
1022
+ gray900: string;
1023
+ primaryLight: string;
1024
+ primary: string;
1025
+ primaryDark: string;
1026
+ secondaryLight: string;
1027
+ secondary: string;
1028
+ secondaryDark: string;
1029
+ successLight: string;
1030
+ success: string;
1031
+ successDark: string;
1032
+ warningLight: string;
1033
+ warning: string;
1034
+ warningDark: string;
1035
+ errorLight: string;
1036
+ error: string;
1037
+ errorDark: string;
1038
+ gradient: string;
1039
+ link: string;
1040
+ };
1041
+ fonts: {
1042
+ sans: string;
1043
+ mono: string;
1044
+ };
1045
+ fontSizes: {
1046
+ tiny: string;
1047
+ xs: string;
1048
+ base: string;
1049
+ sm: string;
1050
+ md: string;
1051
+ lg: string;
1052
+ xl: string;
1053
+ };
1054
+ fontWeights: {
1055
+ hairline: number;
1056
+ thin: number;
1057
+ light: number;
1058
+ normal: number;
1059
+ medium: number;
1060
+ semibold: number;
1061
+ bold: number;
1062
+ extrabold: number;
1063
+ black: number;
1064
+ };
1065
+ lineHeights: {
1066
+ xs: number;
1067
+ sm: number;
1068
+ md: number;
1069
+ lg: number;
1070
+ xl: number;
1071
+ };
1072
+ letterSpacings: {
1073
+ tighter: string;
1074
+ tight: string;
1075
+ normal: string;
1076
+ wide: string;
1077
+ wider: string;
1078
+ widest: string;
1079
+ };
1080
+ space: {
1081
+ 0: string;
1082
+ xs: string;
1083
+ sm: string;
1084
+ md: string;
1085
+ lg: string;
1086
+ xl: string;
1087
+ px: string;
1088
+ 1: string;
1089
+ 2: string;
1090
+ 3: string;
1091
+ 4: string;
1092
+ 5: string;
1093
+ 6: string;
1094
+ 7: string;
1095
+ 8: string;
1096
+ 9: string;
1097
+ 10: string;
1098
+ 11: string;
1099
+ 12: string;
1100
+ 13: string;
1101
+ 14: string;
1102
+ 15: string;
1103
+ 16: string;
1104
+ 17: string;
1105
+ 18: string;
1106
+ 20: string;
1107
+ 24: string;
1108
+ 28: string;
1109
+ 32: string;
1110
+ 36: string;
1111
+ 40: string;
1112
+ 44: string;
1113
+ 48: string;
1114
+ 52: string;
1115
+ 56: string;
1116
+ 60: string;
1117
+ 64: string;
1118
+ 72: string;
1119
+ 80: string;
1120
+ 96: string;
1121
+ };
1122
+ radii: {
1123
+ xs: string;
1124
+ sm: string;
1125
+ md: string;
1126
+ base: string;
1127
+ lg: string;
1128
+ xl: string;
1129
+ squared: string;
1130
+ rounded: string;
1131
+ pill: string;
1132
+ };
1133
+ zIndices: {
1134
+ 1: string;
1135
+ 2: string;
1136
+ 3: string;
1137
+ 4: string;
1138
+ 5: string;
1139
+ 10: string;
1140
+ max: string;
1141
+ };
1142
+ borderWeights: {
1143
+ light: string;
1144
+ normal: string;
1145
+ bold: string;
1146
+ extrabold: string;
1147
+ black: string;
1148
+ };
1149
+ transitions: {
1150
+ default: string;
1151
+ };
1152
+ breakpoints: {
1153
+ xs: string;
1154
+ sm: string;
1155
+ md: string;
1156
+ lg: string;
1157
+ xl: string;
1158
+ };
1159
+ }, {
1160
+ width: string;
1161
+ height: string;
1162
+ minWidth: string;
1163
+ maxWidth: string;
1164
+ minHeight: string;
1165
+ maxHeight: string;
1166
+ flexBasis: string;
1167
+ gridTemplateColumns: string;
1168
+ gridTemplateRows: string;
1169
+ blockSize: string;
1170
+ minBlockSize: string;
1171
+ maxBlockSize: string;
1172
+ inlineSize: string;
1173
+ minInlineSize: string;
1174
+ maxInlineSize: string;
1175
+ borderWidth: string;
1176
+ gap: "space";
1177
+ gridGap: "space";
1178
+ columnGap: "space";
1179
+ gridColumnGap: "space";
1180
+ rowGap: "space";
1181
+ gridRowGap: "space";
1182
+ inset: "space";
1183
+ insetBlock: "space";
1184
+ insetBlockEnd: "space";
1185
+ insetBlockStart: "space";
1186
+ insetInline: "space";
1187
+ insetInlineEnd: "space";
1188
+ insetInlineStart: "space";
1189
+ margin: "space";
1190
+ marginTop: "space";
1191
+ marginRight: "space";
1192
+ marginBottom: "space";
1193
+ marginLeft: "space";
1194
+ marginBlock: "space";
1195
+ marginBlockEnd: "space";
1196
+ marginBlockStart: "space";
1197
+ marginInline: "space";
1198
+ marginInlineEnd: "space";
1199
+ marginInlineStart: "space";
1200
+ padding: "space";
1201
+ paddingTop: "space";
1202
+ paddingRight: "space";
1203
+ paddingBottom: "space";
1204
+ paddingLeft: "space";
1205
+ paddingBlock: "space";
1206
+ paddingBlockEnd: "space";
1207
+ paddingBlockStart: "space";
1208
+ paddingInline: "space";
1209
+ paddingInlineEnd: "space";
1210
+ paddingInlineStart: "space";
1211
+ scrollMargin: "space";
1212
+ scrollMarginTop: "space";
1213
+ scrollMarginRight: "space";
1214
+ scrollMarginBottom: "space";
1215
+ scrollMarginLeft: "space";
1216
+ scrollMarginBlock: "space";
1217
+ scrollMarginBlockEnd: "space";
1218
+ scrollMarginBlockStart: "space";
1219
+ scrollMarginInline: "space";
1220
+ scrollMarginInlineEnd: "space";
1221
+ scrollMarginInlineStart: "space";
1222
+ scrollPadding: "space";
1223
+ scrollPaddingTop: "space";
1224
+ scrollPaddingRight: "space";
1225
+ scrollPaddingBottom: "space";
1226
+ scrollPaddingLeft: "space";
1227
+ scrollPaddingBlock: "space";
1228
+ scrollPaddingBlockEnd: "space";
1229
+ scrollPaddingBlockStart: "space";
1230
+ scrollPaddingInline: "space";
1231
+ scrollPaddingInlineEnd: "space";
1232
+ scrollPaddingInlineStart: "space";
1233
+ top: "space";
1234
+ right: "space";
1235
+ bottom: "space";
1236
+ left: "space";
1237
+ fontSize: "fontSizes";
1238
+ background: "colors";
1239
+ backgroundColor: "colors";
1240
+ backgroundImage: "colors";
1241
+ borderImage: "colors";
1242
+ border: "colors";
1243
+ borderBlock: "colors";
1244
+ borderBlockEnd: "colors";
1245
+ borderBlockStart: "colors";
1246
+ borderBottom: "colors";
1247
+ borderBottomColor: "colors";
1248
+ borderColor: "colors";
1249
+ borderInline: "colors";
1250
+ borderInlineEnd: "colors";
1251
+ borderInlineStart: "colors";
1252
+ borderLeft: "colors";
1253
+ borderLeftColor: "colors";
1254
+ borderRight: "colors";
1255
+ borderRightColor: "colors";
1256
+ borderTop: "colors";
1257
+ borderTopColor: "colors";
1258
+ caretColor: "colors";
1259
+ color: "colors";
1260
+ columnRuleColor: "colors";
1261
+ outline: "colors";
1262
+ outlineColor: "colors";
1263
+ fill: "colors";
1264
+ stroke: "colors";
1265
+ textDecorationColor: "colors";
1266
+ fontFamily: "fonts";
1267
+ fontWeight: "fontWeights";
1268
+ lineHeight: "lineHeights";
1269
+ letterSpacing: "letterSpacings";
1270
+ borderTopWidth: "borderWidths";
1271
+ borderLeftWidth: "borderWidths";
1272
+ borderRightWidth: "borderWidths";
1273
+ borderBottomWidth: "borderWidths";
1274
+ borderStyle: "borderStyles";
1275
+ borderTopStyle: "borderStyles";
1276
+ borderLeftStyle: "borderStyles";
1277
+ borderRightStyle: "borderStyles";
1278
+ borderBottomStyle: "borderStyles";
1279
+ borderRadius: "radii";
1280
+ borderTopLeftRadius: "radii";
1281
+ borderTopRightRadius: "radii";
1282
+ borderBottomRightRadius: "radii";
1283
+ borderBottomLeftRadius: "radii";
1284
+ boxShadow: "shadows";
1285
+ textShadow: "shadows";
1286
+ transition: "transitions";
1287
+ zIndex: "zIndices";
1288
+ }, {
1289
+ p: (value: {
1290
+ readonly [$$PropertyValue]: "padding";
1291
+ }) => {
1292
+ padding: {
1293
+ readonly [$$PropertyValue]: "padding";
1294
+ };
1295
+ };
1296
+ pt: (value: {
1297
+ readonly [$$PropertyValue]: "paddingTop";
1298
+ }) => {
1299
+ paddingTop: {
1300
+ readonly [$$PropertyValue]: "paddingTop";
1301
+ };
1302
+ };
1303
+ pr: (value: {
1304
+ readonly [$$PropertyValue]: "paddingRight";
1305
+ }) => {
1306
+ paddingRight: {
1307
+ readonly [$$PropertyValue]: "paddingRight";
1308
+ };
1309
+ };
1310
+ pb: (value: {
1311
+ readonly [$$PropertyValue]: "paddingBottom";
1312
+ }) => {
1313
+ paddingBottom: {
1314
+ readonly [$$PropertyValue]: "paddingBottom";
1315
+ };
1316
+ };
1317
+ pl: (value: {
1318
+ readonly [$$PropertyValue]: "paddingLeft";
1319
+ }) => {
1320
+ paddingLeft: {
1321
+ readonly [$$PropertyValue]: "paddingLeft";
1322
+ };
1323
+ };
1324
+ px: (value: {
1325
+ readonly [$$PropertyValue]: "paddingLeft";
1326
+ }) => {
1327
+ paddingLeft: {
1328
+ readonly [$$PropertyValue]: "paddingLeft";
1329
+ };
1330
+ paddingRight: {
1331
+ readonly [$$PropertyValue]: "paddingLeft";
1332
+ };
1333
+ };
1334
+ py: (value: {
1335
+ readonly [$$PropertyValue]: "paddingTop";
1336
+ }) => {
1337
+ paddingTop: {
1338
+ readonly [$$PropertyValue]: "paddingTop";
1339
+ };
1340
+ paddingBottom: {
1341
+ readonly [$$PropertyValue]: "paddingTop";
1342
+ };
1343
+ };
1344
+ m: (value: {
1345
+ readonly [$$PropertyValue]: "margin";
1346
+ }) => {
1347
+ margin: {
1348
+ readonly [$$PropertyValue]: "margin";
1349
+ };
1350
+ };
1351
+ mt: (value: {
1352
+ readonly [$$PropertyValue]: "marginTop";
1353
+ }) => {
1354
+ marginTop: {
1355
+ readonly [$$PropertyValue]: "marginTop";
1356
+ };
1357
+ };
1358
+ mr: (value: {
1359
+ readonly [$$PropertyValue]: "marginRight";
1360
+ }) => {
1361
+ marginRight: {
1362
+ readonly [$$PropertyValue]: "marginRight";
1363
+ };
1364
+ };
1365
+ mb: (value: {
1366
+ readonly [$$PropertyValue]: "marginBottom";
1367
+ }) => {
1368
+ marginBottom: {
1369
+ readonly [$$PropertyValue]: "marginBottom";
1370
+ };
1371
+ };
1372
+ ml: (value: {
1373
+ readonly [$$PropertyValue]: "marginLeft";
1374
+ }) => {
1375
+ marginLeft: {
1376
+ readonly [$$PropertyValue]: "marginLeft";
1377
+ };
1378
+ };
1379
+ mx: (value: {
1380
+ readonly [$$PropertyValue]: "marginLeft";
1381
+ }) => {
1382
+ marginLeft: {
1383
+ readonly [$$PropertyValue]: "marginLeft";
1384
+ };
1385
+ marginRight: {
1386
+ readonly [$$PropertyValue]: "marginLeft";
1387
+ };
1388
+ };
1389
+ my: (value: {
1390
+ readonly [$$PropertyValue]: "marginTop";
1391
+ }) => {
1392
+ marginTop: {
1393
+ readonly [$$PropertyValue]: "marginTop";
1394
+ };
1395
+ marginBottom: {
1396
+ readonly [$$PropertyValue]: "marginTop";
1397
+ };
1398
+ };
1399
+ ta: (value: {
1400
+ readonly [$$PropertyValue]: "textAlign";
1401
+ }) => {
1402
+ textAlign: {
1403
+ readonly [$$PropertyValue]: "textAlign";
1404
+ };
1405
+ };
1406
+ tt: (value: {
1407
+ readonly [$$PropertyValue]: "textTransform";
1408
+ }) => {
1409
+ textTransform: {
1410
+ readonly [$$PropertyValue]: "textTransform";
1411
+ };
1412
+ };
1413
+ to: (value: {
1414
+ readonly [$$PropertyValue]: "textOverflow";
1415
+ }) => {
1416
+ textOverflow: {
1417
+ readonly [$$PropertyValue]: "textOverflow";
1418
+ };
1419
+ };
1420
+ d: (value: {
1421
+ readonly [$$PropertyValue]: "display";
1422
+ }) => {
1423
+ display: {
1424
+ readonly [$$PropertyValue]: "display";
1425
+ };
1426
+ };
1427
+ dflex: (value: {
1428
+ readonly [$$PropertyValue]: "alignItems";
1429
+ }) => {
1430
+ display: string;
1431
+ alignItems: {
1432
+ readonly [$$PropertyValue]: "alignItems";
1433
+ };
1434
+ justifyContent: {
1435
+ readonly [$$PropertyValue]: "alignItems";
1436
+ };
1437
+ };
1438
+ fd: (value: {
1439
+ readonly [$$PropertyValue]: "flexDirection";
1440
+ }) => {
1441
+ flexDirection: {
1442
+ readonly [$$PropertyValue]: "flexDirection";
1443
+ };
1444
+ };
1445
+ fw: (value: {
1446
+ readonly [$$PropertyValue]: "flexWrap";
1447
+ }) => {
1448
+ flexWrap: {
1449
+ readonly [$$PropertyValue]: "flexWrap";
1450
+ };
1451
+ };
1452
+ ai: (value: {
1453
+ readonly [$$PropertyValue]: "alignItems";
1454
+ }) => {
1455
+ alignItems: {
1456
+ readonly [$$PropertyValue]: "alignItems";
1457
+ };
1458
+ };
1459
+ ac: (value: {
1460
+ readonly [$$PropertyValue]: "alignContent";
1461
+ }) => {
1462
+ alignContent: {
1463
+ readonly [$$PropertyValue]: "alignContent";
1464
+ };
1465
+ };
1466
+ jc: (value: {
1467
+ readonly [$$PropertyValue]: "justifyContent";
1468
+ }) => {
1469
+ justifyContent: {
1470
+ readonly [$$PropertyValue]: "justifyContent";
1471
+ };
1472
+ };
1473
+ as: (value: {
1474
+ readonly [$$PropertyValue]: "alignSelf";
1475
+ }) => {
1476
+ alignSelf: {
1477
+ readonly [$$PropertyValue]: "alignSelf";
1478
+ };
1479
+ };
1480
+ fg: (value: {
1481
+ readonly [$$PropertyValue]: "flexGrow";
1482
+ }) => {
1483
+ flexGrow: {
1484
+ readonly [$$PropertyValue]: "flexGrow";
1485
+ };
1486
+ };
1487
+ fs: (value: {
1488
+ readonly [$$PropertyValue]: "fontSize";
1489
+ }) => {
1490
+ fontSize: {
1491
+ readonly [$$PropertyValue]: "fontSize";
1492
+ };
1493
+ };
1494
+ fb: (value: {
1495
+ readonly [$$PropertyValue]: "flexBasis";
1496
+ }) => {
1497
+ flexBasis: {
1498
+ readonly [$$PropertyValue]: "flexBasis";
1499
+ };
1500
+ };
1501
+ bc: (value: {
1502
+ readonly [$$PropertyValue]: "backgroundColor";
1503
+ }) => {
1504
+ backgroundColor: {
1505
+ readonly [$$PropertyValue]: "backgroundColor";
1506
+ };
1507
+ };
1508
+ bf: (value: {
1509
+ readonly [$$PropertyValue]: "backdropFilter";
1510
+ }) => {
1511
+ backdropFilter: {
1512
+ readonly [$$PropertyValue]: "backdropFilter";
1513
+ };
1514
+ };
1515
+ bg: (value: {
1516
+ readonly [$$PropertyValue]: "backgroundColor";
1517
+ }) => {
1518
+ background: {
1519
+ readonly [$$PropertyValue]: "backgroundColor";
1520
+ };
1521
+ };
1522
+ bgBlur: (value: {
1523
+ readonly [$$PropertyValue]: "backgroundColor";
1524
+ }) => {
1525
+ bf: string;
1526
+ bg: string;
1527
+ };
1528
+ bgColor: (value: {
1529
+ readonly [$$PropertyValue]: "backgroundColor";
1530
+ }) => {
1531
+ backgroundColor: {
1532
+ readonly [$$PropertyValue]: "backgroundColor";
1533
+ };
1534
+ };
1535
+ backgroundClip: (value: {
1536
+ readonly [$$PropertyValue]: "backgroundClip";
1537
+ }) => {
1538
+ WebkitBackgroundClip: {
1539
+ readonly [$$PropertyValue]: "backgroundClip";
1540
+ };
1541
+ backgroundClip: {
1542
+ readonly [$$PropertyValue]: "backgroundClip";
1543
+ };
1544
+ };
1545
+ bgClip: (value: {
1546
+ readonly [$$PropertyValue]: "backgroundClip";
1547
+ }) => {
1548
+ WebkitBackgroundClip: {
1549
+ readonly [$$PropertyValue]: "backgroundClip";
1550
+ };
1551
+ backgroundClip: {
1552
+ readonly [$$PropertyValue]: "backgroundClip";
1553
+ };
1554
+ };
1555
+ br: (value: {
1556
+ readonly [$$PropertyValue]: "borderRadius";
1557
+ }) => {
1558
+ borderRadius: {
1559
+ readonly [$$PropertyValue]: "borderRadius";
1560
+ };
1561
+ };
1562
+ bw: (value: {
1563
+ readonly [$$PropertyValue]: "borderWidth";
1564
+ }) => {
1565
+ borderWidth: {
1566
+ readonly [$$PropertyValue]: "borderWidth";
1567
+ };
1568
+ };
1569
+ btrr: (value: {
1570
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1571
+ }) => {
1572
+ borderTopRightRadius: {
1573
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1574
+ };
1575
+ };
1576
+ bbrr: (value: {
1577
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1578
+ }) => {
1579
+ borderBottomRightRadius: {
1580
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1581
+ };
1582
+ };
1583
+ bblr: (value: {
1584
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1585
+ }) => {
1586
+ borderBottomLeftRadius: {
1587
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1588
+ };
1589
+ };
1590
+ btlr: (value: {
1591
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1592
+ }) => {
1593
+ borderTopLeftRadius: {
1594
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1595
+ };
1596
+ };
1597
+ bs: (value: {
1598
+ readonly [$$PropertyValue]: "boxShadow";
1599
+ }) => {
1600
+ boxShadow: {
1601
+ readonly [$$PropertyValue]: "boxShadow";
1602
+ };
1603
+ };
1604
+ normalShadow: (value: {
1605
+ readonly [$$PropertyValue]: "backgroundColor";
1606
+ }) => {
1607
+ boxShadow: string;
1608
+ };
1609
+ normalShadowVar: (value: {
1610
+ readonly [$$PropertyValue]: "backgroundColor";
1611
+ }) => {
1612
+ boxShadow: string;
1613
+ };
1614
+ lh: (value: {
1615
+ readonly [$$PropertyValue]: "lineHeight";
1616
+ }) => {
1617
+ lineHeight: {
1618
+ readonly [$$PropertyValue]: "lineHeight";
1619
+ };
1620
+ };
1621
+ ov: (value: {
1622
+ readonly [$$PropertyValue]: "overflow";
1623
+ }) => {
1624
+ overflow: {
1625
+ readonly [$$PropertyValue]: "overflow";
1626
+ };
1627
+ };
1628
+ ox: (value: {
1629
+ readonly [$$PropertyValue]: "overflowX";
1630
+ }) => {
1631
+ overflowX: {
1632
+ readonly [$$PropertyValue]: "overflowX";
1633
+ };
1634
+ };
1635
+ oy: (value: {
1636
+ readonly [$$PropertyValue]: "overflowY";
1637
+ }) => {
1638
+ overflowY: {
1639
+ readonly [$$PropertyValue]: "overflowY";
1640
+ };
1641
+ };
1642
+ pe: (value: {
1643
+ readonly [$$PropertyValue]: "pointerEvents";
1644
+ }) => {
1645
+ pointerEvents: {
1646
+ readonly [$$PropertyValue]: "pointerEvents";
1647
+ };
1648
+ };
1649
+ events: (value: {
1650
+ readonly [$$PropertyValue]: "pointerEvents";
1651
+ }) => {
1652
+ pointerEvents: {
1653
+ readonly [$$PropertyValue]: "pointerEvents";
1654
+ };
1655
+ };
1656
+ us: (value: {
1657
+ readonly [$$PropertyValue]: "userSelect";
1658
+ }) => {
1659
+ WebkitUserSelect: {
1660
+ readonly [$$PropertyValue]: "userSelect";
1661
+ };
1662
+ userSelect: {
1663
+ readonly [$$PropertyValue]: "userSelect";
1664
+ };
1665
+ };
1666
+ userSelect: (value: {
1667
+ readonly [$$PropertyValue]: "userSelect";
1668
+ }) => {
1669
+ WebkitUserSelect: {
1670
+ readonly [$$PropertyValue]: "userSelect";
1671
+ };
1672
+ userSelect: {
1673
+ readonly [$$PropertyValue]: "userSelect";
1674
+ };
1675
+ };
1676
+ w: (value: {
1677
+ readonly [$$PropertyValue]: "width";
1678
+ }) => {
1679
+ width: {
1680
+ readonly [$$PropertyValue]: "width";
1681
+ };
1682
+ };
1683
+ h: (value: {
1684
+ readonly [$$PropertyValue]: "height";
1685
+ }) => {
1686
+ height: {
1687
+ readonly [$$PropertyValue]: "height";
1688
+ };
1689
+ };
1690
+ mw: (value: {
1691
+ readonly [$$PropertyValue]: "maxWidth";
1692
+ }) => {
1693
+ maxWidth: {
1694
+ readonly [$$PropertyValue]: "maxWidth";
1695
+ };
1696
+ };
1697
+ maxW: (value: {
1698
+ readonly [$$PropertyValue]: "maxWidth";
1699
+ }) => {
1700
+ maxWidth: {
1701
+ readonly [$$PropertyValue]: "maxWidth";
1702
+ };
1703
+ };
1704
+ mh: (value: {
1705
+ readonly [$$PropertyValue]: "maxHeight";
1706
+ }) => {
1707
+ maxHeight: {
1708
+ readonly [$$PropertyValue]: "maxHeight";
1709
+ };
1710
+ };
1711
+ maxH: (value: {
1712
+ readonly [$$PropertyValue]: "maxHeight";
1713
+ }) => {
1714
+ maxHeight: {
1715
+ readonly [$$PropertyValue]: "maxHeight";
1716
+ };
1717
+ };
1718
+ size: (value: {
1719
+ readonly [$$PropertyValue]: "width";
1720
+ }) => {
1721
+ width: {
1722
+ readonly [$$PropertyValue]: "width";
1723
+ };
1724
+ height: {
1725
+ readonly [$$PropertyValue]: "width";
1726
+ };
1727
+ };
1728
+ sizeMin: (value: {
1729
+ readonly [$$PropertyValue]: "width";
1730
+ }) => {
1731
+ minWidth: {
1732
+ readonly [$$PropertyValue]: "width";
1733
+ };
1734
+ minHeight: {
1735
+ readonly [$$PropertyValue]: "width";
1736
+ };
1737
+ width: {
1738
+ readonly [$$PropertyValue]: "width";
1739
+ };
1740
+ height: {
1741
+ readonly [$$PropertyValue]: "width";
1742
+ };
1743
+ };
1744
+ sizeMax: (value: {
1745
+ readonly [$$PropertyValue]: "width";
1746
+ }) => {
1747
+ maxWidth: {
1748
+ readonly [$$PropertyValue]: "width";
1749
+ };
1750
+ maxHeight: {
1751
+ readonly [$$PropertyValue]: "width";
1752
+ };
1753
+ };
1754
+ appearance: (value: {
1755
+ readonly [$$PropertyValue]: "appearance";
1756
+ }) => {
1757
+ WebkitAppearance: {
1758
+ readonly [$$PropertyValue]: "appearance";
1759
+ };
1760
+ appearance: {
1761
+ readonly [$$PropertyValue]: "appearance";
1762
+ };
1763
+ };
1764
+ scale: (value: {
1765
+ readonly [$$PropertyValue]: "scale";
1766
+ }) => {
1767
+ transform: string;
1768
+ };
1769
+ linearGradient: (value: {
1770
+ readonly [$$PropertyValue]: "backgroundImage";
1771
+ }) => {
1772
+ backgroundImage: string;
1773
+ };
1774
+ textGradient: (value: {
1775
+ readonly [$$PropertyValue]: "backgroundImage";
1776
+ }) => {
1777
+ backgroundImage: string;
1778
+ WebkitBackgroundClip: string;
1779
+ WebkitTextFillColor: string;
1780
+ };
1781
+ }>>;
1782
+ export declare const StyledUserName: import("@stitches/react/types/styled-component").StyledComponent<"span", {}, {
1783
+ xs: string;
1784
+ sm: string;
1785
+ md: string;
1786
+ lg: string;
1787
+ xl: string;
1788
+ xsMax: string;
1789
+ smMax: string;
1790
+ mdMax: string;
1791
+ lgMax: string;
1792
+ xlMax: string;
1793
+ motion: string;
1794
+ safari: string;
1795
+ hover: string;
1796
+ dark: string;
1797
+ light: string;
1798
+ }, import("@stitches/react/types/css-util").CSS<{
1799
+ xs: string;
1800
+ sm: string;
1801
+ md: string;
1802
+ lg: string;
1803
+ xl: string;
1804
+ xsMax: string;
1805
+ smMax: string;
1806
+ mdMax: string;
1807
+ lgMax: string;
1808
+ xlMax: string;
1809
+ motion: string;
1810
+ safari: string;
1811
+ hover: string;
1812
+ dark: string;
1813
+ light: string;
1814
+ }, {
1815
+ shadows: {
1816
+ xs: string;
1817
+ sm: string;
1818
+ md: string;
1819
+ lg: string;
1820
+ xl: string;
1821
+ };
1822
+ colors: {
1823
+ accents1: string;
1824
+ accents2: string;
1825
+ accents3: string;
1826
+ accents4: string;
1827
+ accents5: string;
1828
+ accents6: string;
1829
+ accents7: string;
1830
+ accents8: string;
1831
+ accents9: string;
1832
+ text: string;
1833
+ background: string;
1834
+ foreground: string;
1835
+ codeLight: string;
1836
+ code: string;
1837
+ border: string;
1838
+ selection: string;
1839
+ white: string;
1840
+ black: string;
1841
+ blue100: string;
1842
+ blue200: string;
1843
+ blue300: string;
1844
+ blue400: string;
1845
+ blue500: string;
1846
+ blue600: string;
1847
+ blue700: string;
1848
+ blue800: string;
1849
+ blue900: string;
1850
+ purple100: string;
1851
+ purple200: string;
1852
+ purple300: string;
1853
+ purple400: string;
1854
+ purple500: string;
1855
+ purple600: string;
1856
+ purple700: string;
1857
+ purple800: string;
1858
+ purple900: string;
1859
+ green100: string;
1860
+ green200: string;
1861
+ green300: string;
1862
+ green400: string;
1863
+ green500: string;
1864
+ green600: string;
1865
+ green700: string;
1866
+ green800: string;
1867
+ green900: string;
1868
+ yellow100: string;
1869
+ yellow200: string;
1870
+ yellow300: string;
1871
+ yellow400: string;
1872
+ yellow500: string;
1873
+ yellow600: string;
1874
+ yellow700: string;
1875
+ yellow800: string;
1876
+ yellow900: string;
1877
+ red100: string;
1878
+ red200: string;
1879
+ red300: string;
1880
+ red400: string;
1881
+ red500: string;
1882
+ red600: string;
1883
+ red700: string;
1884
+ red800: string;
1885
+ red900: string;
1886
+ cyan100: string;
1887
+ cyan200: string;
1888
+ cyan300: string;
1889
+ cyan400: string;
1890
+ cyan500: string;
1891
+ cyan600: string;
1892
+ cyan700: string;
1893
+ cyan800: string;
1894
+ cyan900: string;
1895
+ pink100: string;
1896
+ pink200: string;
1897
+ pink300: string;
1898
+ pink400: string;
1899
+ pink500: string;
1900
+ pink600: string;
1901
+ pink700: string;
1902
+ pink800: string;
1903
+ pink900: string;
1904
+ gray100: string;
1905
+ gray200: string;
1906
+ gray300: string;
1907
+ gray400: string;
1908
+ gray500: string;
1909
+ gray600: string;
1910
+ gray700: string;
1911
+ gray800: string;
1912
+ gray900: string;
1913
+ primaryLight: string;
1914
+ primary: string;
1915
+ primaryDark: string;
1916
+ secondaryLight: string;
1917
+ secondary: string;
1918
+ secondaryDark: string;
1919
+ successLight: string;
1920
+ success: string;
1921
+ successDark: string;
1922
+ warningLight: string;
1923
+ warning: string;
1924
+ warningDark: string;
1925
+ errorLight: string;
1926
+ error: string;
1927
+ errorDark: string;
1928
+ gradient: string;
1929
+ link: string;
1930
+ };
1931
+ fonts: {
1932
+ sans: string;
1933
+ mono: string;
1934
+ };
1935
+ fontSizes: {
1936
+ tiny: string;
1937
+ xs: string;
1938
+ base: string;
1939
+ sm: string;
1940
+ md: string;
1941
+ lg: string;
1942
+ xl: string;
1943
+ };
1944
+ fontWeights: {
1945
+ hairline: number;
1946
+ thin: number;
1947
+ light: number;
1948
+ normal: number;
1949
+ medium: number;
1950
+ semibold: number;
1951
+ bold: number;
1952
+ extrabold: number;
1953
+ black: number;
1954
+ };
1955
+ lineHeights: {
1956
+ xs: number;
1957
+ sm: number;
1958
+ md: number;
1959
+ lg: number;
1960
+ xl: number;
1961
+ };
1962
+ letterSpacings: {
1963
+ tighter: string;
1964
+ tight: string;
1965
+ normal: string;
1966
+ wide: string;
1967
+ wider: string;
1968
+ widest: string;
1969
+ };
1970
+ space: {
1971
+ 0: string;
1972
+ xs: string;
1973
+ sm: string;
1974
+ md: string;
1975
+ lg: string;
1976
+ xl: string;
1977
+ px: string;
1978
+ 1: string;
1979
+ 2: string;
1980
+ 3: string;
1981
+ 4: string;
1982
+ 5: string;
1983
+ 6: string;
1984
+ 7: string;
1985
+ 8: string;
1986
+ 9: string;
1987
+ 10: string;
1988
+ 11: string;
1989
+ 12: string;
1990
+ 13: string;
1991
+ 14: string;
1992
+ 15: string;
1993
+ 16: string;
1994
+ 17: string;
1995
+ 18: string;
1996
+ 20: string;
1997
+ 24: string;
1998
+ 28: string;
1999
+ 32: string;
2000
+ 36: string;
2001
+ 40: string;
2002
+ 44: string;
2003
+ 48: string;
2004
+ 52: string;
2005
+ 56: string;
2006
+ 60: string;
2007
+ 64: string;
2008
+ 72: string;
2009
+ 80: string;
2010
+ 96: string;
2011
+ };
2012
+ radii: {
2013
+ xs: string;
2014
+ sm: string;
2015
+ md: string;
2016
+ base: string;
2017
+ lg: string;
2018
+ xl: string;
2019
+ squared: string;
2020
+ rounded: string;
2021
+ pill: string;
2022
+ };
2023
+ zIndices: {
2024
+ 1: string;
2025
+ 2: string;
2026
+ 3: string;
2027
+ 4: string;
2028
+ 5: string;
2029
+ 10: string;
2030
+ max: string;
2031
+ };
2032
+ borderWeights: {
2033
+ light: string;
2034
+ normal: string;
2035
+ bold: string;
2036
+ extrabold: string;
2037
+ black: string;
2038
+ };
2039
+ transitions: {
2040
+ default: string;
2041
+ };
2042
+ breakpoints: {
2043
+ xs: string;
2044
+ sm: string;
2045
+ md: string;
2046
+ lg: string;
2047
+ xl: string;
2048
+ };
2049
+ }, {
2050
+ width: string;
2051
+ height: string;
2052
+ minWidth: string;
2053
+ maxWidth: string;
2054
+ minHeight: string;
2055
+ maxHeight: string;
2056
+ flexBasis: string;
2057
+ gridTemplateColumns: string;
2058
+ gridTemplateRows: string;
2059
+ blockSize: string;
2060
+ minBlockSize: string;
2061
+ maxBlockSize: string;
2062
+ inlineSize: string;
2063
+ minInlineSize: string;
2064
+ maxInlineSize: string;
2065
+ borderWidth: string;
2066
+ gap: "space";
2067
+ gridGap: "space";
2068
+ columnGap: "space";
2069
+ gridColumnGap: "space";
2070
+ rowGap: "space";
2071
+ gridRowGap: "space";
2072
+ inset: "space";
2073
+ insetBlock: "space";
2074
+ insetBlockEnd: "space";
2075
+ insetBlockStart: "space";
2076
+ insetInline: "space";
2077
+ insetInlineEnd: "space";
2078
+ insetInlineStart: "space";
2079
+ margin: "space";
2080
+ marginTop: "space";
2081
+ marginRight: "space";
2082
+ marginBottom: "space";
2083
+ marginLeft: "space";
2084
+ marginBlock: "space";
2085
+ marginBlockEnd: "space";
2086
+ marginBlockStart: "space";
2087
+ marginInline: "space";
2088
+ marginInlineEnd: "space";
2089
+ marginInlineStart: "space";
2090
+ padding: "space";
2091
+ paddingTop: "space";
2092
+ paddingRight: "space";
2093
+ paddingBottom: "space";
2094
+ paddingLeft: "space";
2095
+ paddingBlock: "space";
2096
+ paddingBlockEnd: "space";
2097
+ paddingBlockStart: "space";
2098
+ paddingInline: "space";
2099
+ paddingInlineEnd: "space";
2100
+ paddingInlineStart: "space";
2101
+ scrollMargin: "space";
2102
+ scrollMarginTop: "space";
2103
+ scrollMarginRight: "space";
2104
+ scrollMarginBottom: "space";
2105
+ scrollMarginLeft: "space";
2106
+ scrollMarginBlock: "space";
2107
+ scrollMarginBlockEnd: "space";
2108
+ scrollMarginBlockStart: "space";
2109
+ scrollMarginInline: "space";
2110
+ scrollMarginInlineEnd: "space";
2111
+ scrollMarginInlineStart: "space";
2112
+ scrollPadding: "space";
2113
+ scrollPaddingTop: "space";
2114
+ scrollPaddingRight: "space";
2115
+ scrollPaddingBottom: "space";
2116
+ scrollPaddingLeft: "space";
2117
+ scrollPaddingBlock: "space";
2118
+ scrollPaddingBlockEnd: "space";
2119
+ scrollPaddingBlockStart: "space";
2120
+ scrollPaddingInline: "space";
2121
+ scrollPaddingInlineEnd: "space";
2122
+ scrollPaddingInlineStart: "space";
2123
+ top: "space";
2124
+ right: "space";
2125
+ bottom: "space";
2126
+ left: "space";
2127
+ fontSize: "fontSizes";
2128
+ background: "colors";
2129
+ backgroundColor: "colors";
2130
+ backgroundImage: "colors";
2131
+ borderImage: "colors";
2132
+ border: "colors";
2133
+ borderBlock: "colors";
2134
+ borderBlockEnd: "colors";
2135
+ borderBlockStart: "colors";
2136
+ borderBottom: "colors";
2137
+ borderBottomColor: "colors";
2138
+ borderColor: "colors";
2139
+ borderInline: "colors";
2140
+ borderInlineEnd: "colors";
2141
+ borderInlineStart: "colors";
2142
+ borderLeft: "colors";
2143
+ borderLeftColor: "colors";
2144
+ borderRight: "colors";
2145
+ borderRightColor: "colors";
2146
+ borderTop: "colors";
2147
+ borderTopColor: "colors";
2148
+ caretColor: "colors";
2149
+ color: "colors";
2150
+ columnRuleColor: "colors";
2151
+ outline: "colors";
2152
+ outlineColor: "colors";
2153
+ fill: "colors";
2154
+ stroke: "colors";
2155
+ textDecorationColor: "colors";
2156
+ fontFamily: "fonts";
2157
+ fontWeight: "fontWeights";
2158
+ lineHeight: "lineHeights";
2159
+ letterSpacing: "letterSpacings";
2160
+ borderTopWidth: "borderWidths";
2161
+ borderLeftWidth: "borderWidths";
2162
+ borderRightWidth: "borderWidths";
2163
+ borderBottomWidth: "borderWidths";
2164
+ borderStyle: "borderStyles";
2165
+ borderTopStyle: "borderStyles";
2166
+ borderLeftStyle: "borderStyles";
2167
+ borderRightStyle: "borderStyles";
2168
+ borderBottomStyle: "borderStyles";
2169
+ borderRadius: "radii";
2170
+ borderTopLeftRadius: "radii";
2171
+ borderTopRightRadius: "radii";
2172
+ borderBottomRightRadius: "radii";
2173
+ borderBottomLeftRadius: "radii";
2174
+ boxShadow: "shadows";
2175
+ textShadow: "shadows";
2176
+ transition: "transitions";
2177
+ zIndex: "zIndices";
2178
+ }, {
2179
+ p: (value: {
2180
+ readonly [$$PropertyValue]: "padding";
2181
+ }) => {
2182
+ padding: {
2183
+ readonly [$$PropertyValue]: "padding";
2184
+ };
2185
+ };
2186
+ pt: (value: {
2187
+ readonly [$$PropertyValue]: "paddingTop";
2188
+ }) => {
2189
+ paddingTop: {
2190
+ readonly [$$PropertyValue]: "paddingTop";
2191
+ };
2192
+ };
2193
+ pr: (value: {
2194
+ readonly [$$PropertyValue]: "paddingRight";
2195
+ }) => {
2196
+ paddingRight: {
2197
+ readonly [$$PropertyValue]: "paddingRight";
2198
+ };
2199
+ };
2200
+ pb: (value: {
2201
+ readonly [$$PropertyValue]: "paddingBottom";
2202
+ }) => {
2203
+ paddingBottom: {
2204
+ readonly [$$PropertyValue]: "paddingBottom";
2205
+ };
2206
+ };
2207
+ pl: (value: {
2208
+ readonly [$$PropertyValue]: "paddingLeft";
2209
+ }) => {
2210
+ paddingLeft: {
2211
+ readonly [$$PropertyValue]: "paddingLeft";
2212
+ };
2213
+ };
2214
+ px: (value: {
2215
+ readonly [$$PropertyValue]: "paddingLeft";
2216
+ }) => {
2217
+ paddingLeft: {
2218
+ readonly [$$PropertyValue]: "paddingLeft";
2219
+ };
2220
+ paddingRight: {
2221
+ readonly [$$PropertyValue]: "paddingLeft";
2222
+ };
2223
+ };
2224
+ py: (value: {
2225
+ readonly [$$PropertyValue]: "paddingTop";
2226
+ }) => {
2227
+ paddingTop: {
2228
+ readonly [$$PropertyValue]: "paddingTop";
2229
+ };
2230
+ paddingBottom: {
2231
+ readonly [$$PropertyValue]: "paddingTop";
2232
+ };
2233
+ };
2234
+ m: (value: {
2235
+ readonly [$$PropertyValue]: "margin";
2236
+ }) => {
2237
+ margin: {
2238
+ readonly [$$PropertyValue]: "margin";
2239
+ };
2240
+ };
2241
+ mt: (value: {
2242
+ readonly [$$PropertyValue]: "marginTop";
2243
+ }) => {
2244
+ marginTop: {
2245
+ readonly [$$PropertyValue]: "marginTop";
2246
+ };
2247
+ };
2248
+ mr: (value: {
2249
+ readonly [$$PropertyValue]: "marginRight";
2250
+ }) => {
2251
+ marginRight: {
2252
+ readonly [$$PropertyValue]: "marginRight";
2253
+ };
2254
+ };
2255
+ mb: (value: {
2256
+ readonly [$$PropertyValue]: "marginBottom";
2257
+ }) => {
2258
+ marginBottom: {
2259
+ readonly [$$PropertyValue]: "marginBottom";
2260
+ };
2261
+ };
2262
+ ml: (value: {
2263
+ readonly [$$PropertyValue]: "marginLeft";
2264
+ }) => {
2265
+ marginLeft: {
2266
+ readonly [$$PropertyValue]: "marginLeft";
2267
+ };
2268
+ };
2269
+ mx: (value: {
2270
+ readonly [$$PropertyValue]: "marginLeft";
2271
+ }) => {
2272
+ marginLeft: {
2273
+ readonly [$$PropertyValue]: "marginLeft";
2274
+ };
2275
+ marginRight: {
2276
+ readonly [$$PropertyValue]: "marginLeft";
2277
+ };
2278
+ };
2279
+ my: (value: {
2280
+ readonly [$$PropertyValue]: "marginTop";
2281
+ }) => {
2282
+ marginTop: {
2283
+ readonly [$$PropertyValue]: "marginTop";
2284
+ };
2285
+ marginBottom: {
2286
+ readonly [$$PropertyValue]: "marginTop";
2287
+ };
2288
+ };
2289
+ ta: (value: {
2290
+ readonly [$$PropertyValue]: "textAlign";
2291
+ }) => {
2292
+ textAlign: {
2293
+ readonly [$$PropertyValue]: "textAlign";
2294
+ };
2295
+ };
2296
+ tt: (value: {
2297
+ readonly [$$PropertyValue]: "textTransform";
2298
+ }) => {
2299
+ textTransform: {
2300
+ readonly [$$PropertyValue]: "textTransform";
2301
+ };
2302
+ };
2303
+ to: (value: {
2304
+ readonly [$$PropertyValue]: "textOverflow";
2305
+ }) => {
2306
+ textOverflow: {
2307
+ readonly [$$PropertyValue]: "textOverflow";
2308
+ };
2309
+ };
2310
+ d: (value: {
2311
+ readonly [$$PropertyValue]: "display";
2312
+ }) => {
2313
+ display: {
2314
+ readonly [$$PropertyValue]: "display";
2315
+ };
2316
+ };
2317
+ dflex: (value: {
2318
+ readonly [$$PropertyValue]: "alignItems";
2319
+ }) => {
2320
+ display: string;
2321
+ alignItems: {
2322
+ readonly [$$PropertyValue]: "alignItems";
2323
+ };
2324
+ justifyContent: {
2325
+ readonly [$$PropertyValue]: "alignItems";
2326
+ };
2327
+ };
2328
+ fd: (value: {
2329
+ readonly [$$PropertyValue]: "flexDirection";
2330
+ }) => {
2331
+ flexDirection: {
2332
+ readonly [$$PropertyValue]: "flexDirection";
2333
+ };
2334
+ };
2335
+ fw: (value: {
2336
+ readonly [$$PropertyValue]: "flexWrap";
2337
+ }) => {
2338
+ flexWrap: {
2339
+ readonly [$$PropertyValue]: "flexWrap";
2340
+ };
2341
+ };
2342
+ ai: (value: {
2343
+ readonly [$$PropertyValue]: "alignItems";
2344
+ }) => {
2345
+ alignItems: {
2346
+ readonly [$$PropertyValue]: "alignItems";
2347
+ };
2348
+ };
2349
+ ac: (value: {
2350
+ readonly [$$PropertyValue]: "alignContent";
2351
+ }) => {
2352
+ alignContent: {
2353
+ readonly [$$PropertyValue]: "alignContent";
2354
+ };
2355
+ };
2356
+ jc: (value: {
2357
+ readonly [$$PropertyValue]: "justifyContent";
2358
+ }) => {
2359
+ justifyContent: {
2360
+ readonly [$$PropertyValue]: "justifyContent";
2361
+ };
2362
+ };
2363
+ as: (value: {
2364
+ readonly [$$PropertyValue]: "alignSelf";
2365
+ }) => {
2366
+ alignSelf: {
2367
+ readonly [$$PropertyValue]: "alignSelf";
2368
+ };
2369
+ };
2370
+ fg: (value: {
2371
+ readonly [$$PropertyValue]: "flexGrow";
2372
+ }) => {
2373
+ flexGrow: {
2374
+ readonly [$$PropertyValue]: "flexGrow";
2375
+ };
2376
+ };
2377
+ fs: (value: {
2378
+ readonly [$$PropertyValue]: "fontSize";
2379
+ }) => {
2380
+ fontSize: {
2381
+ readonly [$$PropertyValue]: "fontSize";
2382
+ };
2383
+ };
2384
+ fb: (value: {
2385
+ readonly [$$PropertyValue]: "flexBasis";
2386
+ }) => {
2387
+ flexBasis: {
2388
+ readonly [$$PropertyValue]: "flexBasis";
2389
+ };
2390
+ };
2391
+ bc: (value: {
2392
+ readonly [$$PropertyValue]: "backgroundColor";
2393
+ }) => {
2394
+ backgroundColor: {
2395
+ readonly [$$PropertyValue]: "backgroundColor";
2396
+ };
2397
+ };
2398
+ bf: (value: {
2399
+ readonly [$$PropertyValue]: "backdropFilter";
2400
+ }) => {
2401
+ backdropFilter: {
2402
+ readonly [$$PropertyValue]: "backdropFilter";
2403
+ };
2404
+ };
2405
+ bg: (value: {
2406
+ readonly [$$PropertyValue]: "backgroundColor";
2407
+ }) => {
2408
+ background: {
2409
+ readonly [$$PropertyValue]: "backgroundColor";
2410
+ };
2411
+ };
2412
+ bgBlur: (value: {
2413
+ readonly [$$PropertyValue]: "backgroundColor";
2414
+ }) => {
2415
+ bf: string;
2416
+ bg: string;
2417
+ };
2418
+ bgColor: (value: {
2419
+ readonly [$$PropertyValue]: "backgroundColor";
2420
+ }) => {
2421
+ backgroundColor: {
2422
+ readonly [$$PropertyValue]: "backgroundColor";
2423
+ };
2424
+ };
2425
+ backgroundClip: (value: {
2426
+ readonly [$$PropertyValue]: "backgroundClip";
2427
+ }) => {
2428
+ WebkitBackgroundClip: {
2429
+ readonly [$$PropertyValue]: "backgroundClip";
2430
+ };
2431
+ backgroundClip: {
2432
+ readonly [$$PropertyValue]: "backgroundClip";
2433
+ };
2434
+ };
2435
+ bgClip: (value: {
2436
+ readonly [$$PropertyValue]: "backgroundClip";
2437
+ }) => {
2438
+ WebkitBackgroundClip: {
2439
+ readonly [$$PropertyValue]: "backgroundClip";
2440
+ };
2441
+ backgroundClip: {
2442
+ readonly [$$PropertyValue]: "backgroundClip";
2443
+ };
2444
+ };
2445
+ br: (value: {
2446
+ readonly [$$PropertyValue]: "borderRadius";
2447
+ }) => {
2448
+ borderRadius: {
2449
+ readonly [$$PropertyValue]: "borderRadius";
2450
+ };
2451
+ };
2452
+ bw: (value: {
2453
+ readonly [$$PropertyValue]: "borderWidth";
2454
+ }) => {
2455
+ borderWidth: {
2456
+ readonly [$$PropertyValue]: "borderWidth";
2457
+ };
2458
+ };
2459
+ btrr: (value: {
2460
+ readonly [$$PropertyValue]: "borderTopRightRadius";
2461
+ }) => {
2462
+ borderTopRightRadius: {
2463
+ readonly [$$PropertyValue]: "borderTopRightRadius";
2464
+ };
2465
+ };
2466
+ bbrr: (value: {
2467
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
2468
+ }) => {
2469
+ borderBottomRightRadius: {
2470
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
2471
+ };
2472
+ };
2473
+ bblr: (value: {
2474
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
2475
+ }) => {
2476
+ borderBottomLeftRadius: {
2477
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
2478
+ };
2479
+ };
2480
+ btlr: (value: {
2481
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
2482
+ }) => {
2483
+ borderTopLeftRadius: {
2484
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
2485
+ };
2486
+ };
2487
+ bs: (value: {
2488
+ readonly [$$PropertyValue]: "boxShadow";
2489
+ }) => {
2490
+ boxShadow: {
2491
+ readonly [$$PropertyValue]: "boxShadow";
2492
+ };
2493
+ };
2494
+ normalShadow: (value: {
2495
+ readonly [$$PropertyValue]: "backgroundColor";
2496
+ }) => {
2497
+ boxShadow: string;
2498
+ };
2499
+ normalShadowVar: (value: {
2500
+ readonly [$$PropertyValue]: "backgroundColor";
2501
+ }) => {
2502
+ boxShadow: string;
2503
+ };
2504
+ lh: (value: {
2505
+ readonly [$$PropertyValue]: "lineHeight";
2506
+ }) => {
2507
+ lineHeight: {
2508
+ readonly [$$PropertyValue]: "lineHeight";
2509
+ };
2510
+ };
2511
+ ov: (value: {
2512
+ readonly [$$PropertyValue]: "overflow";
2513
+ }) => {
2514
+ overflow: {
2515
+ readonly [$$PropertyValue]: "overflow";
2516
+ };
2517
+ };
2518
+ ox: (value: {
2519
+ readonly [$$PropertyValue]: "overflowX";
2520
+ }) => {
2521
+ overflowX: {
2522
+ readonly [$$PropertyValue]: "overflowX";
2523
+ };
2524
+ };
2525
+ oy: (value: {
2526
+ readonly [$$PropertyValue]: "overflowY";
2527
+ }) => {
2528
+ overflowY: {
2529
+ readonly [$$PropertyValue]: "overflowY";
2530
+ };
2531
+ };
2532
+ pe: (value: {
2533
+ readonly [$$PropertyValue]: "pointerEvents";
2534
+ }) => {
2535
+ pointerEvents: {
2536
+ readonly [$$PropertyValue]: "pointerEvents";
2537
+ };
2538
+ };
2539
+ events: (value: {
2540
+ readonly [$$PropertyValue]: "pointerEvents";
2541
+ }) => {
2542
+ pointerEvents: {
2543
+ readonly [$$PropertyValue]: "pointerEvents";
2544
+ };
2545
+ };
2546
+ us: (value: {
2547
+ readonly [$$PropertyValue]: "userSelect";
2548
+ }) => {
2549
+ WebkitUserSelect: {
2550
+ readonly [$$PropertyValue]: "userSelect";
2551
+ };
2552
+ userSelect: {
2553
+ readonly [$$PropertyValue]: "userSelect";
2554
+ };
2555
+ };
2556
+ userSelect: (value: {
2557
+ readonly [$$PropertyValue]: "userSelect";
2558
+ }) => {
2559
+ WebkitUserSelect: {
2560
+ readonly [$$PropertyValue]: "userSelect";
2561
+ };
2562
+ userSelect: {
2563
+ readonly [$$PropertyValue]: "userSelect";
2564
+ };
2565
+ };
2566
+ w: (value: {
2567
+ readonly [$$PropertyValue]: "width";
2568
+ }) => {
2569
+ width: {
2570
+ readonly [$$PropertyValue]: "width";
2571
+ };
2572
+ };
2573
+ h: (value: {
2574
+ readonly [$$PropertyValue]: "height";
2575
+ }) => {
2576
+ height: {
2577
+ readonly [$$PropertyValue]: "height";
2578
+ };
2579
+ };
2580
+ mw: (value: {
2581
+ readonly [$$PropertyValue]: "maxWidth";
2582
+ }) => {
2583
+ maxWidth: {
2584
+ readonly [$$PropertyValue]: "maxWidth";
2585
+ };
2586
+ };
2587
+ maxW: (value: {
2588
+ readonly [$$PropertyValue]: "maxWidth";
2589
+ }) => {
2590
+ maxWidth: {
2591
+ readonly [$$PropertyValue]: "maxWidth";
2592
+ };
2593
+ };
2594
+ mh: (value: {
2595
+ readonly [$$PropertyValue]: "maxHeight";
2596
+ }) => {
2597
+ maxHeight: {
2598
+ readonly [$$PropertyValue]: "maxHeight";
2599
+ };
2600
+ };
2601
+ maxH: (value: {
2602
+ readonly [$$PropertyValue]: "maxHeight";
2603
+ }) => {
2604
+ maxHeight: {
2605
+ readonly [$$PropertyValue]: "maxHeight";
2606
+ };
2607
+ };
2608
+ size: (value: {
2609
+ readonly [$$PropertyValue]: "width";
2610
+ }) => {
2611
+ width: {
2612
+ readonly [$$PropertyValue]: "width";
2613
+ };
2614
+ height: {
2615
+ readonly [$$PropertyValue]: "width";
2616
+ };
2617
+ };
2618
+ sizeMin: (value: {
2619
+ readonly [$$PropertyValue]: "width";
2620
+ }) => {
2621
+ minWidth: {
2622
+ readonly [$$PropertyValue]: "width";
2623
+ };
2624
+ minHeight: {
2625
+ readonly [$$PropertyValue]: "width";
2626
+ };
2627
+ width: {
2628
+ readonly [$$PropertyValue]: "width";
2629
+ };
2630
+ height: {
2631
+ readonly [$$PropertyValue]: "width";
2632
+ };
2633
+ };
2634
+ sizeMax: (value: {
2635
+ readonly [$$PropertyValue]: "width";
2636
+ }) => {
2637
+ maxWidth: {
2638
+ readonly [$$PropertyValue]: "width";
2639
+ };
2640
+ maxHeight: {
2641
+ readonly [$$PropertyValue]: "width";
2642
+ };
2643
+ };
2644
+ appearance: (value: {
2645
+ readonly [$$PropertyValue]: "appearance";
2646
+ }) => {
2647
+ WebkitAppearance: {
2648
+ readonly [$$PropertyValue]: "appearance";
2649
+ };
2650
+ appearance: {
2651
+ readonly [$$PropertyValue]: "appearance";
2652
+ };
2653
+ };
2654
+ scale: (value: {
2655
+ readonly [$$PropertyValue]: "scale";
2656
+ }) => {
2657
+ transform: string;
2658
+ };
2659
+ linearGradient: (value: {
2660
+ readonly [$$PropertyValue]: "backgroundImage";
2661
+ }) => {
2662
+ backgroundImage: string;
2663
+ };
2664
+ textGradient: (value: {
2665
+ readonly [$$PropertyValue]: "backgroundImage";
2666
+ }) => {
2667
+ backgroundImage: string;
2668
+ WebkitBackgroundClip: string;
2669
+ WebkitTextFillColor: string;
2670
+ };
2671
+ }>>;
2672
+ export declare const StyledUserSocial: import("@stitches/react/types/styled-component").StyledComponent<"span", {}, {
2673
+ xs: string;
2674
+ sm: string;
2675
+ md: string;
2676
+ lg: string;
2677
+ xl: string;
2678
+ xsMax: string;
2679
+ smMax: string;
2680
+ mdMax: string;
2681
+ lgMax: string;
2682
+ xlMax: string;
2683
+ motion: string;
2684
+ safari: string;
2685
+ hover: string;
2686
+ dark: string;
2687
+ light: string;
2688
+ }, import("@stitches/react/types/css-util").CSS<{
2689
+ xs: string;
2690
+ sm: string;
2691
+ md: string;
2692
+ lg: string;
2693
+ xl: string;
2694
+ xsMax: string;
2695
+ smMax: string;
2696
+ mdMax: string;
2697
+ lgMax: string;
2698
+ xlMax: string;
2699
+ motion: string;
2700
+ safari: string;
2701
+ hover: string;
2702
+ dark: string;
2703
+ light: string;
2704
+ }, {
2705
+ shadows: {
2706
+ xs: string;
2707
+ sm: string;
2708
+ md: string;
2709
+ lg: string;
2710
+ xl: string;
2711
+ };
2712
+ colors: {
2713
+ accents1: string;
2714
+ accents2: string;
2715
+ accents3: string;
2716
+ accents4: string;
2717
+ accents5: string;
2718
+ accents6: string;
2719
+ accents7: string;
2720
+ accents8: string;
2721
+ accents9: string;
2722
+ text: string;
2723
+ background: string;
2724
+ foreground: string;
2725
+ codeLight: string;
2726
+ code: string;
2727
+ border: string;
2728
+ selection: string;
2729
+ white: string;
2730
+ black: string;
2731
+ blue100: string;
2732
+ blue200: string;
2733
+ blue300: string;
2734
+ blue400: string;
2735
+ blue500: string;
2736
+ blue600: string;
2737
+ blue700: string;
2738
+ blue800: string;
2739
+ blue900: string;
2740
+ purple100: string;
2741
+ purple200: string;
2742
+ purple300: string;
2743
+ purple400: string;
2744
+ purple500: string;
2745
+ purple600: string;
2746
+ purple700: string;
2747
+ purple800: string;
2748
+ purple900: string;
2749
+ green100: string;
2750
+ green200: string;
2751
+ green300: string;
2752
+ green400: string;
2753
+ green500: string;
2754
+ green600: string;
2755
+ green700: string;
2756
+ green800: string;
2757
+ green900: string;
2758
+ yellow100: string;
2759
+ yellow200: string;
2760
+ yellow300: string;
2761
+ yellow400: string;
2762
+ yellow500: string;
2763
+ yellow600: string;
2764
+ yellow700: string;
2765
+ yellow800: string;
2766
+ yellow900: string;
2767
+ red100: string;
2768
+ red200: string;
2769
+ red300: string;
2770
+ red400: string;
2771
+ red500: string;
2772
+ red600: string;
2773
+ red700: string;
2774
+ red800: string;
2775
+ red900: string;
2776
+ cyan100: string;
2777
+ cyan200: string;
2778
+ cyan300: string;
2779
+ cyan400: string;
2780
+ cyan500: string;
2781
+ cyan600: string;
2782
+ cyan700: string;
2783
+ cyan800: string;
2784
+ cyan900: string;
2785
+ pink100: string;
2786
+ pink200: string;
2787
+ pink300: string;
2788
+ pink400: string;
2789
+ pink500: string;
2790
+ pink600: string;
2791
+ pink700: string;
2792
+ pink800: string;
2793
+ pink900: string;
2794
+ gray100: string;
2795
+ gray200: string;
2796
+ gray300: string;
2797
+ gray400: string;
2798
+ gray500: string;
2799
+ gray600: string;
2800
+ gray700: string;
2801
+ gray800: string;
2802
+ gray900: string;
2803
+ primaryLight: string;
2804
+ primary: string;
2805
+ primaryDark: string;
2806
+ secondaryLight: string;
2807
+ secondary: string;
2808
+ secondaryDark: string;
2809
+ successLight: string;
2810
+ success: string;
2811
+ successDark: string;
2812
+ warningLight: string;
2813
+ warning: string;
2814
+ warningDark: string;
2815
+ errorLight: string;
2816
+ error: string;
2817
+ errorDark: string;
2818
+ gradient: string;
2819
+ link: string;
2820
+ };
2821
+ fonts: {
2822
+ sans: string;
2823
+ mono: string;
2824
+ };
2825
+ fontSizes: {
2826
+ tiny: string;
2827
+ xs: string;
2828
+ base: string;
2829
+ sm: string;
2830
+ md: string;
2831
+ lg: string;
2832
+ xl: string;
2833
+ };
2834
+ fontWeights: {
2835
+ hairline: number;
2836
+ thin: number;
2837
+ light: number;
2838
+ normal: number;
2839
+ medium: number;
2840
+ semibold: number;
2841
+ bold: number;
2842
+ extrabold: number;
2843
+ black: number;
2844
+ };
2845
+ lineHeights: {
2846
+ xs: number;
2847
+ sm: number;
2848
+ md: number;
2849
+ lg: number;
2850
+ xl: number;
2851
+ };
2852
+ letterSpacings: {
2853
+ tighter: string;
2854
+ tight: string;
2855
+ normal: string;
2856
+ wide: string;
2857
+ wider: string;
2858
+ widest: string;
2859
+ };
2860
+ space: {
2861
+ 0: string;
2862
+ xs: string;
2863
+ sm: string;
2864
+ md: string;
2865
+ lg: string;
2866
+ xl: string;
2867
+ px: string;
2868
+ 1: string;
2869
+ 2: string;
2870
+ 3: string;
2871
+ 4: string;
2872
+ 5: string;
2873
+ 6: string;
2874
+ 7: string;
2875
+ 8: string;
2876
+ 9: string;
2877
+ 10: string;
2878
+ 11: string;
2879
+ 12: string;
2880
+ 13: string;
2881
+ 14: string;
2882
+ 15: string;
2883
+ 16: string;
2884
+ 17: string;
2885
+ 18: string;
2886
+ 20: string;
2887
+ 24: string;
2888
+ 28: string;
2889
+ 32: string;
2890
+ 36: string;
2891
+ 40: string;
2892
+ 44: string;
2893
+ 48: string;
2894
+ 52: string;
2895
+ 56: string;
2896
+ 60: string;
2897
+ 64: string;
2898
+ 72: string;
2899
+ 80: string;
2900
+ 96: string;
2901
+ };
2902
+ radii: {
2903
+ xs: string;
2904
+ sm: string;
2905
+ md: string;
2906
+ base: string;
2907
+ lg: string;
2908
+ xl: string;
2909
+ squared: string;
2910
+ rounded: string;
2911
+ pill: string;
2912
+ };
2913
+ zIndices: {
2914
+ 1: string;
2915
+ 2: string;
2916
+ 3: string;
2917
+ 4: string;
2918
+ 5: string;
2919
+ 10: string;
2920
+ max: string;
2921
+ };
2922
+ borderWeights: {
2923
+ light: string;
2924
+ normal: string;
2925
+ bold: string;
2926
+ extrabold: string;
2927
+ black: string;
2928
+ };
2929
+ transitions: {
2930
+ default: string;
2931
+ };
2932
+ breakpoints: {
2933
+ xs: string;
2934
+ sm: string;
2935
+ md: string;
2936
+ lg: string;
2937
+ xl: string;
2938
+ };
2939
+ }, {
2940
+ width: string;
2941
+ height: string;
2942
+ minWidth: string;
2943
+ maxWidth: string;
2944
+ minHeight: string;
2945
+ maxHeight: string;
2946
+ flexBasis: string;
2947
+ gridTemplateColumns: string;
2948
+ gridTemplateRows: string;
2949
+ blockSize: string;
2950
+ minBlockSize: string;
2951
+ maxBlockSize: string;
2952
+ inlineSize: string;
2953
+ minInlineSize: string;
2954
+ maxInlineSize: string;
2955
+ borderWidth: string;
2956
+ gap: "space";
2957
+ gridGap: "space";
2958
+ columnGap: "space";
2959
+ gridColumnGap: "space";
2960
+ rowGap: "space";
2961
+ gridRowGap: "space";
2962
+ inset: "space";
2963
+ insetBlock: "space";
2964
+ insetBlockEnd: "space";
2965
+ insetBlockStart: "space";
2966
+ insetInline: "space";
2967
+ insetInlineEnd: "space";
2968
+ insetInlineStart: "space";
2969
+ margin: "space";
2970
+ marginTop: "space";
2971
+ marginRight: "space";
2972
+ marginBottom: "space";
2973
+ marginLeft: "space";
2974
+ marginBlock: "space";
2975
+ marginBlockEnd: "space";
2976
+ marginBlockStart: "space";
2977
+ marginInline: "space";
2978
+ marginInlineEnd: "space";
2979
+ marginInlineStart: "space";
2980
+ padding: "space";
2981
+ paddingTop: "space";
2982
+ paddingRight: "space";
2983
+ paddingBottom: "space";
2984
+ paddingLeft: "space";
2985
+ paddingBlock: "space";
2986
+ paddingBlockEnd: "space";
2987
+ paddingBlockStart: "space";
2988
+ paddingInline: "space";
2989
+ paddingInlineEnd: "space";
2990
+ paddingInlineStart: "space";
2991
+ scrollMargin: "space";
2992
+ scrollMarginTop: "space";
2993
+ scrollMarginRight: "space";
2994
+ scrollMarginBottom: "space";
2995
+ scrollMarginLeft: "space";
2996
+ scrollMarginBlock: "space";
2997
+ scrollMarginBlockEnd: "space";
2998
+ scrollMarginBlockStart: "space";
2999
+ scrollMarginInline: "space";
3000
+ scrollMarginInlineEnd: "space";
3001
+ scrollMarginInlineStart: "space";
3002
+ scrollPadding: "space";
3003
+ scrollPaddingTop: "space";
3004
+ scrollPaddingRight: "space";
3005
+ scrollPaddingBottom: "space";
3006
+ scrollPaddingLeft: "space";
3007
+ scrollPaddingBlock: "space";
3008
+ scrollPaddingBlockEnd: "space";
3009
+ scrollPaddingBlockStart: "space";
3010
+ scrollPaddingInline: "space";
3011
+ scrollPaddingInlineEnd: "space";
3012
+ scrollPaddingInlineStart: "space";
3013
+ top: "space";
3014
+ right: "space";
3015
+ bottom: "space";
3016
+ left: "space";
3017
+ fontSize: "fontSizes";
3018
+ background: "colors";
3019
+ backgroundColor: "colors";
3020
+ backgroundImage: "colors";
3021
+ borderImage: "colors";
3022
+ border: "colors";
3023
+ borderBlock: "colors";
3024
+ borderBlockEnd: "colors";
3025
+ borderBlockStart: "colors";
3026
+ borderBottom: "colors";
3027
+ borderBottomColor: "colors";
3028
+ borderColor: "colors";
3029
+ borderInline: "colors";
3030
+ borderInlineEnd: "colors";
3031
+ borderInlineStart: "colors";
3032
+ borderLeft: "colors";
3033
+ borderLeftColor: "colors";
3034
+ borderRight: "colors";
3035
+ borderRightColor: "colors";
3036
+ borderTop: "colors";
3037
+ borderTopColor: "colors";
3038
+ caretColor: "colors";
3039
+ color: "colors";
3040
+ columnRuleColor: "colors";
3041
+ outline: "colors";
3042
+ outlineColor: "colors";
3043
+ fill: "colors";
3044
+ stroke: "colors";
3045
+ textDecorationColor: "colors";
3046
+ fontFamily: "fonts";
3047
+ fontWeight: "fontWeights";
3048
+ lineHeight: "lineHeights";
3049
+ letterSpacing: "letterSpacings";
3050
+ borderTopWidth: "borderWidths";
3051
+ borderLeftWidth: "borderWidths";
3052
+ borderRightWidth: "borderWidths";
3053
+ borderBottomWidth: "borderWidths";
3054
+ borderStyle: "borderStyles";
3055
+ borderTopStyle: "borderStyles";
3056
+ borderLeftStyle: "borderStyles";
3057
+ borderRightStyle: "borderStyles";
3058
+ borderBottomStyle: "borderStyles";
3059
+ borderRadius: "radii";
3060
+ borderTopLeftRadius: "radii";
3061
+ borderTopRightRadius: "radii";
3062
+ borderBottomRightRadius: "radii";
3063
+ borderBottomLeftRadius: "radii";
3064
+ boxShadow: "shadows";
3065
+ textShadow: "shadows";
3066
+ transition: "transitions";
3067
+ zIndex: "zIndices";
3068
+ }, {
3069
+ p: (value: {
3070
+ readonly [$$PropertyValue]: "padding";
3071
+ }) => {
3072
+ padding: {
3073
+ readonly [$$PropertyValue]: "padding";
3074
+ };
3075
+ };
3076
+ pt: (value: {
3077
+ readonly [$$PropertyValue]: "paddingTop";
3078
+ }) => {
3079
+ paddingTop: {
3080
+ readonly [$$PropertyValue]: "paddingTop";
3081
+ };
3082
+ };
3083
+ pr: (value: {
3084
+ readonly [$$PropertyValue]: "paddingRight";
3085
+ }) => {
3086
+ paddingRight: {
3087
+ readonly [$$PropertyValue]: "paddingRight";
3088
+ };
3089
+ };
3090
+ pb: (value: {
3091
+ readonly [$$PropertyValue]: "paddingBottom";
3092
+ }) => {
3093
+ paddingBottom: {
3094
+ readonly [$$PropertyValue]: "paddingBottom";
3095
+ };
3096
+ };
3097
+ pl: (value: {
3098
+ readonly [$$PropertyValue]: "paddingLeft";
3099
+ }) => {
3100
+ paddingLeft: {
3101
+ readonly [$$PropertyValue]: "paddingLeft";
3102
+ };
3103
+ };
3104
+ px: (value: {
3105
+ readonly [$$PropertyValue]: "paddingLeft";
3106
+ }) => {
3107
+ paddingLeft: {
3108
+ readonly [$$PropertyValue]: "paddingLeft";
3109
+ };
3110
+ paddingRight: {
3111
+ readonly [$$PropertyValue]: "paddingLeft";
3112
+ };
3113
+ };
3114
+ py: (value: {
3115
+ readonly [$$PropertyValue]: "paddingTop";
3116
+ }) => {
3117
+ paddingTop: {
3118
+ readonly [$$PropertyValue]: "paddingTop";
3119
+ };
3120
+ paddingBottom: {
3121
+ readonly [$$PropertyValue]: "paddingTop";
3122
+ };
3123
+ };
3124
+ m: (value: {
3125
+ readonly [$$PropertyValue]: "margin";
3126
+ }) => {
3127
+ margin: {
3128
+ readonly [$$PropertyValue]: "margin";
3129
+ };
3130
+ };
3131
+ mt: (value: {
3132
+ readonly [$$PropertyValue]: "marginTop";
3133
+ }) => {
3134
+ marginTop: {
3135
+ readonly [$$PropertyValue]: "marginTop";
3136
+ };
3137
+ };
3138
+ mr: (value: {
3139
+ readonly [$$PropertyValue]: "marginRight";
3140
+ }) => {
3141
+ marginRight: {
3142
+ readonly [$$PropertyValue]: "marginRight";
3143
+ };
3144
+ };
3145
+ mb: (value: {
3146
+ readonly [$$PropertyValue]: "marginBottom";
3147
+ }) => {
3148
+ marginBottom: {
3149
+ readonly [$$PropertyValue]: "marginBottom";
3150
+ };
3151
+ };
3152
+ ml: (value: {
3153
+ readonly [$$PropertyValue]: "marginLeft";
3154
+ }) => {
3155
+ marginLeft: {
3156
+ readonly [$$PropertyValue]: "marginLeft";
3157
+ };
3158
+ };
3159
+ mx: (value: {
3160
+ readonly [$$PropertyValue]: "marginLeft";
3161
+ }) => {
3162
+ marginLeft: {
3163
+ readonly [$$PropertyValue]: "marginLeft";
3164
+ };
3165
+ marginRight: {
3166
+ readonly [$$PropertyValue]: "marginLeft";
3167
+ };
3168
+ };
3169
+ my: (value: {
3170
+ readonly [$$PropertyValue]: "marginTop";
3171
+ }) => {
3172
+ marginTop: {
3173
+ readonly [$$PropertyValue]: "marginTop";
3174
+ };
3175
+ marginBottom: {
3176
+ readonly [$$PropertyValue]: "marginTop";
3177
+ };
3178
+ };
3179
+ ta: (value: {
3180
+ readonly [$$PropertyValue]: "textAlign";
3181
+ }) => {
3182
+ textAlign: {
3183
+ readonly [$$PropertyValue]: "textAlign";
3184
+ };
3185
+ };
3186
+ tt: (value: {
3187
+ readonly [$$PropertyValue]: "textTransform";
3188
+ }) => {
3189
+ textTransform: {
3190
+ readonly [$$PropertyValue]: "textTransform";
3191
+ };
3192
+ };
3193
+ to: (value: {
3194
+ readonly [$$PropertyValue]: "textOverflow";
3195
+ }) => {
3196
+ textOverflow: {
3197
+ readonly [$$PropertyValue]: "textOverflow";
3198
+ };
3199
+ };
3200
+ d: (value: {
3201
+ readonly [$$PropertyValue]: "display";
3202
+ }) => {
3203
+ display: {
3204
+ readonly [$$PropertyValue]: "display";
3205
+ };
3206
+ };
3207
+ dflex: (value: {
3208
+ readonly [$$PropertyValue]: "alignItems";
3209
+ }) => {
3210
+ display: string;
3211
+ alignItems: {
3212
+ readonly [$$PropertyValue]: "alignItems";
3213
+ };
3214
+ justifyContent: {
3215
+ readonly [$$PropertyValue]: "alignItems";
3216
+ };
3217
+ };
3218
+ fd: (value: {
3219
+ readonly [$$PropertyValue]: "flexDirection";
3220
+ }) => {
3221
+ flexDirection: {
3222
+ readonly [$$PropertyValue]: "flexDirection";
3223
+ };
3224
+ };
3225
+ fw: (value: {
3226
+ readonly [$$PropertyValue]: "flexWrap";
3227
+ }) => {
3228
+ flexWrap: {
3229
+ readonly [$$PropertyValue]: "flexWrap";
3230
+ };
3231
+ };
3232
+ ai: (value: {
3233
+ readonly [$$PropertyValue]: "alignItems";
3234
+ }) => {
3235
+ alignItems: {
3236
+ readonly [$$PropertyValue]: "alignItems";
3237
+ };
3238
+ };
3239
+ ac: (value: {
3240
+ readonly [$$PropertyValue]: "alignContent";
3241
+ }) => {
3242
+ alignContent: {
3243
+ readonly [$$PropertyValue]: "alignContent";
3244
+ };
3245
+ };
3246
+ jc: (value: {
3247
+ readonly [$$PropertyValue]: "justifyContent";
3248
+ }) => {
3249
+ justifyContent: {
3250
+ readonly [$$PropertyValue]: "justifyContent";
3251
+ };
3252
+ };
3253
+ as: (value: {
3254
+ readonly [$$PropertyValue]: "alignSelf";
3255
+ }) => {
3256
+ alignSelf: {
3257
+ readonly [$$PropertyValue]: "alignSelf";
3258
+ };
3259
+ };
3260
+ fg: (value: {
3261
+ readonly [$$PropertyValue]: "flexGrow";
3262
+ }) => {
3263
+ flexGrow: {
3264
+ readonly [$$PropertyValue]: "flexGrow";
3265
+ };
3266
+ };
3267
+ fs: (value: {
3268
+ readonly [$$PropertyValue]: "fontSize";
3269
+ }) => {
3270
+ fontSize: {
3271
+ readonly [$$PropertyValue]: "fontSize";
3272
+ };
3273
+ };
3274
+ fb: (value: {
3275
+ readonly [$$PropertyValue]: "flexBasis";
3276
+ }) => {
3277
+ flexBasis: {
3278
+ readonly [$$PropertyValue]: "flexBasis";
3279
+ };
3280
+ };
3281
+ bc: (value: {
3282
+ readonly [$$PropertyValue]: "backgroundColor";
3283
+ }) => {
3284
+ backgroundColor: {
3285
+ readonly [$$PropertyValue]: "backgroundColor";
3286
+ };
3287
+ };
3288
+ bf: (value: {
3289
+ readonly [$$PropertyValue]: "backdropFilter";
3290
+ }) => {
3291
+ backdropFilter: {
3292
+ readonly [$$PropertyValue]: "backdropFilter";
3293
+ };
3294
+ };
3295
+ bg: (value: {
3296
+ readonly [$$PropertyValue]: "backgroundColor";
3297
+ }) => {
3298
+ background: {
3299
+ readonly [$$PropertyValue]: "backgroundColor";
3300
+ };
3301
+ };
3302
+ bgBlur: (value: {
3303
+ readonly [$$PropertyValue]: "backgroundColor";
3304
+ }) => {
3305
+ bf: string;
3306
+ bg: string;
3307
+ };
3308
+ bgColor: (value: {
3309
+ readonly [$$PropertyValue]: "backgroundColor";
3310
+ }) => {
3311
+ backgroundColor: {
3312
+ readonly [$$PropertyValue]: "backgroundColor";
3313
+ };
3314
+ };
3315
+ backgroundClip: (value: {
3316
+ readonly [$$PropertyValue]: "backgroundClip";
3317
+ }) => {
3318
+ WebkitBackgroundClip: {
3319
+ readonly [$$PropertyValue]: "backgroundClip";
3320
+ };
3321
+ backgroundClip: {
3322
+ readonly [$$PropertyValue]: "backgroundClip";
3323
+ };
3324
+ };
3325
+ bgClip: (value: {
3326
+ readonly [$$PropertyValue]: "backgroundClip";
3327
+ }) => {
3328
+ WebkitBackgroundClip: {
3329
+ readonly [$$PropertyValue]: "backgroundClip";
3330
+ };
3331
+ backgroundClip: {
3332
+ readonly [$$PropertyValue]: "backgroundClip";
3333
+ };
3334
+ };
3335
+ br: (value: {
3336
+ readonly [$$PropertyValue]: "borderRadius";
3337
+ }) => {
3338
+ borderRadius: {
3339
+ readonly [$$PropertyValue]: "borderRadius";
3340
+ };
3341
+ };
3342
+ bw: (value: {
3343
+ readonly [$$PropertyValue]: "borderWidth";
3344
+ }) => {
3345
+ borderWidth: {
3346
+ readonly [$$PropertyValue]: "borderWidth";
3347
+ };
3348
+ };
3349
+ btrr: (value: {
3350
+ readonly [$$PropertyValue]: "borderTopRightRadius";
3351
+ }) => {
3352
+ borderTopRightRadius: {
3353
+ readonly [$$PropertyValue]: "borderTopRightRadius";
3354
+ };
3355
+ };
3356
+ bbrr: (value: {
3357
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
3358
+ }) => {
3359
+ borderBottomRightRadius: {
3360
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
3361
+ };
3362
+ };
3363
+ bblr: (value: {
3364
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
3365
+ }) => {
3366
+ borderBottomLeftRadius: {
3367
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
3368
+ };
3369
+ };
3370
+ btlr: (value: {
3371
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
3372
+ }) => {
3373
+ borderTopLeftRadius: {
3374
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
3375
+ };
3376
+ };
3377
+ bs: (value: {
3378
+ readonly [$$PropertyValue]: "boxShadow";
3379
+ }) => {
3380
+ boxShadow: {
3381
+ readonly [$$PropertyValue]: "boxShadow";
3382
+ };
3383
+ };
3384
+ normalShadow: (value: {
3385
+ readonly [$$PropertyValue]: "backgroundColor";
3386
+ }) => {
3387
+ boxShadow: string;
3388
+ };
3389
+ normalShadowVar: (value: {
3390
+ readonly [$$PropertyValue]: "backgroundColor";
3391
+ }) => {
3392
+ boxShadow: string;
3393
+ };
3394
+ lh: (value: {
3395
+ readonly [$$PropertyValue]: "lineHeight";
3396
+ }) => {
3397
+ lineHeight: {
3398
+ readonly [$$PropertyValue]: "lineHeight";
3399
+ };
3400
+ };
3401
+ ov: (value: {
3402
+ readonly [$$PropertyValue]: "overflow";
3403
+ }) => {
3404
+ overflow: {
3405
+ readonly [$$PropertyValue]: "overflow";
3406
+ };
3407
+ };
3408
+ ox: (value: {
3409
+ readonly [$$PropertyValue]: "overflowX";
3410
+ }) => {
3411
+ overflowX: {
3412
+ readonly [$$PropertyValue]: "overflowX";
3413
+ };
3414
+ };
3415
+ oy: (value: {
3416
+ readonly [$$PropertyValue]: "overflowY";
3417
+ }) => {
3418
+ overflowY: {
3419
+ readonly [$$PropertyValue]: "overflowY";
3420
+ };
3421
+ };
3422
+ pe: (value: {
3423
+ readonly [$$PropertyValue]: "pointerEvents";
3424
+ }) => {
3425
+ pointerEvents: {
3426
+ readonly [$$PropertyValue]: "pointerEvents";
3427
+ };
3428
+ };
3429
+ events: (value: {
3430
+ readonly [$$PropertyValue]: "pointerEvents";
3431
+ }) => {
3432
+ pointerEvents: {
3433
+ readonly [$$PropertyValue]: "pointerEvents";
3434
+ };
3435
+ };
3436
+ us: (value: {
3437
+ readonly [$$PropertyValue]: "userSelect";
3438
+ }) => {
3439
+ WebkitUserSelect: {
3440
+ readonly [$$PropertyValue]: "userSelect";
3441
+ };
3442
+ userSelect: {
3443
+ readonly [$$PropertyValue]: "userSelect";
3444
+ };
3445
+ };
3446
+ userSelect: (value: {
3447
+ readonly [$$PropertyValue]: "userSelect";
3448
+ }) => {
3449
+ WebkitUserSelect: {
3450
+ readonly [$$PropertyValue]: "userSelect";
3451
+ };
3452
+ userSelect: {
3453
+ readonly [$$PropertyValue]: "userSelect";
3454
+ };
3455
+ };
3456
+ w: (value: {
3457
+ readonly [$$PropertyValue]: "width";
3458
+ }) => {
3459
+ width: {
3460
+ readonly [$$PropertyValue]: "width";
3461
+ };
3462
+ };
3463
+ h: (value: {
3464
+ readonly [$$PropertyValue]: "height";
3465
+ }) => {
3466
+ height: {
3467
+ readonly [$$PropertyValue]: "height";
3468
+ };
3469
+ };
3470
+ mw: (value: {
3471
+ readonly [$$PropertyValue]: "maxWidth";
3472
+ }) => {
3473
+ maxWidth: {
3474
+ readonly [$$PropertyValue]: "maxWidth";
3475
+ };
3476
+ };
3477
+ maxW: (value: {
3478
+ readonly [$$PropertyValue]: "maxWidth";
3479
+ }) => {
3480
+ maxWidth: {
3481
+ readonly [$$PropertyValue]: "maxWidth";
3482
+ };
3483
+ };
3484
+ mh: (value: {
3485
+ readonly [$$PropertyValue]: "maxHeight";
3486
+ }) => {
3487
+ maxHeight: {
3488
+ readonly [$$PropertyValue]: "maxHeight";
3489
+ };
3490
+ };
3491
+ maxH: (value: {
3492
+ readonly [$$PropertyValue]: "maxHeight";
3493
+ }) => {
3494
+ maxHeight: {
3495
+ readonly [$$PropertyValue]: "maxHeight";
3496
+ };
3497
+ };
3498
+ size: (value: {
3499
+ readonly [$$PropertyValue]: "width";
3500
+ }) => {
3501
+ width: {
3502
+ readonly [$$PropertyValue]: "width";
3503
+ };
3504
+ height: {
3505
+ readonly [$$PropertyValue]: "width";
3506
+ };
3507
+ };
3508
+ sizeMin: (value: {
3509
+ readonly [$$PropertyValue]: "width";
3510
+ }) => {
3511
+ minWidth: {
3512
+ readonly [$$PropertyValue]: "width";
3513
+ };
3514
+ minHeight: {
3515
+ readonly [$$PropertyValue]: "width";
3516
+ };
3517
+ width: {
3518
+ readonly [$$PropertyValue]: "width";
3519
+ };
3520
+ height: {
3521
+ readonly [$$PropertyValue]: "width";
3522
+ };
3523
+ };
3524
+ sizeMax: (value: {
3525
+ readonly [$$PropertyValue]: "width";
3526
+ }) => {
3527
+ maxWidth: {
3528
+ readonly [$$PropertyValue]: "width";
3529
+ };
3530
+ maxHeight: {
3531
+ readonly [$$PropertyValue]: "width";
3532
+ };
3533
+ };
3534
+ appearance: (value: {
3535
+ readonly [$$PropertyValue]: "appearance";
3536
+ }) => {
3537
+ WebkitAppearance: {
3538
+ readonly [$$PropertyValue]: "appearance";
3539
+ };
3540
+ appearance: {
3541
+ readonly [$$PropertyValue]: "appearance";
3542
+ };
3543
+ };
3544
+ scale: (value: {
3545
+ readonly [$$PropertyValue]: "scale";
3546
+ }) => {
3547
+ transform: string;
3548
+ };
3549
+ linearGradient: (value: {
3550
+ readonly [$$PropertyValue]: "backgroundImage";
3551
+ }) => {
3552
+ backgroundImage: string;
3553
+ };
3554
+ textGradient: (value: {
3555
+ readonly [$$PropertyValue]: "backgroundImage";
3556
+ }) => {
3557
+ backgroundImage: string;
3558
+ WebkitBackgroundClip: string;
3559
+ WebkitTextFillColor: string;
3560
+ };
3561
+ }>>;
3562
+ export declare const StyledUserLink: import("@stitches/react/types/styled-component").StyledComponent<"a", {}, {
3563
+ xs: string;
3564
+ sm: string;
3565
+ md: string;
3566
+ lg: string;
3567
+ xl: string;
3568
+ xsMax: string;
3569
+ smMax: string;
3570
+ mdMax: string;
3571
+ lgMax: string;
3572
+ xlMax: string;
3573
+ motion: string;
3574
+ safari: string;
3575
+ hover: string;
3576
+ dark: string;
3577
+ light: string;
3578
+ }, import("@stitches/react/types/css-util").CSS<{
3579
+ xs: string;
3580
+ sm: string;
3581
+ md: string;
3582
+ lg: string;
3583
+ xl: string;
3584
+ xsMax: string;
3585
+ smMax: string;
3586
+ mdMax: string;
3587
+ lgMax: string;
3588
+ xlMax: string;
3589
+ motion: string;
3590
+ safari: string;
3591
+ hover: string;
3592
+ dark: string;
3593
+ light: string;
3594
+ }, {
3595
+ shadows: {
3596
+ xs: string;
3597
+ sm: string;
3598
+ md: string;
3599
+ lg: string;
3600
+ xl: string;
3601
+ };
3602
+ colors: {
3603
+ accents1: string;
3604
+ accents2: string;
3605
+ accents3: string;
3606
+ accents4: string;
3607
+ accents5: string;
3608
+ accents6: string;
3609
+ accents7: string;
3610
+ accents8: string;
3611
+ accents9: string;
3612
+ text: string;
3613
+ background: string;
3614
+ foreground: string;
3615
+ codeLight: string;
3616
+ code: string;
3617
+ border: string;
3618
+ selection: string;
3619
+ white: string;
3620
+ black: string;
3621
+ blue100: string;
3622
+ blue200: string;
3623
+ blue300: string;
3624
+ blue400: string;
3625
+ blue500: string;
3626
+ blue600: string;
3627
+ blue700: string;
3628
+ blue800: string;
3629
+ blue900: string;
3630
+ purple100: string;
3631
+ purple200: string;
3632
+ purple300: string;
3633
+ purple400: string;
3634
+ purple500: string;
3635
+ purple600: string;
3636
+ purple700: string;
3637
+ purple800: string;
3638
+ purple900: string;
3639
+ green100: string;
3640
+ green200: string;
3641
+ green300: string;
3642
+ green400: string;
3643
+ green500: string;
3644
+ green600: string;
3645
+ green700: string;
3646
+ green800: string;
3647
+ green900: string;
3648
+ yellow100: string;
3649
+ yellow200: string;
3650
+ yellow300: string;
3651
+ yellow400: string;
3652
+ yellow500: string;
3653
+ yellow600: string;
3654
+ yellow700: string;
3655
+ yellow800: string;
3656
+ yellow900: string;
3657
+ red100: string;
3658
+ red200: string;
3659
+ red300: string;
3660
+ red400: string;
3661
+ red500: string;
3662
+ red600: string;
3663
+ red700: string;
3664
+ red800: string;
3665
+ red900: string;
3666
+ cyan100: string;
3667
+ cyan200: string;
3668
+ cyan300: string;
3669
+ cyan400: string;
3670
+ cyan500: string;
3671
+ cyan600: string;
3672
+ cyan700: string;
3673
+ cyan800: string;
3674
+ cyan900: string;
3675
+ pink100: string;
3676
+ pink200: string;
3677
+ pink300: string;
3678
+ pink400: string;
3679
+ pink500: string;
3680
+ pink600: string;
3681
+ pink700: string;
3682
+ pink800: string;
3683
+ pink900: string;
3684
+ gray100: string;
3685
+ gray200: string;
3686
+ gray300: string;
3687
+ gray400: string;
3688
+ gray500: string;
3689
+ gray600: string;
3690
+ gray700: string;
3691
+ gray800: string;
3692
+ gray900: string;
3693
+ primaryLight: string;
3694
+ primary: string;
3695
+ primaryDark: string;
3696
+ secondaryLight: string;
3697
+ secondary: string;
3698
+ secondaryDark: string;
3699
+ successLight: string;
3700
+ success: string;
3701
+ successDark: string;
3702
+ warningLight: string;
3703
+ warning: string;
3704
+ warningDark: string;
3705
+ errorLight: string;
3706
+ error: string;
3707
+ errorDark: string;
3708
+ gradient: string;
3709
+ link: string;
3710
+ };
3711
+ fonts: {
3712
+ sans: string;
3713
+ mono: string;
3714
+ };
3715
+ fontSizes: {
3716
+ tiny: string;
3717
+ xs: string;
3718
+ base: string;
3719
+ sm: string;
3720
+ md: string;
3721
+ lg: string;
3722
+ xl: string;
3723
+ };
3724
+ fontWeights: {
3725
+ hairline: number;
3726
+ thin: number;
3727
+ light: number;
3728
+ normal: number;
3729
+ medium: number;
3730
+ semibold: number;
3731
+ bold: number;
3732
+ extrabold: number;
3733
+ black: number;
3734
+ };
3735
+ lineHeights: {
3736
+ xs: number;
3737
+ sm: number;
3738
+ md: number;
3739
+ lg: number;
3740
+ xl: number;
3741
+ };
3742
+ letterSpacings: {
3743
+ tighter: string;
3744
+ tight: string;
3745
+ normal: string;
3746
+ wide: string;
3747
+ wider: string;
3748
+ widest: string;
3749
+ };
3750
+ space: {
3751
+ 0: string;
3752
+ xs: string;
3753
+ sm: string;
3754
+ md: string;
3755
+ lg: string;
3756
+ xl: string;
3757
+ px: string;
3758
+ 1: string;
3759
+ 2: string;
3760
+ 3: string;
3761
+ 4: string;
3762
+ 5: string;
3763
+ 6: string;
3764
+ 7: string;
3765
+ 8: string;
3766
+ 9: string;
3767
+ 10: string;
3768
+ 11: string;
3769
+ 12: string;
3770
+ 13: string;
3771
+ 14: string;
3772
+ 15: string;
3773
+ 16: string;
3774
+ 17: string;
3775
+ 18: string;
3776
+ 20: string;
3777
+ 24: string;
3778
+ 28: string;
3779
+ 32: string;
3780
+ 36: string;
3781
+ 40: string;
3782
+ 44: string;
3783
+ 48: string;
3784
+ 52: string;
3785
+ 56: string;
3786
+ 60: string;
3787
+ 64: string;
3788
+ 72: string;
3789
+ 80: string;
3790
+ 96: string;
3791
+ };
3792
+ radii: {
3793
+ xs: string;
3794
+ sm: string;
3795
+ md: string;
3796
+ base: string;
3797
+ lg: string;
3798
+ xl: string;
3799
+ squared: string;
3800
+ rounded: string;
3801
+ pill: string;
3802
+ };
3803
+ zIndices: {
3804
+ 1: string;
3805
+ 2: string;
3806
+ 3: string;
3807
+ 4: string;
3808
+ 5: string;
3809
+ 10: string;
3810
+ max: string;
3811
+ };
3812
+ borderWeights: {
3813
+ light: string;
3814
+ normal: string;
3815
+ bold: string;
3816
+ extrabold: string;
3817
+ black: string;
3818
+ };
3819
+ transitions: {
3820
+ default: string;
3821
+ };
3822
+ breakpoints: {
3823
+ xs: string;
3824
+ sm: string;
3825
+ md: string;
3826
+ lg: string;
3827
+ xl: string;
3828
+ };
3829
+ }, {
3830
+ width: string;
3831
+ height: string;
3832
+ minWidth: string;
3833
+ maxWidth: string;
3834
+ minHeight: string;
3835
+ maxHeight: string;
3836
+ flexBasis: string;
3837
+ gridTemplateColumns: string;
3838
+ gridTemplateRows: string;
3839
+ blockSize: string;
3840
+ minBlockSize: string;
3841
+ maxBlockSize: string;
3842
+ inlineSize: string;
3843
+ minInlineSize: string;
3844
+ maxInlineSize: string;
3845
+ borderWidth: string;
3846
+ gap: "space";
3847
+ gridGap: "space";
3848
+ columnGap: "space";
3849
+ gridColumnGap: "space";
3850
+ rowGap: "space";
3851
+ gridRowGap: "space";
3852
+ inset: "space";
3853
+ insetBlock: "space";
3854
+ insetBlockEnd: "space";
3855
+ insetBlockStart: "space";
3856
+ insetInline: "space";
3857
+ insetInlineEnd: "space";
3858
+ insetInlineStart: "space";
3859
+ margin: "space";
3860
+ marginTop: "space";
3861
+ marginRight: "space";
3862
+ marginBottom: "space";
3863
+ marginLeft: "space";
3864
+ marginBlock: "space";
3865
+ marginBlockEnd: "space";
3866
+ marginBlockStart: "space";
3867
+ marginInline: "space";
3868
+ marginInlineEnd: "space";
3869
+ marginInlineStart: "space";
3870
+ padding: "space";
3871
+ paddingTop: "space";
3872
+ paddingRight: "space";
3873
+ paddingBottom: "space";
3874
+ paddingLeft: "space";
3875
+ paddingBlock: "space";
3876
+ paddingBlockEnd: "space";
3877
+ paddingBlockStart: "space";
3878
+ paddingInline: "space";
3879
+ paddingInlineEnd: "space";
3880
+ paddingInlineStart: "space";
3881
+ scrollMargin: "space";
3882
+ scrollMarginTop: "space";
3883
+ scrollMarginRight: "space";
3884
+ scrollMarginBottom: "space";
3885
+ scrollMarginLeft: "space";
3886
+ scrollMarginBlock: "space";
3887
+ scrollMarginBlockEnd: "space";
3888
+ scrollMarginBlockStart: "space";
3889
+ scrollMarginInline: "space";
3890
+ scrollMarginInlineEnd: "space";
3891
+ scrollMarginInlineStart: "space";
3892
+ scrollPadding: "space";
3893
+ scrollPaddingTop: "space";
3894
+ scrollPaddingRight: "space";
3895
+ scrollPaddingBottom: "space";
3896
+ scrollPaddingLeft: "space";
3897
+ scrollPaddingBlock: "space";
3898
+ scrollPaddingBlockEnd: "space";
3899
+ scrollPaddingBlockStart: "space";
3900
+ scrollPaddingInline: "space";
3901
+ scrollPaddingInlineEnd: "space";
3902
+ scrollPaddingInlineStart: "space";
3903
+ top: "space";
3904
+ right: "space";
3905
+ bottom: "space";
3906
+ left: "space";
3907
+ fontSize: "fontSizes";
3908
+ background: "colors";
3909
+ backgroundColor: "colors";
3910
+ backgroundImage: "colors";
3911
+ borderImage: "colors";
3912
+ border: "colors";
3913
+ borderBlock: "colors";
3914
+ borderBlockEnd: "colors";
3915
+ borderBlockStart: "colors";
3916
+ borderBottom: "colors";
3917
+ borderBottomColor: "colors";
3918
+ borderColor: "colors";
3919
+ borderInline: "colors";
3920
+ borderInlineEnd: "colors";
3921
+ borderInlineStart: "colors";
3922
+ borderLeft: "colors";
3923
+ borderLeftColor: "colors";
3924
+ borderRight: "colors";
3925
+ borderRightColor: "colors";
3926
+ borderTop: "colors";
3927
+ borderTopColor: "colors";
3928
+ caretColor: "colors";
3929
+ color: "colors";
3930
+ columnRuleColor: "colors";
3931
+ outline: "colors";
3932
+ outlineColor: "colors";
3933
+ fill: "colors";
3934
+ stroke: "colors";
3935
+ textDecorationColor: "colors";
3936
+ fontFamily: "fonts";
3937
+ fontWeight: "fontWeights";
3938
+ lineHeight: "lineHeights";
3939
+ letterSpacing: "letterSpacings";
3940
+ borderTopWidth: "borderWidths";
3941
+ borderLeftWidth: "borderWidths";
3942
+ borderRightWidth: "borderWidths";
3943
+ borderBottomWidth: "borderWidths";
3944
+ borderStyle: "borderStyles";
3945
+ borderTopStyle: "borderStyles";
3946
+ borderLeftStyle: "borderStyles";
3947
+ borderRightStyle: "borderStyles";
3948
+ borderBottomStyle: "borderStyles";
3949
+ borderRadius: "radii";
3950
+ borderTopLeftRadius: "radii";
3951
+ borderTopRightRadius: "radii";
3952
+ borderBottomRightRadius: "radii";
3953
+ borderBottomLeftRadius: "radii";
3954
+ boxShadow: "shadows";
3955
+ textShadow: "shadows";
3956
+ transition: "transitions";
3957
+ zIndex: "zIndices";
3958
+ }, {
3959
+ p: (value: {
3960
+ readonly [$$PropertyValue]: "padding";
3961
+ }) => {
3962
+ padding: {
3963
+ readonly [$$PropertyValue]: "padding";
3964
+ };
3965
+ };
3966
+ pt: (value: {
3967
+ readonly [$$PropertyValue]: "paddingTop";
3968
+ }) => {
3969
+ paddingTop: {
3970
+ readonly [$$PropertyValue]: "paddingTop";
3971
+ };
3972
+ };
3973
+ pr: (value: {
3974
+ readonly [$$PropertyValue]: "paddingRight";
3975
+ }) => {
3976
+ paddingRight: {
3977
+ readonly [$$PropertyValue]: "paddingRight";
3978
+ };
3979
+ };
3980
+ pb: (value: {
3981
+ readonly [$$PropertyValue]: "paddingBottom";
3982
+ }) => {
3983
+ paddingBottom: {
3984
+ readonly [$$PropertyValue]: "paddingBottom";
3985
+ };
3986
+ };
3987
+ pl: (value: {
3988
+ readonly [$$PropertyValue]: "paddingLeft";
3989
+ }) => {
3990
+ paddingLeft: {
3991
+ readonly [$$PropertyValue]: "paddingLeft";
3992
+ };
3993
+ };
3994
+ px: (value: {
3995
+ readonly [$$PropertyValue]: "paddingLeft";
3996
+ }) => {
3997
+ paddingLeft: {
3998
+ readonly [$$PropertyValue]: "paddingLeft";
3999
+ };
4000
+ paddingRight: {
4001
+ readonly [$$PropertyValue]: "paddingLeft";
4002
+ };
4003
+ };
4004
+ py: (value: {
4005
+ readonly [$$PropertyValue]: "paddingTop";
4006
+ }) => {
4007
+ paddingTop: {
4008
+ readonly [$$PropertyValue]: "paddingTop";
4009
+ };
4010
+ paddingBottom: {
4011
+ readonly [$$PropertyValue]: "paddingTop";
4012
+ };
4013
+ };
4014
+ m: (value: {
4015
+ readonly [$$PropertyValue]: "margin";
4016
+ }) => {
4017
+ margin: {
4018
+ readonly [$$PropertyValue]: "margin";
4019
+ };
4020
+ };
4021
+ mt: (value: {
4022
+ readonly [$$PropertyValue]: "marginTop";
4023
+ }) => {
4024
+ marginTop: {
4025
+ readonly [$$PropertyValue]: "marginTop";
4026
+ };
4027
+ };
4028
+ mr: (value: {
4029
+ readonly [$$PropertyValue]: "marginRight";
4030
+ }) => {
4031
+ marginRight: {
4032
+ readonly [$$PropertyValue]: "marginRight";
4033
+ };
4034
+ };
4035
+ mb: (value: {
4036
+ readonly [$$PropertyValue]: "marginBottom";
4037
+ }) => {
4038
+ marginBottom: {
4039
+ readonly [$$PropertyValue]: "marginBottom";
4040
+ };
4041
+ };
4042
+ ml: (value: {
4043
+ readonly [$$PropertyValue]: "marginLeft";
4044
+ }) => {
4045
+ marginLeft: {
4046
+ readonly [$$PropertyValue]: "marginLeft";
4047
+ };
4048
+ };
4049
+ mx: (value: {
4050
+ readonly [$$PropertyValue]: "marginLeft";
4051
+ }) => {
4052
+ marginLeft: {
4053
+ readonly [$$PropertyValue]: "marginLeft";
4054
+ };
4055
+ marginRight: {
4056
+ readonly [$$PropertyValue]: "marginLeft";
4057
+ };
4058
+ };
4059
+ my: (value: {
4060
+ readonly [$$PropertyValue]: "marginTop";
4061
+ }) => {
4062
+ marginTop: {
4063
+ readonly [$$PropertyValue]: "marginTop";
4064
+ };
4065
+ marginBottom: {
4066
+ readonly [$$PropertyValue]: "marginTop";
4067
+ };
4068
+ };
4069
+ ta: (value: {
4070
+ readonly [$$PropertyValue]: "textAlign";
4071
+ }) => {
4072
+ textAlign: {
4073
+ readonly [$$PropertyValue]: "textAlign";
4074
+ };
4075
+ };
4076
+ tt: (value: {
4077
+ readonly [$$PropertyValue]: "textTransform";
4078
+ }) => {
4079
+ textTransform: {
4080
+ readonly [$$PropertyValue]: "textTransform";
4081
+ };
4082
+ };
4083
+ to: (value: {
4084
+ readonly [$$PropertyValue]: "textOverflow";
4085
+ }) => {
4086
+ textOverflow: {
4087
+ readonly [$$PropertyValue]: "textOverflow";
4088
+ };
4089
+ };
4090
+ d: (value: {
4091
+ readonly [$$PropertyValue]: "display";
4092
+ }) => {
4093
+ display: {
4094
+ readonly [$$PropertyValue]: "display";
4095
+ };
4096
+ };
4097
+ dflex: (value: {
4098
+ readonly [$$PropertyValue]: "alignItems";
4099
+ }) => {
4100
+ display: string;
4101
+ alignItems: {
4102
+ readonly [$$PropertyValue]: "alignItems";
4103
+ };
4104
+ justifyContent: {
4105
+ readonly [$$PropertyValue]: "alignItems";
4106
+ };
4107
+ };
4108
+ fd: (value: {
4109
+ readonly [$$PropertyValue]: "flexDirection";
4110
+ }) => {
4111
+ flexDirection: {
4112
+ readonly [$$PropertyValue]: "flexDirection";
4113
+ };
4114
+ };
4115
+ fw: (value: {
4116
+ readonly [$$PropertyValue]: "flexWrap";
4117
+ }) => {
4118
+ flexWrap: {
4119
+ readonly [$$PropertyValue]: "flexWrap";
4120
+ };
4121
+ };
4122
+ ai: (value: {
4123
+ readonly [$$PropertyValue]: "alignItems";
4124
+ }) => {
4125
+ alignItems: {
4126
+ readonly [$$PropertyValue]: "alignItems";
4127
+ };
4128
+ };
4129
+ ac: (value: {
4130
+ readonly [$$PropertyValue]: "alignContent";
4131
+ }) => {
4132
+ alignContent: {
4133
+ readonly [$$PropertyValue]: "alignContent";
4134
+ };
4135
+ };
4136
+ jc: (value: {
4137
+ readonly [$$PropertyValue]: "justifyContent";
4138
+ }) => {
4139
+ justifyContent: {
4140
+ readonly [$$PropertyValue]: "justifyContent";
4141
+ };
4142
+ };
4143
+ as: (value: {
4144
+ readonly [$$PropertyValue]: "alignSelf";
4145
+ }) => {
4146
+ alignSelf: {
4147
+ readonly [$$PropertyValue]: "alignSelf";
4148
+ };
4149
+ };
4150
+ fg: (value: {
4151
+ readonly [$$PropertyValue]: "flexGrow";
4152
+ }) => {
4153
+ flexGrow: {
4154
+ readonly [$$PropertyValue]: "flexGrow";
4155
+ };
4156
+ };
4157
+ fs: (value: {
4158
+ readonly [$$PropertyValue]: "fontSize";
4159
+ }) => {
4160
+ fontSize: {
4161
+ readonly [$$PropertyValue]: "fontSize";
4162
+ };
4163
+ };
4164
+ fb: (value: {
4165
+ readonly [$$PropertyValue]: "flexBasis";
4166
+ }) => {
4167
+ flexBasis: {
4168
+ readonly [$$PropertyValue]: "flexBasis";
4169
+ };
4170
+ };
4171
+ bc: (value: {
4172
+ readonly [$$PropertyValue]: "backgroundColor";
4173
+ }) => {
4174
+ backgroundColor: {
4175
+ readonly [$$PropertyValue]: "backgroundColor";
4176
+ };
4177
+ };
4178
+ bf: (value: {
4179
+ readonly [$$PropertyValue]: "backdropFilter";
4180
+ }) => {
4181
+ backdropFilter: {
4182
+ readonly [$$PropertyValue]: "backdropFilter";
4183
+ };
4184
+ };
4185
+ bg: (value: {
4186
+ readonly [$$PropertyValue]: "backgroundColor";
4187
+ }) => {
4188
+ background: {
4189
+ readonly [$$PropertyValue]: "backgroundColor";
4190
+ };
4191
+ };
4192
+ bgBlur: (value: {
4193
+ readonly [$$PropertyValue]: "backgroundColor";
4194
+ }) => {
4195
+ bf: string;
4196
+ bg: string;
4197
+ };
4198
+ bgColor: (value: {
4199
+ readonly [$$PropertyValue]: "backgroundColor";
4200
+ }) => {
4201
+ backgroundColor: {
4202
+ readonly [$$PropertyValue]: "backgroundColor";
4203
+ };
4204
+ };
4205
+ backgroundClip: (value: {
4206
+ readonly [$$PropertyValue]: "backgroundClip";
4207
+ }) => {
4208
+ WebkitBackgroundClip: {
4209
+ readonly [$$PropertyValue]: "backgroundClip";
4210
+ };
4211
+ backgroundClip: {
4212
+ readonly [$$PropertyValue]: "backgroundClip";
4213
+ };
4214
+ };
4215
+ bgClip: (value: {
4216
+ readonly [$$PropertyValue]: "backgroundClip";
4217
+ }) => {
4218
+ WebkitBackgroundClip: {
4219
+ readonly [$$PropertyValue]: "backgroundClip";
4220
+ };
4221
+ backgroundClip: {
4222
+ readonly [$$PropertyValue]: "backgroundClip";
4223
+ };
4224
+ };
4225
+ br: (value: {
4226
+ readonly [$$PropertyValue]: "borderRadius";
4227
+ }) => {
4228
+ borderRadius: {
4229
+ readonly [$$PropertyValue]: "borderRadius";
4230
+ };
4231
+ };
4232
+ bw: (value: {
4233
+ readonly [$$PropertyValue]: "borderWidth";
4234
+ }) => {
4235
+ borderWidth: {
4236
+ readonly [$$PropertyValue]: "borderWidth";
4237
+ };
4238
+ };
4239
+ btrr: (value: {
4240
+ readonly [$$PropertyValue]: "borderTopRightRadius";
4241
+ }) => {
4242
+ borderTopRightRadius: {
4243
+ readonly [$$PropertyValue]: "borderTopRightRadius";
4244
+ };
4245
+ };
4246
+ bbrr: (value: {
4247
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
4248
+ }) => {
4249
+ borderBottomRightRadius: {
4250
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
4251
+ };
4252
+ };
4253
+ bblr: (value: {
4254
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
4255
+ }) => {
4256
+ borderBottomLeftRadius: {
4257
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
4258
+ };
4259
+ };
4260
+ btlr: (value: {
4261
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
4262
+ }) => {
4263
+ borderTopLeftRadius: {
4264
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
4265
+ };
4266
+ };
4267
+ bs: (value: {
4268
+ readonly [$$PropertyValue]: "boxShadow";
4269
+ }) => {
4270
+ boxShadow: {
4271
+ readonly [$$PropertyValue]: "boxShadow";
4272
+ };
4273
+ };
4274
+ normalShadow: (value: {
4275
+ readonly [$$PropertyValue]: "backgroundColor";
4276
+ }) => {
4277
+ boxShadow: string;
4278
+ };
4279
+ normalShadowVar: (value: {
4280
+ readonly [$$PropertyValue]: "backgroundColor";
4281
+ }) => {
4282
+ boxShadow: string;
4283
+ };
4284
+ lh: (value: {
4285
+ readonly [$$PropertyValue]: "lineHeight";
4286
+ }) => {
4287
+ lineHeight: {
4288
+ readonly [$$PropertyValue]: "lineHeight";
4289
+ };
4290
+ };
4291
+ ov: (value: {
4292
+ readonly [$$PropertyValue]: "overflow";
4293
+ }) => {
4294
+ overflow: {
4295
+ readonly [$$PropertyValue]: "overflow";
4296
+ };
4297
+ };
4298
+ ox: (value: {
4299
+ readonly [$$PropertyValue]: "overflowX";
4300
+ }) => {
4301
+ overflowX: {
4302
+ readonly [$$PropertyValue]: "overflowX";
4303
+ };
4304
+ };
4305
+ oy: (value: {
4306
+ readonly [$$PropertyValue]: "overflowY";
4307
+ }) => {
4308
+ overflowY: {
4309
+ readonly [$$PropertyValue]: "overflowY";
4310
+ };
4311
+ };
4312
+ pe: (value: {
4313
+ readonly [$$PropertyValue]: "pointerEvents";
4314
+ }) => {
4315
+ pointerEvents: {
4316
+ readonly [$$PropertyValue]: "pointerEvents";
4317
+ };
4318
+ };
4319
+ events: (value: {
4320
+ readonly [$$PropertyValue]: "pointerEvents";
4321
+ }) => {
4322
+ pointerEvents: {
4323
+ readonly [$$PropertyValue]: "pointerEvents";
4324
+ };
4325
+ };
4326
+ us: (value: {
4327
+ readonly [$$PropertyValue]: "userSelect";
4328
+ }) => {
4329
+ WebkitUserSelect: {
4330
+ readonly [$$PropertyValue]: "userSelect";
4331
+ };
4332
+ userSelect: {
4333
+ readonly [$$PropertyValue]: "userSelect";
4334
+ };
4335
+ };
4336
+ userSelect: (value: {
4337
+ readonly [$$PropertyValue]: "userSelect";
4338
+ }) => {
4339
+ WebkitUserSelect: {
4340
+ readonly [$$PropertyValue]: "userSelect";
4341
+ };
4342
+ userSelect: {
4343
+ readonly [$$PropertyValue]: "userSelect";
4344
+ };
4345
+ };
4346
+ w: (value: {
4347
+ readonly [$$PropertyValue]: "width";
4348
+ }) => {
4349
+ width: {
4350
+ readonly [$$PropertyValue]: "width";
4351
+ };
4352
+ };
4353
+ h: (value: {
4354
+ readonly [$$PropertyValue]: "height";
4355
+ }) => {
4356
+ height: {
4357
+ readonly [$$PropertyValue]: "height";
4358
+ };
4359
+ };
4360
+ mw: (value: {
4361
+ readonly [$$PropertyValue]: "maxWidth";
4362
+ }) => {
4363
+ maxWidth: {
4364
+ readonly [$$PropertyValue]: "maxWidth";
4365
+ };
4366
+ };
4367
+ maxW: (value: {
4368
+ readonly [$$PropertyValue]: "maxWidth";
4369
+ }) => {
4370
+ maxWidth: {
4371
+ readonly [$$PropertyValue]: "maxWidth";
4372
+ };
4373
+ };
4374
+ mh: (value: {
4375
+ readonly [$$PropertyValue]: "maxHeight";
4376
+ }) => {
4377
+ maxHeight: {
4378
+ readonly [$$PropertyValue]: "maxHeight";
4379
+ };
4380
+ };
4381
+ maxH: (value: {
4382
+ readonly [$$PropertyValue]: "maxHeight";
4383
+ }) => {
4384
+ maxHeight: {
4385
+ readonly [$$PropertyValue]: "maxHeight";
4386
+ };
4387
+ };
4388
+ size: (value: {
4389
+ readonly [$$PropertyValue]: "width";
4390
+ }) => {
4391
+ width: {
4392
+ readonly [$$PropertyValue]: "width";
4393
+ };
4394
+ height: {
4395
+ readonly [$$PropertyValue]: "width";
4396
+ };
4397
+ };
4398
+ sizeMin: (value: {
4399
+ readonly [$$PropertyValue]: "width";
4400
+ }) => {
4401
+ minWidth: {
4402
+ readonly [$$PropertyValue]: "width";
4403
+ };
4404
+ minHeight: {
4405
+ readonly [$$PropertyValue]: "width";
4406
+ };
4407
+ width: {
4408
+ readonly [$$PropertyValue]: "width";
4409
+ };
4410
+ height: {
4411
+ readonly [$$PropertyValue]: "width";
4412
+ };
4413
+ };
4414
+ sizeMax: (value: {
4415
+ readonly [$$PropertyValue]: "width";
4416
+ }) => {
4417
+ maxWidth: {
4418
+ readonly [$$PropertyValue]: "width";
4419
+ };
4420
+ maxHeight: {
4421
+ readonly [$$PropertyValue]: "width";
4422
+ };
4423
+ };
4424
+ appearance: (value: {
4425
+ readonly [$$PropertyValue]: "appearance";
4426
+ }) => {
4427
+ WebkitAppearance: {
4428
+ readonly [$$PropertyValue]: "appearance";
4429
+ };
4430
+ appearance: {
4431
+ readonly [$$PropertyValue]: "appearance";
4432
+ };
4433
+ };
4434
+ scale: (value: {
4435
+ readonly [$$PropertyValue]: "scale";
4436
+ }) => {
4437
+ transform: string;
4438
+ };
4439
+ linearGradient: (value: {
4440
+ readonly [$$PropertyValue]: "backgroundImage";
4441
+ }) => {
4442
+ backgroundImage: string;
4443
+ };
4444
+ textGradient: (value: {
4445
+ readonly [$$PropertyValue]: "backgroundImage";
4446
+ }) => {
4447
+ backgroundImage: string;
4448
+ WebkitBackgroundClip: string;
4449
+ WebkitTextFillColor: string;
4450
+ };
4451
+ }>>;
4452
+ export declare type UserVariantsProps = VariantProps<typeof StyledUser>;
4453
+ export declare type UserInfoVariantsProps = VariantProps<typeof StyledUserInfo>;
4454
+ export declare type UserNameVariantsProps = VariantProps<typeof StyledUserName>;
4455
+ export declare type UserSocialVariantsProps = VariantProps<typeof StyledUserSocial>;
4456
+ export declare type UserLinkVariantsProps = VariantProps<typeof StyledUserLink>;