rn-iconify 1.0.0 → 2.0.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 (657) hide show
  1. package/README.md +47 -235
  2. package/babel.js +14 -0
  3. package/lib/commonjs/IconRenderer.js +91 -4
  4. package/lib/commonjs/IconRenderer.js.map +1 -1
  5. package/lib/commonjs/accessibility/AccessibilityProvider.js +189 -0
  6. package/lib/commonjs/accessibility/AccessibilityProvider.js.map +1 -0
  7. package/lib/commonjs/accessibility/index.js +87 -0
  8. package/lib/commonjs/accessibility/index.js.map +1 -0
  9. package/lib/commonjs/accessibility/types.js +6 -0
  10. package/lib/commonjs/accessibility/types.js.map +1 -0
  11. package/lib/commonjs/accessibility/useAccessibleIcon.js +119 -0
  12. package/lib/commonjs/accessibility/useAccessibleIcon.js.map +1 -0
  13. package/lib/commonjs/accessibility/utils.js +231 -0
  14. package/lib/commonjs/accessibility/utils.js.map +1 -0
  15. package/lib/commonjs/alias/Icon.js +113 -0
  16. package/lib/commonjs/alias/Icon.js.map +1 -0
  17. package/lib/commonjs/alias/IconAliasContext.js +177 -0
  18. package/lib/commonjs/alias/IconAliasContext.js.map +1 -0
  19. package/lib/commonjs/alias/createIconAliases.js +222 -0
  20. package/lib/commonjs/alias/createIconAliases.js.map +1 -0
  21. package/lib/commonjs/alias/index.js +57 -0
  22. package/lib/commonjs/alias/index.js.map +1 -0
  23. package/lib/commonjs/alias/types.js +6 -0
  24. package/lib/commonjs/alias/types.js.map +1 -0
  25. package/lib/commonjs/animated/AnimatedIcon.js +116 -0
  26. package/lib/commonjs/animated/AnimatedIcon.js.map +1 -0
  27. package/lib/commonjs/animated/index.js +76 -0
  28. package/lib/commonjs/animated/index.js.map +1 -0
  29. package/lib/commonjs/animated/presets.js +220 -0
  30. package/lib/commonjs/animated/presets.js.map +1 -0
  31. package/lib/commonjs/animated/types.js +71 -0
  32. package/lib/commonjs/animated/types.js.map +1 -0
  33. package/lib/commonjs/animated/useIconAnimation.js +313 -0
  34. package/lib/commonjs/animated/useIconAnimation.js.map +1 -0
  35. package/lib/commonjs/babel/ast-utils.js +214 -0
  36. package/lib/commonjs/babel/ast-utils.js.map +1 -0
  37. package/lib/commonjs/babel/cache-writer.js +281 -0
  38. package/lib/commonjs/babel/cache-writer.js.map +1 -0
  39. package/lib/commonjs/babel/collector.js +219 -0
  40. package/lib/commonjs/babel/collector.js.map +1 -0
  41. package/lib/commonjs/babel/index.js +104 -0
  42. package/lib/commonjs/babel/index.js.map +1 -0
  43. package/lib/commonjs/babel/plugin.js +226 -0
  44. package/lib/commonjs/babel/plugin.js.map +1 -0
  45. package/lib/commonjs/babel/types.js +485 -0
  46. package/lib/commonjs/babel/types.js.map +1 -0
  47. package/lib/commonjs/bundle/index.js +213 -0
  48. package/lib/commonjs/bundle/index.js.map +1 -0
  49. package/lib/commonjs/cache/CacheManager.js +105 -6
  50. package/lib/commonjs/cache/CacheManager.js.map +1 -1
  51. package/lib/commonjs/cli/commands/analyze.js +171 -0
  52. package/lib/commonjs/cli/commands/analyze.js.map +1 -0
  53. package/lib/commonjs/cli/commands/bundle.js +214 -0
  54. package/lib/commonjs/cli/commands/bundle.js.map +1 -0
  55. package/lib/commonjs/cli/index.js +142 -0
  56. package/lib/commonjs/cli/index.js.map +1 -0
  57. package/lib/commonjs/cli/parser.js +260 -0
  58. package/lib/commonjs/cli/parser.js.map +1 -0
  59. package/lib/commonjs/cli/types.js +42 -0
  60. package/lib/commonjs/cli/types.js.map +1 -0
  61. package/lib/commonjs/config/ConfigManager.js +182 -0
  62. package/lib/commonjs/config/ConfigManager.js.map +1 -0
  63. package/lib/commonjs/config/index.js +44 -0
  64. package/lib/commonjs/config/index.js.map +1 -0
  65. package/lib/commonjs/config/types.js +55 -0
  66. package/lib/commonjs/config/types.js.map +1 -0
  67. package/lib/commonjs/createIconSet.js +49 -11
  68. package/lib/commonjs/createIconSet.js.map +1 -1
  69. package/lib/commonjs/explorer/IconExplorer.js +827 -0
  70. package/lib/commonjs/explorer/IconExplorer.js.map +1 -0
  71. package/lib/commonjs/explorer/iconSets.js +303 -0
  72. package/lib/commonjs/explorer/iconSets.js.map +1 -0
  73. package/lib/commonjs/explorer/index.js +93 -0
  74. package/lib/commonjs/explorer/index.js.map +1 -0
  75. package/lib/commonjs/explorer/types.js +6 -0
  76. package/lib/commonjs/explorer/types.js.map +1 -0
  77. package/lib/commonjs/explorer/useExplorer.js +359 -0
  78. package/lib/commonjs/explorer/useExplorer.js.map +1 -0
  79. package/lib/commonjs/index.js +618 -12
  80. package/lib/commonjs/index.js.map +1 -1
  81. package/lib/commonjs/navigation/createDrawerIcon.js +129 -0
  82. package/lib/commonjs/navigation/createDrawerIcon.js.map +1 -0
  83. package/lib/commonjs/navigation/createHeaderIcon.js +185 -0
  84. package/lib/commonjs/navigation/createHeaderIcon.js.map +1 -0
  85. package/lib/commonjs/navigation/createTabBarIcon.js +178 -0
  86. package/lib/commonjs/navigation/createTabBarIcon.js.map +1 -0
  87. package/lib/commonjs/navigation/index.js +83 -0
  88. package/lib/commonjs/navigation/index.js.map +1 -0
  89. package/lib/commonjs/navigation/types.js +94 -0
  90. package/lib/commonjs/navigation/types.js.map +1 -0
  91. package/lib/commonjs/navigation/useNavigationIcon.js +128 -0
  92. package/lib/commonjs/navigation/useNavigationIcon.js.map +1 -0
  93. package/lib/commonjs/network/IconifyAPI.js +154 -14
  94. package/lib/commonjs/network/IconifyAPI.js.map +1 -1
  95. package/lib/commonjs/network/index.js +18 -0
  96. package/lib/commonjs/network/index.js.map +1 -1
  97. package/lib/commonjs/performance/PerformanceMonitor.js +327 -0
  98. package/lib/commonjs/performance/PerformanceMonitor.js.map +1 -0
  99. package/lib/commonjs/performance/index.js +43 -0
  100. package/lib/commonjs/performance/index.js.map +1 -0
  101. package/lib/commonjs/performance/types.js +2 -0
  102. package/lib/commonjs/performance/types.js.map +1 -0
  103. package/lib/commonjs/placeholder/PlaceholderFactory.js +111 -0
  104. package/lib/commonjs/placeholder/PlaceholderFactory.js.map +1 -0
  105. package/lib/commonjs/placeholder/Pulse.js +77 -0
  106. package/lib/commonjs/placeholder/Pulse.js.map +1 -0
  107. package/lib/commonjs/placeholder/Shimmer.js +95 -0
  108. package/lib/commonjs/placeholder/Shimmer.js.map +1 -0
  109. package/lib/commonjs/placeholder/Skeleton.js +52 -0
  110. package/lib/commonjs/placeholder/Skeleton.js.map +1 -0
  111. package/lib/commonjs/placeholder/index.js +41 -0
  112. package/lib/commonjs/placeholder/index.js.map +1 -0
  113. package/lib/commonjs/placeholder/types.js +40 -0
  114. package/lib/commonjs/placeholder/types.js.map +1 -0
  115. package/lib/commonjs/theme/IconThemeProvider.js +96 -0
  116. package/lib/commonjs/theme/IconThemeProvider.js.map +1 -0
  117. package/lib/commonjs/theme/context.js +53 -0
  118. package/lib/commonjs/theme/context.js.map +1 -0
  119. package/lib/commonjs/theme/index.js +52 -0
  120. package/lib/commonjs/theme/index.js.map +1 -0
  121. package/lib/commonjs/theme/types.js +39 -0
  122. package/lib/commonjs/theme/types.js.map +1 -0
  123. package/lib/commonjs/theme/useIconTheme.js +121 -0
  124. package/lib/commonjs/theme/useIconTheme.js.map +1 -0
  125. package/lib/module/IconRenderer.js +92 -5
  126. package/lib/module/IconRenderer.js.map +1 -1
  127. package/lib/module/accessibility/AccessibilityProvider.js +179 -0
  128. package/lib/module/accessibility/AccessibilityProvider.js.map +1 -0
  129. package/lib/module/accessibility/index.js +42 -0
  130. package/lib/module/accessibility/index.js.map +1 -0
  131. package/lib/module/accessibility/types.js +2 -0
  132. package/lib/module/accessibility/types.js.map +1 -0
  133. package/lib/module/accessibility/useAccessibleIcon.js +112 -0
  134. package/lib/module/accessibility/useAccessibleIcon.js.map +1 -0
  135. package/lib/module/accessibility/utils.js +221 -0
  136. package/lib/module/accessibility/utils.js.map +1 -0
  137. package/lib/module/alias/Icon.js +105 -0
  138. package/lib/module/alias/Icon.js.map +1 -0
  139. package/lib/module/alias/IconAliasContext.js +166 -0
  140. package/lib/module/alias/IconAliasContext.js.map +1 -0
  141. package/lib/module/alias/createIconAliases.js +213 -0
  142. package/lib/module/alias/createIconAliases.js.map +1 -0
  143. package/lib/module/alias/index.js +45 -0
  144. package/lib/module/alias/index.js.map +1 -0
  145. package/lib/module/alias/types.js +2 -0
  146. package/lib/module/alias/types.js.map +1 -0
  147. package/lib/module/animated/AnimatedIcon.js +109 -0
  148. package/lib/module/animated/AnimatedIcon.js.map +1 -0
  149. package/lib/module/animated/index.js +80 -0
  150. package/lib/module/animated/index.js.map +1 -0
  151. package/lib/module/animated/presets.js +209 -0
  152. package/lib/module/animated/presets.js.map +1 -0
  153. package/lib/module/animated/types.js +65 -0
  154. package/lib/module/animated/types.js.map +1 -0
  155. package/lib/module/animated/useIconAnimation.js +306 -0
  156. package/lib/module/animated/useIconAnimation.js.map +1 -0
  157. package/lib/module/babel/ast-utils.js +201 -0
  158. package/lib/module/babel/ast-utils.js.map +1 -0
  159. package/lib/module/babel/cache-writer.js +269 -0
  160. package/lib/module/babel/cache-writer.js.map +1 -0
  161. package/lib/module/babel/collector.js +214 -0
  162. package/lib/module/babel/collector.js.map +1 -0
  163. package/lib/module/babel/index.js +51 -0
  164. package/lib/module/babel/index.js.map +1 -0
  165. package/lib/module/babel/plugin.js +220 -0
  166. package/lib/module/babel/plugin.js.map +1 -0
  167. package/lib/module/babel/types.js +476 -0
  168. package/lib/module/babel/types.js.map +1 -0
  169. package/lib/module/bundle/index.js +205 -0
  170. package/lib/module/bundle/index.js.map +1 -0
  171. package/lib/module/cache/CacheManager.js +106 -6
  172. package/lib/module/cache/CacheManager.js.map +1 -1
  173. package/lib/module/cli/commands/analyze.js +166 -0
  174. package/lib/module/cli/commands/analyze.js.map +1 -0
  175. package/lib/module/cli/commands/bundle.js +208 -0
  176. package/lib/module/cli/commands/bundle.js.map +1 -0
  177. package/lib/module/cli/index.js +140 -0
  178. package/lib/module/cli/index.js.map +1 -0
  179. package/lib/module/cli/parser.js +251 -0
  180. package/lib/module/cli/parser.js.map +1 -0
  181. package/lib/module/cli/types.js +36 -0
  182. package/lib/module/cli/types.js.map +1 -0
  183. package/lib/module/components/index.js +27 -1
  184. package/lib/module/components/index.js.map +1 -1
  185. package/lib/module/config/ConfigManager.js +173 -0
  186. package/lib/module/config/ConfigManager.js.map +1 -0
  187. package/lib/module/config/index.js +28 -0
  188. package/lib/module/config/index.js.map +1 -0
  189. package/lib/module/config/types.js +49 -0
  190. package/lib/module/config/types.js.map +1 -0
  191. package/lib/module/createIconSet.js +49 -11
  192. package/lib/module/createIconSet.js.map +1 -1
  193. package/lib/module/explorer/IconExplorer.js +817 -0
  194. package/lib/module/explorer/IconExplorer.js.map +1 -0
  195. package/lib/module/explorer/iconSets.js +291 -0
  196. package/lib/module/explorer/iconSets.js.map +1 -0
  197. package/lib/module/explorer/index.js +42 -0
  198. package/lib/module/explorer/index.js.map +1 -0
  199. package/lib/module/explorer/types.js +2 -0
  200. package/lib/module/explorer/types.js.map +1 -0
  201. package/lib/module/explorer/useExplorer.js +353 -0
  202. package/lib/module/explorer/useExplorer.js.map +1 -0
  203. package/lib/module/index.js +26 -11
  204. package/lib/module/index.js.map +1 -1
  205. package/lib/module/navigation/createDrawerIcon.js +121 -0
  206. package/lib/module/navigation/createDrawerIcon.js.map +1 -0
  207. package/lib/module/navigation/createHeaderIcon.js +175 -0
  208. package/lib/module/navigation/createHeaderIcon.js.map +1 -0
  209. package/lib/module/navigation/createTabBarIcon.js +168 -0
  210. package/lib/module/navigation/createTabBarIcon.js.map +1 -0
  211. package/lib/module/navigation/index.js +59 -0
  212. package/lib/module/navigation/index.js.map +1 -0
  213. package/lib/module/navigation/types.js +88 -0
  214. package/lib/module/navigation/types.js.map +1 -0
  215. package/lib/module/navigation/useNavigationIcon.js +121 -0
  216. package/lib/module/navigation/useNavigationIcon.js.map +1 -0
  217. package/lib/module/network/IconifyAPI.js +152 -14
  218. package/lib/module/network/IconifyAPI.js.map +1 -1
  219. package/lib/module/network/index.js +1 -1
  220. package/lib/module/network/index.js.map +1 -1
  221. package/lib/module/performance/PerformanceMonitor.js +317 -0
  222. package/lib/module/performance/PerformanceMonitor.js.map +1 -0
  223. package/lib/module/performance/index.js +26 -0
  224. package/lib/module/performance/index.js.map +1 -0
  225. package/lib/module/performance/types.js +2 -0
  226. package/lib/module/performance/types.js.map +1 -0
  227. package/lib/module/placeholder/PlaceholderFactory.js +105 -0
  228. package/lib/module/placeholder/PlaceholderFactory.js.map +1 -0
  229. package/lib/module/placeholder/Pulse.js +70 -0
  230. package/lib/module/placeholder/Pulse.js.map +1 -0
  231. package/lib/module/placeholder/Shimmer.js +88 -0
  232. package/lib/module/placeholder/Shimmer.js.map +1 -0
  233. package/lib/module/placeholder/Skeleton.js +45 -0
  234. package/lib/module/placeholder/Skeleton.js.map +1 -0
  235. package/lib/module/placeholder/index.js +15 -0
  236. package/lib/module/placeholder/index.js.map +1 -0
  237. package/lib/module/placeholder/types.js +34 -0
  238. package/lib/module/placeholder/types.js.map +1 -0
  239. package/lib/module/theme/IconThemeProvider.js +89 -0
  240. package/lib/module/theme/IconThemeProvider.js.map +1 -0
  241. package/lib/module/theme/context.js +47 -0
  242. package/lib/module/theme/context.js.map +1 -0
  243. package/lib/module/theme/index.js +19 -0
  244. package/lib/module/theme/index.js.map +1 -0
  245. package/lib/module/theme/types.js +33 -0
  246. package/lib/module/theme/types.js.map +1 -0
  247. package/lib/module/theme/useIconTheme.js +114 -0
  248. package/lib/module/theme/useIconTheme.js.map +1 -0
  249. package/lib/typescript/IconRenderer.d.ts +1 -1
  250. package/lib/typescript/IconRenderer.d.ts.map +1 -1
  251. package/lib/typescript/accessibility/AccessibilityProvider.d.ts +57 -0
  252. package/lib/typescript/accessibility/AccessibilityProvider.d.ts.map +1 -0
  253. package/lib/typescript/accessibility/index.d.ts +37 -0
  254. package/lib/typescript/accessibility/index.d.ts.map +1 -0
  255. package/lib/typescript/accessibility/types.d.ts +130 -0
  256. package/lib/typescript/accessibility/types.d.ts.map +1 -0
  257. package/lib/typescript/accessibility/useAccessibleIcon.d.ts +111 -0
  258. package/lib/typescript/accessibility/useAccessibleIcon.d.ts.map +1 -0
  259. package/lib/typescript/accessibility/utils.d.ts +29 -0
  260. package/lib/typescript/accessibility/utils.d.ts.map +1 -0
  261. package/lib/typescript/alias/Icon.d.ts +38 -0
  262. package/lib/typescript/alias/Icon.d.ts.map +1 -0
  263. package/lib/typescript/alias/IconAliasContext.d.ts +52 -0
  264. package/lib/typescript/alias/IconAliasContext.d.ts.map +1 -0
  265. package/lib/typescript/alias/createIconAliases.d.ts +77 -0
  266. package/lib/typescript/alias/createIconAliases.d.ts.map +1 -0
  267. package/lib/typescript/alias/index.d.ts +36 -0
  268. package/lib/typescript/alias/index.d.ts.map +1 -0
  269. package/lib/typescript/alias/types.d.ts +115 -0
  270. package/lib/typescript/alias/types.d.ts.map +1 -0
  271. package/lib/typescript/animated/AnimatedIcon.d.ts +45 -0
  272. package/lib/typescript/animated/AnimatedIcon.d.ts.map +1 -0
  273. package/lib/typescript/animated/index.d.ts +70 -0
  274. package/lib/typescript/animated/index.d.ts.map +1 -0
  275. package/lib/typescript/animated/presets.d.ts +35 -0
  276. package/lib/typescript/animated/presets.d.ts.map +1 -0
  277. package/lib/typescript/animated/types.d.ts +196 -0
  278. package/lib/typescript/animated/types.d.ts.map +1 -0
  279. package/lib/typescript/animated/useIconAnimation.d.ts +64 -0
  280. package/lib/typescript/animated/useIconAnimation.d.ts.map +1 -0
  281. package/lib/typescript/babel/ast-utils.d.ts +52 -0
  282. package/lib/typescript/babel/ast-utils.d.ts.map +1 -0
  283. package/lib/typescript/babel/cache-writer.d.ts +56 -0
  284. package/lib/typescript/babel/cache-writer.d.ts.map +1 -0
  285. package/lib/typescript/babel/collector.d.ts +107 -0
  286. package/lib/typescript/babel/collector.d.ts.map +1 -0
  287. package/lib/typescript/babel/index.d.ts +47 -0
  288. package/lib/typescript/babel/index.d.ts.map +1 -0
  289. package/lib/typescript/babel/plugin.d.ts +17 -0
  290. package/lib/typescript/babel/plugin.d.ts.map +1 -0
  291. package/lib/typescript/babel/types.d.ts +129 -0
  292. package/lib/typescript/babel/types.d.ts.map +1 -0
  293. package/lib/typescript/bundle/index.d.ts +161 -0
  294. package/lib/typescript/bundle/index.d.ts.map +1 -0
  295. package/lib/typescript/cache/CacheManager.d.ts +52 -4
  296. package/lib/typescript/cache/CacheManager.d.ts.map +1 -1
  297. package/lib/typescript/cli/commands/analyze.d.ts +10 -0
  298. package/lib/typescript/cli/commands/analyze.d.ts.map +1 -0
  299. package/lib/typescript/cli/commands/bundle.d.ts +10 -0
  300. package/lib/typescript/cli/commands/bundle.d.ts.map +1 -0
  301. package/lib/typescript/cli/index.d.ts +7 -0
  302. package/lib/typescript/cli/index.d.ts.map +1 -0
  303. package/lib/typescript/cli/parser.d.ts +18 -0
  304. package/lib/typescript/cli/parser.d.ts.map +1 -0
  305. package/lib/typescript/cli/types.d.ts +157 -0
  306. package/lib/typescript/cli/types.d.ts.map +1 -0
  307. package/lib/typescript/components/Academicons.d.ts +1 -1
  308. package/lib/typescript/components/AkarIcons.d.ts +1 -1
  309. package/lib/typescript/components/AntDesign.d.ts +1 -1
  310. package/lib/typescript/components/Arcticons.d.ts +1 -1
  311. package/lib/typescript/components/Basil.d.ts +1 -1
  312. package/lib/typescript/components/Bi.d.ts +1 -1
  313. package/lib/typescript/components/BitcoinIcons.d.ts +1 -1
  314. package/lib/typescript/components/Bpmn.d.ts +1 -1
  315. package/lib/typescript/components/Brandico.d.ts +1 -1
  316. package/lib/typescript/components/Bx.d.ts +1 -1
  317. package/lib/typescript/components/Bxl.d.ts +1 -1
  318. package/lib/typescript/components/Bxs.d.ts +1 -1
  319. package/lib/typescript/components/Bytesize.d.ts +1 -1
  320. package/lib/typescript/components/Carbon.d.ts +1 -1
  321. package/lib/typescript/components/Catppuccin.d.ts +1 -1
  322. package/lib/typescript/components/Cbi.d.ts +1 -1
  323. package/lib/typescript/components/Charm.d.ts +1 -1
  324. package/lib/typescript/components/Ci.d.ts +1 -1
  325. package/lib/typescript/components/Cib.d.ts +1 -1
  326. package/lib/typescript/components/Cif.d.ts +1 -1
  327. package/lib/typescript/components/Cil.d.ts +1 -1
  328. package/lib/typescript/components/CircleFlags.d.ts +1 -1
  329. package/lib/typescript/components/Circum.d.ts +1 -1
  330. package/lib/typescript/components/Clarity.d.ts +1 -1
  331. package/lib/typescript/components/Codex.d.ts +1 -1
  332. package/lib/typescript/components/Codicon.d.ts +1 -1
  333. package/lib/typescript/components/Covid.d.ts +1 -1
  334. package/lib/typescript/components/Cryptocurrency.d.ts +1 -1
  335. package/lib/typescript/components/CryptocurrencyColor.d.ts +1 -1
  336. package/lib/typescript/components/Cuida.d.ts +1 -1
  337. package/lib/typescript/components/Dashicons.d.ts +1 -1
  338. package/lib/typescript/components/Devicon.d.ts +1 -1
  339. package/lib/typescript/components/DeviconPlain.d.ts +1 -1
  340. package/lib/typescript/components/DinkieIcons.d.ts +1 -1
  341. package/lib/typescript/components/DuoIcons.d.ts +1 -1
  342. package/lib/typescript/components/Ei.d.ts +1 -1
  343. package/lib/typescript/components/El.d.ts +1 -1
  344. package/lib/typescript/components/EmojioneMonotone.d.ts +1 -1
  345. package/lib/typescript/components/Entypo.d.ts +1 -1
  346. package/lib/typescript/components/EntypoSocial.d.ts +1 -1
  347. package/lib/typescript/components/EosIcons.d.ts +1 -1
  348. package/lib/typescript/components/Ep.d.ts +1 -1
  349. package/lib/typescript/components/Et.d.ts +1 -1
  350. package/lib/typescript/components/Eva.d.ts +1 -1
  351. package/lib/typescript/components/F7.d.ts +1 -1
  352. package/lib/typescript/components/Fa.d.ts +1 -1
  353. package/lib/typescript/components/Fa6Brands.d.ts +1 -1
  354. package/lib/typescript/components/Fa6Regular.d.ts +1 -1
  355. package/lib/typescript/components/Fa6Solid.d.ts +1 -1
  356. package/lib/typescript/components/Fa7Brands.d.ts +1 -1
  357. package/lib/typescript/components/Fa7Regular.d.ts +1 -1
  358. package/lib/typescript/components/Fa7Solid.d.ts +1 -1
  359. package/lib/typescript/components/FaBrands.d.ts +1 -1
  360. package/lib/typescript/components/FaRegular.d.ts +1 -1
  361. package/lib/typescript/components/FaSolid.d.ts +1 -1
  362. package/lib/typescript/components/Fad.d.ts +1 -1
  363. package/lib/typescript/components/Famicons.d.ts +1 -1
  364. package/lib/typescript/components/Fe.d.ts +1 -1
  365. package/lib/typescript/components/Feather.d.ts +1 -1
  366. package/lib/typescript/components/FileIcons.d.ts +1 -1
  367. package/lib/typescript/components/Flag.d.ts +1 -1
  368. package/lib/typescript/components/Flagpack.d.ts +1 -1
  369. package/lib/typescript/components/FlatUi.d.ts +1 -1
  370. package/lib/typescript/components/Flowbite.d.ts +1 -1
  371. package/lib/typescript/components/Fluent.d.ts +1 -1
  372. package/lib/typescript/components/FluentColor.d.ts +1 -1
  373. package/lib/typescript/components/FluentEmoji.d.ts +1 -1
  374. package/lib/typescript/components/FluentEmojiFlat.d.ts +1 -1
  375. package/lib/typescript/components/FluentEmojiHighContrast.d.ts +1 -1
  376. package/lib/typescript/components/FluentMdl2.d.ts +1 -1
  377. package/lib/typescript/components/Fontelico.d.ts +1 -1
  378. package/lib/typescript/components/Fontisto.d.ts +1 -1
  379. package/lib/typescript/components/Formkit.d.ts +1 -1
  380. package/lib/typescript/components/Foundation.d.ts +1 -1
  381. package/lib/typescript/components/Gala.d.ts +1 -1
  382. package/lib/typescript/components/GameIcons.d.ts +1 -1
  383. package/lib/typescript/components/Garden.d.ts +1 -1
  384. package/lib/typescript/components/Geo.d.ts +1 -1
  385. package/lib/typescript/components/Gg.d.ts +1 -1
  386. package/lib/typescript/components/Gis.d.ts +1 -1
  387. package/lib/typescript/components/GravityUi.d.ts +1 -1
  388. package/lib/typescript/components/Gridicons.d.ts +1 -1
  389. package/lib/typescript/components/GrommetIcons.d.ts +1 -1
  390. package/lib/typescript/components/Guidance.d.ts +1 -1
  391. package/lib/typescript/components/Healthicons.d.ts +1 -1
  392. package/lib/typescript/components/Heroicons.d.ts +1 -1
  393. package/lib/typescript/components/HeroiconsOutline.d.ts +1 -1
  394. package/lib/typescript/components/HeroiconsSolid.d.ts +1 -1
  395. package/lib/typescript/components/Hugeicons.d.ts +1 -1
  396. package/lib/typescript/components/Humbleicons.d.ts +1 -1
  397. package/lib/typescript/components/Ic.d.ts +1 -1
  398. package/lib/typescript/components/IcomoonFree.d.ts +1 -1
  399. package/lib/typescript/components/IconPark.d.ts +1 -1
  400. package/lib/typescript/components/IconParkOutline.d.ts +1 -1
  401. package/lib/typescript/components/IconParkSolid.d.ts +1 -1
  402. package/lib/typescript/components/IconParkTwotone.d.ts +1 -1
  403. package/lib/typescript/components/Iconamoon.d.ts +1 -1
  404. package/lib/typescript/components/Iconoir.d.ts +1 -1
  405. package/lib/typescript/components/Icons8.d.ts +1 -1
  406. package/lib/typescript/components/Il.d.ts +1 -1
  407. package/lib/typescript/components/Ion.d.ts +1 -1
  408. package/lib/typescript/components/Iwwa.d.ts +1 -1
  409. package/lib/typescript/components/Ix.d.ts +1 -1
  410. package/lib/typescript/components/Jam.d.ts +1 -1
  411. package/lib/typescript/components/La.d.ts +1 -1
  412. package/lib/typescript/components/LetsIcons.d.ts +1 -1
  413. package/lib/typescript/components/LineMd.d.ts +1 -1
  414. package/lib/typescript/components/Lineicons.d.ts +1 -1
  415. package/lib/typescript/components/Logos.d.ts +1 -1
  416. package/lib/typescript/components/Ls.d.ts +1 -1
  417. package/lib/typescript/components/Lsicon.d.ts +1 -1
  418. package/lib/typescript/components/Lucide.d.ts +1 -1
  419. package/lib/typescript/components/LucideLab.d.ts +1 -1
  420. package/lib/typescript/components/Mage.d.ts +1 -1
  421. package/lib/typescript/components/Majesticons.d.ts +1 -1
  422. package/lib/typescript/components/Maki.d.ts +1 -1
  423. package/lib/typescript/components/Map.d.ts +1 -1
  424. package/lib/typescript/components/Marketeq.d.ts +1 -1
  425. package/lib/typescript/components/MaterialIconTheme.d.ts +1 -1
  426. package/lib/typescript/components/MaterialSymbols.d.ts +1 -1
  427. package/lib/typescript/components/MaterialSymbolsLight.d.ts +1 -1
  428. package/lib/typescript/components/Mdi.d.ts +1 -1
  429. package/lib/typescript/components/MdiLight.d.ts +1 -1
  430. package/lib/typescript/components/MedicalIcon.d.ts +1 -1
  431. package/lib/typescript/components/Memory.d.ts +1 -1
  432. package/lib/typescript/components/Meteocons.d.ts +1 -1
  433. package/lib/typescript/components/MeteorIcons.d.ts +1 -1
  434. package/lib/typescript/components/Mi.d.ts +1 -1
  435. package/lib/typescript/components/Mingcute.d.ts +1 -1
  436. package/lib/typescript/components/MonoIcons.d.ts +1 -1
  437. package/lib/typescript/components/Mynaui.d.ts +1 -1
  438. package/lib/typescript/components/Nimbus.d.ts +1 -1
  439. package/lib/typescript/components/Nonicons.d.ts +1 -1
  440. package/lib/typescript/components/Nrk.d.ts +1 -1
  441. package/lib/typescript/components/Octicon.d.ts +1 -1
  442. package/lib/typescript/components/Oi.d.ts +1 -1
  443. package/lib/typescript/components/Ooui.d.ts +1 -1
  444. package/lib/typescript/components/Oui.d.ts +1 -1
  445. package/lib/typescript/components/Pajamas.d.ts +1 -1
  446. package/lib/typescript/components/Pepicons.d.ts +1 -1
  447. package/lib/typescript/components/PepiconsPencil.d.ts +1 -1
  448. package/lib/typescript/components/PepiconsPop.d.ts +1 -1
  449. package/lib/typescript/components/PepiconsPrint.d.ts +1 -1
  450. package/lib/typescript/components/Ph.d.ts +1 -1
  451. package/lib/typescript/components/Picon.d.ts +1 -1
  452. package/lib/typescript/components/Pixel.d.ts +1 -1
  453. package/lib/typescript/components/Pixelarticons.d.ts +1 -1
  454. package/lib/typescript/components/Prime.d.ts +1 -1
  455. package/lib/typescript/components/Proicons.d.ts +1 -1
  456. package/lib/typescript/components/Ps.d.ts +1 -1
  457. package/lib/typescript/components/QlementineIcons.d.ts +1 -1
  458. package/lib/typescript/components/Quill.d.ts +1 -1
  459. package/lib/typescript/components/RadixIcons.d.ts +1 -1
  460. package/lib/typescript/components/Raphael.d.ts +1 -1
  461. package/lib/typescript/components/Ri.d.ts +1 -1
  462. package/lib/typescript/components/RivetIcons.d.ts +1 -1
  463. package/lib/typescript/components/Roentgen.d.ts +1 -1
  464. package/lib/typescript/components/Si.d.ts +1 -1
  465. package/lib/typescript/components/SiGlyph.d.ts +1 -1
  466. package/lib/typescript/components/Sidekickicons.d.ts +1 -1
  467. package/lib/typescript/components/SimpleIcons.d.ts +1 -1
  468. package/lib/typescript/components/SimpleLineIcons.d.ts +1 -1
  469. package/lib/typescript/components/SkillIcons.d.ts +1 -1
  470. package/lib/typescript/components/Solar.d.ts +1 -1
  471. package/lib/typescript/components/Stash.d.ts +1 -1
  472. package/lib/typescript/components/Streamline.d.ts +1 -1
  473. package/lib/typescript/components/StreamlineBlock.d.ts +1 -1
  474. package/lib/typescript/components/StreamlineColor.d.ts +1 -1
  475. package/lib/typescript/components/StreamlineCyber.d.ts +1 -1
  476. package/lib/typescript/components/StreamlineCyberColor.d.ts +1 -1
  477. package/lib/typescript/components/StreamlineEmojis.d.ts +1 -1
  478. package/lib/typescript/components/StreamlineFlex.d.ts +1 -1
  479. package/lib/typescript/components/StreamlineFlexColor.d.ts +1 -1
  480. package/lib/typescript/components/StreamlineFreehand.d.ts +1 -1
  481. package/lib/typescript/components/StreamlineFreehandColor.d.ts +1 -1
  482. package/lib/typescript/components/StreamlineKameleonColor.d.ts +1 -1
  483. package/lib/typescript/components/StreamlineLogos.d.ts +1 -1
  484. package/lib/typescript/components/StreamlinePixel.d.ts +1 -1
  485. package/lib/typescript/components/StreamlinePlump.d.ts +1 -1
  486. package/lib/typescript/components/StreamlinePlumpColor.d.ts +1 -1
  487. package/lib/typescript/components/StreamlineSharp.d.ts +1 -1
  488. package/lib/typescript/components/StreamlineSharpColor.d.ts +1 -1
  489. package/lib/typescript/components/StreamlineStickiesColor.d.ts +1 -1
  490. package/lib/typescript/components/StreamlineUltimate.d.ts +1 -1
  491. package/lib/typescript/components/StreamlineUltimateColor.d.ts +1 -1
  492. package/lib/typescript/components/Subway.d.ts +1 -1
  493. package/lib/typescript/components/SvgSpinners.d.ts +1 -1
  494. package/lib/typescript/components/SystemUicons.d.ts +1 -1
  495. package/lib/typescript/components/Tabler.d.ts +1 -1
  496. package/lib/typescript/components/Tdesign.d.ts +1 -1
  497. package/lib/typescript/components/Teenyicons.d.ts +1 -1
  498. package/lib/typescript/components/Temaki.d.ts +1 -1
  499. package/lib/typescript/components/Token.d.ts +1 -1
  500. package/lib/typescript/components/TokenBranded.d.ts +1 -1
  501. package/lib/typescript/components/Topcoat.d.ts +1 -1
  502. package/lib/typescript/components/Typcn.d.ts +1 -1
  503. package/lib/typescript/components/Uil.d.ts +1 -1
  504. package/lib/typescript/components/Uim.d.ts +1 -1
  505. package/lib/typescript/components/Uis.d.ts +1 -1
  506. package/lib/typescript/components/Uit.d.ts +1 -1
  507. package/lib/typescript/components/Uiw.d.ts +1 -1
  508. package/lib/typescript/components/Unjs.d.ts +1 -1
  509. package/lib/typescript/components/Vaadin.d.ts +1 -1
  510. package/lib/typescript/components/Vs.d.ts +1 -1
  511. package/lib/typescript/components/VscodeIcons.d.ts +1 -1
  512. package/lib/typescript/components/Websymbol.d.ts +1 -1
  513. package/lib/typescript/components/Weui.d.ts +1 -1
  514. package/lib/typescript/components/Whh.d.ts +1 -1
  515. package/lib/typescript/components/Wi.d.ts +1 -1
  516. package/lib/typescript/components/Wpf.d.ts +1 -1
  517. package/lib/typescript/components/Zmdi.d.ts +1 -1
  518. package/lib/typescript/components/Zondicons.d.ts +1 -1
  519. package/lib/typescript/components/index.d.ts +38 -1
  520. package/lib/typescript/components/index.d.ts.map +1 -1
  521. package/lib/typescript/config/ConfigManager.d.ts +102 -0
  522. package/lib/typescript/config/ConfigManager.d.ts.map +1 -0
  523. package/lib/typescript/config/index.d.ts +22 -0
  524. package/lib/typescript/config/index.d.ts.map +1 -0
  525. package/lib/typescript/config/types.d.ts +112 -0
  526. package/lib/typescript/config/types.d.ts.map +1 -0
  527. package/lib/typescript/createIconSet.d.ts +1 -1
  528. package/lib/typescript/createIconSet.d.ts.map +1 -1
  529. package/lib/typescript/explorer/IconExplorer.d.ts +54 -0
  530. package/lib/typescript/explorer/IconExplorer.d.ts.map +1 -0
  531. package/lib/typescript/explorer/iconSets.d.ts +35 -0
  532. package/lib/typescript/explorer/iconSets.d.ts.map +1 -0
  533. package/lib/typescript/explorer/index.d.ts +33 -0
  534. package/lib/typescript/explorer/index.d.ts.map +1 -0
  535. package/lib/typescript/explorer/types.d.ts +329 -0
  536. package/lib/typescript/explorer/types.d.ts.map +1 -0
  537. package/lib/typescript/explorer/useExplorer.d.ts +18 -0
  538. package/lib/typescript/explorer/useExplorer.d.ts.map +1 -0
  539. package/lib/typescript/index.d.ts +25 -4
  540. package/lib/typescript/index.d.ts.map +1 -1
  541. package/lib/typescript/navigation/createDrawerIcon.d.ts +74 -0
  542. package/lib/typescript/navigation/createDrawerIcon.d.ts.map +1 -0
  543. package/lib/typescript/navigation/createHeaderIcon.d.ts +145 -0
  544. package/lib/typescript/navigation/createHeaderIcon.d.ts.map +1 -0
  545. package/lib/typescript/navigation/createTabBarIcon.d.ts +99 -0
  546. package/lib/typescript/navigation/createTabBarIcon.d.ts.map +1 -0
  547. package/lib/typescript/navigation/index.d.ts +51 -0
  548. package/lib/typescript/navigation/index.d.ts.map +1 -0
  549. package/lib/typescript/navigation/types.d.ts +149 -0
  550. package/lib/typescript/navigation/types.d.ts.map +1 -0
  551. package/lib/typescript/navigation/useNavigationIcon.d.ts +91 -0
  552. package/lib/typescript/navigation/useNavigationIcon.d.ts.map +1 -0
  553. package/lib/typescript/network/IconifyAPI.d.ts +32 -0
  554. package/lib/typescript/network/IconifyAPI.d.ts.map +1 -1
  555. package/lib/typescript/network/index.d.ts +2 -1
  556. package/lib/typescript/network/index.d.ts.map +1 -1
  557. package/lib/typescript/performance/PerformanceMonitor.d.ts +76 -0
  558. package/lib/typescript/performance/PerformanceMonitor.d.ts.map +1 -0
  559. package/lib/typescript/performance/index.d.ts +21 -0
  560. package/lib/typescript/performance/index.d.ts.map +1 -0
  561. package/lib/typescript/performance/types.d.ts +156 -0
  562. package/lib/typescript/performance/types.d.ts.map +1 -0
  563. package/lib/typescript/placeholder/PlaceholderFactory.d.ts +44 -0
  564. package/lib/typescript/placeholder/PlaceholderFactory.d.ts.map +1 -0
  565. package/lib/typescript/placeholder/Pulse.d.ts +18 -0
  566. package/lib/typescript/placeholder/Pulse.d.ts.map +1 -0
  567. package/lib/typescript/placeholder/Shimmer.d.ts +19 -0
  568. package/lib/typescript/placeholder/Shimmer.d.ts.map +1 -0
  569. package/lib/typescript/placeholder/Skeleton.d.ts +18 -0
  570. package/lib/typescript/placeholder/Skeleton.d.ts.map +1 -0
  571. package/lib/typescript/placeholder/index.d.ts +12 -0
  572. package/lib/typescript/placeholder/index.d.ts.map +1 -0
  573. package/lib/typescript/placeholder/types.d.ts +63 -0
  574. package/lib/typescript/placeholder/types.d.ts.map +1 -0
  575. package/lib/typescript/theme/IconThemeProvider.d.ts +64 -0
  576. package/lib/typescript/theme/IconThemeProvider.d.ts.map +1 -0
  577. package/lib/typescript/theme/context.d.ts +24 -0
  578. package/lib/typescript/theme/context.d.ts.map +1 -0
  579. package/lib/typescript/theme/index.d.ts +10 -0
  580. package/lib/typescript/theme/index.d.ts.map +1 -0
  581. package/lib/typescript/theme/types.d.ts +85 -0
  582. package/lib/typescript/theme/types.d.ts.map +1 -0
  583. package/lib/typescript/theme/useIconTheme.d.ts +78 -0
  584. package/lib/typescript/theme/useIconTheme.d.ts.map +1 -0
  585. package/lib/typescript/types/index.d.ts +58 -1
  586. package/lib/typescript/types/index.d.ts.map +1 -1
  587. package/package.json +41 -3
  588. package/src/IconRenderer.tsx +91 -4
  589. package/src/accessibility/AccessibilityProvider.tsx +220 -0
  590. package/src/accessibility/index.ts +63 -0
  591. package/src/accessibility/types.ts +152 -0
  592. package/src/accessibility/useAccessibleIcon.ts +220 -0
  593. package/src/accessibility/utils.ts +180 -0
  594. package/src/alias/Icon.tsx +113 -0
  595. package/src/alias/IconAliasContext.tsx +180 -0
  596. package/src/alias/createIconAliases.tsx +233 -0
  597. package/src/alias/index.ts +59 -0
  598. package/src/alias/types.ts +132 -0
  599. package/src/animated/AnimatedIcon.tsx +116 -0
  600. package/src/animated/index.ts +97 -0
  601. package/src/animated/presets.ts +211 -0
  602. package/src/animated/types.ts +239 -0
  603. package/src/animated/useIconAnimation.ts +383 -0
  604. package/src/babel/ast-utils.ts +219 -0
  605. package/src/babel/cache-writer.ts +323 -0
  606. package/src/babel/collector.ts +224 -0
  607. package/src/babel/index.ts +60 -0
  608. package/src/babel/plugin.ts +254 -0
  609. package/src/babel/types.ts +717 -0
  610. package/src/bundle/index.ts +313 -0
  611. package/src/cache/CacheManager.ts +123 -6
  612. package/src/cli/commands/analyze.ts +195 -0
  613. package/src/cli/commands/bundle.ts +231 -0
  614. package/src/cli/index.ts +153 -0
  615. package/src/cli/parser.ts +275 -0
  616. package/src/cli/types.ts +187 -0
  617. package/src/components/index.ts +52 -1
  618. package/src/config/ConfigManager.ts +196 -0
  619. package/src/config/index.ts +34 -0
  620. package/src/config/types.ts +149 -0
  621. package/src/createIconSet.tsx +48 -9
  622. package/src/explorer/IconExplorer.tsx +844 -0
  623. package/src/explorer/iconSets.ts +334 -0
  624. package/src/explorer/index.ts +64 -0
  625. package/src/explorer/types.ts +392 -0
  626. package/src/explorer/useExplorer.ts +390 -0
  627. package/src/index.ts +218 -9
  628. package/src/navigation/createDrawerIcon.tsx +113 -0
  629. package/src/navigation/createHeaderIcon.tsx +213 -0
  630. package/src/navigation/createTabBarIcon.tsx +180 -0
  631. package/src/navigation/index.ts +80 -0
  632. package/src/navigation/types.ts +155 -0
  633. package/src/navigation/useNavigationIcon.tsx +156 -0
  634. package/src/network/IconifyAPI.ts +182 -14
  635. package/src/network/index.ts +11 -1
  636. package/src/performance/PerformanceMonitor.ts +367 -0
  637. package/src/performance/index.ts +39 -0
  638. package/src/performance/types.ts +185 -0
  639. package/src/placeholder/PlaceholderFactory.tsx +133 -0
  640. package/src/placeholder/Pulse.tsx +86 -0
  641. package/src/placeholder/Shimmer.tsx +104 -0
  642. package/src/placeholder/Skeleton.tsx +52 -0
  643. package/src/placeholder/index.ts +21 -0
  644. package/src/placeholder/types.ts +78 -0
  645. package/src/theme/IconThemeProvider.tsx +94 -0
  646. package/src/theme/context.ts +51 -0
  647. package/src/theme/index.ts +19 -0
  648. package/src/theme/types.ts +108 -0
  649. package/src/theme/useIconTheme.ts +119 -0
  650. package/src/types/index.ts +78 -1
  651. package/lib/commonjs/components/Phosphor.js +0 -493
  652. package/lib/commonjs/components/Phosphor.js.map +0 -1
  653. package/lib/module/components/Phosphor.js +0 -488
  654. package/lib/module/components/Phosphor.js.map +0 -1
  655. package/lib/typescript/components/Phosphor.d.ts +0 -472
  656. package/lib/typescript/components/Phosphor.d.ts.map +0 -1
  657. package/src/components/Phosphor.tsx +0 -506
@@ -1765,7 +1765,7 @@ declare const tokenIconNames: {
1765
1765
  };
1766
1766
  export type TokenIconName = keyof typeof tokenIconNames;
1767
1767
  export declare const Token: {
1768
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"id" | "pop" | "push" | "idle" | "solid" | "scroll" | "ref" | "link" | "radio" | "props" | "key" | "sub" | "a" | "area" | "audio" | "base" | "data" | "del" | "ins" | "meta" | "meter" | "nav" | "pre" | "source" | "strong" | "time" | "u" | "g" | "mask" | "polygon" | "blur" | "chat" | "flare" | "hook" | "launch" | "pillar" | "purse" | "ring" | "send" | "sync" | "wan" | "wifi" | "crowd" | "corn" | "cow" | "egg" | "grain" | "silo" | "waves" | "beta" | "gamma" | "bat" | "dog" | "music" | "fuel" | "fuse" | "bitcoin" | "litecoin" | "safe" | "wallet" | "ethereum" | "gog" | "npm" | "plex" | "iron" | "looks" | "cake" | "card" | "ghost" | "heart" | "axe" | "bolt" | "rake" | "cast" | "equal" | "pi" | "clover" | "spa" | "karate" | "bridge" | "om" | "atom" | "aurora" | "sphere" | "backpack" | "bean" | "dot" | "flame" | "hop" | "move" | "rainbow" | "rose" | "route" | "space" | "spool" | "zap" | "ai" | "cell" | "fold" | "man" | "math" | "png" | "prism" | "razor" | "salt" | "stars" | "tower" | "world" | "dash" | "front" | "pip" | "vr" | "r" | "t" | "socks" | "mobile" | "carbon" | "flow" | "ppt" | "idea" | "movement" | "ion" | "abstract" | "ada" | "algorand" | "arc" | "binance" | "bit" | "cardano" | "coinbase" | "ejs" | "ens" | "fantom" | "flux" | "gmx" | "go" | "grav" | "hermes" | "hive" | "honey" | "iota" | "iris" | "katana" | "kick" | "kit" | "kucoin" | "lens" | "lit" | "loom" | "lua" | "max" | "mdx" | "mta" | "near" | "odin" | "okx" | "optimism" | "polkadot" | "poly" | "ram" | "ray" | "rook" | "rtm" | "solana" | "steem" | "stellar" | "sui" | "tidal" | "ton" | "trove" | "umami" | "vega" | "vite" | "wagmi" | "wise" | "woo" | "wxt" | "xrp" | "zig" | "atomic" | "ava" | "hapi" | "immutable" | "ink" | "kraken" | "mps" | "realm" | "rome" | "tor" | "trac" | "keep" | "floor" | "atr" | "paid" | "mimo" | "fort" | "brick" | "eco" | "fluid" | "raven" | "block" | "stacks" | "step" | "token" | "voice" | "gas" | "fx" | "ceur" | "paper" | "aa" | "ali" | "apex" | "apollo" | "auction" | "aura" | "axs" | "bahamut" | "beam" | "bitget" | "bitstamp" | "bybit" | "defit" | "diode" | "dust" | "edge" | "epik" | "es" | "exodus" | "four" | "fps" | "gate-io" | "gemini" | "harmony" | "hon" | "ice" | "imo" | "juno" | "kan" | "kma" | "kwai" | "leo" | "lime" | "lovely" | "luca" | "maps" | "meme" | "mint" | "mm" | "mobi" | "mx" | "navi" | "nest" | "nos" | "nxt" | "omg" | "omni" | "one" | "paribu" | "pay" | "phantom" | "primal" | "qr" | "rin" | "sai" | "scp" | "sofi" | "solflare" | "sonic" | "status" | "sushi" | "thor" | "tips" | "top" | "torn" | "uno" | "via" | "vita" | "vix" | "wom" | "zen" | "zero" | "game" | "layer" | "hot" | "mute" | "alex" | "mantle" | "btg" | "etc" | "rvn" | "tet" | "trezor" | "trx" | "btc" | "vine" | "ar" | "bs" | "gt" | "ht" | "iq" | "la" | "mc" | "ml" | "sc" | "si" | "sn" | "tt" | "vc" | "mf" | "_1inch" | "aave" | "abt" | "act" | "agrs" | "algo" | "ant" | "ape" | "ardr" | "ark" | "atlas" | "avax" | "bcd" | "bch" | "bcn" | "blz" | "bnb" | "bnt" | "bsv" | "btcp" | "btm" | "bts" | "cdt" | "chain" | "chz" | "cnd" | "comp" | "crpt" | "ctr" | "ctxc" | "cvc" | "dai" | "dbc" | "dcr" | "dent" | "dgb" | "edg" | "ela" | "elf" | "enj" | "eos" | "eth" | "etn" | "etp" | "fct" | "fida" | "fil" | "fsn" | "ftc" | "fun" | "gbyte" | "gno" | "grc" | "grin" | "grs" | "grt" | "gusd" | "husd" | "hush" | "icp" | "icx" | "ignis" | "iost" | "kcs" | "kin" | "kmd" | "knc" | "ksm" | "lpt" | "lrc" | "lsk" | "ltc" | "mana" | "matic" | "med" | "mft" | "mkr" | "mln" | "mod" | "mona" | "mth" | "mtl" | "neo" | "ngc" | "nkn" | "nmr" | "npxs" | "nuls" | "oax" | "ong" | "ont" | "ox" | "oxt" | "oxy" | "pac" | "part" | "paxg" | "pivx" | "plr" | "powr" | "ppc" | "qash" | "qlc" | "qnt" | "qrl" | "qtum" | "rcn" | "rdd" | "rdn" | "ren" | "rep" | "req" | "rise" | "rlc" | "san" | "sand" | "sbd" | "skl" | "slr" | "snt" | "snx" | "sol" | "spank" | "storj" | "stx" | "sys" | "tel" | "theta" | "tkn" | "tnt" | "tusd" | "uma" | "uni" | "usdc" | "usdt" | "utk" | "vet" | "vib" | "vtc" | "vtho" | "wax" | "wbtc" | "xcp" | "xem" | "xlm" | "xmr" | "xpr" | "xtz" | "xvg" | "yfi" | "zec" | "zil" | "zrx" | "yes" | "apl" | "sdl" | "unix" | "onion" | "el" | "tulip" | "whale" | "ledger" | "swap" | "rev" | "solo" | "dia" | "krl" | "ipad" | "dodo" | "wing" | "media" | "troy" | "gala" | "belt" | "blast" | "boba" | "h2o" | "hydra" | "lever" | "oni" | "palm" | "portal" | "sail" | "soul" | "stable" | "trade" | "well" | "cap" | "hello" | "avalanche" | "cos" | "dome" | "gravity" | "min" | "six" | "dvi" | "ontology" | "jam" | "stat" | "sns" | "pond" | "rail" | "cbx" | "forth" | "verse" | "epic" | "psp" | "xor" | "arweave" | "pro" | "pixel" | "prime" | "tribe" | "future" | "dip" | "caps" | "sequence" | "_0x0" | "_10set" | "_1art" | "_2dai" | "_3ull" | "aag" | "aart" | "abl" | "abr" | "abyss" | "acala" | "ach" | "acq" | "acria" | "acx" | "adapad" | "aevo" | "agix" | "agla" | "aht" | "aimbot" | "aimx" | "ain" | "aioz" | "aipad" | "airi" | "ait" | "akt" | "alcx" | "aleph" | "alfa1" | "algb" | "allin" | "alot" | "alpaca" | "alph" | "alpha-wallet" | "ame-chain" | "apechain" | "apefi" | "apex-layer" | "apfc" | "apm" | "apt" | "aptos" | "apw" | "apx" | "aqt" | "aqtis" | "arb" | "arbitrum-nova" | "arbitrum-one" | "argent" | "ari" | "ari10" | "aria20" | "arkm" | "arrr" | "arsw" | "astar" | "ath" | "ator" | "atpay" | "atri" | "aurabal" | "autonomys" | "avinoc" | "avt" | "axel" | "axl" | "azero" | "azit" | "balancer" | "bancor" | "bax" | "bbank" | "bbl" | "bcb" | "bcdt" | "bcmc" | "bct" | "bcube" | "bdp" | "bdt" | "bdx" | "beets" | "bel" | "bend" | "bepro" | "berachain" | "berry" | "binance-smart-chain" | "bist" | "bitbox" | "bitci" | "bithumb" | "bitkub-chain" | "bld" | "blid" | "blox" | "blp" | "blt" | "blx" | "blxm" | "bmc" | "bmex" | "bmx" | "bnx" | "boa" | "bob" | "bond" | "botanix" | "bouncebit" | "brg" | "brise" | "brn" | "brock" | "bscpad" | "bsgg" | "bst" | "bsw" | "bsx" | "bta" | "btc2" | "btcmt" | "btcst" | "btcturk" | "btrfly" | "btse" | "bzr" | "bzrx" | "bzz" | "c98" | "cah" | "canto" | "carat" | "cas" | "catheon" | "cbeth" | "cby" | "ccd" | "ccv2" | "cdai" | "cel" | "celo" | "celr" | "cere" | "cetus" | "cfg" | "cfx" | "cgg" | "cgo" | "cgt" | "chiliz" | "cho" | "chr" | "chrp" | "cirus" | "ckp" | "clave" | "clh" | "clore" | "cls" | "clv" | "clxy" | "cmdx" | "cmos" | "cnfi" | "cng" | "cnht" | "coin98" | "coinex-smart-chain" | "combo" | "conflux" | "conv" | "cope" | "copi" | "cosmos" | "cosmos-hub" | "cov" | "cowswap" | "cph" | "cqt" | "cre" | "cream" | "credi" | "creo" | "cro" | "croid" | "cronos" | "cronos-zkevm" | "crts" | "cru" | "crwny" | "crypto-com" | "csix" | "cspr" | "ctc" | "ctg" | "cti" | "ctk" | "ctsi" | "ctx" | "cudos" | "cuminu" | "cummies" | "cusd" | "cusdc" | "cvp" | "cvr" | "cweb" | "cws" | "cxo" | "cyber" | "d2t" | "d3d" | "dacxi" | "dad" | "dafi" | "dag" | "dao" | "dbr" | "dc" | "dcb" | "dck" | "defi" | "defx" | "dego" | "dep" | "derc" | "deri" | "dero" | "deso" | "dexe" | "dext" | "dextf" | "df" | "dfi" | "dfx" | "dfyn" | "dgnx" | "dgx" | "dht" | "diko" | "dimo" | "diver" | "divi" | "djed" | "dka" | "dlc" | "dmc" | "dmd" | "dmt" | "dmtr" | "doga" | "dola" | "domi" | "dose" | "dpay" | "dps" | "dpx" | "dseth" | "dsm" | "dsrun" | "dtx" | "dusk" | "dvf" | "dvpn" | "dweb" | "dxgm" | "dxl" | "dydx" | "earn" | "ecoin" | "ecox" | "eden" | "edgeless" | "edu" | "efc" | "efi" | "efl" | "efx" | "egc" | "egld" | "ego" | "eland" | "elastos" | "elk" | "eml" | "emp" | "energy-web" | "enkrypt" | "enuls" | "eosdt" | "eqb" | "equad" | "eqx" | "erg" | "ern" | "ertha" | "ete" | "ethereum-classic" | "etherlink" | "ethix" | "ethm" | "ethx" | "eti" | "eul" | "euno" | "eurc" | "euroe" | "eurs" | "eurt" | "eusd" | "eveai" | "ever" | "evmos" | "ewt" | "exd" | "expchain" | "exrd" | "extra" | "factr" | "fakeai" | "fcon" | "fctr" | "fdusd" | "fear" | "fei" | "fer" | "fet" | "fevr" | "filecoin" | "fio" | "firo" | "fis" | "fitfi" | "flr" | "fls" | "fluence" | "flx" | "fnsa" | "for" | "fore" | "forex" | "fpis" | "fra" | "frax" | "fraxtal" | "frin" | "frm" | "ftm" | "ftn" | "fund" | "fwb" | "fxs" | "fyn" | "gafi" | "gai" | "gains" | "gal" | "galeon" | "gamefi" | "gami" | "gbex" | "gcoin" | "gcr" | "gdcc" | "geeq" | "gel" | "geni" | "geod" | "get" | "gfal" | "ggg" | "ggp" | "ghny" | "gho" | "ghx" | "giv" | "glc" | "gleec" | "glink" | "glm" | "glmr" | "glow" | "glq" | "gmee" | "gmm" | "gmpd" | "gnosis" | "gns" | "gny" | "gofx" | "gora" | "govi" | "grai" | "grail" | "gse" | "gswap" | "gswift" | "gtc" | "guild" | "gulf" | "gunz" | "gxa" | "gxc" | "gyen" | "gymnet" | "gzil" | "gzone" | "hai" | "hair" | "haka" | "handy" | "hard" | "hashkey" | "hawk" | "hbar" | "hbb" | "hbot" | "hbtc" | "hdx" | "hedera-hashgraph" | "hegic" | "hemi" | "hero" | "hez" | "hft" | "hgt" | "hibs" | "hid" | "hifi" | "hilo" | "hmnd" | "hmx" | "hnt" | "hoge" | "hopr" | "hord" | "hpo" | "hst" | "htm" | "htr" | "hubble-exchange" | "hunt" | "hvh" | "hxd" | "hxro" | "hyper-evm" | "hyve" | "hzn" | "ibat" | "ibit" | "ichi" | "idex" | "idia" | "idna" | "idrt" | "idv" | "ieth" | "igu" | "ilv" | "imtoken" | "imx" | "infra" | "inj" | "injective" | "inst" | "insur" | "int" | "intr" | "inv" | "ionx" | "iota-evm" | "iotex" | "ipor" | "isk" | "isp" | "ist" | "itheum" | "ixo" | "ixs" | "ixt" | "japan-open-chain" | "jasmy" | "jkl" | "jmpt" | "jones" | "jop" | "joy" | "jst" | "juld" | "jup" | "juris" | "k21" | "kag" | "kai" | "kaia" | "kakarot" | "kalm" | "kap" | "kar" | "karura" | "kas" | "kasta" | "kat" | "kau" | "kava" | "kda" | "keplr" | "kex" | "kicks" | "kilt" | "kine" | "kint" | "klay" | "kleva" | "klima" | "klt" | "klv" | "kmon" | "kndx" | "koge" | "koin" | "kom" | "kompete" | "kp3r" | "krom" | "kroma" | "ktc" | "kub" | "kuji" | "kujira" | "kukai" | "kunci" | "kwenta" | "kyve" | "l2" | "l3x" | "lai" | "lamb" | "land" | "lat" | "lava-network" | "lazio" | "lbr" | "lbt" | "lcr" | "lcs" | "lcx" | "ldo" | "leox" | "let" | "lgcy" | "libre" | "lif3" | "lightlink" | "lina" | "linea" | "ling" | "lisk" | "lith" | "litt" | "lixx" | "lm" | "lmwr" | "loc" | "lode" | "loka" | "lon" | "loopring" | "lords" | "lpnt" | "lpool" | "lqdr" | "lsd" | "lss" | "lto" | "ltx" | "lufc" | "lukso" | "lumia" | "lunr" | "lusd" | "lvl" | "lycan" | "lym" | "lyra" | "lyx" | "lyxe" | "lzm" | "m87" | "maha" | "manc" | "manta-pacific" | "mantra" | "mars4" | "marsh" | "masq" | "maticx" | "mav" | "mbd" | "mbl" | "mbox" | "mbx" | "mcade" | "mcb" | "mchc" | "mcontent" | "mcrt" | "mdao" | "mdt" | "mean" | "meed" | "mega-eth" | "met" | "metav" | "metf" | "metfi" | "metis" | "metis-andromeda" | "mex" | "milkomeda-a1" | "milkomeda-c1" | "mimatic" | "mina" | "mind" | "minima" | "mir" | "mlk" | "mmpro" | "mmy" | "mnb" | "mnd" | "mnde" | "mngo" | "mnr" | "mnst" | "mnt" | "mntc" | "mntl" | "mnw" | "moby" | "mode" | "monad" | "moonbase" | "moonbase-alpha" | "moonbeam" | "moonriver" | "moov" | "mork" | "movr" | "mpl" | "mplx" | "mrs" | "msol" | "mst" | "mtd" | "mtlx" | "mtrg" | "mts" | "mtv" | "multis" | "multiversx" | "musd" | "muse" | "mvd" | "mvi" | "mvl" | "mwc" | "mxc" | "mxm" | "my-ether-wallet" | "myria" | "myst" | "mzr" | "nabox" | "nahmii" | "nals" | "nap" | "nblu" | "nbt" | "ncdt" | "ncr" | "nct" | "near-protocol" | "nebo" | "neer" | "neo-x" | "neon-evm" | "nett" | "neuroni" | "newo" | "nex" | "nexis" | "nfai" | "nftart" | "nftb" | "nftbs" | "nftx" | "ngm" | "nht" | "nibiru" | "nls" | "nmx" | "nodl" | "noia" | "nom" | "nord" | "npc" | "nrch" | "nrg" | "nsbt" | "nsfw" | "ntx" | "num" | "nvir" | "nvt" | "nwc" | "nxm" | "nxra" | "nym" | "o3" | "oas" | "oasys" | "oath" | "obot" | "obsr" | "obvious" | "oce" | "ocean" | "oddz" | "odos" | "oeth" | "ogn" | "okb" | "okex" | "okt" | "olt" | "omax" | "omi" | "ommi" | "onit" | "ooe" | "ooki" | "ooks" | "op" | "opium" | "optopia" | "opul" | "orare" | "orbs" | "orderly" | "ordi" | "ort" | "os" | "osmo" | "osmosis" | "otk" | "ousd" | "oxb" | "oxen" | "ozean" | "ozo" | "paal" | "pai" | "pal" | "pancake-swap" | "para" | "para-swap" | "paradex" | "pasg" | "pawth" | "pbr" | "pbx" | "pdex" | "pdt" | "peaq" | "pec" | "pendle" | "perc" | "peri" | "perp" | "pex" | "pgx" | "pha" | "phb" | "phonon" | "pib" | "pica" | "pika" | "pinksale" | "pkf" | "pkt" | "pla" | "planets" | "plastik" | "pli" | "pln" | "plt" | "plu" | "pnb" | "pnk" | "pnt" | "pokt" | "pol" | "pola" | "pols" | "polx" | "polygon-zkevm" | "polypad" | "polyx" | "poolx" | "portx" | "ppay" | "premia" | "prob" | "prom" | "propc" | "proteo" | "prq" | "prtc" | "prx" | "pry" | "psl" | "pstake" | "pswap" | "pts" | "ptu" | "pumlx" | "pundix" | "pwr" | "pxp" | "pyr" | "pyth" | "pyusd" | "pzp" | "qanx" | "qkc" | "qmall" | "qrdo" | "qsr" | "qtcon" | "quad" | "quartz" | "qube" | "quidd" | "quint" | "rad" | "rae" | "ramp" | "rare" | "rari" | "rbd" | "rbif" | "rbn" | "rdnt" | "rdpx" | "rdt" | "reef" | "regen" | "rei" | "renbtc" | "reuni" | "rev3l" | "revv" | "reya" | "rfox" | "rgen" | "rgt" | "ride" | "rif" | "rite" | "rjv" | "rlb" | "rly" | "rmrk" | "rndr" | "ronin" | "roobee" | "rootstock" | "rpg" | "rpl" | "rsc" | "rsr" | "rss3" | "rune" | "rvc" | "rvst" | "rwn" | "rxd" | "saitama" | "saito" | "sakai" | "sama" | "satt" | "savg" | "sbtc" | "scb" | "sclp" | "scrt" | "sdex" | "sdn" | "sdt" | "sei" | "sei-network" | "seilor" | "senate" | "sender" | "sense" | "sero" | "seth" | "seth2" | "sfi" | "sfm" | "sfp" | "sfrxeth" | "sftmx" | "sfund" | "shft" | "shi" | "shiden" | "shido" | "shimmer-evm" | "shopx" | "shrap" | "shroom" | "shx" | "sidus" | "signa" | "silicon" | "silk" | "sis" | "skeb" | "skey" | "slam" | "slcl" | "slg" | "slnd" | "smartcredit" | "smbr" | "smt" | "snc" | "snft" | "solve" | "solx" | "somm" | "soneium" | "songbird" | "sonne" | "soon" | "soph" | "sophen" | "sov" | "sparta" | "spc" | "sph" | "spirit" | "spore" | "spx" | "squads" | "srcx" | "srk" | "srlty" | "srm" | "srx" | "ssv" | "sswp" | "ssx" | "stargaze" | "starknet" | "statom" | "stbu" | "stfx" | "stg" | "stjuno" | "stmx" | "stos" | "stosmo" | "stpt" | "strax" | "strd" | "strk" | "strp" | "strx" | "ststars" | "sudo" | "suip" | "suku" | "super-seed" | "supra-movevm" | "susd" | "sushiswap" | "suter" | "swash" | "sweat" | "swell" | "sweth" | "swftc" | "swise" | "swissborg" | "swth" | "sxp" | "sylo" | "symbiosis" | "taboo" | "taiko" | "taki" | "tao" | "tara" | "tarot" | "tbtc" | "tdrop" | "teer" | "telos" | "tenet" | "terra-classic" | "tetu" | "tfuel" | "tgt" | "thales" | "the" | "theo" | "thol" | "thundercore" | "tia" | "tifi" | "tig" | "titan" | "tko" | "tkp" | "tkx" | "tlm" | "tlos" | "tomi" | "tonic" | "topia" | "toshi" | "tpad" | "trava" | "traxx" | "trb" | "trc" | "trcl" | "treasure" | "treeb" | "trias" | "tron" | "tronpad" | "tru" | "trust" | "trvl" | "tryb" | "ttk" | "tut" | "tvk" | "twt" | "txau" | "ubiq" | "ubsn" | "ubt" | "ubxs" | "ufi" | "uft" | "ultra" | "ultron" | "umb" | "uncx" | "und" | "undead" | "unfi" | "unibot" | "unichain" | "unipass" | "uniswap" | "uos" | "upbit" | "upp" | "uqc" | "urus" | "usdd" | "usdv" | "usdx" | "ush" | "usn" | "uw3s" | "vab" | "vai" | "valor" | "vana" | "vanar" | "vara" | "vaulta" | "vcore" | "vee" | "vela" | "velas" | "velo" | "vemp" | "venly" | "vent" | "veur" | "vex" | "vext" | "vgx" | "viction" | "vidt" | "vidya" | "vlx" | "vlxpad" | "vno" | "voxel" | "vpad" | "vra" | "vrsw" | "vsp" | "vsta" | "vsys" | "vtx" | "vv" | "vvs" | "vxv" | "wacme" | "wagmigames" | "wait" | "wallet-3" | "wallet-connect" | "wampl" | "was" | "waxp" | "wbeth" | "wbt" | "wcfg" | "wefi" | "welt" | "wemix" | "wgc" | "whales" | "white" | "wigo" | "wiken" | "win" | "winr" | "witch" | "wliti" | "wlkn" | "wndr" | "wnk" | "wnxm" | "wombat" | "woof" | "wozx" | "wrld" | "wrx" | "wsi" | "wwy" | "x-layer" | "x2y2" | "xai" | "xaur" | "xava" | "xcad" | "xcfx" | "xch" | "xchf" | "xcm" | "xcur" | "xdata" | "xdb" | "xdc" | "xdefi" | "xdg" | "xec" | "xels" | "xep" | "xet" | "xeta" | "xft" | "xfund" | "xhv" | "xi" | "xido" | "xki" | "xna" | "xno" | "xpla" | "xpnet" | "xprt" | "xpx" | "xrd" | "xrt" | "xrune" | "xsgd" | "xsp" | "xsushi" | "xtp" | "xvs" | "xwg" | "xy" | "xyo" | "yak" | "yam" | "ycc" | "ydf" | "yfii" | "yoshi" | "you" | "zano" | "zat" | "zbc" | "zcx" | "zee" | "zengo" | "zerion" | "zero-network" | "zeta-chain" | "zilliqa" | "zircuit" | "zkb" | "zkid" | "zkp" | "zksync" | "zlk" | "znn" | "zoomer" | "zpay" | "ztg" | "zyn" | "zyx" | "zz">): import("react").JSX.Element;
1768
+ ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"id" | "pop" | "push" | "data" | "sequence" | "idle" | "link" | "sub" | "scroll" | "solid" | "ref" | "radio" | "yes" | "key" | "top" | "a" | "area" | "audio" | "base" | "del" | "ins" | "meta" | "meter" | "nav" | "pre" | "source" | "strong" | "time" | "u" | "g" | "mask" | "polygon" | "props" | "blur" | "chat" | "flare" | "hook" | "launch" | "pillar" | "purse" | "ring" | "send" | "sync" | "wan" | "wifi" | "crowd" | "corn" | "cow" | "egg" | "grain" | "silo" | "waves" | "beta" | "gamma" | "bat" | "dog" | "music" | "fuel" | "fuse" | "bitcoin" | "litecoin" | "safe" | "wallet" | "ethereum" | "gog" | "npm" | "plex" | "iron" | "looks" | "cake" | "card" | "ghost" | "heart" | "axe" | "bolt" | "rake" | "cast" | "equal" | "pi" | "clover" | "spa" | "karate" | "bridge" | "om" | "atom" | "aurora" | "sphere" | "backpack" | "bean" | "dot" | "flame" | "hop" | "move" | "rainbow" | "rose" | "route" | "space" | "spool" | "zap" | "ai" | "cell" | "fold" | "man" | "math" | "png" | "prism" | "razor" | "salt" | "stars" | "tower" | "world" | "dash" | "front" | "pip" | "vr" | "r" | "t" | "socks" | "mobile" | "carbon" | "flow" | "ppt" | "idea" | "movement" | "ion" | "abstract" | "ada" | "algorand" | "arc" | "binance" | "bit" | "cardano" | "coinbase" | "ejs" | "ens" | "fantom" | "flux" | "gmx" | "go" | "grav" | "hermes" | "hive" | "honey" | "iota" | "iris" | "katana" | "kick" | "kit" | "kucoin" | "lens" | "lit" | "loom" | "lua" | "max" | "mdx" | "mta" | "near" | "odin" | "okx" | "optimism" | "polkadot" | "poly" | "ram" | "ray" | "rook" | "rtm" | "solana" | "steem" | "stellar" | "sui" | "tidal" | "ton" | "trove" | "umami" | "vega" | "vite" | "wagmi" | "wise" | "woo" | "wxt" | "xrp" | "zig" | "atomic" | "ava" | "hapi" | "immutable" | "ink" | "kraken" | "mps" | "realm" | "rome" | "tor" | "trac" | "keep" | "floor" | "atr" | "paid" | "mimo" | "fort" | "brick" | "eco" | "fluid" | "raven" | "block" | "stacks" | "step" | "token" | "voice" | "gas" | "fx" | "ceur" | "paper" | "aa" | "ali" | "apex" | "apollo" | "auction" | "aura" | "axs" | "bahamut" | "beam" | "bitget" | "bitstamp" | "bybit" | "defit" | "diode" | "dust" | "edge" | "epik" | "es" | "exodus" | "four" | "fps" | "gate-io" | "gemini" | "harmony" | "hon" | "ice" | "imo" | "juno" | "kan" | "kma" | "kwai" | "leo" | "lime" | "lovely" | "luca" | "maps" | "meme" | "mint" | "mm" | "mobi" | "mx" | "navi" | "nest" | "nos" | "nxt" | "omg" | "omni" | "one" | "paribu" | "pay" | "phantom" | "primal" | "qr" | "rin" | "sai" | "scp" | "sofi" | "solflare" | "sonic" | "status" | "sushi" | "thor" | "tips" | "torn" | "uno" | "via" | "vita" | "vix" | "wom" | "zen" | "zero" | "game" | "layer" | "hot" | "mute" | "alex" | "mantle" | "btg" | "etc" | "rvn" | "tet" | "trezor" | "trx" | "btc" | "vine" | "ar" | "bs" | "gt" | "ht" | "iq" | "la" | "mc" | "ml" | "sc" | "si" | "sn" | "tt" | "vc" | "mf" | "_1inch" | "aave" | "abt" | "act" | "agrs" | "algo" | "ant" | "ape" | "ardr" | "ark" | "atlas" | "avax" | "bcd" | "bch" | "bcn" | "blz" | "bnb" | "bnt" | "bsv" | "btcp" | "btm" | "bts" | "cdt" | "chain" | "chz" | "cnd" | "comp" | "crpt" | "ctr" | "ctxc" | "cvc" | "dai" | "dbc" | "dcr" | "dent" | "dgb" | "edg" | "ela" | "elf" | "enj" | "eos" | "eth" | "etn" | "etp" | "fct" | "fida" | "fil" | "fsn" | "ftc" | "fun" | "gbyte" | "gno" | "grc" | "grin" | "grs" | "grt" | "gusd" | "husd" | "hush" | "icp" | "icx" | "ignis" | "iost" | "kcs" | "kin" | "kmd" | "knc" | "ksm" | "lpt" | "lrc" | "lsk" | "ltc" | "mana" | "matic" | "med" | "mft" | "mkr" | "mln" | "mod" | "mona" | "mth" | "mtl" | "neo" | "ngc" | "nkn" | "nmr" | "npxs" | "nuls" | "oax" | "ong" | "ont" | "ox" | "oxt" | "oxy" | "pac" | "part" | "paxg" | "pivx" | "plr" | "powr" | "ppc" | "qash" | "qlc" | "qnt" | "qrl" | "qtum" | "rcn" | "rdd" | "rdn" | "ren" | "rep" | "req" | "rise" | "rlc" | "san" | "sand" | "sbd" | "skl" | "slr" | "snt" | "snx" | "sol" | "spank" | "storj" | "stx" | "sys" | "tel" | "theta" | "tkn" | "tnt" | "tusd" | "uma" | "uni" | "usdc" | "usdt" | "utk" | "vet" | "vib" | "vtc" | "vtho" | "wax" | "wbtc" | "xcp" | "xem" | "xlm" | "xmr" | "xpr" | "xtz" | "xvg" | "yfi" | "zec" | "zil" | "zrx" | "apl" | "sdl" | "unix" | "onion" | "el" | "tulip" | "whale" | "ledger" | "swap" | "rev" | "solo" | "dia" | "krl" | "ipad" | "dodo" | "wing" | "media" | "troy" | "gala" | "belt" | "blast" | "boba" | "h2o" | "hydra" | "lever" | "oni" | "palm" | "portal" | "sail" | "soul" | "stable" | "trade" | "well" | "cap" | "hello" | "avalanche" | "cos" | "dome" | "gravity" | "min" | "six" | "dvi" | "ontology" | "jam" | "stat" | "sns" | "pond" | "rail" | "cbx" | "forth" | "verse" | "epic" | "psp" | "xor" | "arweave" | "pro" | "pixel" | "prime" | "tribe" | "future" | "dip" | "caps" | "_0x0" | "_10set" | "_1art" | "_2dai" | "_3ull" | "aag" | "aart" | "abl" | "abr" | "abyss" | "acala" | "ach" | "acq" | "acria" | "acx" | "adapad" | "aevo" | "agix" | "agla" | "aht" | "aimbot" | "aimx" | "ain" | "aioz" | "aipad" | "airi" | "ait" | "akt" | "alcx" | "aleph" | "alfa1" | "algb" | "allin" | "alot" | "alpaca" | "alph" | "alpha-wallet" | "ame-chain" | "apechain" | "apefi" | "apex-layer" | "apfc" | "apm" | "apt" | "aptos" | "apw" | "apx" | "aqt" | "aqtis" | "arb" | "arbitrum-nova" | "arbitrum-one" | "argent" | "ari" | "ari10" | "aria20" | "arkm" | "arrr" | "arsw" | "astar" | "ath" | "ator" | "atpay" | "atri" | "aurabal" | "autonomys" | "avinoc" | "avt" | "axel" | "axl" | "azero" | "azit" | "balancer" | "bancor" | "bax" | "bbank" | "bbl" | "bcb" | "bcdt" | "bcmc" | "bct" | "bcube" | "bdp" | "bdt" | "bdx" | "beets" | "bel" | "bend" | "bepro" | "berachain" | "berry" | "binance-smart-chain" | "bist" | "bitbox" | "bitci" | "bithumb" | "bitkub-chain" | "bld" | "blid" | "blox" | "blp" | "blt" | "blx" | "blxm" | "bmc" | "bmex" | "bmx" | "bnx" | "boa" | "bob" | "bond" | "botanix" | "bouncebit" | "brg" | "brise" | "brn" | "brock" | "bscpad" | "bsgg" | "bst" | "bsw" | "bsx" | "bta" | "btc2" | "btcmt" | "btcst" | "btcturk" | "btrfly" | "btse" | "bzr" | "bzrx" | "bzz" | "c98" | "cah" | "canto" | "carat" | "cas" | "catheon" | "cbeth" | "cby" | "ccd" | "ccv2" | "cdai" | "cel" | "celo" | "celr" | "cere" | "cetus" | "cfg" | "cfx" | "cgg" | "cgo" | "cgt" | "chiliz" | "cho" | "chr" | "chrp" | "cirus" | "ckp" | "clave" | "clh" | "clore" | "cls" | "clv" | "clxy" | "cmdx" | "cmos" | "cnfi" | "cng" | "cnht" | "coin98" | "coinex-smart-chain" | "combo" | "conflux" | "conv" | "cope" | "copi" | "cosmos" | "cosmos-hub" | "cov" | "cowswap" | "cph" | "cqt" | "cre" | "cream" | "credi" | "creo" | "cro" | "croid" | "cronos" | "cronos-zkevm" | "crts" | "cru" | "crwny" | "crypto-com" | "csix" | "cspr" | "ctc" | "ctg" | "cti" | "ctk" | "ctsi" | "ctx" | "cudos" | "cuminu" | "cummies" | "cusd" | "cusdc" | "cvp" | "cvr" | "cweb" | "cws" | "cxo" | "cyber" | "d2t" | "d3d" | "dacxi" | "dad" | "dafi" | "dag" | "dao" | "dbr" | "dc" | "dcb" | "dck" | "defi" | "defx" | "dego" | "dep" | "derc" | "deri" | "dero" | "deso" | "dexe" | "dext" | "dextf" | "df" | "dfi" | "dfx" | "dfyn" | "dgnx" | "dgx" | "dht" | "diko" | "dimo" | "diver" | "divi" | "djed" | "dka" | "dlc" | "dmc" | "dmd" | "dmt" | "dmtr" | "doga" | "dola" | "domi" | "dose" | "dpay" | "dps" | "dpx" | "dseth" | "dsm" | "dsrun" | "dtx" | "dusk" | "dvf" | "dvpn" | "dweb" | "dxgm" | "dxl" | "dydx" | "earn" | "ecoin" | "ecox" | "eden" | "edgeless" | "edu" | "efc" | "efi" | "efl" | "efx" | "egc" | "egld" | "ego" | "eland" | "elastos" | "elk" | "eml" | "emp" | "energy-web" | "enkrypt" | "enuls" | "eosdt" | "eqb" | "equad" | "eqx" | "erg" | "ern" | "ertha" | "ete" | "ethereum-classic" | "etherlink" | "ethix" | "ethm" | "ethx" | "eti" | "eul" | "euno" | "eurc" | "euroe" | "eurs" | "eurt" | "eusd" | "eveai" | "ever" | "evmos" | "ewt" | "exd" | "expchain" | "exrd" | "extra" | "factr" | "fakeai" | "fcon" | "fctr" | "fdusd" | "fear" | "fei" | "fer" | "fet" | "fevr" | "filecoin" | "fio" | "firo" | "fis" | "fitfi" | "flr" | "fls" | "fluence" | "flx" | "fnsa" | "for" | "fore" | "forex" | "fpis" | "fra" | "frax" | "fraxtal" | "frin" | "frm" | "ftm" | "ftn" | "fund" | "fwb" | "fxs" | "fyn" | "gafi" | "gai" | "gains" | "gal" | "galeon" | "gamefi" | "gami" | "gbex" | "gcoin" | "gcr" | "gdcc" | "geeq" | "gel" | "geni" | "geod" | "get" | "gfal" | "ggg" | "ggp" | "ghny" | "gho" | "ghx" | "giv" | "glc" | "gleec" | "glink" | "glm" | "glmr" | "glow" | "glq" | "gmee" | "gmm" | "gmpd" | "gnosis" | "gns" | "gny" | "gofx" | "gora" | "govi" | "grai" | "grail" | "gse" | "gswap" | "gswift" | "gtc" | "guild" | "gulf" | "gunz" | "gxa" | "gxc" | "gyen" | "gymnet" | "gzil" | "gzone" | "hai" | "hair" | "haka" | "handy" | "hard" | "hashkey" | "hawk" | "hbar" | "hbb" | "hbot" | "hbtc" | "hdx" | "hedera-hashgraph" | "hegic" | "hemi" | "hero" | "hez" | "hft" | "hgt" | "hibs" | "hid" | "hifi" | "hilo" | "hmnd" | "hmx" | "hnt" | "hoge" | "hopr" | "hord" | "hpo" | "hst" | "htm" | "htr" | "hubble-exchange" | "hunt" | "hvh" | "hxd" | "hxro" | "hyper-evm" | "hyve" | "hzn" | "ibat" | "ibit" | "ichi" | "idex" | "idia" | "idna" | "idrt" | "idv" | "ieth" | "igu" | "ilv" | "imtoken" | "imx" | "infra" | "inj" | "injective" | "inst" | "insur" | "int" | "intr" | "inv" | "ionx" | "iota-evm" | "iotex" | "ipor" | "isk" | "isp" | "ist" | "itheum" | "ixo" | "ixs" | "ixt" | "japan-open-chain" | "jasmy" | "jkl" | "jmpt" | "jones" | "jop" | "joy" | "jst" | "juld" | "jup" | "juris" | "k21" | "kag" | "kai" | "kaia" | "kakarot" | "kalm" | "kap" | "kar" | "karura" | "kas" | "kasta" | "kat" | "kau" | "kava" | "kda" | "keplr" | "kex" | "kicks" | "kilt" | "kine" | "kint" | "klay" | "kleva" | "klima" | "klt" | "klv" | "kmon" | "kndx" | "koge" | "koin" | "kom" | "kompete" | "kp3r" | "krom" | "kroma" | "ktc" | "kub" | "kuji" | "kujira" | "kukai" | "kunci" | "kwenta" | "kyve" | "l2" | "l3x" | "lai" | "lamb" | "land" | "lat" | "lava-network" | "lazio" | "lbr" | "lbt" | "lcr" | "lcs" | "lcx" | "ldo" | "leox" | "let" | "lgcy" | "libre" | "lif3" | "lightlink" | "lina" | "linea" | "ling" | "lisk" | "lith" | "litt" | "lixx" | "lm" | "lmwr" | "loc" | "lode" | "loka" | "lon" | "loopring" | "lords" | "lpnt" | "lpool" | "lqdr" | "lsd" | "lss" | "lto" | "ltx" | "lufc" | "lukso" | "lumia" | "lunr" | "lusd" | "lvl" | "lycan" | "lym" | "lyra" | "lyx" | "lyxe" | "lzm" | "m87" | "maha" | "manc" | "manta-pacific" | "mantra" | "mars4" | "marsh" | "masq" | "maticx" | "mav" | "mbd" | "mbl" | "mbox" | "mbx" | "mcade" | "mcb" | "mchc" | "mcontent" | "mcrt" | "mdao" | "mdt" | "mean" | "meed" | "mega-eth" | "met" | "metav" | "metf" | "metfi" | "metis" | "metis-andromeda" | "mex" | "milkomeda-a1" | "milkomeda-c1" | "mimatic" | "mina" | "mind" | "minima" | "mir" | "mlk" | "mmpro" | "mmy" | "mnb" | "mnd" | "mnde" | "mngo" | "mnr" | "mnst" | "mnt" | "mntc" | "mntl" | "mnw" | "moby" | "mode" | "monad" | "moonbase" | "moonbase-alpha" | "moonbeam" | "moonriver" | "moov" | "mork" | "movr" | "mpl" | "mplx" | "mrs" | "msol" | "mst" | "mtd" | "mtlx" | "mtrg" | "mts" | "mtv" | "multis" | "multiversx" | "musd" | "muse" | "mvd" | "mvi" | "mvl" | "mwc" | "mxc" | "mxm" | "my-ether-wallet" | "myria" | "myst" | "mzr" | "nabox" | "nahmii" | "nals" | "nap" | "nblu" | "nbt" | "ncdt" | "ncr" | "nct" | "near-protocol" | "nebo" | "neer" | "neo-x" | "neon-evm" | "nett" | "neuroni" | "newo" | "nex" | "nexis" | "nfai" | "nftart" | "nftb" | "nftbs" | "nftx" | "ngm" | "nht" | "nibiru" | "nls" | "nmx" | "nodl" | "noia" | "nom" | "nord" | "npc" | "nrch" | "nrg" | "nsbt" | "nsfw" | "ntx" | "num" | "nvir" | "nvt" | "nwc" | "nxm" | "nxra" | "nym" | "o3" | "oas" | "oasys" | "oath" | "obot" | "obsr" | "obvious" | "oce" | "ocean" | "oddz" | "odos" | "oeth" | "ogn" | "okb" | "okex" | "okt" | "olt" | "omax" | "omi" | "ommi" | "onit" | "ooe" | "ooki" | "ooks" | "op" | "opium" | "optopia" | "opul" | "orare" | "orbs" | "orderly" | "ordi" | "ort" | "os" | "osmo" | "osmosis" | "otk" | "ousd" | "oxb" | "oxen" | "ozean" | "ozo" | "paal" | "pai" | "pal" | "pancake-swap" | "para" | "para-swap" | "paradex" | "pasg" | "pawth" | "pbr" | "pbx" | "pdex" | "pdt" | "peaq" | "pec" | "pendle" | "perc" | "peri" | "perp" | "pex" | "pgx" | "pha" | "phb" | "phonon" | "pib" | "pica" | "pika" | "pinksale" | "pkf" | "pkt" | "pla" | "planets" | "plastik" | "pli" | "pln" | "plt" | "plu" | "pnb" | "pnk" | "pnt" | "pokt" | "pol" | "pola" | "pols" | "polx" | "polygon-zkevm" | "polypad" | "polyx" | "poolx" | "portx" | "ppay" | "premia" | "prob" | "prom" | "propc" | "proteo" | "prq" | "prtc" | "prx" | "pry" | "psl" | "pstake" | "pswap" | "pts" | "ptu" | "pumlx" | "pundix" | "pwr" | "pxp" | "pyr" | "pyth" | "pyusd" | "pzp" | "qanx" | "qkc" | "qmall" | "qrdo" | "qsr" | "qtcon" | "quad" | "quartz" | "qube" | "quidd" | "quint" | "rad" | "rae" | "ramp" | "rare" | "rari" | "rbd" | "rbif" | "rbn" | "rdnt" | "rdpx" | "rdt" | "reef" | "regen" | "rei" | "renbtc" | "reuni" | "rev3l" | "revv" | "reya" | "rfox" | "rgen" | "rgt" | "ride" | "rif" | "rite" | "rjv" | "rlb" | "rly" | "rmrk" | "rndr" | "ronin" | "roobee" | "rootstock" | "rpg" | "rpl" | "rsc" | "rsr" | "rss3" | "rune" | "rvc" | "rvst" | "rwn" | "rxd" | "saitama" | "saito" | "sakai" | "sama" | "satt" | "savg" | "sbtc" | "scb" | "sclp" | "scrt" | "sdex" | "sdn" | "sdt" | "sei" | "sei-network" | "seilor" | "senate" | "sender" | "sense" | "sero" | "seth" | "seth2" | "sfi" | "sfm" | "sfp" | "sfrxeth" | "sftmx" | "sfund" | "shft" | "shi" | "shiden" | "shido" | "shimmer-evm" | "shopx" | "shrap" | "shroom" | "shx" | "sidus" | "signa" | "silicon" | "silk" | "sis" | "skeb" | "skey" | "slam" | "slcl" | "slg" | "slnd" | "smartcredit" | "smbr" | "smt" | "snc" | "snft" | "solve" | "solx" | "somm" | "soneium" | "songbird" | "sonne" | "soon" | "soph" | "sophen" | "sov" | "sparta" | "spc" | "sph" | "spirit" | "spore" | "spx" | "squads" | "srcx" | "srk" | "srlty" | "srm" | "srx" | "ssv" | "sswp" | "ssx" | "stargaze" | "starknet" | "statom" | "stbu" | "stfx" | "stg" | "stjuno" | "stmx" | "stos" | "stosmo" | "stpt" | "strax" | "strd" | "strk" | "strp" | "strx" | "ststars" | "sudo" | "suip" | "suku" | "super-seed" | "supra-movevm" | "susd" | "sushiswap" | "suter" | "swash" | "sweat" | "swell" | "sweth" | "swftc" | "swise" | "swissborg" | "swth" | "sxp" | "sylo" | "symbiosis" | "taboo" | "taiko" | "taki" | "tao" | "tara" | "tarot" | "tbtc" | "tdrop" | "teer" | "telos" | "tenet" | "terra-classic" | "tetu" | "tfuel" | "tgt" | "thales" | "the" | "theo" | "thol" | "thundercore" | "tia" | "tifi" | "tig" | "titan" | "tko" | "tkp" | "tkx" | "tlm" | "tlos" | "tomi" | "tonic" | "topia" | "toshi" | "tpad" | "trava" | "traxx" | "trb" | "trc" | "trcl" | "treasure" | "treeb" | "trias" | "tron" | "tronpad" | "tru" | "trust" | "trvl" | "tryb" | "ttk" | "tut" | "tvk" | "twt" | "txau" | "ubiq" | "ubsn" | "ubt" | "ubxs" | "ufi" | "uft" | "ultra" | "ultron" | "umb" | "uncx" | "und" | "undead" | "unfi" | "unibot" | "unichain" | "unipass" | "uniswap" | "uos" | "upbit" | "upp" | "uqc" | "urus" | "usdd" | "usdv" | "usdx" | "ush" | "usn" | "uw3s" | "vab" | "vai" | "valor" | "vana" | "vanar" | "vara" | "vaulta" | "vcore" | "vee" | "vela" | "velas" | "velo" | "vemp" | "venly" | "vent" | "veur" | "vex" | "vext" | "vgx" | "viction" | "vidt" | "vidya" | "vlx" | "vlxpad" | "vno" | "voxel" | "vpad" | "vra" | "vrsw" | "vsp" | "vsta" | "vsys" | "vtx" | "vv" | "vvs" | "vxv" | "wacme" | "wagmigames" | "wait" | "wallet-3" | "wallet-connect" | "wampl" | "was" | "waxp" | "wbeth" | "wbt" | "wcfg" | "wefi" | "welt" | "wemix" | "wgc" | "whales" | "white" | "wigo" | "wiken" | "win" | "winr" | "witch" | "wliti" | "wlkn" | "wndr" | "wnk" | "wnxm" | "wombat" | "woof" | "wozx" | "wrld" | "wrx" | "wsi" | "wwy" | "x-layer" | "x2y2" | "xai" | "xaur" | "xava" | "xcad" | "xcfx" | "xch" | "xchf" | "xcm" | "xcur" | "xdata" | "xdb" | "xdc" | "xdefi" | "xdg" | "xec" | "xels" | "xep" | "xet" | "xeta" | "xft" | "xfund" | "xhv" | "xi" | "xido" | "xki" | "xna" | "xno" | "xpla" | "xpnet" | "xprt" | "xpx" | "xrd" | "xrt" | "xrune" | "xsgd" | "xsp" | "xsushi" | "xtp" | "xvs" | "xwg" | "xy" | "xyo" | "yak" | "yam" | "ycc" | "ydf" | "yfii" | "yoshi" | "you" | "zano" | "zat" | "zbc" | "zcx" | "zee" | "zengo" | "zerion" | "zero-network" | "zeta-chain" | "zilliqa" | "zircuit" | "zkb" | "zkid" | "zkp" | "zksync" | "zlk" | "znn" | "zoomer" | "zpay" | "ztg" | "zyn" | "zyx" | "zz">): import("react").JSX.Element;
1769
1769
  displayName: string;
1770
1770
  };
1771
1771
  export {};
@@ -2020,7 +2020,7 @@ declare const token_brandedIconNames: {
2020
2020
  };
2021
2021
  export type TokenBrandedIconName = keyof typeof token_brandedIconNames;
2022
2022
  export declare const TokenBranded: {
2023
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"id" | "pop" | "push" | "map" | "idle" | "solid" | "auto" | "scroll" | "ref" | "flex" | "link" | "radio" | "props" | "key" | "sub" | "a" | "area" | "audio" | "base" | "col" | "data" | "del" | "ins" | "meta" | "meter" | "nav" | "pre" | "source" | "strong" | "time" | "u" | "g" | "mask" | "polygon" | "atm" | "blur" | "chat" | "crown" | "flare" | "hook" | "launch" | "pillar" | "purse" | "ring" | "send" | "sync" | "wan" | "wifi" | "crowd" | "corn" | "cow" | "egg" | "grain" | "seed" | "tree" | "waves" | "beta" | "gamma" | "bat" | "cat" | "dog" | "paw" | "snail" | "music" | "fuel" | "fuse" | "bitcoin" | "litecoin" | "safe" | "wallet" | "arch" | "ethereum" | "npm" | "plex" | "iron" | "looks" | "brush" | "cake" | "card" | "axe" | "bolt" | "rake" | "cast" | "rug" | "equal" | "pi" | "clover" | "spa" | "bridge" | "om" | "atom" | "aurora" | "cone" | "cube" | "sphere" | "moon" | "sun" | "backpack" | "bean" | "donut" | "dot" | "flame" | "hop" | "move" | "rainbow" | "rose" | "route" | "space" | "spool" | "zap" | "ai" | "cell" | "fold" | "man" | "math" | "png" | "prism" | "razor" | "salt" | "stars" | "tower" | "world" | "dash" | "front" | "people" | "pip" | "vr" | "r" | "t" | "socks" | "mobile" | "carbon" | "flow" | "ppt" | "idea" | "movement" | "ion" | "abstract" | "ada" | "algorand" | "aqua" | "arc" | "binance" | "bit" | "cardano" | "coinbase" | "crystal" | "ejs" | "ens" | "fantom" | "flux" | "gmx" | "go" | "grav" | "hermes" | "hive" | "honey" | "iota" | "iris" | "katana" | "kick" | "kit" | "kucoin" | "kuma" | "lens" | "lit" | "loom" | "lua" | "max" | "mdx" | "mix" | "mta" | "near" | "nim" | "odin" | "okx" | "optimism" | "polkadot" | "poly" | "ram" | "ray" | "rtm" | "solana" | "steem" | "stellar" | "sui" | "tidal" | "ton" | "trove" | "umami" | "vega" | "vite" | "wagmi" | "wise" | "wxt" | "xrp" | "zig" | "atomic" | "ava" | "hapi" | "immutable" | "ink" | "kraken" | "metamask" | "mps" | "neon" | "realm" | "rome" | "slim" | "tor" | "trac" | "keep" | "air" | "floor" | "atr" | "paid" | "mimo" | "brick" | "eco" | "fluid" | "raven" | "block" | "stacks" | "step" | "token" | "farm" | "voice" | "gas" | "fx" | "ceur" | "paper" | "aa" | "ali" | "apex" | "apollo" | "auction" | "aura" | "axs" | "bahamut" | "beam" | "ben" | "bitget" | "bitstamp" | "bybit" | "cheq" | "defit" | "diode" | "dust" | "edge" | "epik" | "es" | "exodus" | "four" | "fps" | "free" | "gate-io" | "gemini" | "harmony" | "husky" | "ice" | "imo" | "joe" | "juno" | "kan" | "kma" | "kwai" | "leo" | "lime" | "lovely" | "luca" | "maps" | "meme" | "mint" | "mm" | "mobi" | "mx" | "navi" | "nest" | "ngl" | "nos" | "nxt" | "omni" | "one" | "paribu" | "pay" | "phantom" | "primal" | "rin" | "sai" | "scp" | "sofi" | "solflare" | "sonic" | "souls" | "status" | "sushi" | "thor" | "tips" | "top" | "torn" | "uno" | "vita" | "vix" | "wow" | "zen" | "zero" | "game" | "layer" | "hot" | "mute" | "alex" | "mantle" | "btg" | "etc" | "rvn" | "tet" | "trezor" | "trx" | "btc" | "gg" | "vine" | "ar" | "bs" | "gq" | "gt" | "ht" | "iq" | "la" | "mc" | "ml" | "mv" | "sc" | "si" | "sn" | "tt" | "vc" | "mf" | "_1inch" | "aave" | "abt" | "act" | "agrs" | "algo" | "ant" | "ape" | "ardr" | "ark" | "atlas" | "aury" | "avax" | "bcd" | "bch" | "bcn" | "blz" | "bnb" | "bnt" | "bsv" | "btcp" | "btm" | "bts" | "cdt" | "chain" | "chz" | "cnd" | "comp" | "crpt" | "crv" | "ctr" | "ctxc" | "cvc" | "dai" | "dbc" | "dcr" | "dent" | "dgb" | "dnt" | "doge" | "drgn" | "edg" | "elf" | "eng" | "enj" | "eos" | "eth" | "etn" | "etp" | "fct" | "fida" | "fil" | "fsn" | "ftc" | "fun" | "gbyte" | "gno" | "grc" | "grin" | "grt" | "gusd" | "husd" | "hush" | "icp" | "icx" | "ignis" | "kcs" | "kin" | "kmd" | "knc" | "ksm" | "lpt" | "lrc" | "lsk" | "ltc" | "mana" | "matic" | "med" | "mft" | "mkr" | "mln" | "mod" | "mona" | "mth" | "mtl" | "neo" | "nexo" | "ngc" | "nkn" | "nmr" | "npxs" | "nuls" | "oax" | "ong" | "ont" | "ox" | "oxt" | "oxy" | "pac" | "part" | "paxg" | "pivx" | "plr" | "powr" | "ppc" | "qash" | "qlc" | "qnt" | "qrl" | "qtum" | "rcn" | "rdd" | "rdn" | "ren" | "rep" | "req" | "rise" | "rlc" | "san" | "sand" | "sbd" | "skl" | "slr" | "snt" | "snx" | "sol" | "spank" | "storj" | "stx" | "sys" | "tel" | "theta" | "tkn" | "tnt" | "tusd" | "uma" | "uni" | "usdc" | "usdt" | "utk" | "vet" | "vib" | "vtc" | "vtho" | "wax" | "wbtc" | "xcp" | "xem" | "xmr" | "xpr" | "xtz" | "xvg" | "yfi" | "zec" | "zil" | "zrx" | "yes" | "apl" | "sdl" | "unix" | "onion" | "el" | "gorilla" | "tulip" | "whale" | "ledger" | "swap" | "rev" | "solo" | "dia" | "krl" | "metal" | "pickle" | "pros" | "ipad" | "dodo" | "wing" | "media" | "troy" | "gala" | "belt" | "blast" | "boba" | "foam" | "h2o" | "hydra" | "lever" | "oni" | "palm" | "portal" | "sail" | "soul" | "stable" | "trade" | "well" | "cap" | "hello" | "temple" | "avalanche" | "cos" | "dome" | "dua" | "gravity" | "lake" | "mochi" | "min" | "hold" | "six" | "dvi" | "ontology" | "jam" | "stat" | "blank" | "sns" | "pond" | "rail" | "lcd" | "c3" | "cbx" | "forth" | "verse" | "epic" | "psp" | "xor" | "arweave" | "golden" | "pro" | "pixel" | "prime" | "tribe" | "future" | "dip" | "tomb" | "caps" | "sequence" | "_0x0" | "_10set" | "_1art" | "_2dai" | "_3ull" | "aag" | "aart" | "abl" | "abr" | "abyss" | "acala" | "ach" | "acq" | "acria" | "acx" | "adapad" | "aevo" | "agix" | "agla" | "aht" | "aimbot" | "aimx" | "ain" | "aioz" | "aipad" | "airi" | "ait" | "akt" | "alcx" | "aleph" | "alfa1" | "algb" | "allin" | "alot" | "alpaca" | "alph" | "alpha-wallet" | "ame-chain" | "apechain" | "apefi" | "apex-layer" | "apfc" | "apm" | "apt" | "aptos" | "apw" | "apx" | "aqt" | "aqtis" | "arb" | "arbitrum-nova" | "arbitrum-one" | "argent" | "ari" | "ari10" | "aria20" | "arrr" | "arsw" | "astar" | "ath" | "ator" | "atpay" | "atri" | "aurabal" | "autonomys" | "avinoc" | "avt" | "axel" | "axl" | "azero" | "azit" | "balancer" | "bancor" | "bax" | "bbank" | "bbl" | "bcb" | "bcdt" | "bcmc" | "bct" | "bcube" | "bdp" | "bdt" | "bdx" | "beets" | "bel" | "bend" | "bepro" | "berachain" | "berry" | "binance-smart-chain" | "bist" | "bitbox" | "bitci" | "bithumb" | "bitkub-chain" | "bld" | "blid" | "blox" | "blp" | "blt" | "blx" | "blxm" | "bmex" | "bmx" | "bnx" | "boa" | "bob" | "bond" | "botanix" | "bouncebit" | "brg" | "brise" | "brn" | "brock" | "bscpad" | "bsgg" | "bst" | "bsw" | "bsx" | "bta" | "btc2" | "btcmt" | "btcst" | "btcturk" | "btrfly" | "btse" | "bzr" | "bzrx" | "bzz" | "c98" | "cah" | "canto" | "carat" | "cas" | "catheon" | "cbeth" | "cby" | "ccd" | "ccv2" | "cdai" | "cel" | "celo" | "celr" | "cere" | "cetus" | "cfg" | "cfx" | "cgg" | "cgo" | "cgt" | "chiliz" | "cho" | "chr" | "chrp" | "cirus" | "ckp" | "clave" | "clh" | "clore" | "cls" | "clv" | "clxy" | "cmdx" | "cmos" | "cnfi" | "cng" | "cnht" | "coin98" | "coinex-smart-chain" | "combo" | "conflux" | "conv" | "cope" | "copi" | "cosmos" | "cosmos-hub" | "cov" | "cowswap" | "cph" | "cqt" | "cre" | "cream" | "credi" | "creo" | "cro" | "croid" | "cronos" | "cronos-zkevm" | "crts" | "cru" | "crwny" | "crypto-com" | "csix" | "cspr" | "ctc" | "ctg" | "cti" | "ctk" | "ctsi" | "ctx" | "cudos" | "cuminu" | "cummies" | "cusd" | "cusdc" | "cvp" | "cvr" | "cweb" | "cws" | "cxo" | "cyber" | "d2t" | "d3d" | "dacxi" | "dad" | "dafi" | "dao" | "dbr" | "dc" | "dcb" | "dck" | "defi" | "defx" | "dego" | "dep" | "derc" | "deri" | "dero" | "deso" | "dexe" | "dext" | "dextf" | "df" | "dfi" | "dfx" | "dfyn" | "dgnx" | "dgx" | "dht" | "diko" | "dimo" | "diver" | "divi" | "djed" | "dka" | "dlc" | "dmc" | "dmd" | "dmt" | "dmtr" | "doga" | "dola" | "domi" | "dose" | "dpay" | "dps" | "dpx" | "dseth" | "dsm" | "dsrun" | "dtx" | "dusk" | "dvf" | "dvpn" | "dweb" | "dxgm" | "dxl" | "dydx" | "earn" | "ecoin" | "ecox" | "eden" | "edgeless" | "edu" | "efc" | "efi" | "efl" | "efx" | "egc" | "egld" | "ego" | "eland" | "elastos" | "elk" | "eml" | "emp" | "energy-web" | "enkrypt" | "enuls" | "eosdt" | "eqb" | "equad" | "eqx" | "erg" | "ern" | "ertha" | "ete" | "ethereum-classic" | "etherlink" | "ethix" | "ethm" | "ethx" | "eti" | "eul" | "euno" | "eurc" | "euroe" | "eurs" | "eurt" | "eusd" | "eveai" | "ever" | "evmos" | "ewt" | "exd" | "expchain" | "exrd" | "extra" | "factr" | "fakeai" | "fcon" | "fctr" | "fdusd" | "fear" | "fei" | "fer" | "fet" | "fevr" | "filecoin" | "fio" | "firo" | "fis" | "fitfi" | "flr" | "fls" | "fluence" | "flx" | "fnsa" | "for" | "fore" | "forex" | "fra" | "frax" | "fraxtal" | "frin" | "frm" | "ftm" | "ftn" | "fund" | "fwb" | "fxs" | "fyn" | "gafi" | "gai" | "gains" | "gal" | "galeon" | "gamefi" | "gami" | "gbex" | "gcoin" | "gcr" | "gdcc" | "geeq" | "gel" | "geni" | "geod" | "get" | "gfal" | "ggg" | "ggp" | "ghny" | "gho" | "ghx" | "giv" | "glc" | "gleec" | "glink" | "glm" | "glmr" | "glow" | "glq" | "gmee" | "gmpd" | "gnosis" | "gns" | "gny" | "gofx" | "gora" | "govi" | "grai" | "grail" | "gse" | "gswap" | "gswift" | "gtc" | "guild" | "gulf" | "gunz" | "gxa" | "gxc" | "gyen" | "gymnet" | "gzil" | "gzone" | "hai" | "hair" | "haka" | "handy" | "hard" | "hashkey" | "hawk" | "hbar" | "hbb" | "hbot" | "hbtc" | "hdx" | "hedera-hashgraph" | "hegic" | "hemi" | "hero" | "hez" | "hft" | "hgt" | "hibs" | "hid" | "hifi" | "hilo" | "hmnd" | "hmx" | "hnt" | "hopr" | "hpo" | "hst" | "htm" | "htr" | "hubble-exchange" | "hunt" | "hvh" | "hxd" | "hxro" | "hyper-evm" | "hyve" | "hzn" | "ibat" | "ibit" | "ichi" | "idex" | "idia" | "idrt" | "idv" | "ieth" | "igu" | "ilv" | "imtoken" | "imx" | "infra" | "inj" | "injective" | "inst" | "insur" | "int" | "intr" | "inv" | "ionx" | "iota-evm" | "iotex" | "ipor" | "isk" | "isp" | "ist" | "ixo" | "ixt" | "japan-open-chain" | "jasmy" | "jkl" | "jmpt" | "jones" | "jop" | "joy" | "jst" | "juld" | "jup" | "juris" | "k21" | "kai" | "kaia" | "kakarot" | "kalm" | "kap" | "kar" | "karura" | "kas" | "kasta" | "kat" | "kau" | "kava" | "kda" | "keplr" | "kex" | "kicks" | "kilt" | "kine" | "kint" | "klay" | "kleva" | "klima" | "klt" | "klv" | "kmon" | "koge" | "koin" | "kom" | "kompete" | "kp3r" | "krom" | "kroma" | "ktc" | "kub" | "kuji" | "kujira" | "kukai" | "kunci" | "kwenta" | "kyve" | "l2" | "l3x" | "lamb" | "land" | "lat" | "lava-network" | "lazio" | "lbr" | "lbt" | "lcr" | "lcs" | "lcx" | "ldo" | "leox" | "let" | "lgcy" | "libre" | "lif3" | "lightlink" | "lina" | "linea" | "ling" | "lisk" | "lith" | "litt" | "lixx" | "lm" | "lmwr" | "loc" | "lode" | "loka" | "lon" | "loopring" | "lpnt" | "lpool" | "lqdr" | "lsd" | "lto" | "ltx" | "lufc" | "lukso" | "lumia" | "lunr" | "lusd" | "lvl" | "lycan" | "lym" | "lyra" | "lyx" | "lyxe" | "lzm" | "maha" | "manc" | "manta-pacific" | "mantra" | "mars4" | "marsh" | "masq" | "maticx" | "mav" | "mbd" | "mbl" | "mbox" | "mbx" | "mcade" | "mcb" | "mchc" | "mcontent" | "mcrt" | "mdao" | "mdt" | "mean" | "meed" | "mega-eth" | "met" | "metav" | "metf" | "metfi" | "metis" | "metis-andromeda" | "mex" | "milkomeda-a1" | "milkomeda-c1" | "mimatic" | "mina" | "mind" | "minima" | "mir" | "mlk" | "mmpro" | "mmy" | "mnb" | "mnd" | "mnde" | "mngo" | "mnr" | "mnst" | "mnt" | "mntc" | "mntl" | "mnw" | "moby" | "mode" | "monad" | "moonbase" | "moonbase-alpha" | "moonbeam" | "moonriver" | "moov" | "mork" | "movr" | "mpl" | "mplx" | "mrs" | "msol" | "mst" | "mtd" | "mtlx" | "mtrg" | "mts" | "mtv" | "multiversx" | "musd" | "muse" | "mvd" | "mvi" | "mvl" | "mwc" | "mxc" | "mxm" | "my-ether-wallet" | "myria" | "myst" | "mzr" | "nabox" | "nahmii" | "nals" | "nap" | "nblu" | "nbt" | "ncdt" | "ncr" | "nct" | "near-protocol" | "nebo" | "neer" | "neo-x" | "neon-evm" | "nett" | "neuroni" | "newo" | "nex" | "nexis" | "nfai" | "nftart" | "nftb" | "nftbs" | "nftx" | "ngm" | "nht" | "nibiru" | "nls" | "nmx" | "nodl" | "noia" | "nom" | "nord" | "npc" | "nrch" | "nrg" | "nsbt" | "nsfw" | "ntx" | "num" | "nvir" | "nvt" | "nwc" | "nxm" | "nxra" | "nym" | "o3" | "oas" | "oasys" | "oath" | "obot" | "obsr" | "obvious" | "oce" | "ocean" | "oddz" | "odos" | "oeth" | "ogn" | "okex" | "okt" | "olt" | "omax" | "omi" | "ommi" | "onit" | "ooe" | "ooki" | "ooks" | "op" | "opium" | "optopia" | "orare" | "orbs" | "orderly" | "ordi" | "ort" | "os" | "osmo" | "osmosis" | "otk" | "ousd" | "oxb" | "oxen" | "ozean" | "ozo" | "paal" | "pai" | "pal" | "pancake-swap" | "para" | "para-swap" | "paradex" | "pasg" | "pawth" | "pbr" | "pbx" | "pdex" | "pdt" | "peaq" | "pec" | "pendle" | "perc" | "peri" | "perp" | "pex" | "pgx" | "pha" | "phb" | "phonon" | "pib" | "pica" | "pika" | "pinksale" | "pkf" | "pkt" | "pla" | "planets" | "plastik" | "pli" | "pln" | "plt" | "plu" | "pnb" | "pnk" | "pnt" | "pokt" | "pol" | "pola" | "pols" | "polx" | "polygon-zkevm" | "polypad" | "polyx" | "poolx" | "portx" | "ppay" | "premia" | "prob" | "prom" | "propc" | "proteo" | "prq" | "prtc" | "prx" | "pry" | "psl" | "pstake" | "pswap" | "pts" | "ptu" | "pumlx" | "pundix" | "pwr" | "pxp" | "pyr" | "pyth" | "pyusd" | "pzp" | "qanx" | "qkc" | "qrdo" | "qsr" | "qtcon" | "quad" | "quartz" | "qube" | "quidd" | "quint" | "rad" | "rae" | "ramp" | "rare" | "rari" | "rbd" | "rbif" | "rbn" | "rdnt" | "rdpx" | "rdt" | "reef" | "regen" | "rei" | "renbtc" | "reuni" | "rev3l" | "revv" | "reya" | "rfox" | "rgen" | "rgt" | "ride" | "rif" | "rite" | "rjv" | "rlb" | "rly" | "rmrk" | "rndr" | "ronin" | "rootstock" | "rpg" | "rpl" | "rsc" | "rsr" | "rss3" | "rune" | "rvc" | "rvst" | "rwn" | "rxd" | "saitama" | "saito" | "sakai" | "sama" | "satt" | "savg" | "sbtc" | "scb" | "sclp" | "scrt" | "sdex" | "sdn" | "sdt" | "sei" | "sei-network" | "seilor" | "senate" | "sender" | "sense" | "seth" | "seth2" | "sfi" | "sfm" | "sfp" | "sfrxeth" | "sftmx" | "sfund" | "shft" | "shi" | "shiden" | "shido" | "shimmer-evm" | "shopx" | "shroom" | "shx" | "signa" | "silicon" | "silk" | "sis" | "skeb" | "skey" | "slam" | "slcl" | "slg" | "slnd" | "smartcredit" | "smbr" | "smt" | "snft" | "solve" | "solx" | "somm" | "soneium" | "songbird" | "sonne" | "soon" | "soph" | "sophen" | "sparta" | "spc" | "sph" | "spirit" | "spore" | "spx" | "squads" | "srcx" | "srk" | "srlty" | "srm" | "srx" | "ssv" | "sswp" | "ssx" | "stargaze" | "starknet" | "statom" | "stbu" | "stfx" | "stg" | "stjuno" | "stmx" | "stos" | "stosmo" | "stpt" | "strax" | "strd" | "strk" | "strp" | "strx" | "ststars" | "sudo" | "suip" | "suku" | "super-seed" | "supra-movevm" | "susd" | "sushiswap" | "suter" | "swash" | "sweat" | "swell" | "sweth" | "swftc" | "swise" | "swissborg" | "swth" | "sxp" | "sylo" | "symbiosis" | "taboo" | "taiko" | "taki" | "tao" | "tara" | "tbtc" | "tdrop" | "teer" | "telos" | "tenet" | "terra-classic" | "tetu" | "tfuel" | "tgt" | "thales" | "the" | "theo" | "thol" | "thundercore" | "tia" | "tifi" | "tig" | "titan" | "tko" | "tkp" | "tkx" | "tlm" | "tlos" | "tomi" | "tonic" | "topia" | "toshi" | "tpad" | "trava" | "traxx" | "trb" | "trc" | "trcl" | "treasure" | "treeb" | "trias" | "tron" | "tronpad" | "tru" | "trust" | "trvl" | "tryb" | "ttk" | "tut" | "tvk" | "twt" | "txau" | "ubiq" | "ubsn" | "ubt" | "ubxs" | "ufi" | "uft" | "ultra" | "ultron" | "umb" | "uncx" | "und" | "undead" | "unfi" | "unibot" | "unichain" | "unipass" | "uniswap" | "uos" | "upbit" | "upp" | "uqc" | "urus" | "usdd" | "usdv" | "usdx" | "ush" | "usn" | "uw3s" | "vab" | "vai" | "valor" | "vana" | "vanar" | "vara" | "vaulta" | "vcore" | "vee" | "vela" | "velas" | "velo" | "vemp" | "venly" | "veur" | "vex" | "vext" | "vgx" | "viction" | "vidt" | "vidya" | "vlx" | "vlxpad" | "vno" | "voxel" | "vpad" | "vra" | "vrsw" | "vsp" | "vsys" | "vtx" | "vv" | "vvs" | "vxv" | "wacme" | "wagmigames" | "wait" | "wallet-3" | "wallet-connect" | "wampl" | "was" | "waxp" | "wbeth" | "wbt" | "wcfg" | "wefi" | "welt" | "wemix" | "wgc" | "white" | "wigo" | "wiken" | "win" | "winr" | "witch" | "wliti" | "wlkn" | "wndr" | "wnk" | "wnxm" | "wombat" | "woof" | "wozx" | "wrld" | "wrx" | "wsi" | "wwy" | "x-layer" | "x2y2" | "xai" | "xaur" | "xava" | "xcad" | "xcfx" | "xch" | "xchf" | "xcm" | "xcur" | "xdata" | "xdb" | "xdc" | "xdefi" | "xdg" | "xec" | "xels" | "xep" | "xet" | "xeta" | "xft" | "xfund" | "xhv" | "xi" | "xido" | "xki" | "xna" | "xno" | "xpla" | "xpnet" | "xprt" | "xpx" | "xrd" | "xrt" | "xrune" | "xsgd" | "xsp" | "xsushi" | "xtp" | "xvs" | "xwg" | "xy" | "xyo" | "yak" | "yam" | "ycc" | "ydf" | "yfii" | "yoshi" | "you" | "zano" | "zat" | "zbc" | "zcx" | "zee" | "zengo" | "zerion" | "zero-network" | "zeta-chain" | "zilliqa" | "zircuit" | "zkb" | "zkid" | "zkp" | "zksync" | "zlk" | "znn" | "zoomer" | "zpay" | "ztg" | "zyn" | "zyx" | "zz" | "_0xgas" | "acs" | "ais" | "aitech" | "alice" | "arix" | "arpa" | "ata" | "atd" | "avg" | "avi" | "avl" | "bcat" | "bcoin" | "bkn" | "blue" | "bluesparrow" | "blusd" | "brrr" | "brwl" | "bscs" | "catgirl" | "caw" | "cct" | "ceek" | "cgl" | "cgpt" | "champz" | "cheems" | "chmb" | "ckb" | "cly" | "cnc" | "coc" | "collab" | "core" | "coti" | "coval" | "cpool" | "crvusd" | "cult" | "cwar" | "dbi" | "dec" | "degen" | "dingo" | "dione" | "dnxc" | "dobo" | "dogechain" | "dogegf" | "dor" | "dora" | "dpet" | "dpi" | "drep" | "dsla" | "dxp" | "dyp" | "dzoo" | "elon" | "elu" | "emagic" | "emaid" | "equ" | "ethw" | "fara" | "feg" | "flm" | "foom" | "fren" | "gari" | "gat" | "gft" | "ghst" | "ghub" | "gob" | "gods" | "goz" | "gpcx" | "grg" | "grnd" | "grv" | "gsts" | "hera" | "hgpt" | "hipp" | "honk" | "hoshi" | "huahua" | "imgnai" | "impt" | "itp" | "jesus" | "jewel" | "jim" | "kardia" | "kata" | "keke" | "kiba" | "kibshi" | "kingshib" | "kishu" | "kitty" | "klee" | "kzen" | "ladys" | "lcc" | "leash" | "linda" | "linu" | "liza" | "lqty" | "lumio" | "luna" | "lunc" | "meld" | "memeai" | "mgp" | "mim" | "mintme" | "minu" | "mmf" | "mmit" | "mmo" | "moc" | "moe" | "mog" | "mooned" | "mtrm" | "mtvt" | "mudol2" | "mvx" | "nada" | "naka" | "naos" | "neuros" | "nexa" | "nfd" | "obi" | "octa" | "oggy" | "omnom" | "opti" | "orai" | "orb" | "orn" | "osak" | "ovr" | "peel" | "pepe" | "pepes" | "per" | "pinu" | "piza" | "pkr" | "pleb" | "ply" | "pmon" | "pnp" | "polc" | "polk" | "polydoge" | "pooh" | "popcat" | "pork" | "pussy" | "qom" | "quick" | "rabby" | "rai" | "rbls" | "rbw" | "rbx" | "ret" | "reth" | "revo" | "rfd" | "ribbit" | "risita" | "roko" | "rollux" | "rvf" | "safemars" | "sam" | "samo" | "sani" | "sats" | "sauce" | "scar" | "scs" | "sdao" | "sfd" | "sha" | "shdw" | "shia" | "shib" | "shibdoge" | "shik" | "sipher" | "slp" | "smi" | "snek" | "spe" | "spell" | "squad" | "squidgrow" | "starl" | "stella" | "stima" | "stsol" | "sure" | "tama" | "tht" | "tin" | "token-pocket" | "tombchain" | "tsuka" | "tyrant" | "ucjl" | "ustc" | "uwu" | "vcf" | "versa" | "vinu" | "vis" | "volt" | "walv" | "wam" | "wnt" | "wojak" | "xaut" | "xmon" | "xtm" | "xwin" | "y2k" | "ygg" | "zmn" | "zora">): import("react").JSX.Element;
2023
+ ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"id" | "pop" | "push" | "map" | "data" | "sequence" | "idle" | "link" | "sub" | "scroll" | "solid" | "auto" | "ref" | "radio" | "yes" | "key" | "flex" | "top" | "a" | "area" | "audio" | "base" | "col" | "del" | "ins" | "meta" | "meter" | "nav" | "pre" | "source" | "strong" | "time" | "u" | "g" | "mask" | "polygon" | "props" | "atm" | "blur" | "chat" | "crown" | "flare" | "hook" | "launch" | "pillar" | "purse" | "ring" | "send" | "sync" | "wan" | "wifi" | "crowd" | "corn" | "cow" | "egg" | "grain" | "seed" | "tree" | "waves" | "beta" | "gamma" | "bat" | "cat" | "dog" | "paw" | "snail" | "music" | "fuel" | "fuse" | "bitcoin" | "litecoin" | "safe" | "wallet" | "arch" | "ethereum" | "npm" | "plex" | "iron" | "looks" | "brush" | "cake" | "card" | "axe" | "bolt" | "rake" | "cast" | "rug" | "equal" | "pi" | "clover" | "spa" | "bridge" | "om" | "atom" | "aurora" | "cone" | "cube" | "sphere" | "moon" | "sun" | "backpack" | "bean" | "donut" | "dot" | "flame" | "hop" | "move" | "rainbow" | "rose" | "route" | "space" | "spool" | "zap" | "ai" | "cell" | "fold" | "man" | "math" | "png" | "prism" | "razor" | "salt" | "stars" | "tower" | "world" | "dash" | "front" | "people" | "pip" | "vr" | "r" | "t" | "socks" | "mobile" | "carbon" | "flow" | "ppt" | "idea" | "movement" | "ion" | "abstract" | "ada" | "algorand" | "aqua" | "arc" | "binance" | "bit" | "cardano" | "coinbase" | "crystal" | "ejs" | "ens" | "fantom" | "flux" | "gmx" | "go" | "grav" | "hermes" | "hive" | "honey" | "iota" | "iris" | "katana" | "kick" | "kit" | "kucoin" | "kuma" | "lens" | "lit" | "loom" | "lua" | "max" | "mdx" | "mix" | "mta" | "near" | "nim" | "odin" | "okx" | "optimism" | "polkadot" | "poly" | "ram" | "ray" | "rtm" | "solana" | "steem" | "stellar" | "sui" | "tidal" | "ton" | "trove" | "umami" | "vega" | "vite" | "wagmi" | "wise" | "wxt" | "xrp" | "zig" | "atomic" | "ava" | "hapi" | "immutable" | "ink" | "kraken" | "metamask" | "mps" | "neon" | "realm" | "rome" | "slim" | "tor" | "trac" | "keep" | "air" | "floor" | "atr" | "paid" | "mimo" | "brick" | "eco" | "fluid" | "raven" | "block" | "stacks" | "step" | "token" | "farm" | "voice" | "gas" | "fx" | "ceur" | "paper" | "aa" | "ali" | "apex" | "apollo" | "auction" | "aura" | "axs" | "bahamut" | "beam" | "ben" | "bitget" | "bitstamp" | "bybit" | "cheq" | "defit" | "diode" | "dust" | "edge" | "epik" | "es" | "exodus" | "four" | "fps" | "free" | "gate-io" | "gemini" | "harmony" | "husky" | "ice" | "imo" | "joe" | "juno" | "kan" | "kma" | "kwai" | "leo" | "lime" | "lovely" | "luca" | "maps" | "meme" | "mint" | "mm" | "mobi" | "mx" | "navi" | "nest" | "ngl" | "nos" | "nxt" | "omni" | "one" | "paribu" | "pay" | "phantom" | "primal" | "rin" | "sai" | "scp" | "sofi" | "solflare" | "sonic" | "souls" | "status" | "sushi" | "thor" | "tips" | "torn" | "uno" | "vita" | "vix" | "wow" | "zen" | "zero" | "game" | "layer" | "hot" | "mute" | "alex" | "mantle" | "btg" | "etc" | "rvn" | "tet" | "trezor" | "trx" | "btc" | "gg" | "vine" | "ar" | "bs" | "gq" | "gt" | "ht" | "iq" | "la" | "mc" | "ml" | "mv" | "sc" | "si" | "sn" | "tt" | "vc" | "mf" | "_1inch" | "aave" | "abt" | "act" | "agrs" | "algo" | "ant" | "ape" | "ardr" | "ark" | "atlas" | "aury" | "avax" | "bcd" | "bch" | "bcn" | "blz" | "bnb" | "bnt" | "bsv" | "btcp" | "btm" | "bts" | "cdt" | "chain" | "chz" | "cnd" | "comp" | "crpt" | "crv" | "ctr" | "ctxc" | "cvc" | "dai" | "dbc" | "dcr" | "dent" | "dgb" | "dnt" | "doge" | "drgn" | "edg" | "elf" | "eng" | "enj" | "eos" | "eth" | "etn" | "etp" | "fct" | "fida" | "fil" | "fsn" | "ftc" | "fun" | "gbyte" | "gno" | "grc" | "grin" | "grt" | "gusd" | "husd" | "hush" | "icp" | "icx" | "ignis" | "kcs" | "kin" | "kmd" | "knc" | "ksm" | "lpt" | "lrc" | "lsk" | "ltc" | "mana" | "matic" | "med" | "mft" | "mkr" | "mln" | "mod" | "mona" | "mth" | "mtl" | "neo" | "nexo" | "ngc" | "nkn" | "nmr" | "npxs" | "nuls" | "oax" | "ong" | "ont" | "ox" | "oxt" | "oxy" | "pac" | "part" | "paxg" | "pivx" | "plr" | "powr" | "ppc" | "qash" | "qlc" | "qnt" | "qrl" | "qtum" | "rcn" | "rdd" | "rdn" | "ren" | "rep" | "req" | "rise" | "rlc" | "san" | "sand" | "sbd" | "skl" | "slr" | "snt" | "snx" | "sol" | "spank" | "storj" | "stx" | "sys" | "tel" | "theta" | "tkn" | "tnt" | "tusd" | "uma" | "uni" | "usdc" | "usdt" | "utk" | "vet" | "vib" | "vtc" | "vtho" | "wax" | "wbtc" | "xcp" | "xem" | "xmr" | "xpr" | "xtz" | "xvg" | "yfi" | "zec" | "zil" | "zrx" | "apl" | "sdl" | "unix" | "onion" | "el" | "gorilla" | "tulip" | "whale" | "ledger" | "swap" | "rev" | "solo" | "dia" | "krl" | "metal" | "pickle" | "pros" | "ipad" | "dodo" | "wing" | "media" | "troy" | "gala" | "belt" | "blast" | "boba" | "foam" | "h2o" | "hydra" | "lever" | "oni" | "palm" | "portal" | "sail" | "soul" | "stable" | "trade" | "well" | "cap" | "hello" | "temple" | "avalanche" | "cos" | "dome" | "dua" | "gravity" | "lake" | "mochi" | "min" | "hold" | "six" | "dvi" | "ontology" | "jam" | "stat" | "blank" | "sns" | "pond" | "rail" | "lcd" | "c3" | "cbx" | "forth" | "verse" | "epic" | "psp" | "xor" | "arweave" | "golden" | "pro" | "pixel" | "prime" | "tribe" | "future" | "dip" | "tomb" | "caps" | "_0x0" | "_10set" | "_1art" | "_2dai" | "_3ull" | "aag" | "aart" | "abl" | "abr" | "abyss" | "acala" | "ach" | "acq" | "acria" | "acx" | "adapad" | "aevo" | "agix" | "agla" | "aht" | "aimbot" | "aimx" | "ain" | "aioz" | "aipad" | "airi" | "ait" | "akt" | "alcx" | "aleph" | "alfa1" | "algb" | "allin" | "alot" | "alpaca" | "alph" | "alpha-wallet" | "ame-chain" | "apechain" | "apefi" | "apex-layer" | "apfc" | "apm" | "apt" | "aptos" | "apw" | "apx" | "aqt" | "aqtis" | "arb" | "arbitrum-nova" | "arbitrum-one" | "argent" | "ari" | "ari10" | "aria20" | "arrr" | "arsw" | "astar" | "ath" | "ator" | "atpay" | "atri" | "aurabal" | "autonomys" | "avinoc" | "avt" | "axel" | "axl" | "azero" | "azit" | "balancer" | "bancor" | "bax" | "bbank" | "bbl" | "bcb" | "bcdt" | "bcmc" | "bct" | "bcube" | "bdp" | "bdt" | "bdx" | "beets" | "bel" | "bend" | "bepro" | "berachain" | "berry" | "binance-smart-chain" | "bist" | "bitbox" | "bitci" | "bithumb" | "bitkub-chain" | "bld" | "blid" | "blox" | "blp" | "blt" | "blx" | "blxm" | "bmex" | "bmx" | "bnx" | "boa" | "bob" | "bond" | "botanix" | "bouncebit" | "brg" | "brise" | "brn" | "brock" | "bscpad" | "bsgg" | "bst" | "bsw" | "bsx" | "bta" | "btc2" | "btcmt" | "btcst" | "btcturk" | "btrfly" | "btse" | "bzr" | "bzrx" | "bzz" | "c98" | "cah" | "canto" | "carat" | "cas" | "catheon" | "cbeth" | "cby" | "ccd" | "ccv2" | "cdai" | "cel" | "celo" | "celr" | "cere" | "cetus" | "cfg" | "cfx" | "cgg" | "cgo" | "cgt" | "chiliz" | "cho" | "chr" | "chrp" | "cirus" | "ckp" | "clave" | "clh" | "clore" | "cls" | "clv" | "clxy" | "cmdx" | "cmos" | "cnfi" | "cng" | "cnht" | "coin98" | "coinex-smart-chain" | "combo" | "conflux" | "conv" | "cope" | "copi" | "cosmos" | "cosmos-hub" | "cov" | "cowswap" | "cph" | "cqt" | "cre" | "cream" | "credi" | "creo" | "cro" | "croid" | "cronos" | "cronos-zkevm" | "crts" | "cru" | "crwny" | "crypto-com" | "csix" | "cspr" | "ctc" | "ctg" | "cti" | "ctk" | "ctsi" | "ctx" | "cudos" | "cuminu" | "cummies" | "cusd" | "cusdc" | "cvp" | "cvr" | "cweb" | "cws" | "cxo" | "cyber" | "d2t" | "d3d" | "dacxi" | "dad" | "dafi" | "dao" | "dbr" | "dc" | "dcb" | "dck" | "defi" | "defx" | "dego" | "dep" | "derc" | "deri" | "dero" | "deso" | "dexe" | "dext" | "dextf" | "df" | "dfi" | "dfx" | "dfyn" | "dgnx" | "dgx" | "dht" | "diko" | "dimo" | "diver" | "divi" | "djed" | "dka" | "dlc" | "dmc" | "dmd" | "dmt" | "dmtr" | "doga" | "dola" | "domi" | "dose" | "dpay" | "dps" | "dpx" | "dseth" | "dsm" | "dsrun" | "dtx" | "dusk" | "dvf" | "dvpn" | "dweb" | "dxgm" | "dxl" | "dydx" | "earn" | "ecoin" | "ecox" | "eden" | "edgeless" | "edu" | "efc" | "efi" | "efl" | "efx" | "egc" | "egld" | "ego" | "eland" | "elastos" | "elk" | "eml" | "emp" | "energy-web" | "enkrypt" | "enuls" | "eosdt" | "eqb" | "equad" | "eqx" | "erg" | "ern" | "ertha" | "ete" | "ethereum-classic" | "etherlink" | "ethix" | "ethm" | "ethx" | "eti" | "eul" | "euno" | "eurc" | "euroe" | "eurs" | "eurt" | "eusd" | "eveai" | "ever" | "evmos" | "ewt" | "exd" | "expchain" | "exrd" | "extra" | "factr" | "fakeai" | "fcon" | "fctr" | "fdusd" | "fear" | "fei" | "fer" | "fet" | "fevr" | "filecoin" | "fio" | "firo" | "fis" | "fitfi" | "flr" | "fls" | "fluence" | "flx" | "fnsa" | "for" | "fore" | "forex" | "fra" | "frax" | "fraxtal" | "frin" | "frm" | "ftm" | "ftn" | "fund" | "fwb" | "fxs" | "fyn" | "gafi" | "gai" | "gains" | "gal" | "galeon" | "gamefi" | "gami" | "gbex" | "gcoin" | "gcr" | "gdcc" | "geeq" | "gel" | "geni" | "geod" | "get" | "gfal" | "ggg" | "ggp" | "ghny" | "gho" | "ghx" | "giv" | "glc" | "gleec" | "glink" | "glm" | "glmr" | "glow" | "glq" | "gmee" | "gmpd" | "gnosis" | "gns" | "gny" | "gofx" | "gora" | "govi" | "grai" | "grail" | "gse" | "gswap" | "gswift" | "gtc" | "guild" | "gulf" | "gunz" | "gxa" | "gxc" | "gyen" | "gymnet" | "gzil" | "gzone" | "hai" | "hair" | "haka" | "handy" | "hard" | "hashkey" | "hawk" | "hbar" | "hbb" | "hbot" | "hbtc" | "hdx" | "hedera-hashgraph" | "hegic" | "hemi" | "hero" | "hez" | "hft" | "hgt" | "hibs" | "hid" | "hifi" | "hilo" | "hmnd" | "hmx" | "hnt" | "hopr" | "hpo" | "hst" | "htm" | "htr" | "hubble-exchange" | "hunt" | "hvh" | "hxd" | "hxro" | "hyper-evm" | "hyve" | "hzn" | "ibat" | "ibit" | "ichi" | "idex" | "idia" | "idrt" | "idv" | "ieth" | "igu" | "ilv" | "imtoken" | "imx" | "infra" | "inj" | "injective" | "inst" | "insur" | "int" | "intr" | "inv" | "ionx" | "iota-evm" | "iotex" | "ipor" | "isk" | "isp" | "ist" | "ixo" | "ixt" | "japan-open-chain" | "jasmy" | "jkl" | "jmpt" | "jones" | "jop" | "joy" | "jst" | "juld" | "jup" | "juris" | "k21" | "kai" | "kaia" | "kakarot" | "kalm" | "kap" | "kar" | "karura" | "kas" | "kasta" | "kat" | "kau" | "kava" | "kda" | "keplr" | "kex" | "kicks" | "kilt" | "kine" | "kint" | "klay" | "kleva" | "klima" | "klt" | "klv" | "kmon" | "koge" | "koin" | "kom" | "kompete" | "kp3r" | "krom" | "kroma" | "ktc" | "kub" | "kuji" | "kujira" | "kukai" | "kunci" | "kwenta" | "kyve" | "l2" | "l3x" | "lamb" | "land" | "lat" | "lava-network" | "lazio" | "lbr" | "lbt" | "lcr" | "lcs" | "lcx" | "ldo" | "leox" | "let" | "lgcy" | "libre" | "lif3" | "lightlink" | "lina" | "linea" | "ling" | "lisk" | "lith" | "litt" | "lixx" | "lm" | "lmwr" | "loc" | "lode" | "loka" | "lon" | "loopring" | "lpnt" | "lpool" | "lqdr" | "lsd" | "lto" | "ltx" | "lufc" | "lukso" | "lumia" | "lunr" | "lusd" | "lvl" | "lycan" | "lym" | "lyra" | "lyx" | "lyxe" | "lzm" | "maha" | "manc" | "manta-pacific" | "mantra" | "mars4" | "marsh" | "masq" | "maticx" | "mav" | "mbd" | "mbl" | "mbox" | "mbx" | "mcade" | "mcb" | "mchc" | "mcontent" | "mcrt" | "mdao" | "mdt" | "mean" | "meed" | "mega-eth" | "met" | "metav" | "metf" | "metfi" | "metis" | "metis-andromeda" | "mex" | "milkomeda-a1" | "milkomeda-c1" | "mimatic" | "mina" | "mind" | "minima" | "mir" | "mlk" | "mmpro" | "mmy" | "mnb" | "mnd" | "mnde" | "mngo" | "mnr" | "mnst" | "mnt" | "mntc" | "mntl" | "mnw" | "moby" | "mode" | "monad" | "moonbase" | "moonbase-alpha" | "moonbeam" | "moonriver" | "moov" | "mork" | "movr" | "mpl" | "mplx" | "mrs" | "msol" | "mst" | "mtd" | "mtlx" | "mtrg" | "mts" | "mtv" | "multiversx" | "musd" | "muse" | "mvd" | "mvi" | "mvl" | "mwc" | "mxc" | "mxm" | "my-ether-wallet" | "myria" | "myst" | "mzr" | "nabox" | "nahmii" | "nals" | "nap" | "nblu" | "nbt" | "ncdt" | "ncr" | "nct" | "near-protocol" | "nebo" | "neer" | "neo-x" | "neon-evm" | "nett" | "neuroni" | "newo" | "nex" | "nexis" | "nfai" | "nftart" | "nftb" | "nftbs" | "nftx" | "ngm" | "nht" | "nibiru" | "nls" | "nmx" | "nodl" | "noia" | "nom" | "nord" | "npc" | "nrch" | "nrg" | "nsbt" | "nsfw" | "ntx" | "num" | "nvir" | "nvt" | "nwc" | "nxm" | "nxra" | "nym" | "o3" | "oas" | "oasys" | "oath" | "obot" | "obsr" | "obvious" | "oce" | "ocean" | "oddz" | "odos" | "oeth" | "ogn" | "okex" | "okt" | "olt" | "omax" | "omi" | "ommi" | "onit" | "ooe" | "ooki" | "ooks" | "op" | "opium" | "optopia" | "orare" | "orbs" | "orderly" | "ordi" | "ort" | "os" | "osmo" | "osmosis" | "otk" | "ousd" | "oxb" | "oxen" | "ozean" | "ozo" | "paal" | "pai" | "pal" | "pancake-swap" | "para" | "para-swap" | "paradex" | "pasg" | "pawth" | "pbr" | "pbx" | "pdex" | "pdt" | "peaq" | "pec" | "pendle" | "perc" | "peri" | "perp" | "pex" | "pgx" | "pha" | "phb" | "phonon" | "pib" | "pica" | "pika" | "pinksale" | "pkf" | "pkt" | "pla" | "planets" | "plastik" | "pli" | "pln" | "plt" | "plu" | "pnb" | "pnk" | "pnt" | "pokt" | "pol" | "pola" | "pols" | "polx" | "polygon-zkevm" | "polypad" | "polyx" | "poolx" | "portx" | "ppay" | "premia" | "prob" | "prom" | "propc" | "proteo" | "prq" | "prtc" | "prx" | "pry" | "psl" | "pstake" | "pswap" | "pts" | "ptu" | "pumlx" | "pundix" | "pwr" | "pxp" | "pyr" | "pyth" | "pyusd" | "pzp" | "qanx" | "qkc" | "qrdo" | "qsr" | "qtcon" | "quad" | "quartz" | "qube" | "quidd" | "quint" | "rad" | "rae" | "ramp" | "rare" | "rari" | "rbd" | "rbif" | "rbn" | "rdnt" | "rdpx" | "rdt" | "reef" | "regen" | "rei" | "renbtc" | "reuni" | "rev3l" | "revv" | "reya" | "rfox" | "rgen" | "rgt" | "ride" | "rif" | "rite" | "rjv" | "rlb" | "rly" | "rmrk" | "rndr" | "ronin" | "rootstock" | "rpg" | "rpl" | "rsc" | "rsr" | "rss3" | "rune" | "rvc" | "rvst" | "rwn" | "rxd" | "saitama" | "saito" | "sakai" | "sama" | "satt" | "savg" | "sbtc" | "scb" | "sclp" | "scrt" | "sdex" | "sdn" | "sdt" | "sei" | "sei-network" | "seilor" | "senate" | "sender" | "sense" | "seth" | "seth2" | "sfi" | "sfm" | "sfp" | "sfrxeth" | "sftmx" | "sfund" | "shft" | "shi" | "shiden" | "shido" | "shimmer-evm" | "shopx" | "shroom" | "shx" | "signa" | "silicon" | "silk" | "sis" | "skeb" | "skey" | "slam" | "slcl" | "slg" | "slnd" | "smartcredit" | "smbr" | "smt" | "snft" | "solve" | "solx" | "somm" | "soneium" | "songbird" | "sonne" | "soon" | "soph" | "sophen" | "sparta" | "spc" | "sph" | "spirit" | "spore" | "spx" | "squads" | "srcx" | "srk" | "srlty" | "srm" | "srx" | "ssv" | "sswp" | "ssx" | "stargaze" | "starknet" | "statom" | "stbu" | "stfx" | "stg" | "stjuno" | "stmx" | "stos" | "stosmo" | "stpt" | "strax" | "strd" | "strk" | "strp" | "strx" | "ststars" | "sudo" | "suip" | "suku" | "super-seed" | "supra-movevm" | "susd" | "sushiswap" | "suter" | "swash" | "sweat" | "swell" | "sweth" | "swftc" | "swise" | "swissborg" | "swth" | "sxp" | "sylo" | "symbiosis" | "taboo" | "taiko" | "taki" | "tao" | "tara" | "tbtc" | "tdrop" | "teer" | "telos" | "tenet" | "terra-classic" | "tetu" | "tfuel" | "tgt" | "thales" | "the" | "theo" | "thol" | "thundercore" | "tia" | "tifi" | "tig" | "titan" | "tko" | "tkp" | "tkx" | "tlm" | "tlos" | "tomi" | "tonic" | "topia" | "toshi" | "tpad" | "trava" | "traxx" | "trb" | "trc" | "trcl" | "treasure" | "treeb" | "trias" | "tron" | "tronpad" | "tru" | "trust" | "trvl" | "tryb" | "ttk" | "tut" | "tvk" | "twt" | "txau" | "ubiq" | "ubsn" | "ubt" | "ubxs" | "ufi" | "uft" | "ultra" | "ultron" | "umb" | "uncx" | "und" | "undead" | "unfi" | "unibot" | "unichain" | "unipass" | "uniswap" | "uos" | "upbit" | "upp" | "uqc" | "urus" | "usdd" | "usdv" | "usdx" | "ush" | "usn" | "uw3s" | "vab" | "vai" | "valor" | "vana" | "vanar" | "vara" | "vaulta" | "vcore" | "vee" | "vela" | "velas" | "velo" | "vemp" | "venly" | "veur" | "vex" | "vext" | "vgx" | "viction" | "vidt" | "vidya" | "vlx" | "vlxpad" | "vno" | "voxel" | "vpad" | "vra" | "vrsw" | "vsp" | "vsys" | "vtx" | "vv" | "vvs" | "vxv" | "wacme" | "wagmigames" | "wait" | "wallet-3" | "wallet-connect" | "wampl" | "was" | "waxp" | "wbeth" | "wbt" | "wcfg" | "wefi" | "welt" | "wemix" | "wgc" | "white" | "wigo" | "wiken" | "win" | "winr" | "witch" | "wliti" | "wlkn" | "wndr" | "wnk" | "wnxm" | "wombat" | "woof" | "wozx" | "wrld" | "wrx" | "wsi" | "wwy" | "x-layer" | "x2y2" | "xai" | "xaur" | "xava" | "xcad" | "xcfx" | "xch" | "xchf" | "xcm" | "xcur" | "xdata" | "xdb" | "xdc" | "xdefi" | "xdg" | "xec" | "xels" | "xep" | "xet" | "xeta" | "xft" | "xfund" | "xhv" | "xi" | "xido" | "xki" | "xna" | "xno" | "xpla" | "xpnet" | "xprt" | "xpx" | "xrd" | "xrt" | "xrune" | "xsgd" | "xsp" | "xsushi" | "xtp" | "xvs" | "xwg" | "xy" | "xyo" | "yak" | "yam" | "ycc" | "ydf" | "yfii" | "yoshi" | "you" | "zano" | "zat" | "zbc" | "zcx" | "zee" | "zengo" | "zerion" | "zero-network" | "zeta-chain" | "zilliqa" | "zircuit" | "zkb" | "zkid" | "zkp" | "zksync" | "zlk" | "znn" | "zoomer" | "zpay" | "ztg" | "zyn" | "zyx" | "zz" | "_0xgas" | "acs" | "ais" | "aitech" | "alice" | "arix" | "arpa" | "ata" | "atd" | "avg" | "avi" | "avl" | "bcat" | "bcoin" | "bkn" | "blue" | "bluesparrow" | "blusd" | "brrr" | "brwl" | "bscs" | "catgirl" | "caw" | "cct" | "ceek" | "cgl" | "cgpt" | "champz" | "cheems" | "chmb" | "ckb" | "cly" | "cnc" | "coc" | "collab" | "core" | "coti" | "coval" | "cpool" | "crvusd" | "cult" | "cwar" | "dbi" | "dec" | "degen" | "dingo" | "dione" | "dnxc" | "dobo" | "dogechain" | "dogegf" | "dor" | "dora" | "dpet" | "dpi" | "drep" | "dsla" | "dxp" | "dyp" | "dzoo" | "elon" | "elu" | "emagic" | "emaid" | "equ" | "ethw" | "fara" | "feg" | "flm" | "foom" | "fren" | "gari" | "gat" | "gft" | "ghst" | "ghub" | "gob" | "gods" | "goz" | "gpcx" | "grg" | "grnd" | "grv" | "gsts" | "hera" | "hgpt" | "hipp" | "honk" | "hoshi" | "huahua" | "imgnai" | "impt" | "itp" | "jesus" | "jewel" | "jim" | "kardia" | "kata" | "keke" | "kiba" | "kibshi" | "kingshib" | "kishu" | "kitty" | "klee" | "kzen" | "ladys" | "lcc" | "leash" | "linda" | "linu" | "liza" | "lqty" | "lumio" | "luna" | "lunc" | "meld" | "memeai" | "mgp" | "mim" | "mintme" | "minu" | "mmf" | "mmit" | "mmo" | "moc" | "moe" | "mog" | "mooned" | "mtrm" | "mtvt" | "mudol2" | "mvx" | "nada" | "naka" | "naos" | "neuros" | "nexa" | "nfd" | "obi" | "octa" | "oggy" | "omnom" | "opti" | "orai" | "orb" | "orn" | "osak" | "ovr" | "peel" | "pepe" | "pepes" | "per" | "pinu" | "piza" | "pkr" | "pleb" | "ply" | "pmon" | "pnp" | "polc" | "polk" | "polydoge" | "pooh" | "popcat" | "pork" | "pussy" | "qom" | "quick" | "rabby" | "rai" | "rbls" | "rbw" | "rbx" | "ret" | "reth" | "revo" | "rfd" | "ribbit" | "risita" | "roko" | "rollux" | "rvf" | "safemars" | "sam" | "samo" | "sani" | "sats" | "sauce" | "scar" | "scs" | "sdao" | "sfd" | "sha" | "shdw" | "shia" | "shib" | "shibdoge" | "shik" | "sipher" | "slp" | "smi" | "snek" | "spe" | "spell" | "squad" | "squidgrow" | "starl" | "stella" | "stima" | "stsol" | "sure" | "tama" | "tht" | "tin" | "token-pocket" | "tombchain" | "tsuka" | "tyrant" | "ucjl" | "ustc" | "uwu" | "vcf" | "versa" | "vinu" | "vis" | "volt" | "walv" | "wam" | "wnt" | "wojak" | "xaut" | "xmon" | "xtm" | "xwin" | "y2k" | "ygg" | "zmn" | "zora">): import("react").JSX.Element;
2024
2024
  displayName: string;
2025
2025
  };
2026
2026
  export {};
@@ -97,7 +97,7 @@ declare const topcoatIconNames: {
97
97
  };
98
98
  export type TopcoatIconName = keyof typeof topcoatIconNames;
99
99
  export declare const Topcoat: {
100
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"error" | "image" | "search" | "text" | "alert" | "audio" | "circle" | "path" | "view" | "attachment" | "bookmark" | "cancel" | "chat" | "comment" | "delete" | "download" | "email" | "group" | "image-outline" | "rss" | "wifi" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "refresh" | "share" | "lock" | "facebook" | "github" | "instagram" | "linkedin" | "pinterest" | "twitter" | "vimeo" | "wordpress" | "phone" | "cloud" | "calendar" | "tablet" | "brush" | "pencil" | "folder" | "camera" | "home" | "minus" | "plus" | "circle-outline" | "rectangle" | "rectangle-outline" | "cart" | "user" | "computer" | "expand" | "save" | "settings" | "unlock" | "location" | "back" | "behance" | "plugin" | "question" | "retweet" | "print" | "favorite" | "checkmark" | "build" | "call" | "flickr" | "tumblr" | "w3c" | "feedback" | "preview" | "page" | "collapse" | "next" | "github-text" | "picasa" | "like" | "googleplus" | "dribble" | "videocamera" | "back-light" | "next-light" | "audiooff" | "listview" | "roundedrectangle" | "roundedrectangle-outline" | "tileview">): import("react").JSX.Element;
100
+ ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"error" | "search" | "image" | "text" | "alert" | "audio" | "circle" | "path" | "view" | "call" | "attachment" | "bookmark" | "cancel" | "chat" | "comment" | "delete" | "download" | "email" | "group" | "image-outline" | "rss" | "wifi" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "refresh" | "share" | "lock" | "facebook" | "github" | "instagram" | "linkedin" | "pinterest" | "twitter" | "vimeo" | "wordpress" | "phone" | "cloud" | "calendar" | "tablet" | "brush" | "pencil" | "folder" | "camera" | "home" | "minus" | "plus" | "circle-outline" | "rectangle" | "rectangle-outline" | "cart" | "user" | "computer" | "expand" | "save" | "settings" | "unlock" | "location" | "back" | "behance" | "plugin" | "question" | "retweet" | "print" | "favorite" | "checkmark" | "build" | "flickr" | "tumblr" | "w3c" | "feedback" | "preview" | "page" | "collapse" | "next" | "github-text" | "picasa" | "like" | "googleplus" | "dribble" | "videocamera" | "back-light" | "next-light" | "audiooff" | "listview" | "roundedrectangle" | "roundedrectangle-outline" | "tileview">): import("react").JSX.Element;
101
101
  displayName: string;
102
102
  };
103
103
  export {};
@@ -344,7 +344,7 @@ declare const typcnIconNames: {
344
344
  };
345
345
  export type TypcnIconName = keyof typeof typcnIconNames;
346
346
  export declare const Typcn: {
347
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"map" | "filter" | "image" | "link" | "key" | "anchor" | "code" | "time" | "video" | "archive" | "at" | "attachment" | "backspace" | "backspace-outline" | "book" | "bookmark" | "briefcase" | "cancel" | "clipboard" | "contacts" | "delete" | "delete-outline" | "directions" | "download" | "download-outline" | "eject" | "eject-outline" | "export" | "eye" | "eye-outline" | "flag" | "flag-outline" | "group" | "image-outline" | "key-outline" | "keyboard" | "mail" | "message" | "pin" | "pin-outline" | "plus-outline" | "radar" | "rss" | "tag" | "ticket" | "upload" | "upload-outline" | "leaf" | "tree" | "waves" | "weather-cloudy" | "arrow-down" | "arrow-down-thick" | "arrow-left" | "arrow-left-thick" | "arrow-right" | "arrow-right-thick" | "arrow-up" | "arrow-up-thick" | "chevron-left" | "chevron-right" | "refresh" | "headphones" | "volume-mute" | "lock-open" | "lock-open-outline" | "thermometer" | "credit-card" | "battery-high" | "battery-low" | "dropbox" | "phone" | "phone-outline" | "database" | "calendar" | "calendar-outline" | "watch" | "brush" | "pen" | "pencil" | "folder" | "folder-open" | "beer" | "coffee" | "heart" | "heart-half-outline" | "heart-outline" | "puzzle" | "puzzle-outline" | "compass" | "gift" | "weather-night" | "bell" | "camera" | "home" | "home-outline" | "lightbulb" | "power" | "printer" | "calculator" | "chart-bar" | "chart-line" | "chart-pie" | "chart-pie-outline" | "infinity" | "minus" | "pi" | "plus" | "microphone" | "microphone-outline" | "feather" | "camera-outline" | "film" | "beaker" | "cog" | "cog-outline" | "star" | "star-half" | "star-outline" | "video-outline" | "flash" | "flash-outline" | "weather-sunny" | "weather-windy" | "device-tablet" | "divide" | "document" | "document-text" | "equals" | "lock-closed" | "scissors" | "shopping-bag" | "shopping-cart" | "trash" | "user" | "battery-full" | "chart-area" | "globe" | "info" | "pipette" | "plane" | "plug" | "tags" | "thumbs-down" | "thumbs-up" | "volume" | "wine" | "zoom-in" | "zoom-out" | "edit" | "arrow-back" | "arrow-forward" | "device-desktop" | "device-laptop" | "location" | "messages" | "news" | "notes" | "spiral" | "stopwatch" | "world" | "zoom" | "arrow-repeat" | "volume-down" | "volume-up" | "location-arrow" | "document-add" | "folder-add" | "warning" | "arrow-back-outline" | "arrow-down-outline" | "arrow-forward-outline" | "arrow-up-outline" | "code-outline" | "globe-outline" | "link-outline" | "location-outline" | "lock-closed-outline" | "power-outline" | "refresh-outline" | "star-half-outline" | "warning-outline" | "html5" | "info-outline" | "support" | "group-outline" | "folder-delete" | "cancel-outline" | "tabs-outline" | "arrow-left-outline" | "arrow-right-outline" | "export-outline" | "infinity-outline" | "cloud-storage-outline" | "scissors-outline" | "radar-outline" | "notes-outline" | "user-outline" | "css3" | "arrow-shuffle" | "zoom-in-outline" | "zoom-out-outline" | "minus-outline" | "media-eject" | "media-fast-forward" | "media-pause" | "media-play" | "media-rewind" | "tick" | "user-add" | "media-record" | "media-stop" | "mortar-board" | "user-add-outline" | "th-large" | "th-list" | "flow-parallel" | "document-delete" | "chevron-left-outline" | "chevron-right-outline" | "times" | "wi-fi" | "starburst" | "arrow-move" | "social-dribbble" | "social-facebook" | "social-flickr" | "social-github" | "social-google-plus" | "social-instagram" | "social-linkedin" | "social-pinterest" | "social-skype" | "social-twitter" | "social-vimeo" | "social-youtube" | "spanner" | "chart-bar-outline" | "chart-line-outline" | "battery-charge" | "cloud-storage" | "point-of-interest" | "device-phone" | "arrow-sync" | "business-card" | "adjust-brightness" | "anchor-outline" | "attachment-outline" | "rss-outline" | "sort-alphabetically-outline" | "tick-outline" | "adjust-contrast" | "arrow-loop" | "arrow-loop-outline" | "arrow-maximise" | "arrow-maximise-outline" | "arrow-minimise" | "arrow-minimise-outline" | "arrow-move-outline" | "arrow-repeat-outline" | "arrow-sorted-down" | "arrow-sorted-up" | "arrow-sync-outline" | "arrow-unsorted" | "battery-mid" | "chart-area-outline" | "divide-outline" | "equals-outline" | "flow-children" | "flow-merge" | "flow-switch" | "heart-full-outline" | "info-large" | "info-large-outline" | "input-checked" | "input-checked-outline" | "location-arrow-outline" | "media-eject-outline" | "media-fast-forward-outline" | "media-pause-outline" | "media-play-outline" | "media-play-reverse" | "media-play-reverse-outline" | "media-record-outline" | "media-rewind-outline" | "media-stop-outline" | "message-typing" | "pi-outline" | "plane-outline" | "point-of-interest-outline" | "social-at-circular" | "social-dribbble-circular" | "social-facebook-circular" | "social-flickr-circular" | "social-github-circular" | "social-google-plus-circular" | "social-instagram-circular" | "social-last-fm" | "social-last-fm-circular" | "social-linkedin-circular" | "social-pinterest-circular" | "social-skype-outline" | "social-tumbler" | "social-tumbler-circular" | "social-twitter-circular" | "social-vimeo-circular" | "social-youtube-circular" | "sort-alphabetically" | "sort-numerically" | "sort-numerically-outline" | "spanner-outline" | "star-full-outline" | "starburst-outline" | "th-large-outline" | "th-list-outline" | "th-menu" | "th-menu-outline" | "th-small" | "th-small-outline" | "thumbs-ok" | "times-outline" | "user-delete" | "user-delete-outline" | "vendor-android" | "vendor-apple" | "vendor-microsoft" | "waves-outline" | "weather-downpour" | "weather-partly-sunny" | "weather-shower" | "weather-snow" | "weather-stormy" | "weather-windy-cloudy" | "wi-fi-outline" | "world-outline" | "zoom-outline">): import("react").JSX.Element;
347
+ ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"map" | "filter" | "anchor" | "link" | "image" | "key" | "code" | "time" | "video" | "archive" | "at" | "attachment" | "backspace" | "backspace-outline" | "book" | "bookmark" | "briefcase" | "cancel" | "clipboard" | "contacts" | "delete" | "delete-outline" | "directions" | "download" | "download-outline" | "eject" | "eject-outline" | "export" | "eye" | "eye-outline" | "flag" | "flag-outline" | "group" | "image-outline" | "key-outline" | "keyboard" | "mail" | "message" | "pin" | "pin-outline" | "plus-outline" | "radar" | "rss" | "tag" | "ticket" | "upload" | "upload-outline" | "leaf" | "tree" | "waves" | "weather-cloudy" | "arrow-down" | "arrow-down-thick" | "arrow-left" | "arrow-left-thick" | "arrow-right" | "arrow-right-thick" | "arrow-up" | "arrow-up-thick" | "chevron-left" | "chevron-right" | "refresh" | "headphones" | "volume-mute" | "lock-open" | "lock-open-outline" | "thermometer" | "credit-card" | "battery-high" | "battery-low" | "dropbox" | "phone" | "phone-outline" | "database" | "calendar" | "calendar-outline" | "watch" | "brush" | "pen" | "pencil" | "folder" | "folder-open" | "beer" | "coffee" | "heart" | "heart-half-outline" | "heart-outline" | "puzzle" | "puzzle-outline" | "compass" | "gift" | "weather-night" | "bell" | "camera" | "home" | "home-outline" | "lightbulb" | "power" | "printer" | "calculator" | "chart-bar" | "chart-line" | "chart-pie" | "chart-pie-outline" | "infinity" | "minus" | "pi" | "plus" | "microphone" | "microphone-outline" | "feather" | "camera-outline" | "film" | "beaker" | "cog" | "cog-outline" | "star" | "star-half" | "star-outline" | "video-outline" | "flash" | "flash-outline" | "weather-sunny" | "weather-windy" | "device-tablet" | "divide" | "document" | "document-text" | "equals" | "lock-closed" | "scissors" | "shopping-bag" | "shopping-cart" | "trash" | "user" | "battery-full" | "chart-area" | "globe" | "info" | "pipette" | "plane" | "plug" | "tags" | "thumbs-down" | "thumbs-up" | "volume" | "wine" | "zoom-in" | "zoom-out" | "edit" | "arrow-back" | "arrow-forward" | "device-desktop" | "device-laptop" | "location" | "messages" | "news" | "notes" | "spiral" | "stopwatch" | "world" | "zoom" | "arrow-repeat" | "volume-down" | "volume-up" | "location-arrow" | "document-add" | "folder-add" | "warning" | "arrow-back-outline" | "arrow-down-outline" | "arrow-forward-outline" | "arrow-up-outline" | "code-outline" | "globe-outline" | "link-outline" | "location-outline" | "lock-closed-outline" | "power-outline" | "refresh-outline" | "star-half-outline" | "warning-outline" | "html5" | "info-outline" | "support" | "group-outline" | "folder-delete" | "cancel-outline" | "tabs-outline" | "arrow-left-outline" | "arrow-right-outline" | "export-outline" | "infinity-outline" | "cloud-storage-outline" | "scissors-outline" | "radar-outline" | "notes-outline" | "user-outline" | "css3" | "arrow-shuffle" | "zoom-in-outline" | "zoom-out-outline" | "minus-outline" | "media-eject" | "media-fast-forward" | "media-pause" | "media-play" | "media-rewind" | "tick" | "user-add" | "media-record" | "media-stop" | "mortar-board" | "user-add-outline" | "th-large" | "th-list" | "flow-parallel" | "document-delete" | "chevron-left-outline" | "chevron-right-outline" | "times" | "wi-fi" | "starburst" | "arrow-move" | "social-dribbble" | "social-facebook" | "social-flickr" | "social-github" | "social-google-plus" | "social-instagram" | "social-linkedin" | "social-pinterest" | "social-skype" | "social-twitter" | "social-vimeo" | "social-youtube" | "spanner" | "chart-bar-outline" | "chart-line-outline" | "battery-charge" | "cloud-storage" | "point-of-interest" | "device-phone" | "arrow-sync" | "business-card" | "adjust-brightness" | "anchor-outline" | "attachment-outline" | "rss-outline" | "sort-alphabetically-outline" | "tick-outline" | "adjust-contrast" | "arrow-loop" | "arrow-loop-outline" | "arrow-maximise" | "arrow-maximise-outline" | "arrow-minimise" | "arrow-minimise-outline" | "arrow-move-outline" | "arrow-repeat-outline" | "arrow-sorted-down" | "arrow-sorted-up" | "arrow-sync-outline" | "arrow-unsorted" | "battery-mid" | "chart-area-outline" | "divide-outline" | "equals-outline" | "flow-children" | "flow-merge" | "flow-switch" | "heart-full-outline" | "info-large" | "info-large-outline" | "input-checked" | "input-checked-outline" | "location-arrow-outline" | "media-eject-outline" | "media-fast-forward-outline" | "media-pause-outline" | "media-play-outline" | "media-play-reverse" | "media-play-reverse-outline" | "media-record-outline" | "media-rewind-outline" | "media-stop-outline" | "message-typing" | "pi-outline" | "plane-outline" | "point-of-interest-outline" | "social-at-circular" | "social-dribbble-circular" | "social-facebook-circular" | "social-flickr-circular" | "social-github-circular" | "social-google-plus-circular" | "social-instagram-circular" | "social-last-fm" | "social-last-fm-circular" | "social-linkedin-circular" | "social-pinterest-circular" | "social-skype-outline" | "social-tumbler" | "social-tumbler-circular" | "social-twitter-circular" | "social-vimeo-circular" | "social-youtube-circular" | "sort-alphabetically" | "sort-numerically" | "sort-numerically-outline" | "spanner-outline" | "star-full-outline" | "starburst-outline" | "th-large-outline" | "th-list-outline" | "th-menu" | "th-menu-outline" | "th-small" | "th-small-outline" | "thumbs-ok" | "times-outline" | "user-delete" | "user-delete-outline" | "vendor-android" | "vendor-apple" | "vendor-microsoft" | "waves-outline" | "weather-downpour" | "weather-partly-sunny" | "weather-shower" | "weather-snow" | "weather-stormy" | "weather-windy-cloudy" | "wi-fi-outline" | "world-outline" | "zoom-outline">): import("react").JSX.Element;
348
348
  displayName: string;
349
349
  };
350
350
  export {};
@@ -1223,7 +1223,7 @@ declare const uilIconNames: {
1223
1223
  };
1224
1224
  export type UilIconName = keyof typeof uilIconNames;
1225
1225
  export declare const Uil: {
1226
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"sort" | "map" | "filter" | "android" | "windows" | "signal" | "solid" | "scroll" | "image" | "link" | "search" | "text" | "repeat" | "anchor" | "bold" | "label" | "picture" | "table" | "th" | "video" | "circle" | "line" | "polygon" | "adjust" | "archive" | "arrow-up-left" | "arrow-up-right" | "asterisk" | "at" | "backspace" | "book" | "book-open" | "bookmark" | "briefcase" | "cancel" | "chat" | "clipboard" | "comment" | "comment-check" | "comment-plus" | "comment-question" | "comment-search" | "copyright" | "dialpad" | "diamond" | "directions" | "export" | "eye" | "gold" | "grid" | "image-broken" | "image-check" | "image-minus" | "image-plus" | "image-search" | "import" | "inbox" | "keyboard" | "mailbox" | "message" | "mouse" | "newspaper" | "ninja" | "package" | "paperclip" | "pause-circle" | "play-circle" | "plus-circle" | "pound" | "presentation" | "presentation-play" | "pump" | "qrcode-scan" | "redo" | "rss" | "server" | "server-network" | "shield-plus" | "sitemap" | "sleep" | "step-backward" | "step-forward" | "stop-circle" | "sync" | "tag" | "ticket" | "trademark" | "upload" | "voicemail" | "wall" | "weight" | "wifi" | "window-maximize" | "window-restore" | "yin-yang" | "shield-check" | "flower" | "shovel" | "water" | "bug" | "linux" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-right" | "arrow-up" | "forward" | "refresh" | "rotate-360" | "share" | "shuffle" | "headphones" | "music" | "music-note" | "volume-mute" | "volume-off" | "car" | "car-wash" | "lock" | "snowflake" | "thermometer" | "bitcoin" | "credit-card" | "credit-card-search" | "invoice" | "receipt" | "wallet" | "apple" | "box" | "docker" | "dropbox" | "facebook" | "facebook-messenger" | "github" | "gitlab" | "google" | "google-drive" | "google-hangouts" | "google-play" | "instagram" | "linkedin" | "microsoft" | "opera" | "react" | "skype" | "slack" | "twitter" | "vuejs" | "whatsapp" | "wordpress" | "youtube" | "phone" | "hard-hat" | "cloud" | "cloud-check" | "cloud-download" | "cloud-lock" | "cloud-question" | "cloud-upload" | "clouds" | "palette" | "database" | "calendar" | "clock" | "history" | "laptop" | "monitor" | "tablet" | "watch" | "pen" | "ruler" | "comment-edit" | "image-edit" | "file" | "file-check" | "file-download" | "file-export" | "file-import" | "file-minus" | "file-plus" | "file-question" | "file-upload" | "folder" | "folder-check" | "folder-download" | "folder-heart" | "folder-lock" | "folder-minus" | "folder-network" | "folder-open" | "folder-plus" | "folder-question" | "folder-upload" | "coffee" | "check" | "check-circle" | "minus-circle" | "flask" | "heart" | "medal" | "shield" | "compass" | "crosshairs" | "layers" | "map-marker" | "map-marker-minus" | "map-marker-plus" | "map-marker-question" | "vector-square" | "bolt" | "spade" | "wheel-barrow" | "wrench" | "bed" | "bed-double" | "gift" | "bell" | "boombox" | "camera" | "fire" | "home" | "lamp" | "lightbulb" | "pause" | "play" | "power" | "robot" | "skip-forward" | "webcam" | "image-lock" | "abacus" | "angle-right" | "calculator" | "chart-bar" | "chart-line" | "chart-pie" | "exclamation" | "minus" | "plus" | "sigma" | "ambulance" | "brain" | "hospital" | "stethoscope" | "wheelchair" | "microphone" | "bus" | "taxi" | "baby-carriage" | "camera-plus" | "film" | "store" | "atom" | "dna" | "microscope" | "rocket" | "telescope" | "cog" | "cube" | "octagon" | "pentagon" | "square" | "star" | "triangle" | "basketball" | "basketball-hoop" | "bullseye" | "dumbbell" | "football" | "podium" | "table-tennis" | "tennis-ball" | "trophy" | "volleyball" | "border-bottom" | "border-horizontal" | "border-left" | "border-right" | "border-top" | "border-vertical" | "subway" | "bus-school" | "traffic-light" | "truck" | "apps" | "umbrella" | "windsock" | "backward" | "bell-slash" | "bolt-slash" | "envelope" | "envelope-open" | "exclamation-circle" | "exclamation-triangle" | "eye-slash" | "italic" | "language" | "map-pin" | "megaphone" | "moon" | "puzzle-piece" | "shield-exclamation" | "shopping-bag" | "shopping-cart" | "sun" | "trash" | "underline" | "user" | "user-circle" | "user-minus" | "user-plus" | "window" | "airplay" | "angry" | "annoyed" | "award" | "backpack" | "ban" | "bath" | "building" | "cloud-drizzle" | "cloud-hail" | "cloud-moon" | "cloud-moon-rain" | "cloud-rain" | "cloud-sun" | "cloud-sun-rain" | "club" | "coins" | "copy" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-right-down" | "corner-up-left" | "corner-up-right" | "crosshair" | "dollar-sign" | "dribbble" | "drill" | "ear" | "euro" | "file-heart" | "focus" | "frown" | "globe" | "graduation-cap" | "hourglass" | "images" | "info" | "kayak" | "mars" | "meh" | "plane" | "plug" | "rainbow" | "save" | "ship" | "shopping-basket" | "shrink" | "smile" | "sunset" | "syringe" | "tablets" | "thumbs-down" | "thumbs-up" | "tornado" | "trees" | "university" | "user-check" | "utensils" | "venus" | "volume" | "wind" | "x" | "align-center" | "align-justify" | "align-left" | "align-right" | "check-square" | "columns" | "edit" | "minus-square" | "plus-square" | "unlock" | "ankh" | "arrows-left-down" | "arrows-maximize" | "arrows-right-down" | "arrows-up-right" | "bell-school" | "books" | "border-inner" | "brightness" | "brightness-half" | "browser" | "capsule" | "capture" | "caret-right" | "cell" | "cloud-computing" | "cloud-data-connection" | "cloud-exclamation" | "cloud-heart" | "cloud-share" | "dashboard" | "direction" | "exchange" | "fidget-spinner" | "folder-exclamation" | "glass" | "heartbeat" | "icons" | "info-circle" | "keyboard-hide" | "keyboard-show" | "lock-access" | "moneybag" | "notes" | "parking-circle" | "percentage" | "phone-pause" | "plane-arrival" | "plane-departure" | "registered" | "servicemark" | "shield-question" | "sign-left" | "sign-right" | "stopwatch" | "temperature" | "temperature-minus" | "temperature-plus" | "text-size" | "toilet-paper" | "trowel" | "truck-loading" | "user-exclamation" | "user-square" | "amazon" | "bag" | "behance" | "bing" | "brightness-low" | "cloud-slash" | "discord" | "envelope-check" | "envelope-exclamation" | "envelope-heart" | "exclamation-octagon" | "exclude" | "file-medical" | "hdd" | "list-ol" | "list-ul" | "modem" | "paragraph" | "paypal" | "postcard" | "question" | "question-circle" | "shield-slash" | "shop" | "skip-forward-circle" | "suitcase" | "telegram" | "toggle-off" | "toggle-on" | "volume-down" | "volume-up" | "bitcoin-sign" | "temperature-empty" | "temperature-half" | "temperature-quarter" | "closed-captioning" | "phone-volume" | "angle-down" | "angle-left" | "angle-up" | "location-arrow" | "compress" | "microphone-slash" | "archway" | "phone-slash" | "print" | "comment-dots" | "comment-medical" | "comment-slash" | "comments" | "video-slash" | "square-full" | "code-branch" | "compact-disc" | "desktop" | "sim-card" | "ruler-combined" | "lira-sign" | "money-bill" | "rupee-sign" | "layer-group" | "object-group" | "object-ungroup" | "swatchbook" | "font" | "battery-empty" | "cloud-meatball" | "pizza-slice" | "dice-five" | "dice-four" | "dice-one" | "dice-six" | "dice-three" | "dice-two" | "house-user" | "bars" | "life-ring" | "book-medical" | "head-side-cough" | "head-side-mask" | "prescription-bottle" | "user-nurse" | "virus-slash" | "tape" | "file-contract" | "store-slash" | "spinner" | "bowling-ball" | "cloud-showers-heavy" | "presentation-line" | "exit" | "favorite" | "process" | "coronavirus" | "analytics" | "moonset" | "restaurant" | "thunderstorm" | "windy" | "enter" | "medkit" | "sad" | "_500px" | "blogger" | "html5" | "intercom" | "lottiefiles" | "metro" | "okta" | "outline" | "pagerduty" | "swiggy" | "tumblr" | "vk" | "adobe" | "parcel" | "visual-studio" | "feedback" | "schedule" | "brightness-empty" | "chat-info" | "keyboard-alt" | "mobile-vibrate" | "stroller" | "sanitizer" | "sick" | "border-clear" | "folder-info" | "subject" | "text-fields" | "vertical-align-bottom" | "vertical-align-center" | "vertical-align-top" | "wrap-text" | "arrow-circle-down" | "arrow-circle-left" | "arrow-circle-right" | "arrow-circle-up" | "link-broken" | "football-ball" | "cloud-bookmark" | "server-connection" | "border-out" | "compress-lines" | "emoji" | "bitcoin-circle" | "yen" | "home-alt" | "navigator" | "auto-flash" | "lock-slash" | "snow-flake" | "comment-add" | "_18-plus" | "book-alt" | "diary" | "silence" | "transaction" | "arrow-from-right" | "arrow-from-top" | "arrow-to-bottom" | "arrow-to-right" | "band-aid" | "book-reader" | "briefcase-alt" | "brush-alt" | "calendar-alt" | "chart" | "confused" | "copy-alt" | "dialpad-alt" | "edit-alt" | "expand-alt" | "file-blank" | "left-indent" | "link-alt" | "lock-alt" | "lock-open-alt" | "meh-alt" | "money-withdraw" | "mouse-alt" | "no-entry" | "search-alt" | "share-alt" | "store-alt" | "tag-alt" | "trash-alt" | "instagram-alt" | "adjust-alt" | "traffic-barrier" | "watch-alt" | "padlock" | "wifi-slash" | "android-alt" | "bluetooth-b" | "creative-commons-pd" | "facebook-f" | "hipchat" | "medium-m" | "balance-scale" | "bus-alt" | "expand-left" | "expand-right" | "line-spacing" | "align-center-h" | "align-center-v" | "github-alt" | "grin" | "twitter-alt" | "clapper-board" | "telegram-alt" | "comment-alt" | "download-alt" | "envelope-alt" | "file-alt" | "file-edit-alt" | "heart-alt" | "map-marker-alt" | "phone-alt" | "th-large" | "unlock-alt" | "selfie" | "desert" | "setting" | "equal-circle" | "layers-alt" | "multiply" | "angle-double-down" | "angle-double-left" | "angle-double-right" | "angle-double-up" | "arrows-h" | "arrows-v" | "assistive-listening-systems" | "ellipsis-h" | "ellipsis-v" | "pagelines" | "search-minus" | "search-plus" | "snapchat-ghost" | "snapchat-square" | "times-circle" | "tumblr-square" | "user-md" | "user-times" | "wheelchair-alt" | "wordpress-simple" | "grin-tongue-wink" | "sad-cry" | "smile-beam" | "smile-wink" | "surprise" | "compress-alt" | "exchange-alt" | "expand-arrows-alt" | "external-link-alt" | "sign-in-alt" | "sign-out-alt" | "sort-amount-down" | "sort-amount-up" | "apple-alt" | "glass-martini" | "glass-martini-alt" | "clinic-medical" | "crop-alt" | "swimmer" | "luggage-cart" | "times" | "file-medical-alt" | "hospital-symbol" | "headphones-alt" | "baseball-ball" | "golf-ball" | "star-half-alt" | "desktop-alt" | "mobile-android" | "mobile-android-alt" | "tachometer-fast" | "times-square" | "arrow" | "incoming-call" | "previous" | "signin" | "square-shape" | "laughing" | "suitcase-alt" | "left" | "clipboard-notes" | "graph-bar" | "mountains" | "medical-drip" | "money-stack" | "post-stamp" | "processor" | "screw" | "wifi-router" | "arrows-h-alt" | "arrows-shrink-h" | "arrows-shrink-v" | "arrows-v-alt" | "compress-v" | "scroll-h" | "spinner-alt" | "flip-h" | "flip-v" | "file-exclamation" | "tv-retro" | "shutter" | "channel" | "servers" | "social-distancing" | "calling" | "celsius" | "chart-down" | "euro-circle" | "fahrenheit" | "image-download" | "image-upload" | "java-script" | "kid" | "laptop-cloud" | "master-card" | "moon-eclipse" | "nerd" | "pathfinder-unite" | "pound-circle" | "sad-dizzy" | "smile-dizzy" | "unamused" | "yen-circle" | "bill" | "analysis" | "heart-rate" | "document-info" | "text-strike-through" | "line-alt" | "bag-alt" | "blogger-alt" | "water-glass" | "parking-square" | "raindrops" | "brackets-curly" | "key-skeleton" | "calendar-slash" | "camera-slash" | "clock-eight" | "clock-five" | "clock-nine" | "clock-seven" | "clock-ten" | "clock-three" | "clock-two" | "folder-slash" | "rss-alt" | "bright" | "tear" | "comment-lines" | "comparison" | "arrows-merge" | "heart-break" | "jackhammer" | "calender" | "upload-alt" | "label-alt" | "missed-call" | "filter-slash" | "sliders-v" | "step-backward-alt" | "comment-exclamation" | "linkedin-alt" | "image-times" | "signout" | "outgoing-call" | "cloud-block" | "cloud-wifi" | "keyhole-square" | "arrow-growth" | "corner-up-left-alt" | "forecastcloud-moon-tear" | "angle-left-b" | "angle-right-b" | "arrow-break" | "arrow-compress-h" | "arrow-random" | "arrow-resize-diagonal" | "arrows-resize" | "arrows-resize-h" | "arrows-resize-v" | "compress-alt-left" | "compress-arrows" | "compress-point" | "corner-down-right-alt" | "corner-up-right-alt" | "expand-arrows" | "expand-from-corner" | "left-arrow-from-left" | "left-arrow-to-left" | "maximize-left" | "scaling-left" | "scaling-right" | "sorting" | "statistics" | "top-arrow-from-top" | "top-arrow-to-top" | "adobe-alt" | "behance-alt" | "bitcoin-alt" | "black-berry" | "css3-simple" | "facebook-messenger-alt" | "google-drive-alt" | "google-hangouts-alt" | "html3" | "html3-alt" | "html5-alt" | "intercom-alt" | "lottiefiles-alt" | "opera-alt" | "programming-language" | "reddit-alien-alt" | "skype-alt" | "slack-alt" | "snapchat-alt" | "tumblr-alt" | "vk-alt" | "vuejs-alt" | "whatsapp-alt" | "calculator-alt" | "chart-bar-alt" | "chart-growth" | "chart-growth-alt" | "chart-pie-alt" | "crosshair-alt" | "dollar-alt" | "dollar-sign-alt" | "hunting" | "lightbulb-alt" | "money-bill-stack" | "money-insert" | "money-withdrawal" | "moneybag-alt" | "panel-add" | "receipt-alt" | "signal-alt-3" | "usd-circle" | "usd-square" | "chat-bubble-user" | "comment-alt-block" | "comment-alt-chart-lines" | "comment-alt-check" | "comment-alt-dots" | "comment-alt-download" | "comment-alt-edit" | "comment-alt-exclamation" | "comment-alt-heart" | "comment-alt-image" | "comment-alt-info" | "comment-alt-lines" | "comment-alt-lock" | "comment-alt-medical" | "comment-alt-message" | "comment-alt-notes" | "comment-alt-plus" | "comment-alt-question" | "comment-alt-redo" | "comment-alt-search" | "comment-alt-share" | "comment-alt-shield" | "comment-alt-upload" | "comment-alt-verify" | "comment-block" | "comment-chart-line" | "comment-download" | "comment-heart" | "comment-image" | "comment-info" | "comment-info-alt" | "comment-lock" | "comment-message" | "comment-notes" | "comment-redo" | "comment-share" | "comment-shield" | "comment-upload" | "comment-verify" | "comments-alt" | "channel-add" | "cloud-database-tree" | "cloud-info" | "cloud-redo" | "cloud-shield" | "cloud-times" | "cloud-unlock" | "data-sharing" | "database-alt" | "server-alt" | "server-network-alt" | "web-grid" | "web-grid-alt" | "web-section" | "web-section-alt" | "window-grid" | "window-section" | "desktop-cloud-alt" | "envelope-add" | "envelope-block" | "envelope-bookmark" | "envelope-download" | "envelope-download-alt" | "envelope-edit" | "envelope-info" | "envelope-lock" | "envelope-minus" | "envelope-question" | "envelope-receive" | "envelope-redo" | "envelope-search" | "envelope-send" | "envelope-share" | "envelope-shield" | "envelope-star" | "envelope-times" | "envelope-upload" | "envelope-upload-alt" | "envelopes" | "fast-mail" | "fast-mail-alt" | "forwaded-call" | "laptop-connection" | "mailbox-alt" | "phone-times" | "constructor" | "paint-tool" | "align" | "align-alt" | "align-center-alt" | "align-center-justify" | "align-left-justify" | "align-letter-right" | "align-right-justify" | "border-alt" | "document-layout-center" | "document-layout-left" | "document-layout-right" | "english-to-chinese" | "grip-horizontal-line" | "hindi-to-chinese" | "left-indent-alt" | "left-to-right-text-direction" | "letter-chinese-a" | "letter-english-a" | "letter-hindi-a" | "letter-japanese-a" | "list-ui-alt" | "right-indent-alt" | "right-to-left-text-direction" | "bring-bottom" | "bring-front" | "circle-layer" | "crop-alt-rotate-left" | "crop-alt-rotate-right" | "flip-h-alt" | "flip-v-alt" | "grids" | "horizontal-align-center" | "horizontal-align-left" | "horizontal-align-right" | "horizontal-distribution-center" | "horizontal-distribution-left" | "horizontal-distribution-right" | "illustration" | "image-resize-landscape" | "image-resize-square" | "minus-path" | "panorama-h" | "panorama-h-alt" | "panorama-v" | "pathfinder" | "spin" | "th-slash" | "vector-square-alt" | "vertical-distribute-bottom" | "vertical-distribution-center" | "vertical-distribution-top" | "circuit" | "mouse-alt-2" | "award-alt" | "diary-alt" | "flask-potion" | "game-structure" | "meeting-board" | "notebooks" | "presentation-check" | "presentation-edit" | "presentation-lines-alt" | "presentation-minus" | "presentation-plus" | "presentation-times" | "sperms" | "annoyed-alt" | "dizzy-meh" | "grin-tongue-wink-alt" | "meh-closed-eye" | "sad-crying" | "sad-squint" | "silent-squint" | "smile-squint-wink" | "smile-squint-wink-alt" | "smile-wink-alt" | "squint" | "clipboard-alt" | "clipboard-blank" | "copy-landscape" | "file-block-alt" | "file-bookmark-alt" | "file-check-alt" | "file-contract-dollar" | "file-copy-alt" | "file-download-alt" | "file-exclamation-alt" | "file-graph" | "file-info-alt" | "file-landscape" | "file-landscape-alt" | "file-lock-alt" | "file-minus-alt" | "file-network" | "file-plus-alt" | "file-question-alt" | "file-redo-alt" | "file-search-alt" | "file-share-alt" | "file-shield-alt" | "file-times" | "file-times-alt" | "file-upload-alt" | "files-landscapes" | "files-landscapes-alt" | "folder-medical" | "folder-times" | "location-arrow-alt" | "location-pin-alt" | "location-point" | "map-marker-edit" | "map-marker-info" | "map-marker-shield" | "map-pin-alt" | "sign-alt" | "head-side" | "heart-medical" | "hospital-square-sign" | "medical-square" | "medical-square-full" | "monitor-heart-rate" | "sanitizer-alt" | "stethoscope-alt" | "stretcher" | "user-arrows" | "camera-change" | "headphone-slash" | "image-block" | "image-question" | "image-redo" | "image-share" | "image-shield" | "image-v" | "music-tune-slash" | "record-audio" | "rss-interface" | "scenery" | "shutter-alt" | "skip-forward-alt" | "slider-h" | "slider-h-range" | "sliders-v-alt" | "step-backward-circle" | "video-question" | "exposure-alt" | "exposure-increase" | "focus-add" | "focus-target" | "keyhole-circle" | "keyhole-square-full" | "pricetag-alt" | "shopping-cart-alt" | "accessible-icon-alt" | "closed-captioning-slash" | "trademark-circle" | "heart-sign" | "stopwatch-slash" | "car-sideview" | "subway-alt" | "_0-plus" | "_10-plus" | "_12-plus" | "_13-plus" | "_16-plus" | "_17-plus" | "_21-plus" | "_3-plus" | "_6-plus" | "adjust-circle" | "adjust-half" | "android-phone-slash" | "archive-alt" | "bag-slash" | "battery-bolt" | "bolt-alt" | "bookmark-full" | "brightness-minus" | "brightness-plus" | "car-slash" | "card-atm" | "comment-alt-slash" | "create-dashboard" | "crockery" | "desktop-alt-slash" | "desktop-slash" | "draggabledots" | "elipsis-double-v-alt" | "estate" | "file-lanscape-slash" | "file-slash" | "football-american" | "glass-martini-alt-slash" | "glass-tea" | "history-alt" | "image-alt-slash" | "image-slash" | "key-skeleton-alt" | "layer-group-slash" | "layers-slash" | "link-add" | "link-h" | "list-ol-alt" | "map-marker-slash" | "minus-square-full" | "money-bill-slash" | "plane-fly" | "print-slash" | "rope-way" | "signal-alt" | "space-key" | "streering" | "sync-exclamation" | "sync-slash" | "tachometer-fast-alt" | "tv-retro-slash" | "utensils-alt" | "voicemail-rectangle" | "water-drop-slash" | "x-add" | "user-location" | "users-alt" | "cloud-moon-hail" | "cloud-moon-meatball" | "cloud-moon-showers" | "cloud-moon-tear" | "cloud-rain-sun" | "cloud-showers" | "cloud-showers-alt" | "cloud-sun-hail" | "cloud-sun-meatball" | "cloud-sun-rain-alt" | "cloud-sun-tear" | "cloud-wind" | "mountains-sun" | "n-a" | "raindrops-alt" | "snowflake-alt" | "temperature-three-quarter" | "thunderstorm-moon" | "thunderstorm-sun" | "wind-moon" | "wind-sun">): import("react").JSX.Element;
1226
+ ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"sort" | "map" | "filter" | "android" | "windows" | "spin" | "search" | "repeat" | "anchor" | "bold" | "link" | "signal" | "icons" | "scroll" | "solid" | "image" | "text" | "left" | "direction" | "label" | "picture" | "table" | "th" | "video" | "circle" | "line" | "polygon" | "x" | "adjust" | "archive" | "arrow-up-left" | "arrow-up-right" | "asterisk" | "at" | "backspace" | "book" | "book-open" | "bookmark" | "briefcase" | "cancel" | "chat" | "clipboard" | "comment" | "comment-check" | "comment-plus" | "comment-question" | "comment-search" | "copyright" | "dialpad" | "diamond" | "directions" | "export" | "eye" | "gold" | "grid" | "image-broken" | "image-check" | "image-minus" | "image-plus" | "image-search" | "import" | "inbox" | "keyboard" | "mailbox" | "message" | "mouse" | "newspaper" | "ninja" | "package" | "paperclip" | "pause-circle" | "play-circle" | "plus-circle" | "pound" | "presentation" | "presentation-play" | "pump" | "qrcode-scan" | "redo" | "rss" | "server" | "server-network" | "shield-plus" | "sitemap" | "sleep" | "step-backward" | "step-forward" | "stop-circle" | "sync" | "tag" | "ticket" | "trademark" | "upload" | "voicemail" | "wall" | "weight" | "wifi" | "window-maximize" | "window-restore" | "yin-yang" | "shield-check" | "flower" | "shovel" | "water" | "bug" | "linux" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-right" | "arrow-up" | "forward" | "refresh" | "rotate-360" | "share" | "shuffle" | "headphones" | "music" | "music-note" | "volume-mute" | "volume-off" | "car" | "car-wash" | "lock" | "snowflake" | "thermometer" | "bitcoin" | "credit-card" | "credit-card-search" | "invoice" | "receipt" | "wallet" | "apple" | "box" | "docker" | "dropbox" | "facebook" | "facebook-messenger" | "github" | "gitlab" | "google" | "google-drive" | "google-hangouts" | "google-play" | "instagram" | "linkedin" | "microsoft" | "opera" | "react" | "skype" | "slack" | "twitter" | "vuejs" | "whatsapp" | "wordpress" | "youtube" | "phone" | "hard-hat" | "cloud" | "cloud-check" | "cloud-download" | "cloud-lock" | "cloud-question" | "cloud-upload" | "clouds" | "palette" | "database" | "calendar" | "clock" | "history" | "laptop" | "monitor" | "tablet" | "watch" | "pen" | "ruler" | "comment-edit" | "image-edit" | "file" | "file-check" | "file-download" | "file-export" | "file-import" | "file-minus" | "file-plus" | "file-question" | "file-upload" | "folder" | "folder-check" | "folder-download" | "folder-heart" | "folder-lock" | "folder-minus" | "folder-network" | "folder-open" | "folder-plus" | "folder-question" | "folder-upload" | "coffee" | "check" | "check-circle" | "minus-circle" | "flask" | "heart" | "medal" | "shield" | "compass" | "crosshairs" | "layers" | "map-marker" | "map-marker-minus" | "map-marker-plus" | "map-marker-question" | "vector-square" | "bolt" | "spade" | "wheel-barrow" | "wrench" | "bed" | "bed-double" | "gift" | "bell" | "boombox" | "camera" | "fire" | "home" | "lamp" | "lightbulb" | "pause" | "play" | "power" | "robot" | "skip-forward" | "webcam" | "image-lock" | "abacus" | "angle-right" | "calculator" | "chart-bar" | "chart-line" | "chart-pie" | "exclamation" | "minus" | "plus" | "sigma" | "ambulance" | "brain" | "hospital" | "stethoscope" | "wheelchair" | "microphone" | "bus" | "taxi" | "baby-carriage" | "camera-plus" | "film" | "store" | "atom" | "dna" | "microscope" | "rocket" | "telescope" | "cog" | "cube" | "octagon" | "pentagon" | "square" | "star" | "triangle" | "basketball" | "basketball-hoop" | "bullseye" | "dumbbell" | "football" | "podium" | "table-tennis" | "tennis-ball" | "trophy" | "volleyball" | "border-bottom" | "border-horizontal" | "border-left" | "border-right" | "border-top" | "border-vertical" | "subway" | "bus-school" | "traffic-light" | "truck" | "apps" | "umbrella" | "windsock" | "backward" | "bell-slash" | "bolt-slash" | "envelope" | "envelope-open" | "exclamation-circle" | "exclamation-triangle" | "eye-slash" | "italic" | "language" | "map-pin" | "megaphone" | "moon" | "puzzle-piece" | "shield-exclamation" | "shopping-bag" | "shopping-cart" | "sun" | "trash" | "underline" | "user" | "user-circle" | "user-minus" | "user-plus" | "window" | "airplay" | "angry" | "annoyed" | "award" | "backpack" | "ban" | "bath" | "building" | "cloud-drizzle" | "cloud-hail" | "cloud-moon" | "cloud-moon-rain" | "cloud-rain" | "cloud-sun" | "cloud-sun-rain" | "club" | "coins" | "copy" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-right-down" | "corner-up-left" | "corner-up-right" | "crosshair" | "dollar-sign" | "dribbble" | "drill" | "ear" | "euro" | "file-heart" | "focus" | "frown" | "globe" | "graduation-cap" | "hourglass" | "images" | "info" | "kayak" | "mars" | "meh" | "plane" | "plug" | "rainbow" | "save" | "ship" | "shopping-basket" | "shrink" | "smile" | "sunset" | "syringe" | "tablets" | "thumbs-down" | "thumbs-up" | "tornado" | "trees" | "university" | "user-check" | "utensils" | "venus" | "volume" | "wind" | "align-center" | "align-justify" | "align-left" | "align-right" | "check-square" | "columns" | "edit" | "minus-square" | "plus-square" | "unlock" | "ankh" | "arrows-left-down" | "arrows-maximize" | "arrows-right-down" | "arrows-up-right" | "bell-school" | "books" | "border-inner" | "brightness" | "brightness-half" | "browser" | "capsule" | "capture" | "caret-right" | "cell" | "cloud-computing" | "cloud-data-connection" | "cloud-exclamation" | "cloud-heart" | "cloud-share" | "dashboard" | "exchange" | "fidget-spinner" | "folder-exclamation" | "glass" | "heartbeat" | "info-circle" | "keyboard-hide" | "keyboard-show" | "lock-access" | "moneybag" | "notes" | "parking-circle" | "percentage" | "phone-pause" | "plane-arrival" | "plane-departure" | "registered" | "servicemark" | "shield-question" | "sign-left" | "sign-right" | "stopwatch" | "temperature" | "temperature-minus" | "temperature-plus" | "text-size" | "toilet-paper" | "trowel" | "truck-loading" | "user-exclamation" | "user-square" | "amazon" | "bag" | "behance" | "bing" | "brightness-low" | "cloud-slash" | "discord" | "envelope-check" | "envelope-exclamation" | "envelope-heart" | "exclamation-octagon" | "exclude" | "file-medical" | "hdd" | "list-ol" | "list-ul" | "modem" | "paragraph" | "paypal" | "postcard" | "question" | "question-circle" | "shield-slash" | "shop" | "skip-forward-circle" | "suitcase" | "telegram" | "toggle-off" | "toggle-on" | "volume-down" | "volume-up" | "bitcoin-sign" | "temperature-empty" | "temperature-half" | "temperature-quarter" | "closed-captioning" | "phone-volume" | "angle-down" | "angle-left" | "angle-up" | "location-arrow" | "compress" | "microphone-slash" | "archway" | "phone-slash" | "print" | "comment-dots" | "comment-medical" | "comment-slash" | "comments" | "video-slash" | "square-full" | "code-branch" | "compact-disc" | "desktop" | "sim-card" | "ruler-combined" | "lira-sign" | "money-bill" | "rupee-sign" | "layer-group" | "object-group" | "object-ungroup" | "swatchbook" | "font" | "battery-empty" | "cloud-meatball" | "pizza-slice" | "dice-five" | "dice-four" | "dice-one" | "dice-six" | "dice-three" | "dice-two" | "house-user" | "bars" | "life-ring" | "book-medical" | "head-side-cough" | "head-side-mask" | "prescription-bottle" | "user-nurse" | "virus-slash" | "tape" | "file-contract" | "store-slash" | "spinner" | "bowling-ball" | "cloud-showers-heavy" | "presentation-line" | "exit" | "favorite" | "process" | "coronavirus" | "analytics" | "moonset" | "restaurant" | "thunderstorm" | "windy" | "enter" | "medkit" | "sad" | "_500px" | "blogger" | "html5" | "intercom" | "lottiefiles" | "metro" | "okta" | "outline" | "pagerduty" | "swiggy" | "tumblr" | "vk" | "adobe" | "parcel" | "visual-studio" | "feedback" | "schedule" | "brightness-empty" | "chat-info" | "keyboard-alt" | "mobile-vibrate" | "stroller" | "sanitizer" | "sick" | "border-clear" | "folder-info" | "subject" | "text-fields" | "vertical-align-bottom" | "vertical-align-center" | "vertical-align-top" | "wrap-text" | "arrow-circle-down" | "arrow-circle-left" | "arrow-circle-right" | "arrow-circle-up" | "link-broken" | "football-ball" | "cloud-bookmark" | "server-connection" | "border-out" | "compress-lines" | "emoji" | "bitcoin-circle" | "yen" | "home-alt" | "navigator" | "auto-flash" | "lock-slash" | "snow-flake" | "comment-add" | "_18-plus" | "book-alt" | "diary" | "silence" | "transaction" | "arrow-from-right" | "arrow-from-top" | "arrow-to-bottom" | "arrow-to-right" | "band-aid" | "book-reader" | "briefcase-alt" | "brush-alt" | "calendar-alt" | "chart" | "confused" | "copy-alt" | "dialpad-alt" | "edit-alt" | "expand-alt" | "file-blank" | "left-indent" | "link-alt" | "lock-alt" | "lock-open-alt" | "meh-alt" | "money-withdraw" | "mouse-alt" | "no-entry" | "search-alt" | "share-alt" | "store-alt" | "tag-alt" | "trash-alt" | "instagram-alt" | "adjust-alt" | "traffic-barrier" | "watch-alt" | "padlock" | "wifi-slash" | "android-alt" | "bluetooth-b" | "creative-commons-pd" | "facebook-f" | "hipchat" | "medium-m" | "balance-scale" | "bus-alt" | "expand-left" | "expand-right" | "line-spacing" | "align-center-h" | "align-center-v" | "github-alt" | "grin" | "twitter-alt" | "clapper-board" | "telegram-alt" | "comment-alt" | "download-alt" | "envelope-alt" | "file-alt" | "file-edit-alt" | "heart-alt" | "map-marker-alt" | "phone-alt" | "th-large" | "unlock-alt" | "selfie" | "desert" | "setting" | "equal-circle" | "layers-alt" | "multiply" | "angle-double-down" | "angle-double-left" | "angle-double-right" | "angle-double-up" | "arrows-h" | "arrows-v" | "assistive-listening-systems" | "ellipsis-h" | "ellipsis-v" | "pagelines" | "search-minus" | "search-plus" | "snapchat-ghost" | "snapchat-square" | "times-circle" | "tumblr-square" | "user-md" | "user-times" | "wheelchair-alt" | "wordpress-simple" | "grin-tongue-wink" | "sad-cry" | "smile-beam" | "smile-wink" | "surprise" | "compress-alt" | "exchange-alt" | "expand-arrows-alt" | "external-link-alt" | "sign-in-alt" | "sign-out-alt" | "sort-amount-down" | "sort-amount-up" | "apple-alt" | "glass-martini" | "glass-martini-alt" | "clinic-medical" | "crop-alt" | "swimmer" | "luggage-cart" | "times" | "file-medical-alt" | "hospital-symbol" | "headphones-alt" | "baseball-ball" | "golf-ball" | "star-half-alt" | "desktop-alt" | "mobile-android" | "mobile-android-alt" | "tachometer-fast" | "times-square" | "arrow" | "incoming-call" | "previous" | "signin" | "square-shape" | "laughing" | "suitcase-alt" | "clipboard-notes" | "graph-bar" | "mountains" | "medical-drip" | "money-stack" | "post-stamp" | "processor" | "screw" | "wifi-router" | "arrows-h-alt" | "arrows-shrink-h" | "arrows-shrink-v" | "arrows-v-alt" | "compress-v" | "scroll-h" | "spinner-alt" | "flip-h" | "flip-v" | "file-exclamation" | "tv-retro" | "shutter" | "channel" | "servers" | "social-distancing" | "calling" | "celsius" | "chart-down" | "euro-circle" | "fahrenheit" | "image-download" | "image-upload" | "java-script" | "kid" | "laptop-cloud" | "master-card" | "moon-eclipse" | "nerd" | "pathfinder-unite" | "pound-circle" | "sad-dizzy" | "smile-dizzy" | "unamused" | "yen-circle" | "bill" | "analysis" | "heart-rate" | "document-info" | "text-strike-through" | "line-alt" | "bag-alt" | "blogger-alt" | "water-glass" | "parking-square" | "raindrops" | "brackets-curly" | "key-skeleton" | "calendar-slash" | "camera-slash" | "clock-eight" | "clock-five" | "clock-nine" | "clock-seven" | "clock-ten" | "clock-three" | "clock-two" | "folder-slash" | "rss-alt" | "bright" | "tear" | "comment-lines" | "comparison" | "arrows-merge" | "heart-break" | "jackhammer" | "calender" | "upload-alt" | "label-alt" | "missed-call" | "filter-slash" | "sliders-v" | "step-backward-alt" | "comment-exclamation" | "linkedin-alt" | "image-times" | "signout" | "outgoing-call" | "cloud-block" | "cloud-wifi" | "keyhole-square" | "arrow-growth" | "corner-up-left-alt" | "forecastcloud-moon-tear" | "angle-left-b" | "angle-right-b" | "arrow-break" | "arrow-compress-h" | "arrow-random" | "arrow-resize-diagonal" | "arrows-resize" | "arrows-resize-h" | "arrows-resize-v" | "compress-alt-left" | "compress-arrows" | "compress-point" | "corner-down-right-alt" | "corner-up-right-alt" | "expand-arrows" | "expand-from-corner" | "left-arrow-from-left" | "left-arrow-to-left" | "maximize-left" | "scaling-left" | "scaling-right" | "sorting" | "statistics" | "top-arrow-from-top" | "top-arrow-to-top" | "adobe-alt" | "behance-alt" | "bitcoin-alt" | "black-berry" | "css3-simple" | "facebook-messenger-alt" | "google-drive-alt" | "google-hangouts-alt" | "html3" | "html3-alt" | "html5-alt" | "intercom-alt" | "lottiefiles-alt" | "opera-alt" | "programming-language" | "reddit-alien-alt" | "skype-alt" | "slack-alt" | "snapchat-alt" | "tumblr-alt" | "vk-alt" | "vuejs-alt" | "whatsapp-alt" | "calculator-alt" | "chart-bar-alt" | "chart-growth" | "chart-growth-alt" | "chart-pie-alt" | "crosshair-alt" | "dollar-alt" | "dollar-sign-alt" | "hunting" | "lightbulb-alt" | "money-bill-stack" | "money-insert" | "money-withdrawal" | "moneybag-alt" | "panel-add" | "receipt-alt" | "signal-alt-3" | "usd-circle" | "usd-square" | "chat-bubble-user" | "comment-alt-block" | "comment-alt-chart-lines" | "comment-alt-check" | "comment-alt-dots" | "comment-alt-download" | "comment-alt-edit" | "comment-alt-exclamation" | "comment-alt-heart" | "comment-alt-image" | "comment-alt-info" | "comment-alt-lines" | "comment-alt-lock" | "comment-alt-medical" | "comment-alt-message" | "comment-alt-notes" | "comment-alt-plus" | "comment-alt-question" | "comment-alt-redo" | "comment-alt-search" | "comment-alt-share" | "comment-alt-shield" | "comment-alt-upload" | "comment-alt-verify" | "comment-block" | "comment-chart-line" | "comment-download" | "comment-heart" | "comment-image" | "comment-info" | "comment-info-alt" | "comment-lock" | "comment-message" | "comment-notes" | "comment-redo" | "comment-share" | "comment-shield" | "comment-upload" | "comment-verify" | "comments-alt" | "channel-add" | "cloud-database-tree" | "cloud-info" | "cloud-redo" | "cloud-shield" | "cloud-times" | "cloud-unlock" | "data-sharing" | "database-alt" | "server-alt" | "server-network-alt" | "web-grid" | "web-grid-alt" | "web-section" | "web-section-alt" | "window-grid" | "window-section" | "desktop-cloud-alt" | "envelope-add" | "envelope-block" | "envelope-bookmark" | "envelope-download" | "envelope-download-alt" | "envelope-edit" | "envelope-info" | "envelope-lock" | "envelope-minus" | "envelope-question" | "envelope-receive" | "envelope-redo" | "envelope-search" | "envelope-send" | "envelope-share" | "envelope-shield" | "envelope-star" | "envelope-times" | "envelope-upload" | "envelope-upload-alt" | "envelopes" | "fast-mail" | "fast-mail-alt" | "forwaded-call" | "laptop-connection" | "mailbox-alt" | "phone-times" | "constructor" | "paint-tool" | "align" | "align-alt" | "align-center-alt" | "align-center-justify" | "align-left-justify" | "align-letter-right" | "align-right-justify" | "border-alt" | "document-layout-center" | "document-layout-left" | "document-layout-right" | "english-to-chinese" | "grip-horizontal-line" | "hindi-to-chinese" | "left-indent-alt" | "left-to-right-text-direction" | "letter-chinese-a" | "letter-english-a" | "letter-hindi-a" | "letter-japanese-a" | "list-ui-alt" | "right-indent-alt" | "right-to-left-text-direction" | "bring-bottom" | "bring-front" | "circle-layer" | "crop-alt-rotate-left" | "crop-alt-rotate-right" | "flip-h-alt" | "flip-v-alt" | "grids" | "horizontal-align-center" | "horizontal-align-left" | "horizontal-align-right" | "horizontal-distribution-center" | "horizontal-distribution-left" | "horizontal-distribution-right" | "illustration" | "image-resize-landscape" | "image-resize-square" | "minus-path" | "panorama-h" | "panorama-h-alt" | "panorama-v" | "pathfinder" | "th-slash" | "vector-square-alt" | "vertical-distribute-bottom" | "vertical-distribution-center" | "vertical-distribution-top" | "circuit" | "mouse-alt-2" | "award-alt" | "diary-alt" | "flask-potion" | "game-structure" | "meeting-board" | "notebooks" | "presentation-check" | "presentation-edit" | "presentation-lines-alt" | "presentation-minus" | "presentation-plus" | "presentation-times" | "sperms" | "annoyed-alt" | "dizzy-meh" | "grin-tongue-wink-alt" | "meh-closed-eye" | "sad-crying" | "sad-squint" | "silent-squint" | "smile-squint-wink" | "smile-squint-wink-alt" | "smile-wink-alt" | "squint" | "clipboard-alt" | "clipboard-blank" | "copy-landscape" | "file-block-alt" | "file-bookmark-alt" | "file-check-alt" | "file-contract-dollar" | "file-copy-alt" | "file-download-alt" | "file-exclamation-alt" | "file-graph" | "file-info-alt" | "file-landscape" | "file-landscape-alt" | "file-lock-alt" | "file-minus-alt" | "file-network" | "file-plus-alt" | "file-question-alt" | "file-redo-alt" | "file-search-alt" | "file-share-alt" | "file-shield-alt" | "file-times" | "file-times-alt" | "file-upload-alt" | "files-landscapes" | "files-landscapes-alt" | "folder-medical" | "folder-times" | "location-arrow-alt" | "location-pin-alt" | "location-point" | "map-marker-edit" | "map-marker-info" | "map-marker-shield" | "map-pin-alt" | "sign-alt" | "head-side" | "heart-medical" | "hospital-square-sign" | "medical-square" | "medical-square-full" | "monitor-heart-rate" | "sanitizer-alt" | "stethoscope-alt" | "stretcher" | "user-arrows" | "camera-change" | "headphone-slash" | "image-block" | "image-question" | "image-redo" | "image-share" | "image-shield" | "image-v" | "music-tune-slash" | "record-audio" | "rss-interface" | "scenery" | "shutter-alt" | "skip-forward-alt" | "slider-h" | "slider-h-range" | "sliders-v-alt" | "step-backward-circle" | "video-question" | "exposure-alt" | "exposure-increase" | "focus-add" | "focus-target" | "keyhole-circle" | "keyhole-square-full" | "pricetag-alt" | "shopping-cart-alt" | "accessible-icon-alt" | "closed-captioning-slash" | "trademark-circle" | "heart-sign" | "stopwatch-slash" | "car-sideview" | "subway-alt" | "_0-plus" | "_10-plus" | "_12-plus" | "_13-plus" | "_16-plus" | "_17-plus" | "_21-plus" | "_3-plus" | "_6-plus" | "adjust-circle" | "adjust-half" | "android-phone-slash" | "archive-alt" | "bag-slash" | "battery-bolt" | "bolt-alt" | "bookmark-full" | "brightness-minus" | "brightness-plus" | "car-slash" | "card-atm" | "comment-alt-slash" | "create-dashboard" | "crockery" | "desktop-alt-slash" | "desktop-slash" | "draggabledots" | "elipsis-double-v-alt" | "estate" | "file-lanscape-slash" | "file-slash" | "football-american" | "glass-martini-alt-slash" | "glass-tea" | "history-alt" | "image-alt-slash" | "image-slash" | "key-skeleton-alt" | "layer-group-slash" | "layers-slash" | "link-add" | "link-h" | "list-ol-alt" | "map-marker-slash" | "minus-square-full" | "money-bill-slash" | "plane-fly" | "print-slash" | "rope-way" | "signal-alt" | "space-key" | "streering" | "sync-exclamation" | "sync-slash" | "tachometer-fast-alt" | "tv-retro-slash" | "utensils-alt" | "voicemail-rectangle" | "water-drop-slash" | "x-add" | "user-location" | "users-alt" | "cloud-moon-hail" | "cloud-moon-meatball" | "cloud-moon-showers" | "cloud-moon-tear" | "cloud-rain-sun" | "cloud-showers" | "cloud-showers-alt" | "cloud-sun-hail" | "cloud-sun-meatball" | "cloud-sun-rain-alt" | "cloud-sun-tear" | "cloud-wind" | "mountains-sun" | "n-a" | "raindrops-alt" | "snowflake-alt" | "temperature-three-quarter" | "thunderstorm-moon" | "thunderstorm-sun" | "wind-moon" | "wind-sun">): import("react").JSX.Element;
1227
1227
  displayName: string;
1228
1228
  };
1229
1229
  export {};