rujira.ui 0.1.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 (303) hide show
  1. package/.eslintrc.cjs +21 -0
  2. package/.tool-versions +1 -0
  3. package/i18n/.github/workflows/validate.yml +13 -0
  4. package/i18n/README.md +7 -0
  5. package/i18n/translations/template.json +448 -0
  6. package/i18n/update-template.js +19 -0
  7. package/i18n/validate.js +10 -0
  8. package/lib/esm/i18n/translations/template.json +448 -0
  9. package/lib/esm/src/components/buttons/Button.js +37 -0
  10. package/lib/esm/src/components/buttons/Popout.js +56 -0
  11. package/lib/esm/src/components/buttons/TxButton.js +42 -0
  12. package/lib/esm/src/components/buttons/__Popout.js +34 -0
  13. package/lib/esm/src/components/cards/Card.js +8 -0
  14. package/lib/esm/src/components/cards/GradientCard.js +8 -0
  15. package/lib/esm/src/components/footer/Footer.js +11 -0
  16. package/lib/esm/src/components/header/Accounts.js +211 -0
  17. package/lib/esm/src/components/header/Header.js +69 -0
  18. package/lib/esm/src/components/header/QuickLauncher.js +10 -0
  19. package/lib/esm/src/components/header/ResolveLink.js +13 -0
  20. package/lib/esm/src/components/icons/IconDenom.js +358 -0
  21. package/lib/esm/src/components/icons/Icons.js +228 -0
  22. package/lib/esm/src/components/icons/Networks.js +32 -0
  23. package/lib/esm/src/components/icons/Wallets.js +62 -0
  24. package/lib/esm/src/components/inputs/Checkbox.js +12 -0
  25. package/lib/esm/src/components/inputs/DecimalInput.js +35 -0
  26. package/lib/esm/src/components/inputs/DenomInput.js +22 -0
  27. package/lib/esm/src/components/inputs/DenomSelect.js +66 -0
  28. package/lib/esm/src/components/inputs/Input.js +25 -0
  29. package/lib/esm/src/components/inputs/Numeric.js +18 -0
  30. package/lib/esm/src/components/inputs/Radio.js +12 -0
  31. package/lib/esm/src/components/inputs/Select.js +29 -0
  32. package/lib/esm/src/components/inputs/Textarea.js +25 -0
  33. package/lib/esm/src/components/inputs/Toggle.js +13 -0
  34. package/lib/esm/src/components/loader/Loader.js +3 -0
  35. package/lib/esm/src/components/logos/RujiraLogo.js +2 -0
  36. package/lib/esm/src/components/notices/Warning.js +10 -0
  37. package/lib/esm/src/components/numbers/Decimal.js +14 -0
  38. package/lib/esm/src/components/numbers/Fiat.js +19 -0
  39. package/lib/esm/src/components/progress/Progress.js +9 -0
  40. package/lib/esm/src/components/slider/Slider.js +5 -0
  41. package/lib/esm/src/context/Affiliate.js +34 -0
  42. package/lib/esm/src/context/GlobalModal.js +35 -0
  43. package/lib/esm/src/d.js +1 -0
  44. package/lib/esm/src/helpers/index.js +65 -0
  45. package/lib/esm/src/helpers/number.js +8 -0
  46. package/lib/esm/src/hooks/useClickOutside.js +19 -0
  47. package/lib/esm/src/hooks/useLocalStorage.js +12 -0
  48. package/lib/esm/src/hooks/useQueryParam.js +31 -0
  49. package/lib/esm/src/hooks/useWindowSize.js +19 -0
  50. package/lib/esm/src/i18n/i18n.js +90 -0
  51. package/lib/esm/src/i18n/index.js +1 -0
  52. package/lib/esm/src/index.js +38 -0
  53. package/lib/esm/src/services/account.js +42 -0
  54. package/lib/esm/tsconfig.tsbuildinfo +1 -0
  55. package/package.json +47 -0
  56. package/src/assets/ghost-tokens/akt.png +0 -0
  57. package/src/assets/ghost-tokens/ampkuji.png +0 -0
  58. package/src/assets/ghost-tokens/arb.png +0 -0
  59. package/src/assets/ghost-tokens/atom.png +0 -0
  60. package/src/assets/ghost-tokens/axlusdc.png +0 -0
  61. package/src/assets/ghost-tokens/cro.png +0 -0
  62. package/src/assets/ghost-tokens/dot.png +0 -0
  63. package/src/assets/ghost-tokens/fet.png +0 -0
  64. package/src/assets/ghost-tokens/fuzn.png +0 -0
  65. package/src/assets/ghost-tokens/glmr.png +0 -0
  66. package/src/assets/ghost-tokens/gpaxg.png +0 -0
  67. package/src/assets/ghost-tokens/inj.png +0 -0
  68. package/src/assets/ghost-tokens/juno.png +0 -0
  69. package/src/assets/ghost-tokens/kuji.png +0 -0
  70. package/src/assets/ghost-tokens/luna.png +0 -0
  71. package/src/assets/ghost-tokens/lunc.png +0 -0
  72. package/src/assets/ghost-tokens/mnta.png +0 -0
  73. package/src/assets/ghost-tokens/ntrn.png +0 -0
  74. package/src/assets/ghost-tokens/osmo.png +0 -0
  75. package/src/assets/ghost-tokens/scrt.png +0 -0
  76. package/src/assets/ghost-tokens/shd.png +0 -0
  77. package/src/assets/ghost-tokens/sol.png +0 -0
  78. package/src/assets/ghost-tokens/stars.png +0 -0
  79. package/src/assets/ghost-tokens/statom.png +0 -0
  80. package/src/assets/ghost-tokens/stosmo.png +0 -0
  81. package/src/assets/ghost-tokens/usdc.png +0 -0
  82. package/src/assets/ghost-tokens/usk.png +0 -0
  83. package/src/assets/ghost-tokens/wavax.png +0 -0
  84. package/src/assets/ghost-tokens/wbnb.png +0 -0
  85. package/src/assets/ghost-tokens/wbtc.png +0 -0
  86. package/src/assets/ghost-tokens/weth.png +0 -0
  87. package/src/assets/ghost-tokens/wftm.png +0 -0
  88. package/src/assets/ghost-tokens/wglmr.png +0 -0
  89. package/src/assets/ghost-tokens/wmatic.png +0 -0
  90. package/src/assets/mono.woff +0 -0
  91. package/src/assets/tokens/acre.png +0 -0
  92. package/src/assets/tokens/akt.png +0 -0
  93. package/src/assets/tokens/amber.png +0 -0
  94. package/src/assets/tokens/ampkuji.png +0 -0
  95. package/src/assets/tokens/ampluna.png +0 -0
  96. package/src/assets/tokens/ampmnta.png +0 -0
  97. package/src/assets/tokens/ampwhale.png +0 -0
  98. package/src/assets/tokens/andr.png +0 -0
  99. package/src/assets/tokens/aqla.png +0 -0
  100. package/src/assets/tokens/aqua.png +0 -0
  101. package/src/assets/tokens/arb.png +0 -0
  102. package/src/assets/tokens/arch.png +0 -0
  103. package/src/assets/tokens/astro.png +0 -0
  104. package/src/assets/tokens/atom.png +0 -0
  105. package/src/assets/tokens/auto.png +0 -0
  106. package/src/assets/tokens/avax.png +0 -0
  107. package/src/assets/tokens/axl.png +0 -0
  108. package/src/assets/tokens/axlusdc.png +0 -0
  109. package/src/assets/tokens/axlusdt.png +0 -0
  110. package/src/assets/tokens/bad.png +0 -0
  111. package/src/assets/tokens/bch.png +0 -0
  112. package/src/assets/tokens/bfit.png +0 -0
  113. package/src/assets/tokens/bnb.png +0 -0
  114. package/src/assets/tokens/btc.png +0 -0
  115. package/src/assets/tokens/cheq.png +0 -0
  116. package/src/assets/tokens/cmdx.png +0 -0
  117. package/src/assets/tokens/cmst.png +0 -0
  118. package/src/assets/tokens/cnto.png +0 -0
  119. package/src/assets/tokens/core.png +0 -0
  120. package/src/assets/tokens/crbrus.png +0 -0
  121. package/src/assets/tokens/cre.png +0 -0
  122. package/src/assets/tokens/cro.png +0 -0
  123. package/src/assets/tokens/cub.png +0 -0
  124. package/src/assets/tokens/dai.png +0 -0
  125. package/src/assets/tokens/default.png +0 -0
  126. package/src/assets/tokens/doge.png +0 -0
  127. package/src/assets/tokens/dot.png +0 -0
  128. package/src/assets/tokens/dvpn.png +0 -0
  129. package/src/assets/tokens/dydx.png +0 -0
  130. package/src/assets/tokens/dym.png +0 -0
  131. package/src/assets/tokens/eth.png +0 -0
  132. package/src/assets/tokens/evmos.png +0 -0
  133. package/src/assets/tokens/flix.png +0 -0
  134. package/src/assets/tokens/frnz.png +0 -0
  135. package/src/assets/tokens/fury.legacy.png +0 -0
  136. package/src/assets/tokens/fury.png +0 -0
  137. package/src/assets/tokens/fuzn.png +0 -0
  138. package/src/assets/tokens/glmr.png +0 -0
  139. package/src/assets/tokens/glto.png +0 -0
  140. package/src/assets/tokens/gpaxg.png +0 -0
  141. package/src/assets/tokens/grav.png +0 -0
  142. package/src/assets/tokens/inj.png +0 -0
  143. package/src/assets/tokens/jkl.png +0 -0
  144. package/src/assets/tokens/juno.png +0 -0
  145. package/src/assets/tokens/kart.png +0 -0
  146. package/src/assets/tokens/kuji.png +0 -0
  147. package/src/assets/tokens/kune.png +0 -0
  148. package/src/assets/tokens/link.png +0 -0
  149. package/src/assets/tokens/loop.png +0 -0
  150. package/src/assets/tokens/ltc.png +0 -0
  151. package/src/assets/tokens/luna.png +0 -0
  152. package/src/assets/tokens/lunc.png +0 -0
  153. package/src/assets/tokens/lvn.png +0 -0
  154. package/src/assets/tokens/mars.png +0 -0
  155. package/src/assets/tokens/mnta.png +0 -0
  156. package/src/assets/tokens/mntl.png +0 -0
  157. package/src/assets/tokens/nami.png +0 -0
  158. package/src/assets/tokens/nausd.png +0 -0
  159. package/src/assets/tokens/nbtc.png +0 -0
  160. package/src/assets/tokens/neok.png +0 -0
  161. package/src/assets/tokens/newt.png +0 -0
  162. package/src/assets/tokens/nstk.png +0 -0
  163. package/src/assets/tokens/ntrn.png +0 -0
  164. package/src/assets/tokens/odin.png +0 -0
  165. package/src/assets/tokens/osmo.png +0 -0
  166. package/src/assets/tokens/pepe.png +0 -0
  167. package/src/assets/tokens/plnk.png +0 -0
  168. package/src/assets/tokens/plq.png +0 -0
  169. package/src/assets/tokens/qcaqla.png +0 -0
  170. package/src/assets/tokens/qcatom.png +0 -0
  171. package/src/assets/tokens/qcfuzn.png +0 -0
  172. package/src/assets/tokens/qckuji.png +0 -0
  173. package/src/assets/tokens/qcmnta.png +0 -0
  174. package/src/assets/tokens/rac.legacy.png +0 -0
  175. package/src/assets/tokens/rac.png +0 -0
  176. package/src/assets/tokens/ratom.png +0 -0
  177. package/src/assets/tokens/regen.png +0 -0
  178. package/src/assets/tokens/rfuzn.png +0 -0
  179. package/src/assets/tokens/rio.png +0 -0
  180. package/src/assets/tokens/rkuji.png +0 -0
  181. package/src/assets/tokens/roar.png +0 -0
  182. package/src/assets/tokens/ruji.png +0 -0
  183. package/src/assets/tokens/rune.png +0 -0
  184. package/src/assets/tokens/sayve.png +0 -0
  185. package/src/assets/tokens/scrt.png +0 -0
  186. package/src/assets/tokens/shd.legacy.png +0 -0
  187. package/src/assets/tokens/shd.png +0 -0
  188. package/src/assets/tokens/silk.png +0 -0
  189. package/src/assets/tokens/sol.png +0 -0
  190. package/src/assets/tokens/somm.png +0 -0
  191. package/src/assets/tokens/stars.png +0 -0
  192. package/src/assets/tokens/statom.png +0 -0
  193. package/src/assets/tokens/stinj.png +0 -0
  194. package/src/assets/tokens/stluna.png +0 -0
  195. package/src/assets/tokens/stosmo.png +0 -0
  196. package/src/assets/tokens/strd.png +0 -0
  197. package/src/assets/tokens/swth.png +0 -0
  198. package/src/assets/tokens/tia.png +0 -0
  199. package/src/assets/tokens/tori.png +0 -0
  200. package/src/assets/tokens/umee.png +0 -0
  201. package/src/assets/tokens/uni.png +0 -0
  202. package/src/assets/tokens/usdc.png +0 -0
  203. package/src/assets/tokens/usk.png +0 -0
  204. package/src/assets/tokens/usk_black.png +0 -0
  205. package/src/assets/tokens/ustc.png +0 -0
  206. package/src/assets/tokens/wavax.png +0 -0
  207. package/src/assets/tokens/wbtc.png +0 -0
  208. package/src/assets/tokens/wftm.png +0 -0
  209. package/src/assets/tokens/whale.png +0 -0
  210. package/src/assets/tokens/whlocal.png +0 -0
  211. package/src/assets/tokens/wink.png +0 -0
  212. package/src/assets/tokens/wmatic.png +0 -0
  213. package/src/assets/tokens/wsteth.png +0 -0
  214. package/src/assets/tokens/wtao.png +0 -0
  215. package/src/assets/tokens/xastro.png +0 -0
  216. package/src/assets/tokens/yieldeth.png +0 -0
  217. package/src/assets/tokens/yum.png +0 -0
  218. package/src/components/buttons/Button.tsx +80 -0
  219. package/src/components/buttons/Popout.tsx +74 -0
  220. package/src/components/buttons/TxButton.tsx +103 -0
  221. package/src/components/buttons/__Popout.tsx +56 -0
  222. package/src/components/cards/Card.tsx +17 -0
  223. package/src/components/cards/GradientCard.tsx +17 -0
  224. package/src/components/footer/Footer.tsx +117 -0
  225. package/src/components/header/Accounts.tsx +1021 -0
  226. package/src/components/header/Header.tsx +745 -0
  227. package/src/components/header/QuickLauncher.tsx +67 -0
  228. package/src/components/header/ResolveLink.tsx +81 -0
  229. package/src/components/icons/IconDenom.tsx +400 -0
  230. package/src/components/icons/Icons.tsx +686 -0
  231. package/src/components/icons/Networks.tsx +687 -0
  232. package/src/components/icons/Wallets.tsx +947 -0
  233. package/src/components/inputs/Checkbox.tsx +35 -0
  234. package/src/components/inputs/DecimalInput.tsx +72 -0
  235. package/src/components/inputs/DenomInput.tsx +65 -0
  236. package/src/components/inputs/DenomSelect.tsx +178 -0
  237. package/src/components/inputs/Input.tsx +66 -0
  238. package/src/components/inputs/Numeric.tsx +49 -0
  239. package/src/components/inputs/Radio.tsx +33 -0
  240. package/src/components/inputs/Select.tsx +69 -0
  241. package/src/components/inputs/Textarea.tsx +65 -0
  242. package/src/components/inputs/Toggle.tsx +38 -0
  243. package/src/components/loader/Loader.tsx +103 -0
  244. package/src/components/logos/RujiraLogo.tsx +83 -0
  245. package/src/components/notices/Warning.tsx +42 -0
  246. package/src/components/numbers/Decimal.tsx +43 -0
  247. package/src/components/numbers/Fiat.tsx +56 -0
  248. package/src/components/progress/Progress.tsx +40 -0
  249. package/src/components/slider/Slider.tsx +12 -0
  250. package/src/context/Affiliate.tsx +65 -0
  251. package/src/context/GlobalModal.tsx +115 -0
  252. package/src/d.ts +4 -0
  253. package/src/helpers/index.ts +73 -0
  254. package/src/helpers/number.ts +12 -0
  255. package/src/hooks/useClickOutside.ts +27 -0
  256. package/src/hooks/useLocalStorage.ts +20 -0
  257. package/src/hooks/useQueryParam.ts +46 -0
  258. package/src/hooks/useWindowSize.ts +26 -0
  259. package/src/i18n/i18n.tsx +102 -0
  260. package/src/i18n/index.ts +1 -0
  261. package/src/index.ts +54 -0
  262. package/src/scss/base/_colors.scss +23 -0
  263. package/src/scss/base/_display.scss +85 -0
  264. package/src/scss/base/_filters.scss +20 -0
  265. package/src/scss/base/_flex.scss +612 -0
  266. package/src/scss/base/_important.scss +3 -0
  267. package/src/scss/base/_normalize.scss +351 -0
  268. package/src/scss/base/_spacing.scss +290 -0
  269. package/src/scss/base/_tooltip.scss +9 -0
  270. package/src/scss/base/_typography.scss +279 -0
  271. package/src/scss/base/_variables.scss +72 -0
  272. package/src/scss/components/_button-group.scss +61 -0
  273. package/src/scss/components/_button.scss +459 -0
  274. package/src/scss/components/_decimal.scss +40 -0
  275. package/src/scss/components/_denom-select.scss +270 -0
  276. package/src/scss/components/_fiat.scss +34 -0
  277. package/src/scss/components/_footer.scss +27 -0
  278. package/src/scss/components/_header.scss +665 -0
  279. package/src/scss/components/_input.scss +82 -0
  280. package/src/scss/components/_loader.scss +20 -0
  281. package/src/scss/components/_modal.scss +138 -0
  282. package/src/scss/components/_numeric-input.scss +98 -0
  283. package/src/scss/components/_popout.scss +63 -0
  284. package/src/scss/components/_progress.scss +62 -0
  285. package/src/scss/components/_radio-checkbox.scss +79 -0
  286. package/src/scss/components/_select.scss +106 -0
  287. package/src/scss/components/_slider.scss +34 -0
  288. package/src/scss/components/_toggle.scss +120 -0
  289. package/src/scss/components/_warning.scss +65 -0
  290. package/src/scss/index.scss +37 -0
  291. package/src/scss/styledcomponents/_card.scss +130 -0
  292. package/src/scss/styledcomponents/_drawer.scss +36 -0
  293. package/src/scss/styledcomponents/_general.scss +20 -0
  294. package/src/scss/styledcomponents/_table.scss +302 -0
  295. package/src/scss/styledcomponents/_tabs.scss +97 -0
  296. package/src/scss/styledcomponents/_tag.scss +155 -0
  297. package/src/scss/unsorted/_general.scss +259 -0
  298. package/src/services/account.ts +53 -0
  299. package/tsconfig.json +25 -0
  300. package/tsconfig.node.json +11 -0
  301. package/vite.config.ts +7 -0
  302. package/vitest-setup.js +1 -0
  303. package/vitest.config.js +13 -0
@@ -0,0 +1,686 @@
1
+ import { SVGProps, memo } from "react";
2
+
3
+ type Props = {
4
+ d: string;
5
+ } & SVGProps<SVGSVGElement>;
6
+
7
+ const SVG = ({ d, ...rest }: Props) => (
8
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640" {...rest}>
9
+ <path fill="currentColor" fillRule="nonzero" d={d} />
10
+ </svg>
11
+ );
12
+
13
+ const _AngleDown = (props: SVGProps<SVGSVGElement>) => (
14
+ <SVG
15
+ {...props}
16
+ d="M331.25 427.25c-6.2 6.2-16.4 6.2-22.6 0l-192-192c-6.2-6.2-6.2-16.4 0-22.6 6.2-6.2 16.4-6.2 22.6 0l180.7 180.7 180.7-180.7c6.2-6.2 16.4-6.2 22.6 0 6.2 6.2 6.2 16.4 0 22.6l-192 192Z"
17
+ />
18
+ );
19
+ export const AngleDown = memo(_AngleDown);
20
+ AngleDown.displayName = "AngleDown";
21
+
22
+ const _AngleLeft = (props: SVGProps<SVGSVGElement>) => (
23
+ <SVG
24
+ {...props}
25
+ d="M212.65 331.25c-6.2-6.2-6.2-16.4 0-22.6l192-192c6.2-6.2 16.4-6.2 22.6 0 6.2 6.2 6.2 16.4 0 22.6l-180.7 180.7 180.7 180.7c6.2 6.2 6.2 16.4 0 22.6-6.2 6.2-16.4 6.2-22.6 0l-192-192Z"
26
+ />
27
+ );
28
+ export const AngleLeft = memo(_AngleLeft);
29
+ AngleLeft.displayName = "AngleLeft";
30
+
31
+ const _AngleRight = (props: SVGProps<SVGSVGElement>) => (
32
+ <SVG
33
+ {...props}
34
+ d="M427.25 308.65c6.2 6.2 6.2 16.4 0 22.6l-192 192c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6l180.7-180.7-180.7-180.7c-6.2-6.2-6.2-16.4 0-22.6 6.2-6.2 16.4-6.2 22.6 0l192 192Z"
35
+ />
36
+ );
37
+ export const AngleRight = memo(_AngleRight);
38
+ AngleRight.displayName = "AngleRight";
39
+
40
+ const _AngleUp = (props: SVGProps<SVGSVGElement>) => (
41
+ <SVG
42
+ {...props}
43
+ d="M308.65 212.65c6.2-6.2 16.4-6.2 22.6 0l192 192c6.2 6.2 6.2 16.4 0 22.6-6.2 6.2-16.4 6.2-22.6 0l-180.7-180.7-180.7 180.7c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6l192-192Z"
44
+ />
45
+ );
46
+ export const AngleUp = memo(_AngleUp);
47
+ AngleUp.displayName = "AngleUp";
48
+
49
+ const _AngleUpDown = (props: SVGProps<SVGSVGElement>) => (
50
+ <SVG
51
+ {...props}
52
+ d="M123.25,4.7 C117.05,-1.5 106.85,-1.5 100.65,4.7 L4.65,100.7 C-1.55,106.9 -1.55,117.1 4.65,123.3 C10.85,129.5 21.05,129.5 27.25,123.3 L95.95,54.6 L95.95,432 C95.95,440.8 103.15,448 111.95,448 C120.75,448 127.95,440.8 127.95,432 L127.95,54.6 L196.65,123.3 C202.85,129.5 213.05,129.5 219.25,123.3 C225.45,117.1 225.45,106.9 219.25,100.7 L123.25,4.7 Z M475.25,347.3 C481.45,341.1 481.45,330.9 475.25,324.7 C469.05,318.5 458.85,318.5 452.65,324.7 L383.95,393.4 L383.95,16 C383.95,7.2 376.75,0 367.95,0 C359.15,0 351.95,7.2 351.95,16 L351.95,393.4 L283.25,324.7 C277.05,318.5 266.85,318.5 260.65,324.7 C254.45,330.9 254.45,341.1 260.65,347.3 L356.65,443.3 C362.85,449.5 373.05,449.5 379.25,443.3 L475.25,347.3 Z"
53
+ />
54
+ );
55
+ export const AngleUpDown = memo(_AngleUpDown);
56
+ AngleUpDown.displayName = "AngleUpDown";
57
+
58
+ const _ArrowDown = (props: SVGProps<SVGSVGElement>) => (
59
+ <SVG
60
+ {...props}
61
+ d="M308.65 539.3c6.2 6.2 16.4 6.2 22.6 0l176-176c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0l-148.7 148.7V112c0-8.8-7.2-16-16-16s-16 7.2-16 16v377.4l-148.7-148.7c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l176 176Z"
62
+ />
63
+ );
64
+ export const ArrowDown = memo(_ArrowDown);
65
+ ArrowDown.displayName = "ArrowDown";
66
+
67
+ const _ArrowLeft = (props: SVGProps<SVGSVGElement>) => (
68
+ <SVG
69
+ {...props}
70
+ d="M100.65 308.65c-6.2 6.2-6.2 16.4 0 22.6l176 176c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6l-148.7-148.7h377.4c8.8 0 16-7.2 16-16s-7.2-16-16-16h-377.4l148.7-148.7c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0l-176 176Z"
71
+ />
72
+ );
73
+ export const ArrowLeft = memo(_ArrowLeft);
74
+ ArrowLeft.displayName = "ArrowLeft";
75
+
76
+ const _ArrowRightLeft = (props: SVGProps<SVGSVGElement>) => (
77
+ <SVG
78
+ {...props}
79
+ d="M539.3 203.25c6.2-6.2 6.2-16.4 0-22.6l-96-96c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l68.7 68.7H112c-8.8 0-16 7.2-16 16s7.2 16 16 16h377.4l-68.7 68.7c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l96-96Zm-342.6 352c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6l-68.7-68.7H528c8.8 0 16-7.2 16-16s-7.2-16-16-16H150.6l68.7-68.7c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0l-96 96c-6.2 6.2-6.2 16.4 0 22.6l96 96Z"
80
+ />
81
+ );
82
+ export const ArrowRightLeft = memo(_ArrowRightLeft);
83
+ ArrowRightLeft.displayName = "ArrowRightLeft";
84
+
85
+ const _ArrowRight = (props: SVGProps<SVGSVGElement>) => (
86
+ <SVG
87
+ {...props}
88
+ d="M539.3 331.25c6.2-6.2 6.2-16.4 0-22.6l-176-176c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l148.7 148.7H112c-8.8 0-16 7.2-16 16s7.2 16 16 16h377.4l-148.7 148.7c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l176-176Z"
89
+ />
90
+ );
91
+ export const ArrowRight = memo(_ArrowRight);
92
+ ArrowRight.displayName = "ArrowRight";
93
+
94
+ const _ArrowUp = (props: SVGProps<SVGSVGElement>) => (
95
+ <SVG
96
+ {...props}
97
+ d="M331.25 100.65c-6.2-6.2-16.4-6.2-22.6 0l-176 176c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l148.7-148.7v377.4c0 8.8 7.2 16 16 16s16-7.2 16-16v-377.4l148.7 148.7c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6l-176-176Z"
98
+ />
99
+ );
100
+ export const ArrowUp = memo(_ArrowUp);
101
+ ArrowUp.displayName = "ArrowUp";
102
+
103
+ const _ArrowUpRight = (props: SVGProps<SVGSVGElement>) => (
104
+ <SVG
105
+ {...props}
106
+ d="M463.95 160c8.8 0 16 7.2 16 16v224c0 8.8-7.2 16-16 16s-16-7.2-16-16V214.6l-260.7 260.7c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6L425.35 192h-185.4c-8.8 0-16-7.2-16-16s7.2-16 16-16h224Z"
107
+ />
108
+ );
109
+ export const ArrowUpRight = memo(_ArrowUpRight);
110
+ ArrowUpRight.displayName = "ArrowUpRight";
111
+
112
+ const _Book = (props: SVGProps<SVGSVGElement>) => (
113
+ <SVG
114
+ {...props}
115
+ d="M101 128c0-35.3 28.7-64 64-64h336c26.5 0 48 21.5 48 48v320c0 20.9-13.4 38.7-32 45.3V544h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H165c-35.3 0-64-28.7-64-64V128Zm64 352c-17.7 0-32 14.3-32 32s14.3 32 32 32h320v-64H165Zm-32-23.4c9.4-5.4 20.3-8.6 32-8.6h32V96h-32c-17.7 0-32 14.3-32 32v328.6ZM229 96v352h272c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H229Z"
116
+ />
117
+ );
118
+ export const Book = memo(_Book);
119
+ Book.displayName = "Book";
120
+
121
+ const _Bolt = (props: SVGProps<SVGSVGElement>) => (
122
+ <SVG
123
+ {...props}
124
+ d="M402.8 70.3c4.6-4.1 10.5-6.3 16.6-6.3 17.2 0 29.2 17.1 23.4 33.3L374.7 288H485c14.9 0 27 12.1 27 27 0 7.8-3.3 15.1-9.1 20.3L237.1 569.8c-4.5 4-10.4 6.2-16.5 6.2-17.2 0-29.2-17.1-23.5-33.3L265.3 352H153.8c-14.2 0-25.8-11.6-25.8-25.8 0-7.4 3.2-14.4 8.7-19.3L402.8 70.3Zm.5 42.4L170.1 320H288c5.2 0 10.1 2.5 13.1 6.8s3.7 9.7 2 14.6l-66.5 186.2L471.8 320H352c-5.2 0-10.1-2.5-13.1-6.8s-3.7-9.7-2-14.6l66.4-186v.1Z"
125
+ />
126
+ );
127
+ export const Bolt = memo(_Bolt);
128
+ Bolt.displayName = "Bolt";
129
+
130
+ const _Building = (props: SVGProps<SVGSVGElement>) => (
131
+ <SVG
132
+ {...props}
133
+ d="M327.9 66.1c-4.9-2.8-10.9-2.8-15.8 0L79.8 197.7C70 203.3 64 213.6 64 224.8 64 242 78 256 95.2 256h449.6c17.2 0 31.2-14 31.2-31.2 0-11.2-6-21.6-15.8-27.1L327.9 66.1ZM370.6 224c3.5-7.3 5.4-15.4 5.4-24 0-30.9-25.1-56-56-56s-56 25.1-56 56c0 8.6 1.9 16.7 5.4 24H98.3L320 98.4 541.7 224H370.6ZM320 176c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24ZM128 416c-8.8 0-16 7.2-16 16s7.2 16 16 16h384c8.8 0 16-7.2 16-16s-7.2-16-16-16V288h-32v128h-80V288h-32v128h-96V288h-32v128h-80V288h-32v128Zm-24 64c-8.8 0-16 7.2-16 16s7.2 16 16 16h432c8.8 0 16-7.2 16-16s-7.2-16-16-16H104Zm-24 64c-8.8 0-16 7.2-16 16s7.2 16 16 16h480c8.8 0 16-7.2 16-16s-7.2-16-16-16H80Z"
134
+ />
135
+ );
136
+ export const Building = memo(_Building);
137
+ Building.displayName = "Building";
138
+
139
+ const _ChartUpDown = (props: SVGProps<SVGSVGElement>) => (
140
+ <SVG
141
+ {...props}
142
+ d="M96 112c0-8.8-7.2-16-16-16s-16 7.2-16 16v352c0 44.2 35.8 80 80 80h416c8.8 0 16-7.2 16-16s-7.2-16-16-16H144c-26.5 0-48-21.5-48-48V112Zm336 48h57.4L352 297.4l-68.7-68.7c-3-3-7.1-4.7-11.3-4.7-4.2 0-8.3 1.7-11.3 4.7l-96 96c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l84.7-84.7 68.7 68.7c6.2 6.2 16.4 6.2 22.6 0L512 182.6V240c0 8.8 7.2 16 16 16s16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16Zm0 288h96c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16s-16 7.2-16 16v57.4l-68.7-68.7-22.6 22.6 68.7 68.7H432c-8.8 0-16 7.2-16 16s7.2 16 16 16Z"
143
+ />
144
+ );
145
+ export const ChartUpDown = memo(_ChartUpDown);
146
+ ChartUpDown.displayName = "ChartUpDown";
147
+
148
+ const _ChartUp = (props: SVGProps<SVGSVGElement>) => (
149
+ <SVG
150
+ {...props}
151
+ d="M96 112c0-8.8-7.2-16-16-16s-16 7.2-16 16v352c0 44.2 35.8 80 80 80h416c8.8 0 16-7.2 16-16s-7.2-16-16-16H144c-26.5 0-48-21.5-48-48V112Zm288 96c0 8.8 7.2 16 16 16h89.4L384 329.4l-84.7-84.7c-6.2-6.2-16.4-6.2-22.6 0l-112 112c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0L288 278.6l84.7 84.7c6.2 6.2 16.4 6.2 22.6 0L512 246.6V336c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16H400c-8.8 0-16 7.2-16 16Z"
152
+ />
153
+ );
154
+ export const ChartUp = memo(_ChartUp);
155
+ ChartUp.displayName = "ChartUp";
156
+
157
+ const _Chart = (props: SVGProps<SVGSVGElement>) => (
158
+ <SVG
159
+ {...props}
160
+ d="M96 112c0-8.8-7.2-16-16-16s-16 7.2-16 16v352c0 44.2 35.8 80 80 80h416c8.8 0 16-7.2 16-16s-7.2-16-16-16H144c-26.5 0-48-21.5-48-48V112Zm288 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v48.8c-18.3 3.7-32 19.8-32 39.2v80c0 19.4 13.8 35.5 32 39.2V368c0 8.8 7.2 16 16 16s16-7.2 16-16v-48.8c18.3-3.7 32-19.8 32-39.2v-80c0-19.4-13.8-35.5-32-39.2V112Zm-144 16c-8.8 0-16 7.2-16 16v48.8c-18.3 3.7-32 19.8-32 39.2v112c0 19.4 13.8 35.5 32 39.2V432c0 8.8 7.2 16 16 16s16-7.2 16-16v-48.8c18.3-3.7 32-19.8 32-39.2V232c0-19.4-13.8-35.5-32-39.2V144c0-8.8-7.2-16-16-16Zm144 72v80c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8v-80c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8Zm104 88h16c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8Zm-8-32v.8c-18.3 3.7-32 19.8-32 39.2v48c0 19.4 13.8 35.5 32 39.2V432c0 8.8 7.2 16 16 16s16-7.2 16-16v-48.8c18.3-3.7 32-19.8 32-39.2v-48c0-19.4-13.8-35.5-32-39.2V208c0-8.8-7.2-16-16-16s-16 7.2-16 16v48Zm-232-32c4.4 0 8 3.6 8 8v112c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V232c0-4.4 3.6-8 8-8h16Z"
161
+ />
162
+ );
163
+ export const Chart = memo(_Chart);
164
+ Chart.displayName = "Chart";
165
+
166
+ const _Check = (props: SVGProps<SVGSVGElement>) => (
167
+ <SVG
168
+ {...props}
169
+ d="M539.25 172.65c6.2 6.2 6.2 16.4 0 22.6l-272 272c-6.2 6.2-16.4 6.2-22.6 0l-144-144c-6.2-6.2-6.2-16.4 0-22.6 6.2-6.2 16.4-6.2 22.6 0l132.7 132.7 260.7-260.7c6.2-6.2 16.4-6.2 22.6 0Z"
170
+ />
171
+ );
172
+ export const Check = memo(_Check);
173
+ Check.displayName = "Check";
174
+
175
+ const _CircleUser = (props: SVGProps<SVGSVGElement>) => (
176
+ <SVG
177
+ {...props}
178
+ d="M476.1 480.6c-14-55.5-64.2-96.6-124.1-96.6h-64c-59.9 0-110.1 41.1-124.1 96.6C122 439.9 96 383 96 320 96 196.3 196.3 96 320 96s224 100.3 224 224c0 63-26 119.9-67.9 160.6ZM447.6 504c-36.1 25.2-80.1 40-127.6 40s-91.5-14.8-127.7-39.9c4-49.3 45.3-88.1 95.7-88.1h64c50.4 0 91.6 38.8 95.7 88.1l-.1-.1ZM320 576c141.385 0 256-114.615 256-256S461.385 64 320 64 64 178.615 64 320s114.615 256 256 256Zm0-256c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48Zm-80-48c0 44.183 35.817 80 80 80s80-35.817 80-80-35.817-80-80-80-80 35.817-80 80Z"
179
+ />
180
+ );
181
+ export const CircleUser = memo(_CircleUser);
182
+ CircleUser.displayName = "CircleUser";
183
+
184
+ const _Copy = (props: SVGProps<SVGSVGElement>) => (
185
+ <SVG
186
+ {...props}
187
+ d="M128 544h224c17.7 0 32-14.3 32-32v-64h32v64c0 35.3-28.7 64-64 64H128c-35.3 0-64-28.7-64-64V288c0-35.3 28.7-64 64-64h64v32h-64c-17.7 0-32 14.3-32 32v224c0 17.7 14.3 32 32 32Zm160-160h224c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H288c-17.7 0-32 14.3-32 32v224c0 17.7 14.3 32 32 32Zm-64-32V128c0-35.3 28.7-64 64-64h224c35.3 0 64 28.7 64 64v224c0 35.3-28.7 64-64 64H288c-35.3 0-64-28.7-64-64Z"
188
+ />
189
+ );
190
+ export const Copy = memo(_Copy);
191
+ Copy.displayName = "Copy";
192
+
193
+ const _Deposit = (props: SVGProps<SVGSVGElement>) => (
194
+ <SVG
195
+ {...props}
196
+ d="M320 96c62.879 0 120.981 33.545 152.42 88 31.44 54.455 31.44 121.545 0 176-31.439 54.455-89.541 88-152.42 88-62.879 0-120.981-33.545-152.42-88-31.44-54.455-31.44-121.545 0-176C199.019 129.545 257.12 96 320 96Zm0 384c114.875 0 208-93.125 208-208S434.875 64 320 64s-208 93.125-208 208 93.125 208 208 208Zm-192-64h-8c-30.9 0-56 25.1-56 56v48c0 30.9 25.1 56 56 56h400c30.9 0 56-25.1 56-56v-48c0-30.9-25.1-56-56-56h-8c-8.6 11.5-18.3 22.2-28.8 32H520c13.3 0 24 10.7 24 24v48c0 13.3-10.7 24-24 24H120c-13.3 0-24-10.7-24-24v-48c0-13.3 10.7-24 24-24h36.8c-10.5-9.8-20.2-20.5-28.8-32Zm208-248c0-8.8-7.2-16-16-16s-16 7.2-16 16v17.3c-8.3 1.5-16.7 4.3-24.1 8.7-13 7.7-23.9 21.1-23.8 40.5.1 18.4 10.8 30.1 22.7 37.3 10.5 6.3 23.8 10.4 34.8 13.7l1.6.5c12.5 3.8 22.2 6.9 29 11.2 5.9 3.7 7.7 7 7.7 11.6.1 6.6-2.7 10.8-7.8 14-5.8 3.6-14.5 5.6-23.7 5.3-11.8-.4-22.7-4.1-36.3-8.7-2.3-.8-4.7-1.6-7.1-2.4-8.4-2.8-17.4 1.7-20.2 10.1-2.8 8.4 1.7 17.4 10.1 20.2 2 .7 4.1 1.4 6.2 2.1 9.2 3.2 19.7 6.8 30.9 8.9V376c0 8.8 7.2 16 16 16s16-7.2 16-16v-17.1c8.7-1.4 17.4-4.3 25.1-9.1 13.3-8.3 23.2-22.2 22.9-41.6-.2-18.5-10.6-30.6-22.7-38.2-11-6.9-25-11.2-36.3-14.6l-.5-.1c-12.6-3.8-22.3-6.8-29.2-10.9-6-3.6-7.2-6.4-7.3-10.1 0-5.4 2.4-9.4 8.1-12.8 6.2-3.7 15.1-5.7 23.6-5.5 10.1.2 21 2.3 32.1 5.3 8.5 2.3 17.3-2.8 19.6-11.3 2.3-8.5-2.8-17.3-11.3-19.6-7.5-2-15.6-3.9-24.1-5.1V168Z"
197
+ />
198
+ );
199
+ export const Deposit = memo(_Deposit);
200
+ Deposit.displayName = "Deposit";
201
+
202
+ const _Discord = (props: SVGProps<SVGSVGElement>) => (
203
+ <SVG
204
+ {...props}
205
+ d="M524.53 133.837a1.5 1.5 0 0 0-.763-.7A485.065 485.065 0 0 0 404.08 96.03a1.816 1.816 0 0 0-1.923.91 337.461 337.461 0 0 0-14.9 30.6 447.848 447.848 0 0 0-134.426 0 309.54 309.54 0 0 0-15.135-30.6 1.89 1.89 0 0 0-1.924-.91 483.689 483.689 0 0 0-119.688 37.107 1.712 1.712 0 0 0-.788.676C39.067 247.652 18.186 358.69 28.43 468.354c.058.544.334 1.04.765 1.376a487.666 487.666 0 0 0 146.825 74.189 1.9 1.9 0 0 0 2.063-.676A348.2 348.2 0 0 0 208.12 494.4a1.86 1.86 0 0 0-1.02-2.588 321.173 321.173 0 0 1-45.867-21.853 1.885 1.885 0 0 1-.185-3.126 251.047 251.047 0 0 0 9.109-7.137 1.819 1.819 0 0 1 1.9-.256c96.229 43.917 200.41 43.917 295.5 0 .632-.301 1.381-.21 1.924.233a234.533 234.533 0 0 0 9.132 7.16 1.884 1.884 0 0 1-.162 3.126 301.407 301.407 0 0 1-45.89 21.83 1.875 1.875 0 0 0-1 2.61 391.055 391.055 0 0 0 30.014 48.816 1.864 1.864 0 0 0 2.063.7A486.048 486.048 0 0 0 610.7 469.73c.438-.32.716-.813.765-1.352 12.264-126.783-20.532-236.912-86.934-334.541ZM222.49 401.58c-28.971 0-52.843-26.587-52.843-59.24 0-32.651 23.409-59.24 52.844-59.24 29.665 0 53.306 26.82 52.843 59.239 0 32.654-23.41 59.24-52.843 59.24Zm195.38 0c-28.97 0-52.842-26.587-52.842-59.24 0-32.651 23.409-59.24 52.843-59.24 29.667 0 53.307 26.82 52.844 59.239 0 32.654-23.177 59.24-52.844 59.24Z"
206
+ />
207
+ );
208
+ export const Discord = memo(_Discord);
209
+ Discord.displayName = "Discord";
210
+
211
+ const _Earth = (props: SVGProps<SVGSVGElement>) => (
212
+ <SVG
213
+ {...props}
214
+ d="M320 544C196.3 544 96 443.7 96 320c0-11.8.9-23.3 2.7-34.6l3 6.7c9.3 21 27.3 37 49.2 43.9l63 19.7c15.5 4.9 26.1 19.2 26.1 35.5v15c0 17 9.6 32.6 24.8 40.2 4.4 2.2 7.2 6.7 7.2 11.6v22.7c0 26.2 21.2 47.4 47.4 47.4 21.8 0 40.7-14.8 46-35.9l4.4-17.6c2.6-10.2 9.2-19 18.3-24.2l11.6-6.6c19.9-11.4 32.2-32.6 32.2-55.6v-8.3c0-17-6.7-33.3-18.7-45.3l-3.9-3.9c-12-12-28.3-18.7-45.3-18.7h-48.7c-5 0-9.9-1.2-14.3-3.4l-45.9-22.9c-2.1-1-3.8-2.7-4.8-4.8l-.7-1.4c-2.3-4.6-.4-10.2 4.2-12.5 2.2-1.1 4.8-1.3 7.1-.5l24.2 8.1c15 5 31.5-.7 40.3-13.8 8.6-12.9 7.7-30-2.2-41.9l-17.9-21.5c-2.5-3-2.5-7.4.1-10.3l20.1-23.5c13.2-15.4 15.3-37.4 5.2-55.1L323.6 96c77.5 1.2 145.4 41.8 184.7 102.6l-38.2 15.3c-23.6 9.4-35.7 35.6-27.7 59.7l16.9 50.7c5.2 15.6 18 27.4 33.9 31.4l45.8 11.5C517.3 468.3 427.5 544 320 544ZM112 236.7c29.3-73 95.8-127 176-138.4l14.9 26.1c3.4 5.9 2.7 13.2-1.7 18.4l-20.1 23.5c-12.7 14.8-12.9 36.6-.4 51.6l17.9 21.5c.9 1.1 1 2.6.2 3.7-.8 1.2-2.2 1.7-3.6 1.2l-24.2-8.2c-10.4-3.5-21.7-2.7-31.5 2.2-20.4 10.2-28.7 35-18.5 55.4l.7 1.4c4.1 8.3 10.9 15 19.2 19.2l45.9 22.9c8.9 4.4 18.7 6.8 28.6 6.8h48.8c8.5 0 16.6 3.4 22.6 9.4l3.9 3.9c6 6 9.4 14.1 9.4 22.6v8.3c0 11.5-6.2 22.1-16.1 27.8l-11.6 6.6c-16.7 9.6-28.8 25.5-33.5 44.2l-4.4 17.6c-1.7 6.9-7.9 11.7-15 11.7-8.5 0-15.4-6.9-15.4-15.4v-22.8c0-17-9.6-32.6-24.8-40.2-4.4-2.2-7.2-6.7-7.2-11.6v-15c0-30.3-19.7-57-48.6-66.1l-63-19.7c-13.2-4.1-23.9-13.7-29.5-26.3l-19-42.3ZM544 320c0 5.2-.2 10.3-.5 15.4l-42.6-10.6c-5.3-1.3-9.6-5.3-11.3-10.5l-16.9-50.7c-2.7-8 1.4-16.8 9.2-19.9l41.8-16.7c13 28.3 20.2 59.9 20.2 93.1l.1-.1ZM320 576c141.385 0 256-114.615 256-256S461.385 64 320 64 64 178.615 64 320s114.615 256 256 256Z"
215
+ />
216
+ );
217
+ export const Earth = memo(_Earth);
218
+ Earth.displayName = "Earth";
219
+
220
+ const _Edit = (props: SVGProps<SVGSVGElement>) => (
221
+ <SVG
222
+ {...props}
223
+ d="m520.6 107.45 12.1 12.1c12.5 12.5 12.5 32.8 0 45.3l-26.7 26.7-57.4-57.4 26.7-26.7c12.5-12.5 32.8-12.5 45.3 0ZM255 327.75l171-171 57.4 57.4-171 171c-4.2 4.2-9.6 7.2-15.4 8.6l-65.6 15.1 15.1-65.7c1.3-5.8 4.3-11.2 8.6-15.4h-.1Zm197.7-243-220.3 220.4c-8.5 8.5-14.4 19.2-17.1 30.9l-20.9 90.6c-1.2 5.4.4 11 4.3 14.9 3.9 3.9 9.5 5.5 14.9 4.3l90.6-20.9c11.7-2.7 22.4-8.6 30.9-17.1l220.3-220.4c25-25 25-65.5 0-90.5l-12.1-12.2c-25-25-65.5-25-90.5 0h-.1ZM146 126.15c-44.2 0-80 35.8-80 80v288c0 44.2 35.8 80 80 80h288c44.2 0 80-35.8 80-80v-128c0-8.8-7.2-16-16-16s-16 7.2-16 16v128c0 26.5-21.5 48-48 48H146c-26.5 0-48-21.5-48-48v-288c0-26.5 21.5-48 48-48h128c8.8 0 16-7.2 16-16s-7.2-16-16-16H146Z"
224
+ />
225
+ );
226
+ export const Edit = memo(_Edit);
227
+ Edit.displayName = "Edit";
228
+
229
+ const _Ellipsis = (props: SVGProps<SVGSVGElement>) => (
230
+ <SVG
231
+ {...props}
232
+ d="M512 320c0 17.673-14.327 32-32 32-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32Zm-160 0c0 17.673-14.327 32-32 32-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32Zm-192 32c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32Z"
233
+ />
234
+ );
235
+ export const Ellipsis = memo(_Ellipsis);
236
+ Ellipsis.displayName = "Ellipsis";
237
+
238
+ const _External = (props: SVGProps<SVGSVGElement>) => (
239
+ <SVG
240
+ {...props}
241
+ d="M400 64c-8.8 0-16 7.2-16 16s7.2 16 16 16h121.4L276.7 340.7c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0L544 118.6V240c0 8.8 7.2 16 16 16s16-7.2 16-16V80c0-8.8-7.2-16-16-16H400ZM128 96c-35.3 0-64 28.7-64 64v352c0 35.3 28.7 64 64 64h352c35.3 0 64-28.7 64-64V368c0-8.8-7.2-16-16-16s-16 7.2-16 16v144c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h144c8.8 0 16-7.2 16-16s-7.2-16-16-16H128Z"
242
+ />
243
+ );
244
+ export const External = memo(_External);
245
+ External.displayName = "External";
246
+
247
+ const _ExclamationCircle = (props: SVGProps<SVGSVGElement>) => (
248
+ <SVG
249
+ {...props}
250
+ d="M320 96c123.712 0 224 100.288 224 224S443.712 544 320 544 96 443.712 96 320 196.288 96 320 96Zm0 480c141.385 0 256-114.615 256-256S461.385 64 320 64 64 178.615 64 320s114.615 256 256 256Zm0-384c-8.8 0-16 7.2-16 16v128c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16Zm24 224c0-13.255-10.745-24-24-24s-24 10.745-24 24 10.745 24 24 24 24-10.745 24-24Z"
251
+ />
252
+ );
253
+ export const ExclamationCircle = memo(_ExclamationCircle);
254
+ ExclamationCircle.displayName = "ExclamationCircle";
255
+
256
+ const _ExclamationTriangle = (props: SVGProps<SVGSVGElement>) => (
257
+ <SVG
258
+ {...props}
259
+ d="M98.5 484.4c-1.6 2.8-2.5 6-2.5 9.3 0 10.2 8.2 18.4 18.4 18.4h411.2c10.2 0 18.4-8.2 18.4-18.4 0-3.3-.9-6.4-2.5-9.3l-201-344.6c-4.3-7.3-12.1-11.8-20.5-11.8s-16.2 4.5-20.5 11.8l-201 344.6Zm-27.6-16.2 201-344.6c10-17.1 28.3-27.6 48.1-27.6s38.1 10.5 48.1 27.6l201 344.6c4.5 7.7 6.9 16.5 6.9 25.4 0 27.8-22.6 50.4-50.4 50.4H114.4C86.6 544 64 521.4 64 493.6c0-8.9 2.4-17.7 6.9-25.4ZM320 224c8.8 0 16 7.2 16 16v128c0 8.8-7.2 16-16 16s-16-7.2-16-16V240c0-8.8 7.2-16 16-16Zm-24 224c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24Z"
260
+ />
261
+ );
262
+ export const ExclamationTriangle = memo(_ExclamationTriangle);
263
+ ExclamationTriangle.displayName = "ExclamationTriangle";
264
+
265
+ const _EyeSlash = (props: SVGProps<SVGSVGElement>) => (
266
+ <SVG
267
+ {...props}
268
+ d="M25.917 67.378c-6.899-5.4-16.998-4.2-22.497 2.7-5.5 6.898-4.2 16.997 2.7 22.496l607.924 479.94c6.9 5.5 16.998 4.3 22.498-2.599 5.499-6.9 4.3-16.998-2.6-22.497L25.917 67.378Zm579.529 264.867a31.797 31.797 0 0 0 0-24.597c-14.899-35.696-46.195-87.69-92.989-131.084-46.994-43.795-111.686-80.59-192.476-80.59-51.194 0-95.988 14.798-133.884 36.795l27.297 21.498c31.196-16.098 66.792-26.297 106.587-26.297 70.391 0 127.684 31.996 170.779 71.991 43.094 39.995 71.89 87.99 85.19 119.985-9.2 22.097-25.898 51.994-49.495 81.49l25.097 19.798c25.597-31.996 43.695-64.392 53.894-88.99ZM88.409 218.659c-25.596 31.996-43.694 64.392-53.893 88.989a31.797 31.797 0 0 0 0 24.597c14.898 35.695 46.194 87.689 92.989 131.083 46.994 43.795 111.686 80.59 192.476 80.59 51.193 0 95.988-14.798 133.883-36.795l-27.296-21.497c-31.197 16.098-66.792 26.296-106.587 26.296-70.391 0-127.684-31.996-170.78-71.99-43.094-39.996-71.89-87.99-85.189-119.986 9.2-22.097 25.897-51.993 49.494-81.49L88.41 218.66ZM319.981 447.93c16.698 0 32.696-3.2 47.394-9.099l-30.896-24.397c-5.4.9-10.899 1.4-16.498 1.4-50.994 0-92.789-39.795-95.788-90.089l-30.897-24.397c-.9 6-1.3 12.199-1.3 18.498 0 70.691 57.294 127.984 127.985 127.984v.1Zm127.984-127.984c0-70.691-57.293-127.984-127.984-127.984-16.698 0-32.696 3.2-47.394 9.099l30.896 24.397c5.4-.9 10.899-1.4 16.498-1.4 50.994 0 92.788 39.795 95.788 90.089l30.896 24.397c.9-6 1.3-12.199 1.3-18.498v-.1Z"
269
+ />
270
+ );
271
+ export const EyeSlash = memo(_EyeSlash);
272
+ EyeSlash.displayName = "EyeSlash";
273
+
274
+ const _Eye = (props: SVGProps<SVGSVGElement>) => (
275
+ <SVG
276
+ {...props}
277
+ d="M149.175 200c43.1-40 100.4-72 170.8-72s127.7 32 170.8 72c43.1 40 71.9 88 85.2 120-13.3 32-42.1 80-85.2 120s-100.4 72-170.8 72-127.7-32-170.8-72c-43.1-40-71.9-88-85.2-120 13.3-32 42.1-80 85.2-120Zm170.8-104c-80.8 0-145.5 36.8-192.6 80.6-46.8 43.4-78.1 95.4-92.9 131.1-3.3 7.9-3.3 16.7 0 24.6 14.8 35.7 46.1 87.7 92.9 131.1 47.1 43.8 111.8 80.6 192.6 80.6s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1-47.1-43.8-111.8-80.6-192.6-80.6Zm-96 224c0-53.02 42.98-96 96-96s96 42.98 96 96-42.98 96-96 96-96-42.98-96-96Zm224 0c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128 0 70.692 57.308 128 128 128 70.692 0 128-57.308 128-128Z"
278
+ />
279
+ );
280
+ export const Eye = memo(_Eye);
281
+ Eye.displayName = "Eye";
282
+
283
+ const _Gavel = (props: SVGProps<SVGSVGElement>) => (
284
+ <SVG
285
+ {...props}
286
+ d="M379.275 68.65c6.2 6.2 6.2 16.4 0 22.6l-12.7 12.7 169.4 169.4 12.7-12.7c6.2-6.2 16.4-6.2 22.6 0 6.2 6.2 6.2 16.4 0 22.6l-24 24-96 96-24 24c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6l12.7-12.7-169.4-169.4-12.7 12.7c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6l24-24 96-96 24-24c6.2-6.2 16.4-6.2 22.6 0Zm-108.7 131.3 169.4 169.4 73.4-73.4-169.4-169.4-73.4 73.4Zm-62.6 184-112 112 48 48 112-112-48-48Zm-22.6-22.6c12.5-12.5 32.8-12.5 45.3 0l12.7 12.7 49.8-49.8 22.6 22.6-49.8 49.8 12.7 12.7c12.5 12.5 12.5 32.8 0 45.3l-112 112c-12.5 12.5-32.8 12.5-45.3 0l-48-48c-12.5-12.5-12.5-32.8 0-45.3l112-112Z"
287
+ />
288
+ );
289
+ export const Gavel = memo(_Gavel);
290
+ Gavel.displayName = "Gavel";
291
+
292
+ const _Gear = (props: SVGProps<SVGSVGElement>) => (
293
+ <SVG
294
+ {...props}
295
+ d="m279 126.8 4.9-24.3-15.7-3.1 15.7 3.1c.3-1.5 1-2.8 1.9-3.8 11.1-1.8 22.6-2.7 34.2-2.7 11.6 0 23.1.9 34.2 2.6 1 1.1 1.6 2.4 1.9 3.8l4.9 24.4c2.9 14.4 13.2 25.2 25.5 30.3l1.5.6c12.3 5.2 27.3 4.8 39.5-3.3l20.6-13.8c1.2-.8 2.6-1.3 4.1-1.3 9.1 6.7 17.7 14 25.6 21.9l.8.8c7.9 8 15.3 16.5 21.9 25.6-.1 1.4-.5 2.8-1.3 4.1l-13.8 20.6c-8.1 12.2-8.5 27.1-3.3 39.5l.6 1.5c5.1 12.4 15.9 22.6 30.3 25.5l24.3 4.9c1.5.3 2.8 1 3.8 1.9 1.7 11.1 2.6 22.4 2.6 34v.4c0 11.6-.9 22.9-2.6 34-1.1 1-2.4 1.6-3.8 1.9l-24.1 5.1c-14.4 2.9-25.2 13.2-30.3 25.5l-.6 1.5c-5.2 12.3-4.8 27.3 3.3 39.5l13.8 20.6c.8 1.2 1.3 2.6 1.3 4.1-13.6 18.5-29.9 34.9-48.4 48.4-1.4-.1-2.8-.5-4.1-1.3l-20.6-13.8c-12.2-8.1-27.1-8.5-39.5-3.3l-1.5.6c-12.4 5.1-22.6 15.9-25.5 30.3l-4.9 24.3c-.3 1.5-1 2.8-1.9 3.8-11.1 1.7-22.6 2.6-34.2 2.6-11.6 0-23.1-.9-34.2-2.6-1-1.1-1.6-2.4-1.9-3.8l-5-24.2c-2.9-14.4-13.2-25.2-25.5-30.3l-1.5-.6c-12.3-5.2-27.3-4.8-39.5 3.3l-20.6 13.8c-1.2.8-2.6 1.3-4.1 1.3-18.5-13.6-34.9-29.9-48.4-48.4.1-1.4.5-2.8 1.3-4.1l13.8-20.6c8.1-12.2 8.5-27.1 3.3-39.5l-.6-1.5c-5.1-12.4-15.9-22.6-30.3-25.5l-24.3-4.9c-1.5-.3-2.8-1-3.8-1.9-1.9-11.2-2.8-22.7-2.8-34.3 0-11.6.9-23.1 2.6-34.2 1.1-1 2.4-1.6 3.8-1.9l24.4-4.9c14.4-2.9 25.2-13.2 30.3-25.5l.6-1.5c5.2-12.3 4.8-27.3-3.3-39.5l-13.8-20.8c-.8-1.2-1.3-2.6-1.3-4.1 6.7-9.1 14-17.7 22-25.7l.8-.8c8-7.9 16.6-15.3 25.7-22 1.4.1 2.8.5 4.1 1.3l20.6 13.8c12.2 8.1 27.1 8.5 39.5 3.3l1.5-.6c12.4-5.1 22.7-15.9 25.5-30.3v.2ZM320 64c-14.8 0-29.3 1.3-43.4 3.7-2 .3-3.9 1-5.6 2.1-9.4 5.6-16.3 15.1-18.6 26.4l-4.9 24.3c-.5 2.6-2.6 5.4-6.3 6.9h-.1l-1.7.7h-.1c-3.7 1.5-7.1 1-9.4-.4L209.5 114c-9.6-6.4-21.2-8.2-31.7-5.6-1.9.5-3.8 1.3-5.4 2.5-11.8 8.3-22.8 17.5-33 27.6l-.8.8c-10.2 10.3-19.4 21.3-27.7 33-1.2 1.6-2 3.5-2.5 5.4-2.6 10.6-.8 22.1 5.6 31.7l13.8 20.6c1.5 2.2 2 5.7.4 9.4v.1l-.7 1.7v.1c-1.5 3.7-4.3 5.8-6.9 6.3l-24.3 4.9c-11.4 2.3-20.8 9.2-26.4 18.6-1 1.7-1.7 3.6-2.1 5.6-2.5 14-3.8 28.5-3.8 43.3 0 14.8 1.3 29.3 3.7 43.4.3 2 1 3.9 2.1 5.6 5.6 9.4 15.1 16.3 26.4 18.6l24.3 4.9c2.6.5 5.4 2.6 6.9 6.3v.1l.7 1.7v.1c1.5 3.7 1 7.1-.4 9.4L114 430.5c-6.4 9.6-8.2 21.2-5.6 31.7.5 1.9 1.3 3.8 2.5 5.4 16.8 23.8 37.6 44.6 61.5 61.5 1.6 1.2 3.5 2 5.4 2.5 10.6 2.6 22.1.8 31.7-5.6l20.6-13.8c2.2-1.5 5.7-2 9.4-.4h.1l1.7.7h.1c3.7 1.5 5.8 4.3 6.3 6.9l4.9 24.3c2.3 11.4 9.2 20.8 18.6 26.4 1.7 1 3.6 1.7 5.6 2.1 14.1 2.4 28.6 3.7 43.4 3.7 14.8 0 29.3-1.3 43.4-3.7 2-.3 3.9-1 5.6-2.1 9.4-5.6 16.3-15.1 18.6-26.4l4.9-24.3c.5-2.6 2.6-5.4 6.3-6.9h.1l1.7-.7h.1c3.7-1.5 7.1-1 9.4.4l20.2 13.8c9.6 6.4 21.2 8.2 31.7 5.6 1.9-.5 3.8-1.3 5.4-2.5 23.8-16.8 44.6-37.6 61.5-61.4 1.2-1.6 2-3.5 2.5-5.4 2.6-10.6.8-22.1-5.6-31.7L512.2 410c-1.5-2.2-2-5.7-.4-9.4v-.1l.7-1.7v-.1c1.5-3.7 4.3-5.8 6.9-6.3l24.3-4.9-3.1-15.7 3.1 15.7c11.4-2.3 20.8-9.2 26.4-18.6 1-1.7 1.7-3.6 2.1-5.6 2.4-14 3.7-28.5 3.7-43.2v-.4c0-14.7-1.3-29.1-3.7-43.2-.3-2-1-3.9-2.1-5.6-5.6-9.4-15.1-16.3-26.4-18.6l-24.3-4.9c-2.6-.5-5.4-2.6-6.9-6.3v-.1l-.7-1.7v-.1c-1.5-3.7-1-7.1.4-9.4l13.8-20.3c6.4-9.6 8.2-21.2 5.6-31.7-.5-1.9-1.3-3.8-2.5-5.4-8.3-11.7-17.5-22.7-27.6-32.9l-.9-.9c-10.1-10.1-21.1-19.3-32.9-27.6-1.6-1.2-3.5-2-5.4-2.5-10.6-2.6-22.1-.8-31.7 5.6l-20.7 13.6c-2.2 1.5-5.7 2-9.4.4h-.1l-1.7-.7h-.1c-3.7-1.5-5.8-4.3-6.3-6.9l-4.9-24.3c-2.3-11.4-9.2-20.8-18.6-26.4-1.7-1-3.6-1.7-5.6-2.1-13.9-2.4-28.4-3.7-43.2-3.7Zm-64 256c0-35.346 28.654-64 64-64 35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64Zm160 0c0-53.02-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96Z"
296
+ />
297
+ );
298
+ export const Gear = memo(_Gear);
299
+ Gear.displayName = "Gear";
300
+
301
+ const _GitHub = (props: SVGProps<SVGSVGElement>) => (
302
+ <SVG
303
+ {...props}
304
+ d="M237.9 467.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6Zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2 .6-2-1.3-4.3-4.3-5.2-2.6-.7-5.5.3-6.2 2.3Zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9ZM316.8 78C178.1 78 72 183.3 72 322c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5 21.3 0 42.8 2.9 62.8 8.5 0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C500.2 527.8 568 432.9 568 322c0-138.7-112.5-244-251.2-244ZM169.2 422.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1Zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7Zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1Zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2Z"
305
+ />
306
+ );
307
+ export const GitHub = memo(_GitHub);
308
+ GitHub.displayName = "GitHub";
309
+
310
+ const _GitLab = (props: SVGProps<SVGSVGElement>) => (
311
+ <SVG
312
+ {...props}
313
+ d="m567.5 268.127-.7-1.8-69.7-181.78c-1.4-3.57-3.9-6.59-7.2-8.64-2.4-1.55-5.1-2.515-8-2.81-2.9-.295-5.7.083-8.4 1.11-2.7 1.02-5.1 2.66-7.1 4.78-1.9 2.12-3.3 4.67-4.1 7.44l-47 144H224.8l-47.1-144c-.8-2.77-2.2-5.31-4.1-7.43-2-2.12-4.4-3.75-7.1-4.77a18.1 18.1 0 0 0-8.38-1.113 18.4 18.4 0 0 0-8.04 2.793 18.09 18.09 0 0 0-7.16 8.64l-69.653 181.78-.724 1.8a129.57 129.57 0 0 0-3.52 82c7.747 26.9 24.047 50.7 46.447 67.6l.27.2.59.4 105.97 79.5 52.6 39.7 32 24.2c3.7 1.9 8.3 4.3 13 4.3 4.7 0 9.3-2.4 13-4.3l32-24.2 52.6-39.7 106.7-79.9.3-.3c22.4-16.9 38.7-40.6 45.6-67.5 8.6-27 7.4-55.8-2.6-82Z"
314
+ />
315
+ );
316
+ export const GitLab = memo(_GitLab);
317
+ GitLab.displayName = "GitLab";
318
+
319
+ const _GlassChart = (props: SVGProps<SVGSVGElement>) => (
320
+ <SVG
321
+ {...props}
322
+ d="M272 96c62.879 0 120.981 33.545 152.42 88 31.44 54.455 31.44 121.545 0 176-31.439 54.455-89.541 88-152.42 88-62.879 0-120.981-33.545-152.42-88-31.44-54.455-31.44-121.545 0-176C151.019 129.545 209.12 96 272 96Zm0 384c51.7 0 99-18.8 135.3-50l141.4 141.3c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6L430 407.3c31.2-36.4 50-83.7 50-135.3 0-114.9-93.1-208-208-208S64 157.1 64 272s93.1 208 208 208Zm-80-192v64c0 8.8 7.2 16 16 16s16-7.2 16-16v-64c0-8.8-7.2-16-16-16s-16 7.2-16 16Zm64-96v160c0 8.8 7.2 16 16 16s16-7.2 16-16V192c0-8.8-7.2-16-16-16s-16 7.2-16 16Zm64 64v96c0 8.8 7.2 16 16 16s16-7.2 16-16v-96c0-8.8-7.2-16-16-16s-16 7.2-16 16Z"
323
+ />
324
+ );
325
+ export const GlassChart = memo(_GlassChart);
326
+ GlassChart.displayName = "GlassChart";
327
+
328
+ const _Glass = (props: SVGProps<SVGSVGElement>) => (
329
+ <SVG
330
+ {...props}
331
+ d="M448 272c0-62.879-33.545-120.981-88-152.42-54.455-31.44-121.545-31.44-176 0C129.545 151.019 96 209.12 96 272c0 62.879 33.545 120.981 88 152.42 54.455 31.44 121.545 31.44 176 0 54.455-31.439 88-89.541 88-152.42Zm-40.7 158c-36.3 31.2-83.6 50-135.3 50-114.9 0-208-93.1-208-208S157.1 64 272 64s208 93.1 208 208c0 51.7-18.8 99-50 135.3l141.3 141.4c6.2 6.2 6.2 16.4 0 22.6-6.2 6.2-16.4 6.2-22.6 0L407.3 430Z"
332
+ />
333
+ );
334
+ export const Glass = memo(_Glass);
335
+ Glass.displayName = "Glass";
336
+
337
+ const _Grid = (props: SVGProps<SVGSVGElement>) => (
338
+ <SVG
339
+ {...props}
340
+ d="M144 128c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-96Zm-48 16c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48h-96c-26.5 0-48-21.5-48-48v-96Zm48 240c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-96Zm-48 16c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48h-96c-26.5 0-48-21.5-48-48v-96Zm400-272h-96c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16Zm-96-32h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48h-96c-26.5 0-48-21.5-48-48v-96c0-26.5 21.5-48 48-48Zm0 288c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-96Zm-48 16c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48h-96c-26.5 0-48-21.5-48-48v-96Z"
341
+ />
342
+ );
343
+ export const Grid = memo(_Grid);
344
+ Grid.displayName = "Grid";
345
+
346
+ const _Info = (props: SVGProps<SVGSVGElement>) => (
347
+ <SVG
348
+ {...props}
349
+ d="M320 96c123.712 0 224 100.288 224 224S443.712 544 320 544 96 443.712 96 320 196.288 96 320 96Zm0 480c141.385 0 256-114.615 256-256S461.385 64 320 64 64 178.615 64 320s114.615 256 256 256Zm-48-160c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-32V304c0-8.8-7.2-16-16-16h-40c-8.8 0-16 7.2-16 16s7.2 16 16 16h24v96h-32Zm48-168c13.255 0 24-10.745 24-24s-10.745-24-24-24-24 10.745-24 24 10.745 24 24 24Z"
350
+ />
351
+ );
352
+ export const Info = memo(_Info);
353
+ Info.displayName = "Info";
354
+
355
+ const _Key = (props: SVGProps<SVGSVGElement>) => (
356
+ <SVG
357
+ {...props}
358
+ d="M256 240c0-79.5 64.5-144 144-144s144 64.5 144 144-64.5 144-144 144c-11.1 0-22-1.3-32.4-3.6-5.4-1.2-11 .4-14.9 4.3L321.4 416H272c-8.8 0-16 7.2-16 16v48h-48c-8.8 0-16 7.2-16 16v48H96v-81.4l162.8-162.8c4.2-4.2 5.7-10.5 3.9-16.2-4.4-13.8-6.7-28.4-6.7-43.7v.1ZM400 64c-97.2 0-176 78.8-176 176 0 15.1 1.9 29.8 5.5 43.9L68.7 444.7c-3 3-4.7 7.1-4.7 11.3v104c0 8.8 7.2 16 16 16h128c8.8 0 16-7.2 16-16v-48h48c8.8 0 16-7.2 16-16v-48h40c4.2 0 8.3-1.7 11.3-4.7l30-30c10 1.8 20.2 2.7 30.7 2.7 97.2 0 176-78.8 176-176S497.2 64 400 64Zm32 168c13.255 0 24-10.745 24-24s-10.745-24-24-24-24 10.745-24 24 10.745 24 24 24Z"
359
+ />
360
+ );
361
+ export const Key = memo(_Key);
362
+ Key.displayName = "Key";
363
+
364
+ const _LinkAngle = (props: SVGProps<SVGSVGElement>) => (
365
+ <SVG
366
+ {...props}
367
+ d="M591.5 320.5c50-50 50-131 0-181s-131-50-181 0l-22.6 22.6c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l22.6-22.6c37.5-37.5 98.3-37.5 135.8 0 37.5 37.5 37.5 98.3 0 135.8L444.3 422.4c-37.4 37.4-98.1 37.4-135.6 0-35.6-35.6-37.6-92.6-4.7-130.6l5.3-6.1c5.8-6.7 5.1-16.8-1.6-22.6-6.7-5.8-16.8-5.1-22.6 1.6l-5.3 6.1c-43.9 50.7-41.2 126.7 6.2 174.1 49.9 49.9 130.9 49.9 180.8 0l124.7-124.4Zm-543 0c-50 50-50 131 0 181s131 50 181 0l22.6-22.6c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0l-22.6 22.6c-37.5 37.5-98.3 37.5-135.8 0-37.5-37.5-37.5-98.3 0-135.8l124.6-124.5c37.4-37.4 98.1-37.4 135.6 0 35.6 35.6 37.6 92.6 4.7 130.6l-5.3 6.1c-5.8 6.7-5.1 16.8 1.6 22.6 6.7 5.8 16.8 5.1 22.6-1.6l5.3-6.1c43.9-50.7 41.2-126.7-6.2-174.1-50.1-50.1-131-50.1-181-.2L48.5 320.5Z"
368
+ />
369
+ );
370
+ export const LinkAngle = memo(_LinkAngle);
371
+ LinkAngle.displayName = "LinkAngle";
372
+
373
+ const _LinkDisconnect = (props: SVGProps<SVGSVGElement>) => (
374
+ <SVG
375
+ {...props}
376
+ d="M25.917 67.378c-6.899-5.4-16.998-4.2-22.497 2.7-5.5 6.898-4.2 16.997 2.7 22.496l607.924 479.94c6.9 5.5 16.998 4.3 22.498-2.599 5.499-6.9 4.3-16.998-2.6-22.497L25.917 67.378Zm614.024 316.56c0-70.691-57.293-127.984-127.984-127.984h-31.996c-8.799 0-15.998 7.2-15.998 15.998 0 8.799 7.2 15.998 15.998 15.998h31.996c52.994 0 95.988 42.995 95.988 95.988 0 24.197-8.899 46.294-23.697 63.092l25.197 19.898c18.998-22.297 30.496-51.294 30.496-82.99ZM459.864 511.922l-40.495-31.996h-83.49c-52.894 0-95.888-42.894-95.888-95.888 0-13.898 3-27.196 8.399-39.195l-25.697-20.297c-9.399 17.797-14.598 38.095-14.598 59.492-.1 70.691 57.093 127.884 127.784 127.884h123.985ZM399.97 255.854c0 13.898-3 27.197-8.399 39.195l25.697 20.298c9.399-17.798 14.598-38.096 14.598-59.493.1-70.691-57.093-127.884-127.784-127.884H180.098l40.495 31.996h83.49c52.893 0 95.888 42.895 95.888 95.888ZM55.713 192.862l-25.196-19.898C11.519 195.362.02 224.258.02 255.954c0 70.691 57.293 127.984 127.985 127.984H160c8.798 0 15.998-7.199 15.998-15.998s-7.2-15.998-15.998-15.998h-31.996c-52.994 0-95.989-42.994-95.989-95.988 0-24.197 8.9-46.294 23.697-63.092Z"
377
+ />
378
+ );
379
+ export const LinkDisconnect = memo(_LinkDisconnect);
380
+ LinkDisconnect.displayName = "LinkDisconnect";
381
+
382
+ const _LinkConnect = (props: SVGProps<SVGSVGElement>) => (
383
+ <SVG
384
+ {...props}
385
+ d="M128 128C57.3 128 0 185.3 0 256s57.3 128 128 128h32c8.8 0 16-7.2 16-16s-7.2-16-16-16h-32c-53 0-96-43-96-96s43-96 96-96h176.1c52.9 0 95.9 42.9 95.9 95.9 0 50.3-38.9 92-89 95.6l-8.1.6c-8.8.6-15.4 8.3-14.8 17.1.6 8.8 8.3 15.4 17.1 14.8l8.1-.6c66.9-4.8 118.7-60.5 118.7-127.5 0-70.7-57.2-127.9-127.9-127.9H128Zm384 384c70.7 0 128-57.3 128-128s-57.3-128-128-128h-32c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c53 0 96 43 96 96s-43 96-96 96H335.9c-52.9 0-95.9-42.9-95.9-95.9 0-50.3 38.9-92 89-95.6l8.1-.6c8.8-.6 15.4-8.3 14.8-17.1-.6-8.8-8.3-15.4-17.1-14.8l-8.1.6C259.8 261.4 208 317.1 208 384.1c0 70.7 57.2 127.9 127.9 127.9H512Z"
386
+ />
387
+ );
388
+ export const LinkConnect = memo(_LinkConnect);
389
+ LinkConnect.displayName = "LinkConnect";
390
+
391
+ const _Medium = (props: SVGProps<SVGSVGElement>) => (
392
+ <SVG
393
+ {...props}
394
+ d="M180.5 138C80.813 138 0 219.371 0 319.738s80.819 181.738 180.5 181.738S361 420.111 361 319.738 280.191 138 180.5 138Zm288.25 10.646c-49.845 0-90.245 76.619-90.245 171.095s40.406 171.1 90.251 171.1c49.845 0 90.251-76.619 90.251-171.1H559c0-94.503-40.4-171.095-90.248-171.095h-.002Zm139.506 17.821c-17.526 0-31.735 68.628-31.735 153.274s14.2 153.274 31.735 153.274S640 404.369 640 319.738c0-84.649-14.215-153.271-31.742-153.271h-.002Z"
395
+ />
396
+ );
397
+ export const Medium = memo(_Medium);
398
+ Medium.displayName = "Medium";
399
+
400
+ const _MessageCode = (props: SVGProps<SVGSVGElement>) => (
401
+ <SVG
402
+ {...props}
403
+ d="M256 480c0-17.7-14.3-32-32-32h-96c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32v288c0 17.7-14.3 32-32 32H373.3c-6.9 0-13.7 2.2-19.2 6.4L256 528v-48ZM128 64c-35.3 0-64 28.7-64 64v288c0 35.3 28.7 64 64 64h96v80c0 6.1 3.4 11.6 8.8 14.3 5.4 2.7 11.9 2.1 16.8-1.5L373.3 480H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H128Zm155.3 155.3c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0l-64 64c-6.2 6.2-6.2 16.4 0 22.6l64 64c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6L230.6 272l52.7-52.7Zm96-22.6c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l52.7 52.7-52.7 52.7c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l64-64c6.2-6.2 6.2-16.4 0-22.6l-64-64Z"
404
+ />
405
+ );
406
+ export const MessageCode = memo(_MessageCode);
407
+ MessageCode.displayName = "MessageCode";
408
+
409
+ const _Minus = (props: SVGProps<SVGSVGElement>) => (
410
+ <SVG
411
+ {...props}
412
+ d="M576 320c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h480c8.8 0 16 7.2 16 16Z"
413
+ />
414
+ );
415
+ export const Minus = memo(_Minus);
416
+ Minus.displayName = "Minus";
417
+
418
+ const _MoneyTransfer = (props: SVGProps<SVGSVGElement>) => (
419
+ <SVG
420
+ {...props}
421
+ d="m548.7 91.25 36.7 36.7H96c-35.3 0-64 28.7-64 64v220.1l14.1-14.1 17.9-17.9v-124.1c53 0 96-43 96-96H585.4l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l64-64c3-3 4.7-7.1 4.7-11.3 0-4.2-1.7-8.3-4.7-11.3l-64-64c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6ZM128 159.95c0 35.3-28.7 64-64 64v-32c0-17.7 14.3-32 32-32h32Zm-73.4 352H544c35.3 0 64-28.7 64-64v-220.1l-14.1 14.1-17.9 17.9v124.1c-53 0-96 43-96 96H54.6l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0l-64 64c-3 3-4.7 7.1-4.7 11.3 0 4.2 1.7 8.3 4.7 11.3l64 64c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6l-36.7-36.7Zm521.4-96v32c0 17.7-14.3 32-32 32h-32c0-35.3 28.7-64 64-64Zm-320-96c0-35.346 28.654-64 64-64 35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64Zm160 0c0-53.02-42.98-96-96-96s-96 42.98-96 96a96 96 0 1 0 192 0Z"
422
+ />
423
+ );
424
+ export const MoneyTransfer = memo(_MoneyTransfer);
425
+ MoneyTransfer.displayName = "MoneyTransfer";
426
+
427
+ const _NFT = (props: SVGProps<SVGSVGElement>) => (
428
+ <SVG
429
+ {...props}
430
+ d="M351.8 559.55a64.158 64.158 0 0 1-64 0L128 467.25c-19.8-11.4-32-32.6-32-55.4v-184.6c0-22.9 12.2-44 32-55.4l159.8-92.3c19.8-11.4 44.2-11.4 64 0l159.8 92.3c19.8 11.4 32 32.6 32 55.4v184.6c0 22.9-12.2 44-32 55.4l-159.8 92.3Zm-48-27.7c9.9 5.7 22.1 5.7 32 0l159.8-92.3c9.9-5.7 16-16.3 16-27.7v-184.6c0-11.4-6.1-22-16-27.7l-159.8-92.3c-9.9-5.7-22.1-5.7-32 0L144 199.55c-9.9 5.7-16 16.3-16 27.7v184.6c0 11.4 6.1 22 16 27.7l159.8 92.3Zm-113.1-298.3 33.1 82.9v-76.9c0-8.8 7.2-16 16-16s16 7.2 16 16v160c0 7.7-5.4 14.3-13 15.7-7.6 1.4-15-2.6-17.9-9.8l-33.1-82.8v76.9c0 8.8-7.2 16-16 16s-16-7.2-16-16v-160c0-7.7 5.4-14.3 13-15.7 7.6-1.4 15 2.6 17.9 9.8v-.1Zm97.1 5.9c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32v48h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32v64c0 8.8-7.2 16-16 16s-16-7.2-16-16v-160Zm112-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16h-16v144c0 8.8-7.2 16-16 16s-16-7.2-16-16v-144h-16c-8.8 0-16-7.2-16-16s7.2-16 16-16Z"
431
+ />
432
+ );
433
+ export const NFT = memo(_NFT);
434
+ NFT.displayName = "NFT";
435
+
436
+ const _Orca = (props: SVGProps<SVGSVGElement>) => (
437
+ <SVG
438
+ {...props}
439
+ d="M471.616 64.769c28.082-2.783 54.884 2.003 80.35 14.08 9.127 4.319 12.133 12.243 11.71 21.882-.969 22.217-8.181 42.697-17.787 62.375-18.365 37.599-42.83 70.567-75.297 97.302-1.38 1.135-2.905 3.317-2.783 4.875 1.948 24.788-4.196 48.195-12.187 71.201-10.018 28.85-22.706 56.454-41.817 80.584-3.529 4.475-7.747 8.604-12.322 11.966-8.448 6.188-16.105 3.817-18.03-6.423-2.027-10.796-3.318-22.127-2.338-32.99 2.059-22.895 5.81-45.624 8.87-68.43l.09-.746.144-1.858c-12.132 7.88-23.707 16.473-36.24 23.307-25.9 14.135-54.495 18.977-83.411 22.383-15.104 1.78-30.275 3.34-45.19 6.155-29.785 5.599-40.837 22.26-35.606 53.059 1.67-1.113 3.117-2.004 4.486-2.983l2.76-1.948c25.867-17.753 54.305-22.417 84.97-14.881 4.496 1.113 8.904 3.183 12.91 5.576 1.937 1.169 4.074 4.252 3.852 6.188-.223 1.937-3.017 4.208-5.198 5.154-9.394 4.073-19.311 7.09-28.427 11.664-16.974 8.515-30.03 20.97-34.872 40.126-3.684 14.614-1.502 29.072 2.672 43.208 3.205 10.818 7.112 21.426 10.618 32.167 1.224 3.706 2.504 7.435 3.139 11.252.79 4.809 2.16 10.185-2.505 13.802-5.008 3.896-11.42 4.196-16.306 1.013-10.607-6.912-21.537-13.902-30.497-22.728-38.455-37.988-59.28-84.157-61.718-138.418-1.759-39.446 7.313-76.644 22.684-112.628 6.155-14.403 17.23-23.664 30.876-30.52a787.644 787.644 0 0 0 32.155-16.974c9.628-5.42 17.742-12.689 23.374-22.339 1.748-2.983 3.284-6.21 4.196-9.527 2.226-8.059-2.404-13.78-10.44-11.61a82.432 82.432 0 0 0-23.418 10.263c-8.348 5.454-15.45 12.767-23.686 19.768l1.881-7.001c3.395-12.9.123-23.597-11.13-30.587-7.758-4.808-16.562-8.08-25.11-11.442l-15.505-5.977c-15.516-5.899-31.087-11.676-46.447-17.964-5.543-2.27-10.596-6.423-14.993-10.63-6.344-6.077-5.187-12.277 2.594-16.362 10.284-5.376 21.481-6.967 32.756-7.824l6.155-.423c37.699-2.37 75.286 0 112.573 5.253 31.277 4.386 60.66-1.024 88.932-13.534 24.209-10.73 47.86-22.74 71.802-34.06 24.443-11.541 49.53-21.114 76.711-23.785v-.011Zm32.623 90.969c.668-6.968-3.005-9.539-9.438-6.946a27.648 27.648 0 0 0-5.376 2.939c-13.624 9.438-23.997 21.648-30.787 36.775-.646 1.413-1.113 2.894-1.491 4.296l-1.158 4.62c-.111 8.425 3.217 10.773 9.394 8.236a24.21 24.21 0 0 0 5.332-3.006c13.167-9.872 23.83-21.893 30.786-36.92a31.854 31.854 0 0 0 2.738-9.994Z"
440
+ />
441
+ );
442
+ export const Orca = memo(_Orca);
443
+ Orca.displayName = "Orca";
444
+
445
+ const _PieChart = (props: SVGProps<SVGSVGElement>) => (
446
+ <SVG
447
+ {...props}
448
+ d="M528.3 272H353V96.7c93.3 7.7 167.6 82.1 175.3 175.3ZM337 304h208.5c8.4 0 15.4-6.5 15.5-14.9V288c0-123.7-100.3-224-224-224h-1.1c-8.4 0-14.9 7.1-14.9 15.5V288c0 8.8 7.2 16 16 16Zm-86.6 70.6 141.9 142C361.9 534 326.6 544 289 544c-114.9 0-208-93.1-208-208 0-98.3 68.3-180.8 160-202.4V352c0 8.5 3.4 16.6 9.4 22.6ZM256 98.3C139.1 114.3 49 214.7 49 336c0 132.5 107.5 240 240 240 51.8 0 99.8-16.4 139-44.3 7.7-5.5 8.2-16.5 1.5-23.1L273 352V113.6c0-9.2-7.8-16.6-17-15.4v.1Zm250.6 378L414.3 384h141.1c-8.3 35-25.4 66.6-48.9 92.3h.1ZM590.8 369c1.3-9.2-6.1-17-15.4-17H375.6c-14.3 0-21.4 17.2-11.3 27.3l131.4 131.4c5.8 5.8 15.2 6.3 21.2.7 39.3-36.7 66.2-86.5 73.9-142.3v-.1Z"
449
+ />
450
+ );
451
+ export const PieChart = memo(_PieChart);
452
+ PieChart.displayName = "PieChart";
453
+
454
+ const _Plus = (props: SVGProps<SVGSVGElement>) => (
455
+ <SVG
456
+ {...props}
457
+ d="M336 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v224H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h224v224c0 8.8 7.2 16 16 16s16-7.2 16-16V336h224c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V80Z"
458
+ />
459
+ );
460
+ export const Plus = memo(_Plus);
461
+ Plus.displayName = "Plus";
462
+
463
+ const _Rocket = (props: SVGProps<SVGSVGElement>) => (
464
+ <SVG
465
+ {...props}
466
+ d="M283.292 356.657c-10-10-21.4-18.1-33.8-24.1 30.1-122.3 83.5-181.9 135.6-210.5 53.5-29.4 111.4-29.4 154.6-21.8 7.6 43.2 7.7 101.1-21.8 154.6-28.6 52.1-88.2 105.5-210.5 135.6-6-12.4-14.1-23.9-24.1-33.8Zm36.7 88.6c0-8.2-.8-16.3-2.4-24.3 37.8-9.5 70.4-21.3 98.4-34.7v80.1c0 12.1-6.8 23.2-17.7 28.6l-78.3 39.1v-88.9.1Zm128 21.1v-97.4c131.7-79.9 136.5-202.5 122.7-276.9-2.2-11.6-11.2-20.7-22.8-22.8-74.4-13.8-197-9-276.9 122.7h-97.4c-24.2 0-46.4 13.7-57.2 35.4l-50.7 101.4c-2.5 5-2.2 10.9.7 15.6 2.9 4.7 8.1 7.6 13.6 7.6h114.7c24.7 0 48.5 9.8 65.9 27.3 17.4 17.5 27.3 41.2 27.3 65.9v114.8c0 5.5 2.9 10.7 7.6 13.6 4.7 2.9 10.6 3.2 15.6.7l101.5-50.7c21.7-10.8 35.4-33 35.4-57.2Zm-229-144c-7.9-1.6-16.1-2.4-24.3-2.4h-88.8l39.1-78.3c5.4-10.8 16.5-17.7 28.6-17.7h80.1c-13.5 28-25.2 60.5-34.7 98.4Zm-11.2 189c-11 11-29.4 19.4-52.6 24.9-20.6 4.9-42.1 6.8-59 7.4.6-17 2.5-38.4 7.4-59 5.5-23.2 13.9-41.6 24.9-52.6 21.9-21.9 57.4-21.9 79.3 0s21.9 57.4 0 79.3Zm22.7 22.6c34.4-34.4 34.4-90.1 0-124.5-34.4-34.4-90.1-34.4-124.5 0-34.3 34.2-41 100.5-41.9 138.2-.4 16 12.2 28.6 28.2 28.2 37.7-.9 104-7.6 138.2-41.9Zm225.5-326c0 13.254-10.745 24-24 24-13.254 0-24-10.746-24-24 0-13.255 10.746-24 24-24 13.255 0 24 10.745 24 24Zm-24-56a56 56 0 1 0 0 112 56 56 0 0 0 0-112Z"
467
+ />
468
+ );
469
+ export const Rocket = memo(_Rocket);
470
+ Rocket.displayName = "Rocket";
471
+
472
+ const _Seedling = (props: SVGProps<SVGSVGElement>) => (
473
+ <SVG
474
+ {...props}
475
+ d="M544 96c0 95.3-69.4 174.4-160.5 189.4 2.7 10.2 4.7 20.7 6.1 31.4C495.4 298.9 576 206.9 576 96c0-17.7-14.3-32-32-32h-32c-81 0-152 43-191.4 107.5 7.8 8.3 15.1 17.2 21.8 26.4C374.7 137.3 438.5 96 512 96h32Zm-416 64c106 0 192 86 192 192h-32c-106 0-192-86-192-192h32Zm-32-32c-17.7 0-32 14.3-32 32 0 123.7 100.3 224 224 224h32v176c0 8.8 7.2 16 16 16s16-7.2 16-16V352c0-123.7-100.3-224-224-224H96Z"
476
+ />
477
+ );
478
+ export const Seedling = memo(_Seedling);
479
+ Seedling.displayName = "Seedling";
480
+
481
+ const _Sort = (props: SVGProps<SVGSVGElement>) => (
482
+ <SVG
483
+ {...props}
484
+ d="M314.4 98.2c1.4-1.3 3.5-2.2 5.6-2.2 2.1 0 4.2.8 5.6 2.2l120.2 113.5c1.4 1.3 2.2 3.2 2.2 5.2 0 3.9-3.2 7.1-7.1 7.1H199.1c-3.9 0-7.1-3.2-7.1-7.1 0-2 .8-3.8 2.2-5.2L314.4 98.2Zm-22-23.3L172.3 188.4c-7.9 7.4-12.3 17.7-12.3 28.5 0 21.6 17.5 39.1 39.1 39.1h241.8c21.6 0 39.1-17.5 39.1-39.1 0-10.8-4.4-21.1-12.3-28.5L347.6 74.9c-7.5-7-17.4-10.9-27.6-10.9-10.2 0-20.1 3.9-27.6 10.9ZM314.4 541.8c1.4 1.3 3.5 2.2 5.6 2.2 2.1 0 4.2-.8 5.6-2.2l120.2-113.5c1.4-1.3 2.2-3.2 2.2-5.2 0-3.9-3.2-7.1-7.1-7.1H199.1c-3.9 0-7.1 3.2-7.1 7.1 0 2 .8 3.8 2.2 5.2l120.2 113.5Zm-22 23.3L172.3 451.6c-7.9-7.4-12.3-17.7-12.3-28.5 0-21.6 17.5-39.1 39.1-39.1h241.8c21.6 0 39.1 17.5 39.1 39.1 0 10.8-4.4 21.1-12.3 28.5L347.6 565.1c-7.4 7-17.3 10.9-27.6 10.9s-20.1-3.9-27.6-10.9Z"
485
+ />
486
+ );
487
+ export const Sort = memo(_Sort);
488
+ Sort.displayName = "Sort";
489
+
490
+ const _Sliders = (props: SVGProps<SVGSVGElement>) => (
491
+ <SVG
492
+ {...props}
493
+ d="M64 480c0 8.8 7.2 16 16 16h65.6c7.4 36.5 39.7 64 78.4 64s71-27.5 78.4-64H560c8.8 0 16-7.2 16-16s-7.2-16-16-16H302.4c-7.4-36.5-39.7-64-78.4-64s-71 27.5-78.4 64H80c-8.8 0-16 7.2-16 16Zm112 0c0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48-48-21.49-48-48Zm192-160a48 48 0 0 1 96 0c0 26.51-21.49 48-48 48s-48-21.49-48-48Zm48-80c-38.7 0-71 27.5-78.4 64H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h257.6c7.4 36.5 39.7 64 78.4 64s71-27.5 78.4-64H560c8.8 0 16-7.2 16-16s-7.2-16-16-16h-65.6c-7.4-36.5-39.7-64-78.4-64Zm-160-32c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48Zm78.4-64c-7.4-36.5-39.7-64-78.4-64s-71 27.5-78.4 64H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.6c7.4 36.5 39.7 64 78.4 64s71-27.5 78.4-64H560c8.8 0 16-7.2 16-16s-7.2-16-16-16H334.4Z"
494
+ />
495
+ );
496
+ export const Sliders = memo(_Sliders);
497
+ Sliders.displayName = "Sliders";
498
+
499
+ const _SortDown = (props: SVGProps<SVGSVGElement>) => (
500
+ <SVG
501
+ {...props}
502
+ d="M314.4 541.8c1.4 1.3 3.5 2.2 5.6 2.2 2.1 0 4.2-.8 5.6-2.2l120.2-113.5c1.4-1.3 2.2-3.2 2.2-5.2 0-3.9-3.2-7.1-7.1-7.1H199.1c-3.9 0-7.1 3.2-7.1 7.1 0 2 .8 3.8 2.2 5.2l120.2 113.5Zm-22 23.3L172.3 451.6c-7.9-7.4-12.3-17.7-12.3-28.5 0-21.6 17.5-39.1 39.1-39.1h241.8c21.6 0 39.1 17.5 39.1 39.1 0 10.8-4.4 21.1-12.3 28.5L347.6 565.1c-7.4 7-17.3 10.9-27.6 10.9s-20.1-3.9-27.6-10.9Z"
503
+ />
504
+ );
505
+ export const SortDown = memo(_SortDown);
506
+ SortDown.displayName = "SortDown";
507
+
508
+ const _SortUp = (props: SVGProps<SVGSVGElement>) => (
509
+ <SVG
510
+ {...props}
511
+ d="M314.4 98.2c1.4-1.3 3.5-2.2 5.6-2.2 2.1 0 4.2.8 5.6 2.2l120.2 113.5c1.4 1.3 2.2 3.2 2.2 5.2 0 3.9-3.2 7.1-7.1 7.1H199.1c-3.9 0-7.1-3.2-7.1-7.1 0-2 .8-3.8 2.2-5.2L314.4 98.2Zm-22-23.3L172.3 188.4c-7.9 7.4-12.3 17.7-12.3 28.5 0 21.6 17.5 39.1 39.1 39.1h241.8c21.6 0 39.1-17.5 39.1-39.1 0-10.8-4.4-21.1-12.3-28.5L347.6 74.9c-7.5-7-17.4-10.9-27.6-10.9-10.2 0-20.1 3.9-27.6 10.9Z"
512
+ />
513
+ );
514
+ export const SortUp = memo(_SortUp);
515
+ SortUp.displayName = "SortUp";
516
+
517
+ const _StakeMinus = (props: SVGProps<SVGSVGElement>) => (
518
+ <SVG
519
+ {...props}
520
+ d="M440 128h112c8.8 0 16 7.2 16 16s-7.2 16-16 16H440c-8.8 0-16-7.2-16-16s7.2-16 16-16Zm-141.8 68.7c6.9-3.1 14.3-4.7 21.8-4.7s15 1.6 21.8 4.7l217.4 97.5c10.2 4.6 16.8 14.7 16.8 25.9s-6.6 21.3-16.8 25.9l-217.4 97.3c-6.9 3.1-14.3 4.7-21.8 4.7s-15-1.6-21.8-4.7L80.8 345.9C70.6 341.3 64 331.2 64 320s6.6-21.3 16.8-25.9l217.4-97.5v.1ZM320 224c-3 0-6 .6-8.8 1.9L101.3 320l210 94.1c2.8 1.2 5.7 1.9 8.8 1.9 3.1 0 6-.6 8.8-1.9l210-94.1-210-94.1c-2.8-1.2-5.7-1.9-8.8-1.9h-.1ZM80.8 422.1l45.9-20.6 39.1 17.5-64.5 29 210 94.1c2.8 1.2 5.7 1.9 8.8 1.9 3.1 0 6-.6 8.8-1.9l210-94.1-64.5-28.9 39.1-17.5 45.9 20.6c10.2 4.6 16.8 14.7 16.8 25.9s-6.6 21.3-16.8 25.9l-217.6 97.3c-6.9 3.1-14.3 4.7-21.8 4.7s-15-1.6-21.8-4.7L80.8 473.9C70.6 469.3 64 459.2 64 448s6.6-21.3 16.8-25.9Z"
521
+ />
522
+ );
523
+ export const StakeMinus = memo(_StakeMinus);
524
+ StakeMinus.displayName = "StakeMinus";
525
+
526
+ const _StakePlus = (props: SVGProps<SVGSVGElement>) => (
527
+ <SVG
528
+ {...props}
529
+ d="M512 88c0-8.8-7.2-16-16-16s-16 7.2-16 16v40h-40c-8.8 0-16 7.2-16 16s7.2 16 16 16h40v40c0 8.8 7.2 16 16 16s16-7.2 16-16v-40h40c8.8 0 16-7.2 16-16s-7.2-16-16-16h-40V88ZM320 192c-7.5 0-15 1.6-21.8 4.7L80.8 294.1C70.6 298.7 64 308.8 64 320s6.6 21.3 16.8 25.9l217.4 97.5c6.9 3.1 14.3 4.7 21.8 4.7s15-1.6 21.8-4.7l217.4-97.5c10.2-4.6 16.8-14.7 16.8-25.9s-6.6-21.3-16.8-25.9l-217.4-97.4c-6.9-3.1-14.3-4.7-21.8-4.7Zm-8.8 33.9c2.8-1.2 5.7-1.9 8.8-1.9 3.1 0 6 .6 8.8 1.9l210 94.1-210 94.1c-2.8 1.2-5.7 1.9-8.8 1.9-3.1 0-6-.6-8.8-1.9L101.3 320l210-94.1h-.1ZM126.7 401.5l-45.9 20.6C70.6 426.7 64 436.8 64 448s6.6 21.3 16.8 25.9l217.4 97.5c6.9 3.1 14.3 4.7 21.8 4.7s15-1.6 21.8-4.7l217.4-97.5c10.2-4.6 16.8-14.7 16.8-25.9s-6.6-21.3-16.8-25.9l-45.9-20.6-39.1 17.5 64.5 29-210 94.1c-2.8 1.2-5.7 1.9-8.8 1.9-3.1 0-6-.6-8.8-1.9L101.3 448l64.5-28.9-39.1-17.6Z"
530
+ />
531
+ );
532
+ export const StakePlus = memo(_StakePlus);
533
+ StakePlus.displayName = "StakePlus";
534
+
535
+ const _Stake = (props: SVGProps<SVGSVGElement>) => (
536
+ <SVG
537
+ {...props}
538
+ d="M298.2 68.7C305 65.6 312.5 64 320 64s15 1.6 21.8 4.7l217.4 97.5c10.2 4.6 16.8 14.7 16.8 25.9s-6.6 21.3-16.8 25.9l-217.4 97.3c-6.9 3.1-14.3 4.7-21.8 4.7s-15-1.6-21.8-4.7L80.8 217.9C70.6 213.3 64 203.2 64 192s6.6-21.3 16.8-25.9l217.4-97.4ZM320 96c-3 0-6 .6-8.8 1.9L101.3 192l210 94.1c2.8 1.2 5.7 1.9 8.8 1.9 3.1 0 6-.6 8.8-1.9l210-94.1-210-94.1C326 96.6 323 96 320 96ZM80.8 422.1l45.9-20.6 39.1 17.5-64.5 29 210 94.1c2.8 1.2 5.7 1.9 8.8 1.9 3.1 0 6-.6 8.8-1.9l210-94.1-64.5-28.9 39.1-17.5 45.9 20.6c10.2 4.6 16.8 14.7 16.8 25.9s-6.6 21.3-16.8 25.9l-217.6 97.3c-6.9 3.1-14.3 4.7-21.8 4.7s-15-1.6-21.8-4.7L80.8 473.9C70.6 469.3 64 459.2 64 448s6.6-21.3 16.8-25.9Zm45.9-148.6 39.1 17.5-64.5 29 210 94.1c2.8 1.2 5.7 1.9 8.8 1.9 3.1 0 6-.6 8.8-1.9l210-94.1-64.5-28.9 39.1-17.5 45.9 20.6c10.2 4.6 16.8 14.7 16.8 25.9s-6.6 21.3-16.8 25.9l-217.6 97.3c-6.9 3.1-14.3 4.7-21.8 4.7s-15-1.6-21.8-4.7L80.8 345.9C70.6 341.3 64 331.2 64 320s6.6-21.3 16.8-25.9l45.9-20.6Z"
539
+ />
540
+ );
541
+ export const Stake = memo(_Stake);
542
+ Stake.displayName = "Stake";
543
+
544
+ const _StarSolid = (props: SVGProps<SVGSVGElement>) => (
545
+ <SVG
546
+ {...props}
547
+ d="M348.756 82c-5.3-11-16.5-18-28.8-18s-23.4 7-28.8 18l-64.3 132.3-143.6 21.2c-12 1.8-22 10.2-25.7 21.7-3.7 11.5-.7 24.2 7.9 32.7l104.2 103.1-24.6 145.7c-2 12 3 24.2 12.9 31.3 9.9 7.1 23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3 9.9-7.2 14.9-19.3 12.9-31.3l-24.7-145.7 104.2-103.1c8.6-8.5 11.7-21.2 7.9-32.7-3.8-11.5-13.7-19.9-25.7-21.7l-143.7-21.2-64.3-132.3Z"
548
+ />
549
+ );
550
+ export const StarSolid = memo(_StarSolid);
551
+ StarSolid.displayName = "StarSolid";
552
+
553
+ const _Star = (props: SVGProps<SVGSVGElement>) => (
554
+ <SVG
555
+ {...props}
556
+ d="m258.475 232.8 61.4-126.5 61.4 126.5c4.6 9.5 13.6 16.1 24.1 17.7l137.4 20.3-99.8 98.8c-7.4 7.3-10.8 17.8-9 28.1l23.5 139.5-122.5-65.5c-9.4-5-20.7-5-30.2 0l-122.6 65.5 23.5-139.5c1.7-10.3-1.6-20.7-9-28.1l-99.7-98.8 137.4-20.3c10.5-1.5 19.5-8.2 24.1-17.7Zm198.4 340.3c8.1 4.3 17.9 3.7 25.3-1.7 7.4-5.4 11.2-14.5 9.7-23.5l-26.3-155.5 111.2-110.2c6.5-6.4 8.7-15.9 5.9-24.5-2.8-8.6-10.3-14.9-19.3-16.3l-153.3-22.6-68.6-141.3c-4-8.3-12.4-13.5-21.6-13.5-9.2 0-17.6 5.2-21.6 13.5l-68.6 141.3-153.2 22.7c-9 1.3-16.5 7.6-19.3 16.3-2.8 8.7-.5 18.1 5.9 24.5l111.1 110.1-26.2 155.5c-1.5 9 2.2 18.1 9.7 23.5 7.5 5.4 17.3 6 25.3 1.7l137-73.2 137 73.2h-.1Z"
557
+ />
558
+ );
559
+ export const Star = memo(_Star);
560
+ Star.displayName = "Star";
561
+
562
+ const _Stopwatch = (props: SVGProps<SVGSVGElement>) => (
563
+ <SVG
564
+ {...props}
565
+ d="M224 80c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16s-7.2 16-16 16h-64v64.6c49.4 3.8 94 24.8 127.7 57l37-37c6.2-6.2 16.4-6.2 22.6 0 6.2 6.2 6.2 16.4 0 22.6l-38.2 38.2C512 276.6 528 320.4 528 368c0 114.9-93.1 208-208 208s-208-93.1-208-208c0-109.5 84.6-199.2 192-207.4V96h-64c-8.8 0-16-7.2-16-16Zm-80 288c0 97.202 78.798 176 176 176s176-78.798 176-176-78.798-176-176-176-176 78.798-176 176Zm192-96v112c0 8.8-7.2 16-16 16s-16-7.2-16-16V272c0-8.8 7.2-16 16-16s16 7.2 16 16Z"
566
+ />
567
+ );
568
+ export const Stopwatch = memo(_Stopwatch);
569
+ Stopwatch.displayName = "Stopwatch";
570
+
571
+ const _Swap = (props: SVGProps<SVGSVGElement>) => (
572
+ <SVG
573
+ {...props}
574
+ d="M491.3 100.65c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l52.7 52.7H408c-20.1 0-39.1 9.5-51.2 25.6l-48.8 65.1 20 26.7 54.4-72.5c6-8.1 15.5-12.8 25.6-12.8h113.4l-52.7 52.7c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l80-80c6.2-6.2 6.2-16.4 0-22.6l-80-80v-.1Zm-302.5 324.9c-3 4-7.8 6.4-12.8 6.4H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c15.1 0 29.3-7.1 38.4-19.2l53.6-71.5-20-26.7-59.2 78.9v.1Zm279.9 113.7c6.2 6.2 16.4 6.2 22.6 0l80-80c6.2-6.2 6.2-16.4 0-22.6l-80-80c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l52.7 52.7H408c-10.1 0-19.6-4.7-25.6-12.8l-168-224c-9.1-12.1-23.3-19.2-38.4-19.2H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c5 0 9.8 2.4 12.8 6.4l168 224c12.1 16.1 31.1 25.6 51.2 25.6h113.4l-52.7 52.7c-6.2 6.2-6.2 16.4 0 22.6Z"
575
+ />
576
+ );
577
+ export const Swap = memo(_Swap);
578
+ Swap.displayName = "Swap";
579
+
580
+ const _Telegram = (props: SVGProps<SVGSVGElement>) => (
581
+ <SVG
582
+ {...props}
583
+ d="M320 72C183.033 72 72 183.033 72 320c0 136.967 111.033 248 248 248 136.967 0 248-111.033 248-248 0-136.967-111.033-248-248-248Zm114.952 168.66c-3.732 39.215-19.881 134.378-28.1 178.3-3.476 18.584-10.322 24.816-16.948 25.425-14.4 1.326-25.338-9.517-39.287-18.661-21.827-14.308-34.158-23.215-55.346-37.177-24.485-16.135-8.612-25 5.342-39.5 3.652-3.793 67.107-61.51 68.335-66.746.153-.655.3-3.1-1.154-4.384-1.454-1.284-3.59-.849-5.135-.5-2.189.497-37.058 23.545-104.608 69.142-9.897 6.796-18.861 10.107-26.894 9.934-8.855-.191-25.888-5.006-38.551-9.123-15.531-5.048-27.875-7.717-26.8-16.291.56-4.467 6.71-9.033 18.45-13.7 72.297-31.499 120.507-52.265 144.628-62.3 68.872-28.647 83.183-33.623 92.511-33.79 2.052-.033 6.639.475 9.61 2.886a10.452 10.452 0 0 1 3.53 6.716c.503 3.23.643 6.507.417 9.769Z"
584
+ />
585
+ );
586
+ export const Telegram = memo(_Telegram);
587
+ Telegram.displayName = "Telegram";
588
+
589
+ const _Terminal = (props: SVGProps<SVGSVGElement>) => (
590
+ <SVG
591
+ {...props}
592
+ d="M480 128c17.7 0 32 14.3 32 32v320c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h320ZM160 96c-35.3 0-64 28.7-64 64v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H160Zm19.9 117.6c-5.8 6.7-5 16.8 1.7 22.6l97.8 83.8-97.8 83.9c-6.7 5.8-7.5 15.8-1.7 22.6 5.8 6.8 15.9 7.5 22.6 1.7l112-96c3.5-3 5.6-7.5 5.6-12.1s-2-9.1-5.6-12.1l-112-96c-6.7-5.8-16.8-5-22.6 1.7v-.1ZM304 416c-8.8 0-16 7.2-16 16s7.2 16 16 16h160c8.8 0 16-7.2 16-16s-7.2-16-16-16H304Z"
593
+ />
594
+ );
595
+ export const Terminal = memo(_Terminal);
596
+ Terminal.displayName = "Terminal";
597
+
598
+ const _Timer = (props: SVGProps<SVGSVGElement>) => (
599
+ <SVG
600
+ {...props}
601
+ d="M320 64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V96.6c116.2 8.2 208 105.1 208 223.4 0 123.7-100.3 224-224 224S96 443.7 96 320c0-61.9 25.1-117.8 65.6-158.4 6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0-46.3 46.3-75 110.3-75 181 0 141.4 114.6 256 256 256s256-114.6 256-256S461.4 64 320 64Zm-84.7 148.7c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l96 96c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6l-96-96Z"
602
+ />
603
+ );
604
+ export const Timer = memo(_Timer);
605
+ Timer.displayName = "Timer";
606
+
607
+ const _TrendDown = (props: SVGProps<SVGSVGElement>) => (
608
+ <SVG
609
+ {...props}
610
+ d="M399.95 463.95c0 8.8 7.2 16 16 16h176c8.8 0 16-7.2 16-16v-176c0-8.8-7.2-16-16-16s-16 7.2-16 16v137.4l-212.7-212.7c-6.2-6.2-16.4-6.2-22.6 0l-116.7 116.7-164.7-164.7c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l176 176c6.2 6.2 16.4 6.2 22.6 0l116.7-116.7 201.4 201.4h-137.4c-8.8 0-16 7.2-16 16Z"
611
+ />
612
+ );
613
+ export const TrendDown = memo(_TrendDown);
614
+ TrendDown.displayName = "TrendDown";
615
+
616
+ const _TrendUp = (props: SVGProps<SVGSVGElement>) => (
617
+ <SVG
618
+ {...props}
619
+ d="M399.95 176c0-8.8 7.2-16 16-16h176c8.8 0 16 7.2 16 16v176c0 8.8-7.2 16-16 16s-16-7.2-16-16V214.6l-212.7 212.7c-6.2 6.2-16.4 6.2-22.6 0l-116.7-116.7-164.7 164.7c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6l176-176c6.2-6.2 16.4-6.2 22.6 0l116.7 116.7L553.35 192h-137.4c-8.8 0-16-7.2-16-16Z"
620
+ />
621
+ );
622
+ export const TrendUp = memo(_TrendUp);
623
+ TrendUp.displayName = "TrendUp";
624
+
625
+ const _Undo = (props: SVGProps<SVGSVGElement>) => (
626
+ <SVG
627
+ {...props}
628
+ d="M112 256c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16s16 7.2 16 16v92.6C167.2 139.5 238.5 96 320 96c123.7 0 224 100.3 224 224S443.7 544 320 544c-79.9 0-150-41.8-189.7-104.8-6.5-10.4 1.4-23.2 13.7-23.2 6 0 11.4 3.2 14.7 8.2C192.9 477 252.4 512 320 512c106 0 192-86 192-192s-86-192-192-192c-71.1 0-133.1 38.6-166.3 96H240c8.8 0 16 7.2 16 16s-7.2 16-16 16H112Z"
629
+ />
630
+ );
631
+ export const Undo = memo(_Undo);
632
+ Undo.displayName = "Undo";
633
+
634
+ const _Users = (props: SVGProps<SVGSVGElement>) => (
635
+ <SVG
636
+ {...props}
637
+ d="M96 144c0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48-48-21.49-48-48Zm128 0c0-44.183-35.817-80-80-80s-80 35.817-80 80 35.817 80 80 80 80-35.817 80-80Zm96 80c35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64Zm0 160a96 96 0 1 0 0-192 96 96 0 0 0 0 192Zm-58.7 64h117.4c54.2 0 98.4 42.5 101.2 96H160.1c2.8-53.5 47-96 101.2-96Zm0-32C187.7 416 128 475.7 128 549.3c0 14.7 11.9 26.7 26.7 26.7h330.6c14.7 0 26.7-11.9 26.7-26.7 0-73.6-59.7-133.3-133.3-133.3H261.3ZM512 96c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.49-48 48-48Zm0 128c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80Zm16 64c44.2 0 80 35.8 80 80 0 8.8 7.2 16 16 16s16-7.2 16-16c0-61.9-50.1-112-112-112h-84c2.6 10.2 4 21 4 32h80Zm-336 0c0-11 1.4-21.8 4-32h-84C50.1 256 0 306.1 0 368c0 8.8 7.2 16 16 16s16-7.2 16-16c0-44.2 35.8-80 80-80h80Z"
638
+ />
639
+ );
640
+ export const Users = memo(_Users);
641
+ Users.displayName = "Users";
642
+
643
+ const _Window = (props: SVGProps<SVGSVGElement>) => (
644
+ <SVG
645
+ {...props}
646
+ d="M496 96H272c-26.5 0-48 21.5-48 48v16h-32v-16c0-44.2 35.8-80 80-80h224c44.2 0 80 35.8 80 80v224c0 44.2-35.8 80-80 80h-16v-32h16c26.5 0 48-21.5 48-48V144c0-26.5-21.5-48-48-48ZM384 224H128c-17.7 0-32 14.3-32 32v64h320v-64c0-17.7-14.3-32-32-32ZM96 512c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V352H96v160Zm32-320h256c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64H128c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64Z"
647
+ />
648
+ );
649
+ export const Window = memo(_Window);
650
+ Window.displayName = "Window";
651
+
652
+ const _Wink = (props: SVGProps<SVGSVGElement>) => (
653
+ <SVG
654
+ {...props}
655
+ d="M320 72c136.966 0 248 111.034 248 248S456.966 568 320 568 72 456.966 72 320 183.034 72 320 72Zm-66.078 347.441c-8.99-6.117-21.222-3.8-27.432 5.19-6.209 8.99-3.892 21.315 5.097 27.524 2.132 1.39 36.237 24.281 85.447 24.281 25.023 0 53.845-5.93 84.335-23.446 9.453-5.468 12.697-17.609 7.229-27.062-5.468-9.453-17.608-12.696-27.061-7.228-68.302 39.294-125.02 2.502-127.615.741ZM242.894 266.99c-17.701 0-32.066 22.242-32.066 49.674s14.365 49.674 32.066 49.674c17.7 0 32.066-22.242 32.066-49.674s-14.365-49.674-32.066-49.674Zm118.625 51.527a19.761 19.761 0 0 0-9.36 26.413c3.428 7.136 10.472 11.306 17.886 11.306 2.873-.093 5.838-.741 8.526-2.039 32.436-15.477 59.498-1.39 60.888-.556 9.453 5.283 21.5 1.946 26.876-7.506 5.375-9.546 2.039-21.594-7.414-26.97-1.854-1.019-45.69-25.3-97.402-.648Zm47.172-64.78c-.371 10.936 8.155 20.11 19.09 20.481 35.866 1.298 53.29 26.32 54.216 27.71 3.8 5.746 10.102 8.897 16.589 8.897 3.614.093 7.321-1.02 10.658-3.15 9.175-5.932 11.862-18.165 5.93-27.433-1.111-1.76-28.821-43.557-86.002-45.596-10.936-.278-20.11 8.155-20.481 19.09Zm-193.507-87.208c-2.039.556-50.138 14.55-69.136 68.58-3.615 10.287 1.76 21.594 12.14 25.3a20.025 20.025 0 0 0 6.58 1.113 19.763 19.763 0 0 0 18.628-13.253c11.863-33.827 40.963-43.094 42.538-43.557 10.473-2.966 16.496-13.902 13.624-24.374-2.966-10.565-13.902-16.682-24.374-13.809Z"
656
+ />
657
+ );
658
+ export const Wink = memo(_Wink);
659
+ Wink.displayName = "Wink";
660
+
661
+ const _Withdraw = (props: SVGProps<SVGSVGElement>) => (
662
+ <SVG
663
+ {...props}
664
+ d="M80 96c-26.5 0-48 21.5-48 48v96c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-44.2 35.8-80 80-80h480c44.2 0 80 35.8 80 80v96c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-26.5-21.5-48-48-48H80Zm416 64c8.8 0 16 7.2 16 16v344c0 30.9-25.1 56-56 56H184c-30.9 0-56-25.1-56-56V176c0-8.8 7.2-16 16-16s16 7.2 16 16v272c53 0 96 43 96 96h128c0-53 43-96 96-96V176c0-8.8 7.2-16 16-16ZM224 544c0-35.3-28.7-64-64-64v40c0 13.3 10.7 24 24 24h40Zm232 0c13.3 0 24-10.7 24-24v-40c-35.3 0-64 28.7-64 64h40ZM320 272c-47 0-80 31.3-80 64s33 64 80 64 80-31.3 80-64-33-64-80-64Zm112 64c0 55.6-53 96-112 96s-112-40.4-112-96 53-96 112-96 112 40.4 112 96Z"
665
+ />
666
+ );
667
+ export const Withdraw = memo(_Withdraw);
668
+ Withdraw.displayName = "Withdraw";
669
+
670
+ const _X = (props: SVGProps<SVGSVGElement>) => (
671
+ <SVG
672
+ {...props}
673
+ d="M452.4 112H523L368.8 288.2 550.2 528h-142L296.9 382.6 169.7 528H99l164.9-188.5L90 112h145.6l100.5 132.9L452.4 112Zm-24.8 373.8h39.1L214.3 152h-42l255.3 333.8Z"
674
+ />
675
+ );
676
+ export const X = memo(_X);
677
+ X.displayName = "X";
678
+
679
+ const _Xmark = (props: SVGProps<SVGSVGElement>) => (
680
+ <SVG
681
+ {...props}
682
+ d="M516.65 100.65c6.2-6.2 16.4-6.2 22.6 0 6.2 6.2 6.2 16.4 0 22.6l-196.7 196.7 196.7 196.7c6.2 6.2 6.2 16.4 0 22.6-6.2 6.2-16.4 6.2-22.6 0l-196.7-196.7-196.7 196.7c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6l196.7-196.7-196.7-196.7c-6.2-6.2-6.2-16.4 0-22.6 6.2-6.2 16.4-6.2 22.6 0l196.7 196.7 196.7-196.7Z"
683
+ />
684
+ );
685
+ export const Xmark = memo(_Xmark);
686
+ Xmark.displayName = "Xmark";