@nous-research/ui 0.13.1 → 0.14.0

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 (318) hide show
  1. package/README.md +4 -1
  2. package/dist/assets/filler-bg0.webp +0 -0
  3. package/dist/assets.d.ts +38 -0
  4. package/dist/fonts.d.ts +0 -1
  5. package/dist/fonts.js +5 -7
  6. package/dist/hooks/use-capped-frame.d.ts +0 -1
  7. package/dist/hooks/use-capped-frame.js +12 -13
  8. package/dist/hooks/use-css-var-dims.d.ts +0 -1
  9. package/dist/hooks/use-css-var-dims.js +26 -21
  10. package/dist/hooks/use-gpu-tier.d.ts +0 -1
  11. package/dist/hooks/use-gpu-tier.js +90 -110
  12. package/dist/hooks/use-render-loop.d.ts +0 -1
  13. package/dist/hooks/use-render-loop.js +58 -58
  14. package/dist/hooks/use-smooth-controls.d.ts +0 -1
  15. package/dist/hooks/use-smooth-controls.js +204 -206
  16. package/dist/index.d.ts +0 -1
  17. package/dist/index.js +84 -58
  18. package/dist/ui/basic-page.d.ts +1 -2
  19. package/dist/ui/basic-page.js +15 -7
  20. package/dist/ui/components/animated-count.d.ts +1 -2
  21. package/dist/ui/components/animated-count.js +109 -85
  22. package/dist/ui/components/ascii.d.ts +2 -3
  23. package/dist/ui/components/ascii.js +75 -59
  24. package/dist/ui/components/badge.d.ts +1 -2
  25. package/dist/ui/components/badge.js +35 -18
  26. package/dist/ui/components/badges/nous-girl.d.ts +1 -2
  27. package/dist/ui/components/badges/nous-girl.js +80 -3
  28. package/dist/ui/components/blend-mode.d.ts +1 -2
  29. package/dist/ui/components/blend-mode.js +55 -63
  30. package/dist/ui/components/blink.d.ts +1 -2
  31. package/dist/ui/components/blink.js +15 -6
  32. package/dist/ui/components/button.d.ts +2 -3
  33. package/dist/ui/components/button.js +139 -90
  34. package/dist/ui/components/command-block.d.ts +2 -3
  35. package/dist/ui/components/command-block.js +52 -24
  36. package/dist/ui/components/cursor.d.ts +1 -2
  37. package/dist/ui/components/cursor.js +93 -54
  38. package/dist/ui/components/dropdown-menu.d.ts +1 -2
  39. package/dist/ui/components/dropdown-menu.js +99 -51
  40. package/dist/ui/components/fit-text/index.d.ts +0 -1
  41. package/dist/ui/components/fit-text/index.js +21 -13
  42. package/dist/ui/components/graphs/bar-chart.d.ts +1 -2
  43. package/dist/ui/components/graphs/bar-chart.js +116 -63
  44. package/dist/ui/components/graphs/index.d.ts +0 -1
  45. package/dist/ui/components/graphs/index.js +3 -4
  46. package/dist/ui/components/graphs/line-chart.d.ts +1 -2
  47. package/dist/ui/components/graphs/line-chart.js +159 -102
  48. package/dist/ui/components/graphs/utils.d.ts +2 -3
  49. package/dist/ui/components/graphs/utils.js +147 -114
  50. package/dist/ui/components/grid/index.d.ts +0 -1
  51. package/dist/ui/components/grid/index.js +12 -9
  52. package/dist/ui/components/hover-bg.d.ts +0 -1
  53. package/dist/ui/components/hover-bg.js +11 -6
  54. package/dist/ui/components/icons/arrow.d.ts +1 -2
  55. package/dist/ui/components/icons/arrow.js +42 -5
  56. package/dist/ui/components/icons/chevron.d.ts +1 -2
  57. package/dist/ui/components/icons/chevron.js +49 -5
  58. package/dist/ui/components/icons/discord.d.ts +1 -2
  59. package/dist/ui/components/icons/discord.js +12 -4
  60. package/dist/ui/components/icons/eye.d.ts +1 -2
  61. package/dist/ui/components/icons/eye.js +5 -3
  62. package/dist/ui/components/icons/gear.d.ts +1 -2
  63. package/dist/ui/components/icons/gear.js +28 -14
  64. package/dist/ui/components/icons/github.d.ts +1 -2
  65. package/dist/ui/components/icons/github.js +12 -4
  66. package/dist/ui/components/icons/hamburger.d.ts +1 -2
  67. package/dist/ui/components/icons/hamburger.js +54 -5
  68. package/dist/ui/components/icons/heart.d.ts +1 -2
  69. package/dist/ui/components/icons/heart.js +8 -3
  70. package/dist/ui/components/icons/index.d.ts +0 -1
  71. package/dist/ui/components/icons/index.js +11 -12
  72. package/dist/ui/components/icons/link.d.ts +1 -2
  73. package/dist/ui/components/icons/link.js +10 -3
  74. package/dist/ui/components/icons/minus.d.ts +1 -2
  75. package/dist/ui/components/icons/minus.js +10 -3
  76. package/dist/ui/components/icons/search.d.ts +1 -2
  77. package/dist/ui/components/icons/search.js +30 -3
  78. package/dist/ui/components/image-distortion.d.ts +1 -2
  79. package/dist/ui/components/image-distortion.js +300 -265
  80. package/dist/ui/components/leva-client.d.ts +1 -2
  81. package/dist/ui/components/leva-client.js +9 -10
  82. package/dist/ui/components/list-item.d.ts +0 -1
  83. package/dist/ui/components/list-item.js +26 -10
  84. package/dist/ui/components/modal/index.d.ts +1 -2
  85. package/dist/ui/components/modal/index.js +33 -14
  86. package/dist/ui/components/overlays/blend-modes.d.ts +0 -1
  87. package/dist/ui/components/overlays/blend-modes.js +11 -12
  88. package/dist/ui/components/overlays/glitch.d.ts +1 -2
  89. package/dist/ui/components/overlays/glitch.js +115 -110
  90. package/dist/ui/components/overlays/greys.d.ts +1 -2
  91. package/dist/ui/components/overlays/greys.js +200 -179
  92. package/dist/ui/components/overlays/index.d.ts +1 -2
  93. package/dist/ui/components/overlays/index.js +31 -17
  94. package/dist/ui/components/overlays/lens-layers.d.ts +1 -2
  95. package/dist/ui/components/overlays/lens-layers.js +89 -65
  96. package/dist/ui/components/overlays/lens.d.ts +0 -1
  97. package/dist/ui/components/overlays/lens.js +46 -52
  98. package/dist/ui/components/overlays/noise.d.ts +1 -2
  99. package/dist/ui/components/overlays/noise.js +112 -113
  100. package/dist/ui/components/overlays/vignette.d.ts +1 -2
  101. package/dist/ui/components/overlays/vignette.js +44 -38
  102. package/dist/ui/components/poster.d.ts +1 -2
  103. package/dist/ui/components/poster.js +240 -87
  104. package/dist/ui/components/progress.d.ts +1 -2
  105. package/dist/ui/components/progress.js +52 -12
  106. package/dist/ui/components/scene-canvas.d.ts +1 -2
  107. package/dist/ui/components/scene-canvas.js +169 -119
  108. package/dist/ui/components/scramble.d.ts +1 -2
  109. package/dist/ui/components/scramble.js +60 -59
  110. package/dist/ui/components/segmented.d.ts +2 -3
  111. package/dist/ui/components/segmented.js +47 -12
  112. package/dist/ui/components/select.d.ts +1 -2
  113. package/dist/ui/components/select.js +207 -120
  114. package/dist/ui/components/selection-switcher.d.ts +0 -1
  115. package/dist/ui/components/selection-switcher.js +29 -25
  116. package/dist/ui/components/shader.d.ts +1 -2
  117. package/dist/ui/components/shader.js +56 -38
  118. package/dist/ui/components/socials.d.ts +1 -2
  119. package/dist/ui/components/socials.js +18 -7
  120. package/dist/ui/components/spinner.d.ts +1 -2
  121. package/dist/ui/components/spinner.js +36 -25
  122. package/dist/ui/components/stats.d.ts +1 -2
  123. package/dist/ui/components/stats.js +33 -9
  124. package/dist/ui/components/switch.d.ts +0 -1
  125. package/dist/ui/components/switch.js +35 -11
  126. package/dist/ui/components/tabs.d.ts +3 -4
  127. package/dist/ui/components/tabs.js +38 -12
  128. package/dist/ui/components/terminal-demo.d.ts +1 -2
  129. package/dist/ui/components/terminal-demo.js +119 -74
  130. package/dist/ui/components/theme-toggle.d.ts +1 -2
  131. package/dist/ui/components/theme-toggle.js +63 -8
  132. package/dist/ui/components/tier-card.d.ts +1 -2
  133. package/dist/ui/components/tier-card.js +144 -24
  134. package/dist/ui/components/tv.d.ts +1 -2
  135. package/dist/ui/components/tv.js +138 -90
  136. package/dist/ui/components/typography/h1.d.ts +0 -1
  137. package/dist/ui/components/typography/h1.js +17 -8
  138. package/dist/ui/components/typography/h2.d.ts +0 -1
  139. package/dist/ui/components/typography/h2.js +17 -8
  140. package/dist/ui/components/typography/index.d.ts +0 -1
  141. package/dist/ui/components/typography/index.js +35 -24
  142. package/dist/ui/components/typography/legend.d.ts +1 -2
  143. package/dist/ui/components/typography/legend.js +18 -6
  144. package/dist/ui/components/typography/small.d.ts +0 -1
  145. package/dist/ui/components/typography/small.js +8 -7
  146. package/dist/ui/components/watchlist.d.ts +1 -2
  147. package/dist/ui/components/watchlist.js +77 -25
  148. package/dist/ui/fonts.css +7 -7
  149. package/dist/ui/footer.d.ts +1 -2
  150. package/dist/ui/footer.js +61 -25
  151. package/dist/ui/header.d.ts +1 -2
  152. package/dist/ui/header.js +255 -60
  153. package/dist/ui/layout-wrapper.d.ts +1 -2
  154. package/dist/ui/layout-wrapper.js +5 -4
  155. package/dist/utils/color.d.ts +0 -1
  156. package/dist/utils/color.js +8 -9
  157. package/dist/utils/index.d.ts +0 -1
  158. package/dist/utils/index.js +37 -38
  159. package/dist/utils/poly.d.ts +0 -1
  160. package/dist/utils/poly.js +1 -2
  161. package/package.json +43 -25
  162. package/dist/assets/filler-bg0.jpg +0 -0
  163. package/dist/fonts.d.ts.map +0 -1
  164. package/dist/fonts.js.map +0 -1
  165. package/dist/hooks/use-capped-frame.d.ts.map +0 -1
  166. package/dist/hooks/use-capped-frame.js.map +0 -1
  167. package/dist/hooks/use-css-var-dims.d.ts.map +0 -1
  168. package/dist/hooks/use-css-var-dims.js.map +0 -1
  169. package/dist/hooks/use-gpu-tier.d.ts.map +0 -1
  170. package/dist/hooks/use-gpu-tier.js.map +0 -1
  171. package/dist/hooks/use-render-loop.d.ts.map +0 -1
  172. package/dist/hooks/use-render-loop.js.map +0 -1
  173. package/dist/hooks/use-smooth-controls.d.ts.map +0 -1
  174. package/dist/hooks/use-smooth-controls.js.map +0 -1
  175. package/dist/index.d.ts.map +0 -1
  176. package/dist/index.js.map +0 -1
  177. package/dist/ui/basic-page.d.ts.map +0 -1
  178. package/dist/ui/basic-page.js.map +0 -1
  179. package/dist/ui/components/animated-count.d.ts.map +0 -1
  180. package/dist/ui/components/animated-count.js.map +0 -1
  181. package/dist/ui/components/ascii.d.ts.map +0 -1
  182. package/dist/ui/components/ascii.js.map +0 -1
  183. package/dist/ui/components/badge.d.ts.map +0 -1
  184. package/dist/ui/components/badge.js.map +0 -1
  185. package/dist/ui/components/badges/nous-girl.d.ts.map +0 -1
  186. package/dist/ui/components/badges/nous-girl.js.map +0 -1
  187. package/dist/ui/components/blend-mode.d.ts.map +0 -1
  188. package/dist/ui/components/blend-mode.js.map +0 -1
  189. package/dist/ui/components/blink.d.ts.map +0 -1
  190. package/dist/ui/components/blink.js.map +0 -1
  191. package/dist/ui/components/button.d.ts.map +0 -1
  192. package/dist/ui/components/button.js.map +0 -1
  193. package/dist/ui/components/command-block.d.ts.map +0 -1
  194. package/dist/ui/components/command-block.js.map +0 -1
  195. package/dist/ui/components/cursor.d.ts.map +0 -1
  196. package/dist/ui/components/cursor.js.map +0 -1
  197. package/dist/ui/components/dropdown-menu.d.ts.map +0 -1
  198. package/dist/ui/components/dropdown-menu.js.map +0 -1
  199. package/dist/ui/components/fit-text/index.d.ts.map +0 -1
  200. package/dist/ui/components/fit-text/index.js.map +0 -1
  201. package/dist/ui/components/graphs/bar-chart.d.ts.map +0 -1
  202. package/dist/ui/components/graphs/bar-chart.js.map +0 -1
  203. package/dist/ui/components/graphs/index.d.ts.map +0 -1
  204. package/dist/ui/components/graphs/index.js.map +0 -1
  205. package/dist/ui/components/graphs/line-chart.d.ts.map +0 -1
  206. package/dist/ui/components/graphs/line-chart.js.map +0 -1
  207. package/dist/ui/components/graphs/utils.d.ts.map +0 -1
  208. package/dist/ui/components/graphs/utils.js.map +0 -1
  209. package/dist/ui/components/grid/index.d.ts.map +0 -1
  210. package/dist/ui/components/grid/index.js.map +0 -1
  211. package/dist/ui/components/hover-bg.d.ts.map +0 -1
  212. package/dist/ui/components/hover-bg.js.map +0 -1
  213. package/dist/ui/components/icons/arrow.d.ts.map +0 -1
  214. package/dist/ui/components/icons/arrow.js.map +0 -1
  215. package/dist/ui/components/icons/chevron.d.ts.map +0 -1
  216. package/dist/ui/components/icons/chevron.js.map +0 -1
  217. package/dist/ui/components/icons/discord.d.ts.map +0 -1
  218. package/dist/ui/components/icons/discord.js.map +0 -1
  219. package/dist/ui/components/icons/eye.d.ts.map +0 -1
  220. package/dist/ui/components/icons/eye.js.map +0 -1
  221. package/dist/ui/components/icons/gear.d.ts.map +0 -1
  222. package/dist/ui/components/icons/gear.js.map +0 -1
  223. package/dist/ui/components/icons/github.d.ts.map +0 -1
  224. package/dist/ui/components/icons/github.js.map +0 -1
  225. package/dist/ui/components/icons/hamburger.d.ts.map +0 -1
  226. package/dist/ui/components/icons/hamburger.js.map +0 -1
  227. package/dist/ui/components/icons/heart.d.ts.map +0 -1
  228. package/dist/ui/components/icons/heart.js.map +0 -1
  229. package/dist/ui/components/icons/index.d.ts.map +0 -1
  230. package/dist/ui/components/icons/index.js.map +0 -1
  231. package/dist/ui/components/icons/link.d.ts.map +0 -1
  232. package/dist/ui/components/icons/link.js.map +0 -1
  233. package/dist/ui/components/icons/minus.d.ts.map +0 -1
  234. package/dist/ui/components/icons/minus.js.map +0 -1
  235. package/dist/ui/components/icons/search.d.ts.map +0 -1
  236. package/dist/ui/components/icons/search.js.map +0 -1
  237. package/dist/ui/components/image-distortion.d.ts.map +0 -1
  238. package/dist/ui/components/image-distortion.js.map +0 -1
  239. package/dist/ui/components/leva-client.d.ts.map +0 -1
  240. package/dist/ui/components/leva-client.js.map +0 -1
  241. package/dist/ui/components/list-item.d.ts.map +0 -1
  242. package/dist/ui/components/list-item.js.map +0 -1
  243. package/dist/ui/components/modal/index.d.ts.map +0 -1
  244. package/dist/ui/components/modal/index.js.map +0 -1
  245. package/dist/ui/components/overlays/blend-modes.d.ts.map +0 -1
  246. package/dist/ui/components/overlays/blend-modes.js.map +0 -1
  247. package/dist/ui/components/overlays/glitch.d.ts.map +0 -1
  248. package/dist/ui/components/overlays/glitch.js.map +0 -1
  249. package/dist/ui/components/overlays/greys.d.ts.map +0 -1
  250. package/dist/ui/components/overlays/greys.js.map +0 -1
  251. package/dist/ui/components/overlays/index.d.ts.map +0 -1
  252. package/dist/ui/components/overlays/index.js.map +0 -1
  253. package/dist/ui/components/overlays/lens-layers.d.ts.map +0 -1
  254. package/dist/ui/components/overlays/lens-layers.js.map +0 -1
  255. package/dist/ui/components/overlays/lens.d.ts.map +0 -1
  256. package/dist/ui/components/overlays/lens.js.map +0 -1
  257. package/dist/ui/components/overlays/noise.d.ts.map +0 -1
  258. package/dist/ui/components/overlays/noise.js.map +0 -1
  259. package/dist/ui/components/overlays/vignette.d.ts.map +0 -1
  260. package/dist/ui/components/overlays/vignette.js.map +0 -1
  261. package/dist/ui/components/poster.d.ts.map +0 -1
  262. package/dist/ui/components/poster.js.map +0 -1
  263. package/dist/ui/components/progress.d.ts.map +0 -1
  264. package/dist/ui/components/progress.js.map +0 -1
  265. package/dist/ui/components/scene-canvas.d.ts.map +0 -1
  266. package/dist/ui/components/scene-canvas.js.map +0 -1
  267. package/dist/ui/components/scramble.d.ts.map +0 -1
  268. package/dist/ui/components/scramble.js.map +0 -1
  269. package/dist/ui/components/segmented.d.ts.map +0 -1
  270. package/dist/ui/components/segmented.js.map +0 -1
  271. package/dist/ui/components/select.d.ts.map +0 -1
  272. package/dist/ui/components/select.js.map +0 -1
  273. package/dist/ui/components/selection-switcher.d.ts.map +0 -1
  274. package/dist/ui/components/selection-switcher.js.map +0 -1
  275. package/dist/ui/components/shader.d.ts.map +0 -1
  276. package/dist/ui/components/shader.js.map +0 -1
  277. package/dist/ui/components/socials.d.ts.map +0 -1
  278. package/dist/ui/components/socials.js.map +0 -1
  279. package/dist/ui/components/spinner.d.ts.map +0 -1
  280. package/dist/ui/components/spinner.js.map +0 -1
  281. package/dist/ui/components/stats.d.ts.map +0 -1
  282. package/dist/ui/components/stats.js.map +0 -1
  283. package/dist/ui/components/switch.d.ts.map +0 -1
  284. package/dist/ui/components/switch.js.map +0 -1
  285. package/dist/ui/components/tabs.d.ts.map +0 -1
  286. package/dist/ui/components/tabs.js.map +0 -1
  287. package/dist/ui/components/terminal-demo.d.ts.map +0 -1
  288. package/dist/ui/components/terminal-demo.js.map +0 -1
  289. package/dist/ui/components/theme-toggle.d.ts.map +0 -1
  290. package/dist/ui/components/theme-toggle.js.map +0 -1
  291. package/dist/ui/components/tier-card.d.ts.map +0 -1
  292. package/dist/ui/components/tier-card.js.map +0 -1
  293. package/dist/ui/components/tv.d.ts.map +0 -1
  294. package/dist/ui/components/tv.js.map +0 -1
  295. package/dist/ui/components/typography/h1.d.ts.map +0 -1
  296. package/dist/ui/components/typography/h1.js.map +0 -1
  297. package/dist/ui/components/typography/h2.d.ts.map +0 -1
  298. package/dist/ui/components/typography/h2.js.map +0 -1
  299. package/dist/ui/components/typography/index.d.ts.map +0 -1
  300. package/dist/ui/components/typography/index.js.map +0 -1
  301. package/dist/ui/components/typography/legend.d.ts.map +0 -1
  302. package/dist/ui/components/typography/legend.js.map +0 -1
  303. package/dist/ui/components/typography/small.d.ts.map +0 -1
  304. package/dist/ui/components/typography/small.js.map +0 -1
  305. package/dist/ui/components/watchlist.d.ts.map +0 -1
  306. package/dist/ui/components/watchlist.js.map +0 -1
  307. package/dist/ui/footer.d.ts.map +0 -1
  308. package/dist/ui/footer.js.map +0 -1
  309. package/dist/ui/header.d.ts.map +0 -1
  310. package/dist/ui/header.js.map +0 -1
  311. package/dist/ui/layout-wrapper.d.ts.map +0 -1
  312. package/dist/ui/layout-wrapper.js.map +0 -1
  313. package/dist/utils/color.d.ts.map +0 -1
  314. package/dist/utils/color.js.map +0 -1
  315. package/dist/utils/index.d.ts.map +0 -1
  316. package/dist/utils/index.js.map +0 -1
  317. package/dist/utils/poly.d.ts.map +0 -1
  318. package/dist/utils/poly.js.map +0 -1
@@ -1,6 +1,43 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { cn } from '../../../utils';
3
- export function ArrowIcon({ className, direction = 'down', ...props }) {
4
- return (_jsxs("svg", { className: cn(direction === 'up' && 'rotate-180', direction === 'left' && 'rotate-90', direction === 'right' && '-rotate-90', 'origin-center', className), fill: "none", viewBox: "0 0 13 15", ...props, children: [_jsx("path", { clipRule: "evenodd", d: "M5 15V0h2.50075v15z", fill: "currentColor", fillRule: "evenodd" }), _jsx("path", { clipRule: "evenodd", d: "M10 12.5007H2.5V9.99998H10zM12.4976 9.99951H9.99805v-2.4996h2.49955zM2.4996 9.99951H0v-2.4996h2.4996z", fill: "currentColor", fillRule: "evenodd" })] }));
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { cn } from "../../../utils/index.js";
3
+ export function ArrowIcon({
4
+ className,
5
+ direction = "down",
6
+ ...props
7
+ }) {
8
+ return /* @__PURE__ */ jsxs(
9
+ "svg",
10
+ {
11
+ className: cn(
12
+ direction === "up" && "rotate-180",
13
+ direction === "left" && "rotate-90",
14
+ direction === "right" && "-rotate-90",
15
+ "origin-center",
16
+ className
17
+ ),
18
+ fill: "none",
19
+ viewBox: "0 0 13 15",
20
+ ...props,
21
+ children: [
22
+ /* @__PURE__ */ jsx(
23
+ "path",
24
+ {
25
+ clipRule: "evenodd",
26
+ d: "M5 15V0h2.50075v15z",
27
+ fill: "currentColor",
28
+ fillRule: "evenodd"
29
+ }
30
+ ),
31
+ /* @__PURE__ */ jsx(
32
+ "path",
33
+ {
34
+ clipRule: "evenodd",
35
+ d: "M10 12.5007H2.5V9.99998H10zM12.4976 9.99951H9.99805v-2.4996h2.49955zM2.4996 9.99951H0v-2.4996h2.4996z",
36
+ fill: "currentColor",
37
+ fillRule: "evenodd"
38
+ }
39
+ )
40
+ ]
41
+ }
42
+ );
5
43
  }
6
- //# sourceMappingURL=arrow.js.map
@@ -1,7 +1,6 @@
1
1
  import type { SVGProps } from 'react';
2
- export declare function ChevronIcon({ className, direction, ...props }: ChevronIconProps): import("react/jsx-runtime").JSX.Element;
2
+ export declare function ChevronIcon({ className, direction, ...props }: ChevronIconProps): import("react").JSX.Element;
3
3
  interface ChevronIconProps extends SVGProps<SVGSVGElement> {
4
4
  direction?: 'left' | 'right';
5
5
  }
6
6
  export {};
7
- //# sourceMappingURL=chevron.d.ts.map
@@ -1,6 +1,50 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { cn } from '../../../utils';
3
- export function ChevronIcon({ className, direction = 'left', ...props }) {
4
- return (_jsxs("svg", { className: cn(direction === 'left' && 'rotate-90', direction === 'right' && '-rotate-90', className), fill: "none", viewBox: "0 0 8 13", ...props, children: [_jsx("path", { clipRule: "evenodd", d: "M0 7.49765h5V4.9969H1e-7z", fill: "currentColor", fillRule: "evenodd" }), _jsx("path", { clipRule: "evenodd", d: "M2.5 2.49765v7.5h2.50075v-7.5z", fill: "currentColor", fillRule: "evenodd" }), _jsx("path", { clipRule: "evenodd", d: "M5 .0000031V2.4996h2.4996V.0000032zM5 9.99805v2.49965h2.4996V9.99805z", fill: "currentColor", fillRule: "evenodd" })] }));
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { cn } from "../../../utils/index.js";
3
+ export function ChevronIcon({
4
+ className,
5
+ direction = "left",
6
+ ...props
7
+ }) {
8
+ return /* @__PURE__ */ jsxs(
9
+ "svg",
10
+ {
11
+ className: cn(
12
+ direction === "left" && "rotate-90",
13
+ direction === "right" && "-rotate-90",
14
+ className
15
+ ),
16
+ fill: "none",
17
+ viewBox: "0 0 8 13",
18
+ ...props,
19
+ children: [
20
+ /* @__PURE__ */ jsx(
21
+ "path",
22
+ {
23
+ clipRule: "evenodd",
24
+ d: "M0 7.49765h5V4.9969H1e-7z",
25
+ fill: "currentColor",
26
+ fillRule: "evenodd"
27
+ }
28
+ ),
29
+ /* @__PURE__ */ jsx(
30
+ "path",
31
+ {
32
+ clipRule: "evenodd",
33
+ d: "M2.5 2.49765v7.5h2.50075v-7.5z",
34
+ fill: "currentColor",
35
+ fillRule: "evenodd"
36
+ }
37
+ ),
38
+ /* @__PURE__ */ jsx(
39
+ "path",
40
+ {
41
+ clipRule: "evenodd",
42
+ d: "M5 .0000031V2.4996h2.4996V.0000032zM5 9.99805v2.49965h2.4996V9.99805z",
43
+ fill: "currentColor",
44
+ fillRule: "evenodd"
45
+ }
46
+ )
47
+ ]
48
+ }
49
+ );
5
50
  }
6
- //# sourceMappingURL=chevron.js.map
@@ -1,3 +1,2 @@
1
1
  import type { SVGProps } from 'react';
2
- export declare function DiscordIcon({ className, ...props }: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
3
- //# sourceMappingURL=discord.d.ts.map
2
+ export declare function DiscordIcon({ className, ...props }: SVGProps<SVGSVGElement>): import("react").JSX.Element;
@@ -1,6 +1,14 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import { cn } from '../../../utils';
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { cn } from "../../../utils/index.js";
3
3
  export function DiscordIcon({ className, ...props }) {
4
- return (_jsx("svg", { className: cn('size-4', className), fill: "currentColor", viewBox: "0 0 24 24", ...props, children: _jsx("path", { d: "M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028c.462-.63.874-1.295 1.226-1.994a.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z" }) }));
4
+ return /* @__PURE__ */ jsx(
5
+ "svg",
6
+ {
7
+ className: cn("size-4", className),
8
+ fill: "currentColor",
9
+ viewBox: "0 0 24 24",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx("path", { d: "M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028c.462-.63.874-1.295 1.226-1.994a.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z" })
12
+ }
13
+ );
5
14
  }
6
- //# sourceMappingURL=discord.js.map
@@ -1,3 +1,2 @@
1
1
  import type { SVGProps } from 'react';
2
- export declare function EyeIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
3
- //# sourceMappingURL=eye.d.ts.map
2
+ export declare function EyeIcon(props: SVGProps<SVGSVGElement>): import("react").JSX.Element;
@@ -1,5 +1,7 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
2
  export function EyeIcon(props) {
3
- return (_jsx("svg", { fill: "none", viewBox: "0 0 26 17", ...props, children: _jsxs("g", { clipRule: "evenodd", fill: "currentColor", fillRule: "evenodd", children: [_jsx("path", { d: "M2.36308 9.45484H0V7.09067h2.36308zM23.6387 9.45484h2.3631V7.09067h-2.3631zM4.73047 2.36462h3.54519v2.36309H4.73047zM8.27539 0h9.45451v2.36417H8.27539zM8.27539 14.1808h9.45451v2.3641H8.27539zM4.73047 14.1808h3.54519v-2.3631H4.73047zM21.2718 2.36462h-3.5452v2.36309h3.5452zM21.2718 14.1808h-3.5452v-2.3631h3.5452zM2.36719 4.72751h2.36308v2.36308H2.36719zM2.36719 11.8179h2.36308V9.45486H2.36719z" }), _jsx("path", { d: "M23.6346 4.72751h-2.3631v2.36308h2.3631zM23.6346 11.8179h-2.3631V9.45486h2.3631zM14.7716 6.50014h-3.5452V4.13705h3.5452zm0 0v3.54516h-3.5452v2.3631h3.5452v-2.3631h2.363V6.50014zm-3.5452 0v3.54516H8.86328V6.50014z" })] }) }));
3
+ return /* @__PURE__ */ jsx("svg", { fill: "none", viewBox: "0 0 26 17", ...props, children: /* @__PURE__ */ jsxs("g", { clipRule: "evenodd", fill: "currentColor", fillRule: "evenodd", children: [
4
+ /* @__PURE__ */ jsx("path", { d: "M2.36308 9.45484H0V7.09067h2.36308zM23.6387 9.45484h2.3631V7.09067h-2.3631zM4.73047 2.36462h3.54519v2.36309H4.73047zM8.27539 0h9.45451v2.36417H8.27539zM8.27539 14.1808h9.45451v2.3641H8.27539zM4.73047 14.1808h3.54519v-2.3631H4.73047zM21.2718 2.36462h-3.5452v2.36309h3.5452zM21.2718 14.1808h-3.5452v-2.3631h3.5452zM2.36719 4.72751h2.36308v2.36308H2.36719zM2.36719 11.8179h2.36308V9.45486H2.36719z" }),
5
+ /* @__PURE__ */ jsx("path", { d: "M23.6346 4.72751h-2.3631v2.36308h2.3631zM23.6346 11.8179h-2.3631V9.45486h2.3631zM14.7716 6.50014h-3.5452V4.13705h3.5452zm0 0v3.54516h-3.5452v2.3631h3.5452v-2.3631h2.363V6.50014zm-3.5452 0v3.54516H8.86328V6.50014z" })
6
+ ] }) });
4
7
  }
5
- //# sourceMappingURL=eye.js.map
@@ -1,7 +1,6 @@
1
1
  import { type PropsWithChildren, type SVGProps } from 'react';
2
- export declare function GearIcon({ children, innerScale, ...props }: GearIconProps): import("react/jsx-runtime").JSX.Element;
2
+ export declare function GearIcon({ children, innerScale, ...props }: GearIconProps): import("react").JSX.Element;
3
3
  interface GearIconProps extends PropsWithChildren<SVGProps<SVGSVGElement>> {
4
4
  innerScale?: number;
5
5
  }
6
6
  export {};
7
- //# sourceMappingURL=gear.d.ts.map
@@ -1,15 +1,29 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { isValidElement } from 'react';
3
- const VIEWBOX = '0 0 34 38';
4
- const GEAR_PATH = 'M10.1249 3.37446h5.0624v3.37446h-5.0624zM23.6262 3.37446h-5.0625v3.37446h5.0625zM18.5637 0v3.37446h-3.3764L15.1877 0zM3.3762 6.74879l6.7487.00013.0003 3.37588h-6.749zM30.3748 6.74879l-6.7486.00013-.0003 3.37588h6.7489zM0 26.9988v-16.874h3.3762l-.00019 16.874zM33.7505 26.9988v-16.874h-3.3757l-.0003 16.874zM10.1248 30.3751H3.37586l.00015-3.3763 6.74879.0003zM23.6262 30.3751h6.749l-.0007-3.3763-6.7483.0003zM15.1873 33.7495h-5.0624l-.0001-3.3744 5.0625-.0001zM18.5637 33.7495h5.0625v-3.3744l-5.0625-.0001zM15.1874 37.1245l-.0001-3.375h3.3764l-.0003 3.375z';
5
- export function GearIcon({ children, innerScale = 0.55, ...props }) {
6
- const isSvg = isValidElement(children) && children.type === 'svg';
7
- const viewBox = isSvg
8
- ? (children.props.viewBox ?? VIEWBOX)
9
- : VIEWBOX;
10
- const inner = isSvg
11
- ? children.props.children
12
- : children;
13
- return (_jsxs("svg", { fill: "none", viewBox: VIEWBOX, ...props, children: [_jsx("g", { clipRule: "evenodd", fill: "currentColor", fillRule: "evenodd", children: _jsx("path", { d: GEAR_PATH }) }), children && (_jsx("svg", { height: 26 * innerScale, width: 26 * innerScale, x: 17 - (26 * innerScale) / 2, y: 19 - (26 * innerScale) / 2, viewBox, children: inner }))] }));
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import {
3
+ isValidElement
4
+ } from "react";
5
+ const VIEWBOX = "0 0 34 38";
6
+ const GEAR_PATH = "M10.1249 3.37446h5.0624v3.37446h-5.0624zM23.6262 3.37446h-5.0625v3.37446h5.0625zM18.5637 0v3.37446h-3.3764L15.1877 0zM3.3762 6.74879l6.7487.00013.0003 3.37588h-6.749zM30.3748 6.74879l-6.7486.00013-.0003 3.37588h6.7489zM0 26.9988v-16.874h3.3762l-.00019 16.874zM33.7505 26.9988v-16.874h-3.3757l-.0003 16.874zM10.1248 30.3751H3.37586l.00015-3.3763 6.74879.0003zM23.6262 30.3751h6.749l-.0007-3.3763-6.7483.0003zM15.1873 33.7495h-5.0624l-.0001-3.3744 5.0625-.0001zM18.5637 33.7495h5.0625v-3.3744l-5.0625-.0001zM15.1874 37.1245l-.0001-3.375h3.3764l-.0003 3.375z";
7
+ export function GearIcon({
8
+ children,
9
+ innerScale = 0.55,
10
+ ...props
11
+ }) {
12
+ const isSvg = isValidElement(children) && children.type === "svg";
13
+ const viewBox = isSvg ? children.props.viewBox ?? VIEWBOX : VIEWBOX;
14
+ const inner = isSvg ? children.props.children : children;
15
+ return /* @__PURE__ */ jsxs("svg", { fill: "none", viewBox: VIEWBOX, ...props, children: [
16
+ /* @__PURE__ */ jsx("g", { clipRule: "evenodd", fill: "currentColor", fillRule: "evenodd", children: /* @__PURE__ */ jsx("path", { d: GEAR_PATH }) }),
17
+ children && /* @__PURE__ */ jsx(
18
+ "svg",
19
+ {
20
+ height: 26 * innerScale,
21
+ width: 26 * innerScale,
22
+ x: 17 - 26 * innerScale / 2,
23
+ y: 19 - 26 * innerScale / 2,
24
+ ...{ viewBox },
25
+ children: inner
26
+ }
27
+ )
28
+ ] });
14
29
  }
15
- //# sourceMappingURL=gear.js.map
@@ -1,3 +1,2 @@
1
1
  import type { SVGProps } from 'react';
2
- export declare function GitHubIcon({ className, ...props }: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
3
- //# sourceMappingURL=github.d.ts.map
2
+ export declare function GitHubIcon({ className, ...props }: SVGProps<SVGSVGElement>): import("react").JSX.Element;
@@ -1,6 +1,14 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import { cn } from '../../../utils';
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { cn } from "../../../utils/index.js";
3
3
  export function GitHubIcon({ className, ...props }) {
4
- return (_jsx("svg", { className: cn('size-4', className), fill: "currentColor", viewBox: "0 0 24 24", ...props, children: _jsx("path", { d: "M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z" }) }));
4
+ return /* @__PURE__ */ jsx(
5
+ "svg",
6
+ {
7
+ className: cn("size-4", className),
8
+ fill: "currentColor",
9
+ viewBox: "0 0 24 24",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx("path", { d: "M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z" })
12
+ }
13
+ );
5
14
  }
6
- //# sourceMappingURL=github.js.map
@@ -1,7 +1,6 @@
1
1
  import type { SVGProps } from 'react';
2
- export declare function HamburgerIcon({ className, open, ...props }: HamburgerIconProps): import("react/jsx-runtime").JSX.Element;
2
+ export declare function HamburgerIcon({ className, open, ...props }: HamburgerIconProps): import("react").JSX.Element;
3
3
  interface HamburgerIconProps extends SVGProps<SVGSVGElement> {
4
4
  open?: boolean;
5
5
  }
6
6
  export {};
7
- //# sourceMappingURL=hamburger.d.ts.map
@@ -1,6 +1,55 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { cn } from '../../../utils';
3
- export function HamburgerIcon({ className, open = false, ...props }) {
4
- return (_jsxs("svg", { className: cn('size-5', className), fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, viewBox: "0 0 24 24", ...props, children: [_jsx("line", { className: "origin-center transition-transform duration-200 ease-out", style: { transform: open ? 'rotate(45deg)' : 'translateY(-4px)' }, x1: 4, x2: 20, y1: 12, y2: 12 }), _jsx("line", { className: "transition-opacity duration-200 ease-out", style: { opacity: open ? 0 : 1 }, x1: 4, x2: 20, y1: 12, y2: 12 }), _jsx("line", { className: "origin-center transition-transform duration-200 ease-out", style: { transform: open ? 'rotate(-45deg)' : 'translateY(4px)' }, x1: 4, x2: 20, y1: 12, y2: 12 })] }));
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { cn } from "../../../utils/index.js";
3
+ export function HamburgerIcon({
4
+ className,
5
+ open = false,
6
+ ...props
7
+ }) {
8
+ return /* @__PURE__ */ jsxs(
9
+ "svg",
10
+ {
11
+ className: cn("size-5", className),
12
+ fill: "none",
13
+ stroke: "currentColor",
14
+ strokeLinecap: "round",
15
+ strokeWidth: 1.5,
16
+ viewBox: "0 0 24 24",
17
+ ...props,
18
+ children: [
19
+ /* @__PURE__ */ jsx(
20
+ "line",
21
+ {
22
+ className: "origin-center transition-transform duration-200 ease-out",
23
+ style: { transform: open ? "rotate(45deg)" : "translateY(-4px)" },
24
+ x1: 4,
25
+ x2: 20,
26
+ y1: 12,
27
+ y2: 12
28
+ }
29
+ ),
30
+ /* @__PURE__ */ jsx(
31
+ "line",
32
+ {
33
+ className: "transition-opacity duration-200 ease-out",
34
+ style: { opacity: open ? 0 : 1 },
35
+ x1: 4,
36
+ x2: 20,
37
+ y1: 12,
38
+ y2: 12
39
+ }
40
+ ),
41
+ /* @__PURE__ */ jsx(
42
+ "line",
43
+ {
44
+ className: "origin-center transition-transform duration-200 ease-out",
45
+ style: { transform: open ? "rotate(-45deg)" : "translateY(4px)" },
46
+ x1: 4,
47
+ x2: 20,
48
+ y1: 12,
49
+ y2: 12
50
+ }
51
+ )
52
+ ]
53
+ }
54
+ );
5
55
  }
6
- //# sourceMappingURL=hamburger.js.map
@@ -1,3 +1,2 @@
1
1
  import type { SVGProps } from 'react';
2
- export declare function HeartIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
3
- //# sourceMappingURL=heart.d.ts.map
2
+ export declare function HeartIcon(props: SVGProps<SVGSVGElement>): import("react").JSX.Element;
@@ -1,5 +1,10 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
1
+ import { jsx } from "react/jsx-runtime";
2
2
  export function HeartIcon(props) {
3
- return (_jsx("svg", { fill: "none", viewBox: "0 0 14 12", ...props, children: _jsx("path", { d: "M13.2 0v5.65714h-1.8857v1.88572H9.42857v1.88571H7.54286v1.88573H5.65714V9.42857H3.77143V7.54286H1.88571V5.65714H0V0h5.65714v1.88571h1.88572V0z", fill: "currentColor" }) }));
3
+ return /* @__PURE__ */ jsx("svg", { fill: "none", viewBox: "0 0 14 12", ...props, children: /* @__PURE__ */ jsx(
4
+ "path",
5
+ {
6
+ d: "M13.2 0v5.65714h-1.8857v1.88572H9.42857v1.88571H7.54286v1.88573H5.65714V9.42857H3.77143V7.54286H1.88571V5.65714H0V0h5.65714v1.88571h1.88572V0z",
7
+ fill: "currentColor"
8
+ }
9
+ ) });
4
10
  }
5
- //# sourceMappingURL=heart.js.map
@@ -9,4 +9,3 @@ export * from './heart';
9
9
  export * from './link';
10
10
  export * from './minus';
11
11
  export * from './search';
12
- //# sourceMappingURL=index.d.ts.map
@@ -1,12 +1,11 @@
1
- export * from './arrow';
2
- export * from './chevron';
3
- export * from './discord';
4
- export * from './eye';
5
- export * from './gear';
6
- export * from './github';
7
- export * from './hamburger';
8
- export * from './heart';
9
- export * from './link';
10
- export * from './minus';
11
- export * from './search';
12
- //# sourceMappingURL=index.js.map
1
+ export * from "./arrow.js";
2
+ export * from "./chevron.js";
3
+ export * from "./discord.js";
4
+ export * from "./eye.js";
5
+ export * from "./gear.js";
6
+ export * from "./github.js";
7
+ export * from "./hamburger.js";
8
+ export * from "./heart.js";
9
+ export * from "./link.js";
10
+ export * from "./minus.js";
11
+ export * from "./search.js";
@@ -1,3 +1,2 @@
1
1
  import type { SVGProps } from 'react';
2
- export declare function LinkIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
3
- //# sourceMappingURL=link.d.ts.map
2
+ export declare function LinkIcon(props: SVGProps<SVGSVGElement>): import("react").JSX.Element;
@@ -1,5 +1,12 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
1
+ import { jsx } from "react/jsx-runtime";
2
2
  export function LinkIcon(props) {
3
- return (_jsx("svg", { fill: "none", viewBox: "0 0 17 7", ...props, children: _jsx("path", { d: "M.264191.25061 6.27068.265071V2.26334h3.96512v1.99578l4.0238.00091.043-2.06986-4.0381.07302-.0142-2.01254L16.271.250649l-.0144 6.006381h-5.992l-.0287-1.9981-3.96528-.0002v1.99826l-6.02085-.0001zM6.24063 2.26197l-3.97944-.01436v1.99827l3.97954.01446z", fill: "currentColor", stroke: "currentColor", strokeWidth: ".5" }) }));
3
+ return /* @__PURE__ */ jsx("svg", { fill: "none", viewBox: "0 0 17 7", ...props, children: /* @__PURE__ */ jsx(
4
+ "path",
5
+ {
6
+ d: "M.264191.25061 6.27068.265071V2.26334h3.96512v1.99578l4.0238.00091.043-2.06986-4.0381.07302-.0142-2.01254L16.271.250649l-.0144 6.006381h-5.992l-.0287-1.9981-3.96528-.0002v1.99826l-6.02085-.0001zM6.24063 2.26197l-3.97944-.01436v1.99827l3.97954.01446z",
7
+ fill: "currentColor",
8
+ stroke: "currentColor",
9
+ strokeWidth: ".5"
10
+ }
11
+ ) });
4
12
  }
5
- //# sourceMappingURL=link.js.map
@@ -1,3 +1,2 @@
1
1
  import type { SVGProps } from 'react';
2
- export declare function MinusIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
3
- //# sourceMappingURL=minus.d.ts.map
2
+ export declare function MinusIcon(props: SVGProps<SVGSVGElement>): import("react").JSX.Element;
@@ -1,5 +1,12 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
1
+ import { jsx } from "react/jsx-runtime";
2
2
  export function MinusIcon(props) {
3
- return (_jsx("svg", { fill: "none", viewBox: "0 0 12 3", ...props, children: _jsx("path", { clipRule: "evenodd", d: "M12 0 0-5.2e-7-1e-7 2.50075H12z", fill: "currentColor", fillRule: "evenodd" }) }));
3
+ return /* @__PURE__ */ jsx("svg", { fill: "none", viewBox: "0 0 12 3", ...props, children: /* @__PURE__ */ jsx(
4
+ "path",
5
+ {
6
+ clipRule: "evenodd",
7
+ d: "M12 0 0-5.2e-7-1e-7 2.50075H12z",
8
+ fill: "currentColor",
9
+ fillRule: "evenodd"
10
+ }
11
+ ) });
4
12
  }
5
- //# sourceMappingURL=minus.js.map
@@ -1,3 +1,2 @@
1
1
  import type { SVGProps } from 'react';
2
- export declare function SearchIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
3
- //# sourceMappingURL=search.d.ts.map
2
+ export declare function SearchIcon(props: SVGProps<SVGSVGElement>): import("react").JSX.Element;
@@ -1,5 +1,32 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
2
  export function SearchIcon(props) {
3
- return (_jsxs("svg", { fill: "none", viewBox: "0 0 20 21", ...props, children: [_jsx("path", { clipRule: "evenodd", d: "M7.49773 1.6664h6.66637V0H7.49773zM14.1641 15.0001H7.49773v1.6664h6.66637z", fill: "currentColor", fillRule: "evenodd" }), _jsx("path", { clipRule: "evenodd", d: "M5.8336 3.33278H7.5v-1.6664H5.8336zM15.8359 13.3329h-1.6671v1.6672h1.6671zM4.16877 5.00017h1.66717V3.33301H4.16877zM17.5 11.6665h-1.6664v1.6664H17.5zM4.16406 11.6665V5.00012h-1.6664v6.66638zM17.4977 5.00012v6.66638h1.6664V5.00012z", fill: "currentColor", fillRule: "evenodd" }), _jsx("path", { clipRule: "evenodd", d: "M17.5 5.00017V3.33301h-1.6664v1.66716zM15.8359 3.33278v-1.6664h-1.6671v1.6664zM15.8359 10.0002V6.6665h-1.6671v3.3337zM14.1641 6.6664V5h-1.6664v1.6664zM5.8335 13.3328v-1.6664H4.16633V15H7.5v-1.6671zM4.16406 16.6664V15h-1.6664v1.6664zM2.5 18.3331v-1.6664H.8336v1.6664z", fill: "currentColor", fillRule: "evenodd" })] }));
3
+ return /* @__PURE__ */ jsxs("svg", { fill: "none", viewBox: "0 0 20 21", ...props, children: [
4
+ /* @__PURE__ */ jsx(
5
+ "path",
6
+ {
7
+ clipRule: "evenodd",
8
+ d: "M7.49773 1.6664h6.66637V0H7.49773zM14.1641 15.0001H7.49773v1.6664h6.66637z",
9
+ fill: "currentColor",
10
+ fillRule: "evenodd"
11
+ }
12
+ ),
13
+ /* @__PURE__ */ jsx(
14
+ "path",
15
+ {
16
+ clipRule: "evenodd",
17
+ d: "M5.8336 3.33278H7.5v-1.6664H5.8336zM15.8359 13.3329h-1.6671v1.6672h1.6671zM4.16877 5.00017h1.66717V3.33301H4.16877zM17.5 11.6665h-1.6664v1.6664H17.5zM4.16406 11.6665V5.00012h-1.6664v6.66638zM17.4977 5.00012v6.66638h1.6664V5.00012z",
18
+ fill: "currentColor",
19
+ fillRule: "evenodd"
20
+ }
21
+ ),
22
+ /* @__PURE__ */ jsx(
23
+ "path",
24
+ {
25
+ clipRule: "evenodd",
26
+ d: "M17.5 5.00017V3.33301h-1.6664v1.66716zM15.8359 3.33278v-1.6664h-1.6671v1.6664zM15.8359 10.0002V6.6665h-1.6671v3.3337zM14.1641 6.6664V5h-1.6664v1.6664zM5.8335 13.3328v-1.6664H4.16633V15H7.5v-1.6671zM4.16406 16.6664V15h-1.6664v1.6664zM2.5 18.3331v-1.6664H.8336v1.6664z",
27
+ fill: "currentColor",
28
+ fillRule: "evenodd"
29
+ }
30
+ )
31
+ ] });
4
32
  }
5
- //# sourceMappingURL=search.js.map
@@ -1,4 +1,4 @@
1
- export declare function ImageDistortion({ active, autoPlay, className, fallbackClassName, src, style, tint, tintStrength }: ImageDistortionProps): import("react/jsx-runtime").JSX.Element;
1
+ export declare function ImageDistortion({ active, autoPlay, className, fallbackClassName, src, style, tint, tintStrength }: ImageDistortionProps): import("react").JSX.Element;
2
2
  export type AutoPlayPattern = 'aggressive' | 'gentle' | 'slash';
3
3
  interface ImageDistortionProps {
4
4
  active?: boolean;
@@ -19,4 +19,3 @@ interface ImageDistortionProps {
19
19
  };
20
20
  }
21
21
  export {};
22
- //# sourceMappingURL=image-distortion.d.ts.map