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