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
@@ -1679,7 +1679,7 @@ declare const iconoirIconNames: {
1679
1679
  };
1680
1680
  export type IconoirIconName = keyof typeof iconoirIconNames;
1681
1681
  export declare const Iconoir: {
1682
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"sort" | "map" | "filter" | "reduce" | "windows" | "flip" | "link" | "search" | "text" | "menu" | "timer" | "list" | "type" | "key" | "repeat" | "bold" | "code" | "label" | "table" | "circle" | "antenna" | "archive" | "arrow-up-left" | "arrow-up-right" | "asterisk" | "attachment" | "augmented-reality" | "barcode" | "bluetooth" | "book" | "bookmark" | "clipboard-check" | "copyright" | "crop" | "crown" | "cube-scan" | "cursor-pointer" | "desk" | "dialpad" | "dns" | "download" | "download-circle" | "drag" | "eject" | "eye" | "eye-closed" | "fingerprint" | "flare" | "flash-off" | "group" | "hdr" | "help-circle" | "import" | "key-minus" | "key-plus" | "magnet" | "mail" | "message" | "message-text" | "microphone-minus" | "microphone-plus" | "mouse-scroll-wheel" | "network" | "package" | "pin" | "playlist-play" | "playlist-plus" | "plus-circle" | "pocket" | "podcast" | "post" | "pound" | "presentation" | "priority-high" | "redo" | "refresh-circle" | "repeat-once" | "restart" | "rewind" | "send" | "server" | "shield-search" | "trademark" | "translate" | "undo" | "upload" | "usb" | "weight" | "wifi" | "wifi-off" | "shield-check" | "egg" | "flower" | "leaf" | "pine-tree" | "tree" | "message-alert" | "shield-alert" | "bug" | "fish" | "jellyfish" | "linux" | "arrow-down" | "arrow-down-circle" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-left-circle" | "arrow-right" | "arrow-right-circle" | "arrow-up" | "arrow-up-circle" | "forward" | "refresh" | "reply" | "shuffle" | "album" | "headset" | "music-note" | "music-note-plus" | "sine-wave" | "square-wave" | "air-conditioner" | "battery-50" | "battery-charging" | "car" | "ev-station" | "lock" | "smoking" | "bank" | "cash" | "credit-card" | "piggy-bank" | "safe" | "wallet" | "apple" | "bitbucket" | "box" | "codepen" | "creative-commons" | "facebook" | "git" | "github" | "google" | "google-drive" | "instagram" | "linkedin" | "mastodon" | "nintendo-switch" | "npm" | "pinterest" | "snapchat" | "spotify" | "trello" | "twitter" | "unity" | "whatsapp" | "youtube" | "phone" | "phone-minus" | "phone-paused" | "phone-plus" | "glasses" | "cloud" | "cloud-check" | "cloud-download" | "cloud-sync" | "cloud-upload" | "palette" | "database" | "database-check" | "database-export" | "database-search" | "database-settings" | "alarm" | "calendar" | "calendar-check" | "calendar-minus" | "calendar-plus" | "clock" | "timer-off" | "code-brackets" | "laptop" | "ruler" | "folder" | "folder-minus" | "folder-plus" | "folder-settings" | "text-box" | "bread-slice" | "cookie" | "glass-fragile" | "ice-cream" | "check" | "check-circle" | "minus-circle" | "crown-circle" | "flask" | "gamepad" | "heart" | "medal" | "pokeball" | "puzzle" | "shield" | "tournament" | "compass" | "hammer" | "tools" | "wrench" | "bed" | "gift" | "balcony" | "bell" | "camera" | "dishwasher" | "fridge" | "garage" | "home" | "lamp" | "mirror" | "pause" | "play" | "printer" | "skip-next" | "sofa" | "washing-machine" | "book-lock" | "calculator" | "diameter" | "minus" | "plus" | "radius" | "brain" | "hospital" | "microphone" | "airplane" | "bus" | "bus-stop" | "train" | "tram" | "bell-off" | "skateboarding" | "church" | "city" | "parking" | "atom" | "dna" | "microscope" | "rocket" | "test-tube" | "cube" | "cylinder" | "hexagon" | "octagon" | "pentagon" | "rhombus" | "sphere" | "square" | "star" | "triangle" | "cart" | "cart-minus" | "cart-plus" | "basketball" | "bicycle" | "boxing-glove" | "football" | "golf" | "skateboard" | "strategy" | "tennis-ball" | "trophy" | "yoga" | "border-bottom" | "border-left" | "border-right" | "border-top" | "airplane-off" | "drone" | "elevator" | "tunnel" | "truck" | "movie" | "view-grid" | "flash" | "umbrella" | "arrow-down-circle-solid" | "arrow-left-circle-solid" | "arrow-right-circle-solid" | "arrow-up-circle-solid" | "bookmark-solid" | "camera-solid" | "check-circle-solid" | "clock-solid" | "credit-card-solid" | "divide" | "divide-solid" | "eye-solid" | "forward-solid" | "hashtag" | "heart-solid" | "italic" | "language" | "light-bulb" | "link-slash" | "map-pin" | "megaphone" | "microphone-solid" | "minus-circle-solid" | "pause-solid" | "phone-solid" | "play-solid" | "plus-circle-solid" | "qr-code" | "server-solid" | "shopping-bag" | "slash" | "star-solid" | "strikethrough" | "trash" | "trash-solid" | "tv" | "underline" | "user" | "user-circle" | "user-plus" | "video-camera" | "wallet-solid" | "accessibility" | "activity" | "airplay" | "app-window" | "arrows-up-from-line" | "at-sign" | "badge-check" | "battery-full" | "battery-warning" | "building" | "calendar-arrow-down" | "calendar-arrow-up" | "coins" | "combine" | "component" | "computer" | "copy" | "cpu" | "database-backup" | "dribbble" | "droplet" | "euro" | "expand" | "figma" | "frame" | "git-branch" | "git-compare" | "git-fork" | "git-merge" | "git-pull-request" | "git-pull-request-closed" | "globe" | "graduation-cap" | "handbag" | "hard-drive" | "hourglass" | "log-in" | "log-out" | "mail-open" | "map-pin-minus" | "map-pin-plus" | "maximize" | "non-binary" | "quote" | "radiation" | "scan-barcode" | "scan-qr-code" | "settings" | "shield-minus" | "shirt" | "square-dashed" | "terminal" | "thumbs-down" | "thumbs-up" | "user-star" | "vegan" | "wind" | "x" | "zoom-in" | "zoom-out" | "align-center" | "align-justify" | "align-left" | "align-right" | "check-square" | "edit" | "git-commit" | "minus-square" | "plus-square" | "x-square" | "antenna-off" | "arrow-down-left-circle" | "arrow-down-right-circle" | "arrow-up-left-circle" | "arrow-up-right-circle" | "border-inner" | "bounce-left" | "bounce-right" | "brightness" | "color-filter" | "color-picker" | "cut" | "dashboard" | "database-star" | "droplet-check" | "droplet-half" | "ease-in" | "ease-in-control-point" | "ease-in-out" | "ease-out" | "ease-out-control-point" | "face-id" | "fingerprint-scan" | "gps" | "help-square" | "hexagon-plus" | "home-shield" | "hospital-circle" | "info-circle" | "input-search" | "keyframe" | "keyframe-align-center" | "keyframe-align-horizontal" | "keyframe-align-vertical" | "keyframes" | "lock-square" | "notes" | "packages" | "pacman" | "percentage" | "planet" | "playlist" | "question-mark" | "rings" | "screenshot" | "shield-question" | "shopping-bag-check" | "shopping-bag-minus" | "shopping-bag-plus" | "spiral" | "stretching" | "swimming" | "text-size" | "tower" | "transition-left" | "transition-right" | "treadmill" | "trekking" | "user-scan" | "user-square" | "view-360" | "wash" | "xbox-a" | "xbox-b" | "xbox-x" | "xbox-y" | "arrow-down-left-square" | "arrow-down-right-square" | "arrow-up-left-square" | "arrow-up-right-square" | "bag" | "behance" | "c-square" | "discord" | "emoji-surprise" | "exclude" | "graph-down" | "graph-up" | "h-square" | "heptagon" | "intersect" | "journal" | "medium" | "paypal" | "shop" | "shop-window" | "slash-square" | "snow" | "sort-down" | "sort-up" | "suitcase" | "telegram" | "threads" | "tiktok" | "union" | "yelp" | "calendar-xmark" | "floppy-disk" | "user-xmark" | "xmark" | "compress" | "motorcycle" | "industry" | "compact-disc" | "battery-empty" | "pizza-slice" | "dice-five" | "dice-four" | "dice-one" | "dice-six" | "dice-three" | "dice-two" | "soap" | "vials" | "temperature-high" | "temperature-low" | "bowling-ball" | "input-field" | "erase" | "magic-wand" | "new-tab" | "select-window" | "delivery" | "hd" | "warning-square" | "running" | "delivery-truck" | "dew-point" | "fog" | "rain" | "thunderstorm" | "bonfire" | "female" | "infinite" | "male" | "asana" | "html5" | "lens" | "linear" | "metro" | "peerlist" | "rook" | "safari" | "stackoverflow" | "adobe-after-effects" | "adobe-illustrator" | "adobe-indesign" | "adobe-lightroom" | "adobe-photoshop" | "adobe-xd" | "google-home" | "google-one" | "spark" | "open-in-browser" | "rss-feed" | "candlestick-chart" | "contactless" | "leaderboard" | "chat-bubble" | "phone-disabled" | "bathroom" | "crib" | "stroller" | "horizontal-split" | "table-rows" | "vertical-split" | "wrap-text" | "filter-alt" | "filter-list" | "more-horiz" | "more-vert" | "shield-broken" | "arc-3d" | "arc-3d-center-point" | "box-3d-center" | "box-3d-point" | "box-3d-three-points" | "bridge-3d" | "bridge-surface" | "constrained-surface" | "cube-bandage" | "cube-cut-with-curve" | "cube-dots" | "cube-dots-solid" | "cube-hole" | "cube-replace-face" | "cube-scan-solid" | "curve-array" | "ellipse-3d" | "ellipse-3d-three-points" | "extrude" | "face-3d-draft" | "fillet-3d" | "loft-3d" | "one-point-circle" | "orthogonal-view" | "perspective-view" | "pipe-3d" | "project-curve-3d" | "select-edge-3d" | "select-face-3d" | "select-point-3d" | "sigma-function" | "square-3d-corner-to-corner" | "square-3d-from-center" | "square-3d-three-points" | "sweep-3d" | "three-points-circle" | "two-points-circle" | "unjoin-3d" | "xray-view" | "check-square-solid" | "double-check" | "download-circle-solid" | "download-square" | "download-square-solid" | "erase-solid" | "floppy-disk-arrow-in" | "floppy-disk-arrow-out" | "help-circle-solid" | "help-square-solid" | "info-circle-solid" | "line-space" | "menu-scale" | "minus-square-solid" | "open-in-window" | "open-new-window" | "paste-clipboard" | "plus-square-solid" | "prohibition" | "redo-action" | "redo-circle" | "redo-circle-solid" | "refresh-circle-solid" | "refresh-double" | "share-android" | "share-android-solid" | "share-ios" | "undo-action" | "undo-circle" | "undo-circle-solid" | "upload-square" | "upload-square-solid" | "warning-circle" | "warning-circle-solid" | "warning-square-solid" | "warning-triangle" | "warning-triangle-solid" | "xmark-circle" | "xmark-circle-solid" | "xmark-square" | "xmark-square-solid" | "archery" | "arrow-archery" | "basketball-field" | "birthday-cake" | "book-solid" | "book-stack" | "bookmark-book" | "cigarette-slash" | "cinema-old" | "cycling" | "favourite-book" | "fire-flame" | "fishing" | "football-ball" | "gym" | "leaderboard-star" | "math-book" | "medal-1st" | "medal-1st-solid" | "medal-solid" | "no-smoking-circle" | "open-book" | "percentage-circle" | "percentage-circle-solid" | "percentage-square" | "percentage-square-solid" | "report-columns" | "reports" | "reports-solid" | "sea-and-sun" | "sea-waves" | "soccer-ball" | "stat-down" | "stat-up" | "tennis-ball-alt" | "waist" | "walking" | "wolf" | "wolf-solid" | "dot-arrow-down" | "dot-arrow-left" | "dot-arrow-right" | "dot-arrow-up" | "ease-curve-control-points" | "keyframe-align-center-solid" | "keyframe-align-horizontal-solid" | "keyframe-align-vertical-solid" | "keyframe-minus" | "keyframe-minus-in" | "keyframe-minus-in-solid" | "keyframe-minus-solid" | "keyframe-plus" | "keyframe-plus-in" | "keyframe-plus-in-solid" | "keyframe-plus-solid" | "keyframe-position" | "keyframe-position-solid" | "keyframe-solid" | "keyframes-couple" | "keyframes-couple-solid" | "keyframes-minus" | "keyframes-plus" | "keyframes-solid" | "transition-down" | "transition-down-solid" | "transition-left-solid" | "transition-right-solid" | "transition-up" | "transition-up-solid" | "microphone-check" | "microphone-check-solid" | "microphone-minus-solid" | "microphone-mute" | "microphone-mute-solid" | "microphone-plus-solid" | "microphone-speaking" | "microphone-speaking-solid" | "microphone-warning" | "microphone-warning-solid" | "sound-high" | "sound-high-solid" | "sound-low" | "sound-low-solid" | "sound-min" | "sound-min-solid" | "sound-off" | "sound-off-solid" | "bathroom-solid" | "cellar" | "church-side" | "farm" | "house-rooms" | "neighbourhood" | "oil-industry" | "planimetry" | "shop-four-tiles" | "shop-four-tiles-window" | "agile" | "okrs" | "presentation-solid" | "priority-down" | "priority-down-solid" | "priority-high-solid" | "priority-medium" | "priority-medium-solid" | "priority-up" | "priority-up-solid" | "stats-down-square" | "stats-down-square-solid" | "stats-report" | "stats-up-square" | "stats-up-square-solid" | "beach-bag" | "hat" | "pants" | "pants-pockets" | "sandals" | "scarf" | "shirt-tank-top" | "short-pants" | "short-pants-pockets" | "slips" | "cloud-bookmark" | "cloud-desync" | "cloud-square" | "cloud-square-solid" | "cloud-xmark" | "google-drive-check" | "google-drive-sync" | "google-drive-warning" | "app-notification" | "app-notification-solid" | "arrow-email-forward" | "at-sign-circle" | "bell-notification" | "bell-notification-solid" | "bubble-download" | "bubble-income" | "bubble-outcome" | "bubble-search" | "bubble-search-solid" | "bubble-star" | "bubble-upload" | "bubble-warning" | "bubble-xmark" | "bubble-xmark-solid" | "chat-bubble-check" | "chat-bubble-check-solid" | "chat-bubble-empty" | "chat-bubble-empty-solid" | "chat-bubble-question" | "chat-bubble-question-solid" | "chat-bubble-solid" | "chat-bubble-translate" | "chat-bubble-translate-solid" | "chat-bubble-warning" | "chat-bubble-warning-solid" | "chat-bubble-xmark" | "chat-bubble-xmark-solid" | "chat-lines" | "chat-lines-solid" | "chat-minus-in" | "chat-minus-in-solid" | "chat-plus-in" | "chat-plus-in-solid" | "facetime" | "facetime-solid" | "forward-message" | "headset-help" | "internet" | "mail-in" | "mail-in-solid" | "mail-open-solid" | "mail-out" | "mail-out-solid" | "mail-solid" | "message-alert-solid" | "message-solid" | "message-text-solid" | "multi-bubble" | "multi-bubble-solid" | "phone-income" | "phone-income-solid" | "phone-minus-solid" | "phone-outcome" | "phone-outcome-solid" | "phone-paused-solid" | "phone-plus-solid" | "phone-xmark" | "phone-xmark-solid" | "podcast-solid" | "quote-message" | "quote-message-solid" | "quote-solid" | "reply-to-message" | "send-diagonal" | "send-diagonal-solid" | "send-mail" | "send-mail-solid" | "send-solid" | "time-zone" | "www" | "airplay-solid" | "antenna-signal" | "antenna-signal-tag" | "bluetooth-tag" | "bluetooth-tag-solid" | "cable-tag" | "cable-tag-solid" | "data-transfer-both" | "data-transfer-check" | "data-transfer-down" | "data-transfer-up" | "data-transfer-warning" | "network-left" | "network-left-solid" | "network-reverse" | "network-reverse-solid" | "network-right" | "network-right-solid" | "network-solid" | "plug-type-a" | "plug-type-c" | "plug-type-g" | "plug-type-l" | "private-wifi" | "server-connection" | "server-connection-solid" | "usb-solid" | "wifi-signal-none" | "wifi-signal-none-solid" | "wifi-tag" | "wifi-tag-solid" | "wifi-warning" | "wifi-warning-solid" | "wifi-xmark" | "database-check-solid" | "database-monitor" | "database-restore" | "database-script" | "database-script-minus" | "database-script-plus" | "database-solid" | "database-stats" | "database-tag" | "database-tag-solid" | "database-warning" | "database-xmark" | "database-xmark-solid" | "adobe-after-effects-solid" | "adobe-illustrator-solid" | "adobe-indesign-solid" | "adobe-lightroom-solid" | "adobe-photoshop-solid" | "adobe-xd-solid" | "align-bottom-box" | "align-bottom-box-solid" | "align-horizontal-centers" | "align-horizontal-centers-solid" | "align-horizontal-spacing" | "align-horizontal-spacing-solid" | "align-left-box" | "align-left-box-solid" | "align-right-box" | "align-right-box-solid" | "align-top-box" | "align-top-box-solid" | "align-vertical-centers" | "align-vertical-centers-solid" | "align-vertical-spacing" | "align-vertical-spacing-solid" | "axes" | "border-bl" | "border-br" | "border-out" | "border-tl" | "border-tr" | "center-align" | "center-align-solid" | "collage-frame" | "color-wheel" | "comp-align-bottom" | "comp-align-bottom-solid" | "comp-align-left" | "comp-align-left-solid" | "comp-align-right" | "comp-align-right-solid" | "comp-align-top" | "comp-align-top-solid" | "component-solid" | "crop-rotate-bl" | "crop-rotate-br" | "crop-rotate-tl" | "crop-rotate-tr" | "design-nib" | "design-nib-solid" | "design-pencil" | "droplet-solid" | "fill-color" | "fill-color-solid" | "flip-reverse" | "frame-alt" | "frame-alt-empty" | "frame-minus-in" | "frame-plus-in" | "frame-select" | "frame-simple" | "frame-tool" | "frame-tool-solid" | "horiz-distribution-left" | "horiz-distribution-left-solid" | "horiz-distribution-right" | "horiz-distribution-right-solid" | "intersect-alt" | "lens-plus" | "mask-square" | "position-align" | "precision-tool" | "ruler-arrows" | "ruler-combine" | "ruler-minus" | "ruler-plus" | "scale-frame-enlarge" | "scale-frame-reduce" | "selective-tool" | "style-border" | "style-border-solid" | "substract" | "union-alt" | "union-horiz-alt" | "apple-swift" | "bug-solid" | "code-brackets-square" | "css3" | "developer" | "electronics-chip" | "electronics-transistor" | "iconoir" | "kanban-board" | "laptop-dev-mode" | "mobile-dev-mode" | "npm-square" | "polar-sh" | "unity-5" | "vue-js" | "apple-imac-2021" | "apple-imac-2021-side" | "ar-tag" | "chromecast" | "chromecast-active" | "display-4k" | "laptop-charging" | "laptop-fix" | "laptop-warning" | "modern-tv" | "modern-tv-4k" | "pen-connect-bluetooth" | "pen-connect-wifi" | "pen-tablet" | "pen-tablet-connect-usb" | "pen-tablet-connect-wifi" | "printing-page" | "smartphone-device" | "tv-fix" | "tv-warning" | "video-projector" | "vr-tag" | "warning-hexagon" | "wristwatch" | "doc-magnifying-glass" | "doc-magnifying-glass-in" | "doc-star" | "doc-star-in" | "empty-page" | "folder-warning" | "google-docs" | "journal-page" | "multiple-pages" | "multiple-pages-empty" | "multiple-pages-minus" | "multiple-pages-plus" | "multiple-pages-xmark" | "page" | "page-edit" | "page-minus" | "page-minus-in" | "page-plus" | "page-plus-in" | "page-search" | "page-star" | "privacy-policy" | "submit-document" | "bold-square" | "bold-square-solid" | "compress-lines" | "edit-pencil" | "expand-lines" | "font-question" | "italic-square" | "italic-square-solid" | "list-select" | "numbered-list-left" | "numbered-list-right" | "scissor" | "scissor-alt" | "task-list" | "text-arrows-up-down" | "text-magnifying-glass" | "text-square" | "text-square-solid" | "underline-square" | "underline-square-solid" | "emoji" | "emoji-ball" | "emoji-blink-left" | "emoji-blink-right" | "emoji-look-down" | "emoji-look-left" | "emoji-look-right" | "emoji-look-up" | "emoji-puzzled" | "emoji-quite" | "emoji-really" | "emoji-sad" | "emoji-satisfied" | "emoji-sing-left" | "emoji-sing-left-note" | "emoji-sing-right" | "emoji-sing-right-note" | "emoji-surprise-alt" | "emoji-talking-angry" | "emoji-talking-happy" | "emoji-think-left" | "emoji-think-right" | "apple-wallet" | "bitcoin-circle" | "bitcoin-circle-solid" | "bitcoin-rotate-out" | "card-lock" | "card-no-access" | "card-reader" | "card-shield" | "card-wallet" | "cash-solid" | "coin-slash" | "coins-swap" | "commodity" | "credit-card-slash" | "credit-cards" | "dogecoin-circle" | "dogecoin-circle-solid" | "dogecoin-rotate-out" | "dollar" | "dollar-circle" | "dollar-circle-solid" | "ethereum-circle" | "ethereum-circle-solid" | "ethereum-rotate-out" | "euro-square" | "euro-square-solid" | "hand-card" | "hand-cash" | "hand-contactless" | "litecoin-circle" | "litecoin-circle-solid" | "litecoin-rotate-out" | "lot-of-cash" | "mastercard-card" | "money-square" | "money-square-solid" | "percent-rotate-out" | "receive-dollars" | "receive-euros" | "receive-pounds" | "receive-yens" | "safe-arrow-left" | "safe-arrow-right" | "safe-open" | "send-dollars" | "send-euros" | "send-pounds" | "send-yens" | "yen" | "yen-square" | "yen-square-solid" | "apple-half" | "bbq" | "chocolate" | "coffee-cup" | "cracked-egg" | "cutlery" | "glass-empty" | "glass-half" | "glass-half-alt" | "ice-cream-solid" | "orange-half" | "orange-slice" | "orange-slice-alt" | "arcade" | "archery-match" | "bishop" | "bright-crown" | "bright-star" | "hexagon-dice" | "playstation-gamepad" | "potion" | "spades" | "drag-hand-gesture" | "one-finger-select-hand-gesture" | "open-select-hand-gesture" | "peace-hand" | "reminder-hand-gesture" | "single-tap-gesture" | "spock-hand-gesture" | "swipe-down-gesture" | "swipe-left-gesture" | "swipe-right-gesture" | "swipe-two-fingers-down-gesture" | "swipe-two-fingers-left-gesture" | "swipe-two-fingers-right-gesture" | "swipe-two-fingers-up-gesture" | "swipe-up-gesture" | "git-cherry-pick-commit" | "git-solid" | "github-circle" | "gitlab-full" | "repository" | "donate" | "health-shield" | "healthcare" | "home-hospital" | "hospital-circle-solid" | "pharmacy-cross-circle" | "pharmacy-cross-tag" | "weight-alt" | "bed-ready" | "box-iso" | "closet" | "dimmer-switch" | "director-chair" | "domotic-warning" | "drawer" | "home-alt" | "home-alt-slim" | "home-alt-slim-horiz" | "home-sale" | "home-secure" | "home-simple" | "home-simple-door" | "home-table" | "home-temperature-in" | "home-temperature-out" | "home-user" | "light-bulb-off" | "light-bulb-on" | "pillow" | "rounded-mirror" | "sleeper-chair" | "small-lamp" | "small-lamp-alt" | "two-seater-sofa" | "fingerprint-check-circle" | "fingerprint-circle" | "fingerprint-lock-circle" | "fingerprint-square" | "fingerprint-xmark-circle" | "iris-scan" | "mobile-fingerprint" | "mobile-voice" | "scanning" | "voice" | "voice-check" | "voice-circle" | "voice-lock-circle" | "voice-scan" | "voice-square" | "voice-xmark" | "cell-2x2" | "corner-bottom-left" | "corner-bottom-right" | "corner-top-left" | "corner-top-right" | "grid-minus" | "grid-plus" | "grid-xmark" | "layout-left" | "layout-right" | "table-2-columns" | "view-columns-2" | "view-columns-3" | "view-structure-down" | "view-structure-up" | "map-pin-xmark" | "map-xmark" | "maps-arrow" | "maps-arrow-diagonal" | "maps-arrow-xmark" | "maps-go-straight" | "maps-turn-back" | "maps-turn-left" | "maps-turn-right" | "meter-arrow-down-right" | "navigator" | "navigator-alt" | "position" | "rhombus-arrow-right" | "rhombus-arrow-right-solid" | "suggestion" | "u-turn-arrow-left" | "u-turn-arrow-right" | "album-carousel" | "album-list" | "album-open" | "backward-15-seconds" | "forward-15-seconds" | "headset-bolt" | "headset-bolt-solid" | "headset-solid" | "headset-warning" | "headset-warning-solid" | "lullaby" | "music-double-note" | "music-double-note-plus" | "music-note-plus-solid" | "music-note-solid" | "rewind-solid" | "skip-next-solid" | "skip-prev" | "skip-prev-solid" | "african-tree" | "ecology-book" | "organic-food" | "organic-food-square" | "soil" | "soil-alt" | "vegan-circle" | "vegan-square" | "watering-soil" | "arrow-down-left-circle-solid" | "arrow-down-left-square-solid" | "arrow-down-right-circle-solid" | "arrow-down-right-square-solid" | "arrow-down-tag" | "arrow-enlarge-tag" | "arrow-left-tag" | "arrow-left-tag-solid" | "arrow-reduce-tag" | "arrow-right-tag" | "arrow-right-tag-solid" | "arrow-separate" | "arrow-separate-vertical" | "arrow-union" | "arrow-union-vertical" | "arrow-up-left-circle-solid" | "arrow-up-left-square-solid" | "arrow-up-right-circle-solid" | "arrow-up-right-square-solid" | "arrow-up-tag" | "compass-solid" | "divide-three" | "divide-three-solid" | "dots-grid-3x3" | "dots-grid-3x3-solid" | "drag-solid" | "fast-arrow-down" | "fast-arrow-down-square" | "fast-arrow-down-square-solid" | "fast-arrow-left" | "fast-arrow-left-square" | "fast-arrow-left-square-solid" | "fast-arrow-right" | "fast-arrow-right-square" | "fast-arrow-right-square-solid" | "fast-arrow-up" | "fast-arrow-up-square" | "fast-arrow-up-square-solid" | "fast-down-circle" | "fast-left-circle" | "fast-right-circle" | "fast-up-circle" | "filter-list-circle" | "filter-list-circle-solid" | "horizontal-merge" | "long-arrow-down-left" | "long-arrow-down-left-solid" | "long-arrow-down-right" | "long-arrow-down-right-solid" | "long-arrow-left-down" | "long-arrow-left-down-solid" | "long-arrow-left-up" | "long-arrow-left-up-solid" | "long-arrow-right-down" | "long-arrow-right-down-solid" | "long-arrow-right-up" | "long-arrow-right-up-solid" | "long-arrow-up-left" | "long-arrow-up-left-solid" | "long-arrow-up-right" | "long-arrow-up-right-solid" | "more-horiz-circle" | "more-vert-circle" | "nav-arrow-down" | "nav-arrow-down-solid" | "nav-arrow-left" | "nav-arrow-left-solid" | "nav-arrow-right" | "nav-arrow-right-solid" | "nav-arrow-up" | "nav-arrow-up-solid" | "page-down" | "page-down-solid" | "page-left" | "page-left-solid" | "page-right" | "page-right-solid" | "page-up" | "page-up-solid" | "path-arrow" | "path-arrow-solid" | "shortcut-square" | "shortcut-square-solid" | "sidebar-collapse" | "sidebar-expand" | "vertical-merge" | "area-search" | "binocular" | "bookmark-circle" | "bookmark-circle-solid" | "filter-solid" | "label-solid" | "pin-slash" | "pin-slash-solid" | "pin-solid" | "star-dashed" | "star-half-dashed" | "three-stars" | "three-stars-solid" | "alarm-solid" | "battery-indicator" | "circle-spark" | "dash-flag" | "de-compress" | "file-not-found" | "gas" | "half-moon" | "lifebelt" | "link-xmark" | "minus-square-dashed" | "number-0-square" | "number-0-square-solid" | "number-1-square" | "number-1-square-solid" | "number-2-square" | "number-2-square-solid" | "number-3-square" | "number-3-square-solid" | "number-4-square" | "number-4-square-solid" | "number-5-square" | "number-5-square-solid" | "number-6-square" | "number-6-square-solid" | "number-7-square" | "number-7-square-solid" | "number-8-square" | "number-8-square-solid" | "number-9-square" | "number-9-square-solid" | "page-flip" | "plus-square-dashed" | "spark-solid" | "sparks" | "sparks-solid" | "split-area" | "split-square-dashed" | "timer-solid" | "triangle-flag" | "triangle-flag-circle" | "triangle-flag-two-stripes" | "white-flag" | "white-flag-solid" | "auto-flash" | "avi-format" | "closed-captions-tag" | "closed-captions-tag-solid" | "collapse" | "enlarge" | "flash-solid" | "fx" | "fx-tag" | "fx-tag-solid" | "gif-format" | "hd-display" | "hd-display-solid" | "jpeg-format" | "jpg-format" | "media-image" | "media-image-folder" | "media-image-list" | "media-image-plus" | "media-image-xmark" | "media-video" | "media-video-folder" | "media-video-list" | "media-video-plus" | "media-video-xmark" | "mpeg-format" | "panorama-enlarge" | "panorama-reduce" | "png-format" | "raw-format" | "rotate-camera-left" | "rotate-camera-right" | "svg-format" | "tif-format" | "tiff-format" | "video-camera-off" | "webp-format" | "brain-electricity" | "brain-research" | "brain-warning" | "cooling-square" | "cooling-square-solid" | "depth" | "diameter-solid" | "droplet-snow-flake-in" | "droplet-snow-flake-in-solid" | "flask-solid" | "graduation-cap-solid" | "heating-square" | "heating-square-solid" | "inclination" | "magnet-energy" | "magnet-solid" | "microscope-solid" | "moon-sat" | "planet-alt" | "planet-sat" | "planet-solid" | "radiation-solid" | "radius-solid" | "round-flask" | "round-flask-solid" | "rubik-cube" | "test-tube-solid" | "vials-solid" | "historic-shield" | "historic-shield-alt" | "ip-address-tag" | "key-back" | "key-xmark" | "lock-slash" | "open-vpn" | "password-check" | "password-cursor" | "password-xmark" | "pc-check" | "pc-firewall" | "pc-no-entry" | "pc-warning" | "security-pass" | "shield-alt" | "shield-download" | "shield-eye" | "shield-loading" | "shield-plus-in" | "shield-upload" | "shield-xmark" | "tower-check" | "tower-no-access" | "tower-warning" | "minus-hexagon" | "cart-alt" | "clock-rotate-right" | "consumable" | "shopping-bag-arrow-down" | "shopping-bag-arrow-up" | "shopping-bag-pocket" | "shopping-bag-warning" | "shopping-code" | "shopping-code-check" | "shopping-code-xmark" | "simple-cart" | "user-bag" | "user-cart" | "app-store" | "app-store-solid" | "behance-tag" | "facebook-tag" | "google-circle" | "google-circle-solid" | "peerlist-solid" | "pocket-solid" | "post-solid" | "rss-feed-tag" | "rss-feed-tag-solid" | "snapchat-solid" | "telegram-circle" | "tiktok-solid" | "whatsapp-solid" | "youtube-solid" | "accessibility-sign" | "accessibility-tech" | "apple-mac" | "apple-shortcuts" | "apple-shortcuts-solid" | "battery-25" | "battery-75" | "battery-slash" | "bin" | "bin-full" | "bin-half" | "bin-minus-in" | "bin-plus-in" | "brightness-window" | "calendar-arrow-down-solid" | "calendar-arrow-up-solid" | "calendar-check-solid" | "calendar-minus-solid" | "calendar-plus-solid" | "calendar-rotate" | "calendar-rotate-solid" | "calendar-xmark-solid" | "control-slider" | "cpu-warning" | "dashboard-dots" | "dashboard-speed" | "download-data-window" | "energy-usage-window" | "favourite-window" | "finder" | "fingerprint-window" | "half-cookie" | "heart-arrow-down" | "input-output" | "ios-settings" | "key-command" | "log-no-access" | "mac-control-key" | "mac-dock" | "mac-option-key" | "mac-os-window" | "mouse-button-left" | "mouse-button-right" | "multi-mac-os-window" | "multi-window" | "off-tag" | "on-tag" | "pause-window" | "pc-mouse" | "reload-window" | "search-engine" | "search-window" | "secure-window" | "settings-profiles" | "square-cursor" | "square-cursor-solid" | "switch-off" | "switch-on" | "system-restart" | "system-shut" | "terminal-tag" | "upload-data-window" | "warning-window" | "web-window" | "web-window-energy-consumption" | "web-window-energy-consumption-solid" | "web-window-solid" | "web-window-xmark" | "web-window-xmark-solid" | "window-check" | "window-lock" | "window-no-access" | "window-tabs" | "window-tabs-solid" | "window-xmark" | "angle-tool" | "airplane-helix" | "airplane-helix-45deg" | "airplane-rotation" | "bus-green" | "drone-charge-full" | "drone-charge-half" | "drone-charge-low" | "drone-check" | "drone-landing" | "drone-refresh" | "drone-take-off" | "drone-xmark" | "ev-charge" | "ev-charge-alt" | "ev-plug" | "ev-plug-charging" | "ev-plug-xmark" | "ev-tag" | "gas-tank" | "gas-tank-droplet" | "hand-brake" | "hot-air-balloon" | "package-lock" | "truck-green" | "truck-length" | "vehicle-green" | "f-square" | "n-square" | "o-square" | "y-square" | "z-square" | "community" | "learning" | "people-tag" | "profile-circle" | "user-badge-check" | "user-crown" | "user-love" | "cloud-sunny" | "heavy-rain" | "snow-flake" | "sun-light" | "temperature-down" | "temperature-up">): import("react").JSX.Element;
1682
+ ({ 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" | "reduce" | "windows" | "linear" | "ease-in" | "ease-out" | "ease-in-out" | "translate" | "type" | "running" | "flip" | "search" | "repeat" | "bold" | "link" | "text" | "menu" | "timer" | "list" | "key" | "position" | "code" | "label" | "table" | "circle" | "x" | "antenna" | "archive" | "arrow-up-left" | "arrow-up-right" | "asterisk" | "attachment" | "augmented-reality" | "barcode" | "bluetooth" | "book" | "bookmark" | "clipboard-check" | "copyright" | "crop" | "crown" | "cube-scan" | "cursor-pointer" | "desk" | "dialpad" | "dns" | "download" | "download-circle" | "drag" | "eject" | "eye" | "eye-closed" | "fingerprint" | "flare" | "flash-off" | "group" | "hdr" | "help-circle" | "import" | "key-minus" | "key-plus" | "magnet" | "mail" | "message" | "message-text" | "microphone-minus" | "microphone-plus" | "mouse-scroll-wheel" | "network" | "package" | "pin" | "playlist-play" | "playlist-plus" | "plus-circle" | "pocket" | "podcast" | "post" | "pound" | "presentation" | "priority-high" | "redo" | "refresh-circle" | "repeat-once" | "restart" | "rewind" | "send" | "server" | "shield-search" | "trademark" | "undo" | "upload" | "usb" | "weight" | "wifi" | "wifi-off" | "shield-check" | "egg" | "flower" | "leaf" | "pine-tree" | "tree" | "message-alert" | "shield-alert" | "bug" | "fish" | "jellyfish" | "linux" | "arrow-down" | "arrow-down-circle" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-left-circle" | "arrow-right" | "arrow-right-circle" | "arrow-up" | "arrow-up-circle" | "forward" | "refresh" | "reply" | "shuffle" | "album" | "headset" | "music-note" | "music-note-plus" | "sine-wave" | "square-wave" | "air-conditioner" | "battery-50" | "battery-charging" | "car" | "ev-station" | "lock" | "smoking" | "bank" | "cash" | "credit-card" | "piggy-bank" | "safe" | "wallet" | "apple" | "bitbucket" | "box" | "codepen" | "creative-commons" | "facebook" | "git" | "github" | "google" | "google-drive" | "instagram" | "linkedin" | "mastodon" | "nintendo-switch" | "npm" | "pinterest" | "snapchat" | "spotify" | "trello" | "twitter" | "unity" | "whatsapp" | "youtube" | "phone" | "phone-minus" | "phone-paused" | "phone-plus" | "glasses" | "cloud" | "cloud-check" | "cloud-download" | "cloud-sync" | "cloud-upload" | "palette" | "database" | "database-check" | "database-export" | "database-search" | "database-settings" | "alarm" | "calendar" | "calendar-check" | "calendar-minus" | "calendar-plus" | "clock" | "timer-off" | "code-brackets" | "laptop" | "ruler" | "folder" | "folder-minus" | "folder-plus" | "folder-settings" | "text-box" | "bread-slice" | "cookie" | "glass-fragile" | "ice-cream" | "check" | "check-circle" | "minus-circle" | "crown-circle" | "flask" | "gamepad" | "heart" | "medal" | "pokeball" | "puzzle" | "shield" | "tournament" | "compass" | "hammer" | "tools" | "wrench" | "bed" | "gift" | "balcony" | "bell" | "camera" | "dishwasher" | "fridge" | "garage" | "home" | "lamp" | "mirror" | "pause" | "play" | "printer" | "skip-next" | "sofa" | "washing-machine" | "book-lock" | "calculator" | "diameter" | "minus" | "plus" | "radius" | "brain" | "hospital" | "microphone" | "airplane" | "bus" | "bus-stop" | "train" | "tram" | "bell-off" | "skateboarding" | "church" | "city" | "parking" | "atom" | "dna" | "microscope" | "rocket" | "test-tube" | "cube" | "cylinder" | "hexagon" | "octagon" | "pentagon" | "rhombus" | "sphere" | "square" | "star" | "triangle" | "cart" | "cart-minus" | "cart-plus" | "basketball" | "bicycle" | "boxing-glove" | "football" | "golf" | "skateboard" | "strategy" | "tennis-ball" | "trophy" | "yoga" | "border-bottom" | "border-left" | "border-right" | "border-top" | "airplane-off" | "drone" | "elevator" | "tunnel" | "truck" | "movie" | "view-grid" | "flash" | "umbrella" | "arrow-down-circle-solid" | "arrow-left-circle-solid" | "arrow-right-circle-solid" | "arrow-up-circle-solid" | "bookmark-solid" | "camera-solid" | "check-circle-solid" | "clock-solid" | "credit-card-solid" | "divide" | "divide-solid" | "eye-solid" | "forward-solid" | "hashtag" | "heart-solid" | "italic" | "language" | "light-bulb" | "link-slash" | "map-pin" | "megaphone" | "microphone-solid" | "minus-circle-solid" | "pause-solid" | "phone-solid" | "play-solid" | "plus-circle-solid" | "qr-code" | "server-solid" | "shopping-bag" | "slash" | "star-solid" | "strikethrough" | "trash" | "trash-solid" | "tv" | "underline" | "user" | "user-circle" | "user-plus" | "video-camera" | "wallet-solid" | "accessibility" | "activity" | "airplay" | "app-window" | "arrows-up-from-line" | "at-sign" | "badge-check" | "battery-full" | "battery-warning" | "building" | "calendar-arrow-down" | "calendar-arrow-up" | "coins" | "combine" | "component" | "computer" | "copy" | "cpu" | "database-backup" | "dribbble" | "droplet" | "euro" | "expand" | "figma" | "frame" | "git-branch" | "git-compare" | "git-fork" | "git-merge" | "git-pull-request" | "git-pull-request-closed" | "globe" | "graduation-cap" | "handbag" | "hard-drive" | "hourglass" | "log-in" | "log-out" | "mail-open" | "map-pin-minus" | "map-pin-plus" | "maximize" | "non-binary" | "quote" | "radiation" | "scan-barcode" | "scan-qr-code" | "settings" | "shield-minus" | "shirt" | "square-dashed" | "terminal" | "thumbs-down" | "thumbs-up" | "user-star" | "vegan" | "wind" | "zoom-in" | "zoom-out" | "align-center" | "align-justify" | "align-left" | "align-right" | "check-square" | "edit" | "git-commit" | "minus-square" | "plus-square" | "x-square" | "antenna-off" | "arrow-down-left-circle" | "arrow-down-right-circle" | "arrow-up-left-circle" | "arrow-up-right-circle" | "border-inner" | "bounce-left" | "bounce-right" | "brightness" | "color-filter" | "color-picker" | "cut" | "dashboard" | "database-star" | "droplet-check" | "droplet-half" | "ease-in-control-point" | "ease-out-control-point" | "face-id" | "fingerprint-scan" | "gps" | "help-square" | "hexagon-plus" | "home-shield" | "hospital-circle" | "info-circle" | "input-search" | "keyframe" | "keyframe-align-center" | "keyframe-align-horizontal" | "keyframe-align-vertical" | "keyframes" | "lock-square" | "notes" | "packages" | "pacman" | "percentage" | "planet" | "playlist" | "question-mark" | "rings" | "screenshot" | "shield-question" | "shopping-bag-check" | "shopping-bag-minus" | "shopping-bag-plus" | "spiral" | "stretching" | "swimming" | "text-size" | "tower" | "transition-left" | "transition-right" | "treadmill" | "trekking" | "user-scan" | "user-square" | "view-360" | "wash" | "xbox-a" | "xbox-b" | "xbox-x" | "xbox-y" | "arrow-down-left-square" | "arrow-down-right-square" | "arrow-up-left-square" | "arrow-up-right-square" | "bag" | "behance" | "c-square" | "discord" | "emoji-surprise" | "exclude" | "graph-down" | "graph-up" | "h-square" | "heptagon" | "intersect" | "journal" | "medium" | "paypal" | "shop" | "shop-window" | "slash-square" | "snow" | "sort-down" | "sort-up" | "suitcase" | "telegram" | "threads" | "tiktok" | "union" | "yelp" | "calendar-xmark" | "floppy-disk" | "user-xmark" | "xmark" | "compress" | "motorcycle" | "industry" | "compact-disc" | "battery-empty" | "pizza-slice" | "dice-five" | "dice-four" | "dice-one" | "dice-six" | "dice-three" | "dice-two" | "soap" | "vials" | "temperature-high" | "temperature-low" | "bowling-ball" | "input-field" | "erase" | "magic-wand" | "new-tab" | "select-window" | "delivery" | "hd" | "warning-square" | "delivery-truck" | "dew-point" | "fog" | "rain" | "thunderstorm" | "bonfire" | "female" | "infinite" | "male" | "asana" | "html5" | "lens" | "metro" | "peerlist" | "rook" | "safari" | "stackoverflow" | "adobe-after-effects" | "adobe-illustrator" | "adobe-indesign" | "adobe-lightroom" | "adobe-photoshop" | "adobe-xd" | "google-home" | "google-one" | "spark" | "open-in-browser" | "rss-feed" | "candlestick-chart" | "contactless" | "leaderboard" | "chat-bubble" | "phone-disabled" | "bathroom" | "crib" | "stroller" | "horizontal-split" | "table-rows" | "vertical-split" | "wrap-text" | "filter-alt" | "filter-list" | "more-horiz" | "more-vert" | "shield-broken" | "arc-3d" | "arc-3d-center-point" | "box-3d-center" | "box-3d-point" | "box-3d-three-points" | "bridge-3d" | "bridge-surface" | "constrained-surface" | "cube-bandage" | "cube-cut-with-curve" | "cube-dots" | "cube-dots-solid" | "cube-hole" | "cube-replace-face" | "cube-scan-solid" | "curve-array" | "ellipse-3d" | "ellipse-3d-three-points" | "extrude" | "face-3d-draft" | "fillet-3d" | "loft-3d" | "one-point-circle" | "orthogonal-view" | "perspective-view" | "pipe-3d" | "project-curve-3d" | "select-edge-3d" | "select-face-3d" | "select-point-3d" | "sigma-function" | "square-3d-corner-to-corner" | "square-3d-from-center" | "square-3d-three-points" | "sweep-3d" | "three-points-circle" | "two-points-circle" | "unjoin-3d" | "xray-view" | "check-square-solid" | "double-check" | "download-circle-solid" | "download-square" | "download-square-solid" | "erase-solid" | "floppy-disk-arrow-in" | "floppy-disk-arrow-out" | "help-circle-solid" | "help-square-solid" | "info-circle-solid" | "line-space" | "menu-scale" | "minus-square-solid" | "open-in-window" | "open-new-window" | "paste-clipboard" | "plus-square-solid" | "prohibition" | "redo-action" | "redo-circle" | "redo-circle-solid" | "refresh-circle-solid" | "refresh-double" | "share-android" | "share-android-solid" | "share-ios" | "undo-action" | "undo-circle" | "undo-circle-solid" | "upload-square" | "upload-square-solid" | "warning-circle" | "warning-circle-solid" | "warning-square-solid" | "warning-triangle" | "warning-triangle-solid" | "xmark-circle" | "xmark-circle-solid" | "xmark-square" | "xmark-square-solid" | "archery" | "arrow-archery" | "basketball-field" | "birthday-cake" | "book-solid" | "book-stack" | "bookmark-book" | "cigarette-slash" | "cinema-old" | "cycling" | "favourite-book" | "fire-flame" | "fishing" | "football-ball" | "gym" | "leaderboard-star" | "math-book" | "medal-1st" | "medal-1st-solid" | "medal-solid" | "no-smoking-circle" | "open-book" | "percentage-circle" | "percentage-circle-solid" | "percentage-square" | "percentage-square-solid" | "report-columns" | "reports" | "reports-solid" | "sea-and-sun" | "sea-waves" | "soccer-ball" | "stat-down" | "stat-up" | "tennis-ball-alt" | "waist" | "walking" | "wolf" | "wolf-solid" | "dot-arrow-down" | "dot-arrow-left" | "dot-arrow-right" | "dot-arrow-up" | "ease-curve-control-points" | "keyframe-align-center-solid" | "keyframe-align-horizontal-solid" | "keyframe-align-vertical-solid" | "keyframe-minus" | "keyframe-minus-in" | "keyframe-minus-in-solid" | "keyframe-minus-solid" | "keyframe-plus" | "keyframe-plus-in" | "keyframe-plus-in-solid" | "keyframe-plus-solid" | "keyframe-position" | "keyframe-position-solid" | "keyframe-solid" | "keyframes-couple" | "keyframes-couple-solid" | "keyframes-minus" | "keyframes-plus" | "keyframes-solid" | "transition-down" | "transition-down-solid" | "transition-left-solid" | "transition-right-solid" | "transition-up" | "transition-up-solid" | "microphone-check" | "microphone-check-solid" | "microphone-minus-solid" | "microphone-mute" | "microphone-mute-solid" | "microphone-plus-solid" | "microphone-speaking" | "microphone-speaking-solid" | "microphone-warning" | "microphone-warning-solid" | "sound-high" | "sound-high-solid" | "sound-low" | "sound-low-solid" | "sound-min" | "sound-min-solid" | "sound-off" | "sound-off-solid" | "bathroom-solid" | "cellar" | "church-side" | "farm" | "house-rooms" | "neighbourhood" | "oil-industry" | "planimetry" | "shop-four-tiles" | "shop-four-tiles-window" | "agile" | "okrs" | "presentation-solid" | "priority-down" | "priority-down-solid" | "priority-high-solid" | "priority-medium" | "priority-medium-solid" | "priority-up" | "priority-up-solid" | "stats-down-square" | "stats-down-square-solid" | "stats-report" | "stats-up-square" | "stats-up-square-solid" | "beach-bag" | "hat" | "pants" | "pants-pockets" | "sandals" | "scarf" | "shirt-tank-top" | "short-pants" | "short-pants-pockets" | "slips" | "cloud-bookmark" | "cloud-desync" | "cloud-square" | "cloud-square-solid" | "cloud-xmark" | "google-drive-check" | "google-drive-sync" | "google-drive-warning" | "app-notification" | "app-notification-solid" | "arrow-email-forward" | "at-sign-circle" | "bell-notification" | "bell-notification-solid" | "bubble-download" | "bubble-income" | "bubble-outcome" | "bubble-search" | "bubble-search-solid" | "bubble-star" | "bubble-upload" | "bubble-warning" | "bubble-xmark" | "bubble-xmark-solid" | "chat-bubble-check" | "chat-bubble-check-solid" | "chat-bubble-empty" | "chat-bubble-empty-solid" | "chat-bubble-question" | "chat-bubble-question-solid" | "chat-bubble-solid" | "chat-bubble-translate" | "chat-bubble-translate-solid" | "chat-bubble-warning" | "chat-bubble-warning-solid" | "chat-bubble-xmark" | "chat-bubble-xmark-solid" | "chat-lines" | "chat-lines-solid" | "chat-minus-in" | "chat-minus-in-solid" | "chat-plus-in" | "chat-plus-in-solid" | "facetime" | "facetime-solid" | "forward-message" | "headset-help" | "internet" | "mail-in" | "mail-in-solid" | "mail-open-solid" | "mail-out" | "mail-out-solid" | "mail-solid" | "message-alert-solid" | "message-solid" | "message-text-solid" | "multi-bubble" | "multi-bubble-solid" | "phone-income" | "phone-income-solid" | "phone-minus-solid" | "phone-outcome" | "phone-outcome-solid" | "phone-paused-solid" | "phone-plus-solid" | "phone-xmark" | "phone-xmark-solid" | "podcast-solid" | "quote-message" | "quote-message-solid" | "quote-solid" | "reply-to-message" | "send-diagonal" | "send-diagonal-solid" | "send-mail" | "send-mail-solid" | "send-solid" | "time-zone" | "www" | "airplay-solid" | "antenna-signal" | "antenna-signal-tag" | "bluetooth-tag" | "bluetooth-tag-solid" | "cable-tag" | "cable-tag-solid" | "data-transfer-both" | "data-transfer-check" | "data-transfer-down" | "data-transfer-up" | "data-transfer-warning" | "network-left" | "network-left-solid" | "network-reverse" | "network-reverse-solid" | "network-right" | "network-right-solid" | "network-solid" | "plug-type-a" | "plug-type-c" | "plug-type-g" | "plug-type-l" | "private-wifi" | "server-connection" | "server-connection-solid" | "usb-solid" | "wifi-signal-none" | "wifi-signal-none-solid" | "wifi-tag" | "wifi-tag-solid" | "wifi-warning" | "wifi-warning-solid" | "wifi-xmark" | "database-check-solid" | "database-monitor" | "database-restore" | "database-script" | "database-script-minus" | "database-script-plus" | "database-solid" | "database-stats" | "database-tag" | "database-tag-solid" | "database-warning" | "database-xmark" | "database-xmark-solid" | "adobe-after-effects-solid" | "adobe-illustrator-solid" | "adobe-indesign-solid" | "adobe-lightroom-solid" | "adobe-photoshop-solid" | "adobe-xd-solid" | "align-bottom-box" | "align-bottom-box-solid" | "align-horizontal-centers" | "align-horizontal-centers-solid" | "align-horizontal-spacing" | "align-horizontal-spacing-solid" | "align-left-box" | "align-left-box-solid" | "align-right-box" | "align-right-box-solid" | "align-top-box" | "align-top-box-solid" | "align-vertical-centers" | "align-vertical-centers-solid" | "align-vertical-spacing" | "align-vertical-spacing-solid" | "axes" | "border-bl" | "border-br" | "border-out" | "border-tl" | "border-tr" | "center-align" | "center-align-solid" | "collage-frame" | "color-wheel" | "comp-align-bottom" | "comp-align-bottom-solid" | "comp-align-left" | "comp-align-left-solid" | "comp-align-right" | "comp-align-right-solid" | "comp-align-top" | "comp-align-top-solid" | "component-solid" | "crop-rotate-bl" | "crop-rotate-br" | "crop-rotate-tl" | "crop-rotate-tr" | "design-nib" | "design-nib-solid" | "design-pencil" | "droplet-solid" | "fill-color" | "fill-color-solid" | "flip-reverse" | "frame-alt" | "frame-alt-empty" | "frame-minus-in" | "frame-plus-in" | "frame-select" | "frame-simple" | "frame-tool" | "frame-tool-solid" | "horiz-distribution-left" | "horiz-distribution-left-solid" | "horiz-distribution-right" | "horiz-distribution-right-solid" | "intersect-alt" | "lens-plus" | "mask-square" | "position-align" | "precision-tool" | "ruler-arrows" | "ruler-combine" | "ruler-minus" | "ruler-plus" | "scale-frame-enlarge" | "scale-frame-reduce" | "selective-tool" | "style-border" | "style-border-solid" | "substract" | "union-alt" | "union-horiz-alt" | "apple-swift" | "bug-solid" | "code-brackets-square" | "css3" | "developer" | "electronics-chip" | "electronics-transistor" | "iconoir" | "kanban-board" | "laptop-dev-mode" | "mobile-dev-mode" | "npm-square" | "polar-sh" | "unity-5" | "vue-js" | "apple-imac-2021" | "apple-imac-2021-side" | "ar-tag" | "chromecast" | "chromecast-active" | "display-4k" | "laptop-charging" | "laptop-fix" | "laptop-warning" | "modern-tv" | "modern-tv-4k" | "pen-connect-bluetooth" | "pen-connect-wifi" | "pen-tablet" | "pen-tablet-connect-usb" | "pen-tablet-connect-wifi" | "printing-page" | "smartphone-device" | "tv-fix" | "tv-warning" | "video-projector" | "vr-tag" | "warning-hexagon" | "wristwatch" | "doc-magnifying-glass" | "doc-magnifying-glass-in" | "doc-star" | "doc-star-in" | "empty-page" | "folder-warning" | "google-docs" | "journal-page" | "multiple-pages" | "multiple-pages-empty" | "multiple-pages-minus" | "multiple-pages-plus" | "multiple-pages-xmark" | "page" | "page-edit" | "page-minus" | "page-minus-in" | "page-plus" | "page-plus-in" | "page-search" | "page-star" | "privacy-policy" | "submit-document" | "bold-square" | "bold-square-solid" | "compress-lines" | "edit-pencil" | "expand-lines" | "font-question" | "italic-square" | "italic-square-solid" | "list-select" | "numbered-list-left" | "numbered-list-right" | "scissor" | "scissor-alt" | "task-list" | "text-arrows-up-down" | "text-magnifying-glass" | "text-square" | "text-square-solid" | "underline-square" | "underline-square-solid" | "emoji" | "emoji-ball" | "emoji-blink-left" | "emoji-blink-right" | "emoji-look-down" | "emoji-look-left" | "emoji-look-right" | "emoji-look-up" | "emoji-puzzled" | "emoji-quite" | "emoji-really" | "emoji-sad" | "emoji-satisfied" | "emoji-sing-left" | "emoji-sing-left-note" | "emoji-sing-right" | "emoji-sing-right-note" | "emoji-surprise-alt" | "emoji-talking-angry" | "emoji-talking-happy" | "emoji-think-left" | "emoji-think-right" | "apple-wallet" | "bitcoin-circle" | "bitcoin-circle-solid" | "bitcoin-rotate-out" | "card-lock" | "card-no-access" | "card-reader" | "card-shield" | "card-wallet" | "cash-solid" | "coin-slash" | "coins-swap" | "commodity" | "credit-card-slash" | "credit-cards" | "dogecoin-circle" | "dogecoin-circle-solid" | "dogecoin-rotate-out" | "dollar" | "dollar-circle" | "dollar-circle-solid" | "ethereum-circle" | "ethereum-circle-solid" | "ethereum-rotate-out" | "euro-square" | "euro-square-solid" | "hand-card" | "hand-cash" | "hand-contactless" | "litecoin-circle" | "litecoin-circle-solid" | "litecoin-rotate-out" | "lot-of-cash" | "mastercard-card" | "money-square" | "money-square-solid" | "percent-rotate-out" | "receive-dollars" | "receive-euros" | "receive-pounds" | "receive-yens" | "safe-arrow-left" | "safe-arrow-right" | "safe-open" | "send-dollars" | "send-euros" | "send-pounds" | "send-yens" | "yen" | "yen-square" | "yen-square-solid" | "apple-half" | "bbq" | "chocolate" | "coffee-cup" | "cracked-egg" | "cutlery" | "glass-empty" | "glass-half" | "glass-half-alt" | "ice-cream-solid" | "orange-half" | "orange-slice" | "orange-slice-alt" | "arcade" | "archery-match" | "bishop" | "bright-crown" | "bright-star" | "hexagon-dice" | "playstation-gamepad" | "potion" | "spades" | "drag-hand-gesture" | "one-finger-select-hand-gesture" | "open-select-hand-gesture" | "peace-hand" | "reminder-hand-gesture" | "single-tap-gesture" | "spock-hand-gesture" | "swipe-down-gesture" | "swipe-left-gesture" | "swipe-right-gesture" | "swipe-two-fingers-down-gesture" | "swipe-two-fingers-left-gesture" | "swipe-two-fingers-right-gesture" | "swipe-two-fingers-up-gesture" | "swipe-up-gesture" | "git-cherry-pick-commit" | "git-solid" | "github-circle" | "gitlab-full" | "repository" | "donate" | "health-shield" | "healthcare" | "home-hospital" | "hospital-circle-solid" | "pharmacy-cross-circle" | "pharmacy-cross-tag" | "weight-alt" | "bed-ready" | "box-iso" | "closet" | "dimmer-switch" | "director-chair" | "domotic-warning" | "drawer" | "home-alt" | "home-alt-slim" | "home-alt-slim-horiz" | "home-sale" | "home-secure" | "home-simple" | "home-simple-door" | "home-table" | "home-temperature-in" | "home-temperature-out" | "home-user" | "light-bulb-off" | "light-bulb-on" | "pillow" | "rounded-mirror" | "sleeper-chair" | "small-lamp" | "small-lamp-alt" | "two-seater-sofa" | "fingerprint-check-circle" | "fingerprint-circle" | "fingerprint-lock-circle" | "fingerprint-square" | "fingerprint-xmark-circle" | "iris-scan" | "mobile-fingerprint" | "mobile-voice" | "scanning" | "voice" | "voice-check" | "voice-circle" | "voice-lock-circle" | "voice-scan" | "voice-square" | "voice-xmark" | "cell-2x2" | "corner-bottom-left" | "corner-bottom-right" | "corner-top-left" | "corner-top-right" | "grid-minus" | "grid-plus" | "grid-xmark" | "layout-left" | "layout-right" | "table-2-columns" | "view-columns-2" | "view-columns-3" | "view-structure-down" | "view-structure-up" | "map-pin-xmark" | "map-xmark" | "maps-arrow" | "maps-arrow-diagonal" | "maps-arrow-xmark" | "maps-go-straight" | "maps-turn-back" | "maps-turn-left" | "maps-turn-right" | "meter-arrow-down-right" | "navigator" | "navigator-alt" | "rhombus-arrow-right" | "rhombus-arrow-right-solid" | "suggestion" | "u-turn-arrow-left" | "u-turn-arrow-right" | "album-carousel" | "album-list" | "album-open" | "backward-15-seconds" | "forward-15-seconds" | "headset-bolt" | "headset-bolt-solid" | "headset-solid" | "headset-warning" | "headset-warning-solid" | "lullaby" | "music-double-note" | "music-double-note-plus" | "music-note-plus-solid" | "music-note-solid" | "rewind-solid" | "skip-next-solid" | "skip-prev" | "skip-prev-solid" | "african-tree" | "ecology-book" | "organic-food" | "organic-food-square" | "soil" | "soil-alt" | "vegan-circle" | "vegan-square" | "watering-soil" | "arrow-down-left-circle-solid" | "arrow-down-left-square-solid" | "arrow-down-right-circle-solid" | "arrow-down-right-square-solid" | "arrow-down-tag" | "arrow-enlarge-tag" | "arrow-left-tag" | "arrow-left-tag-solid" | "arrow-reduce-tag" | "arrow-right-tag" | "arrow-right-tag-solid" | "arrow-separate" | "arrow-separate-vertical" | "arrow-union" | "arrow-union-vertical" | "arrow-up-left-circle-solid" | "arrow-up-left-square-solid" | "arrow-up-right-circle-solid" | "arrow-up-right-square-solid" | "arrow-up-tag" | "compass-solid" | "divide-three" | "divide-three-solid" | "dots-grid-3x3" | "dots-grid-3x3-solid" | "drag-solid" | "fast-arrow-down" | "fast-arrow-down-square" | "fast-arrow-down-square-solid" | "fast-arrow-left" | "fast-arrow-left-square" | "fast-arrow-left-square-solid" | "fast-arrow-right" | "fast-arrow-right-square" | "fast-arrow-right-square-solid" | "fast-arrow-up" | "fast-arrow-up-square" | "fast-arrow-up-square-solid" | "fast-down-circle" | "fast-left-circle" | "fast-right-circle" | "fast-up-circle" | "filter-list-circle" | "filter-list-circle-solid" | "horizontal-merge" | "long-arrow-down-left" | "long-arrow-down-left-solid" | "long-arrow-down-right" | "long-arrow-down-right-solid" | "long-arrow-left-down" | "long-arrow-left-down-solid" | "long-arrow-left-up" | "long-arrow-left-up-solid" | "long-arrow-right-down" | "long-arrow-right-down-solid" | "long-arrow-right-up" | "long-arrow-right-up-solid" | "long-arrow-up-left" | "long-arrow-up-left-solid" | "long-arrow-up-right" | "long-arrow-up-right-solid" | "more-horiz-circle" | "more-vert-circle" | "nav-arrow-down" | "nav-arrow-down-solid" | "nav-arrow-left" | "nav-arrow-left-solid" | "nav-arrow-right" | "nav-arrow-right-solid" | "nav-arrow-up" | "nav-arrow-up-solid" | "page-down" | "page-down-solid" | "page-left" | "page-left-solid" | "page-right" | "page-right-solid" | "page-up" | "page-up-solid" | "path-arrow" | "path-arrow-solid" | "shortcut-square" | "shortcut-square-solid" | "sidebar-collapse" | "sidebar-expand" | "vertical-merge" | "area-search" | "binocular" | "bookmark-circle" | "bookmark-circle-solid" | "filter-solid" | "label-solid" | "pin-slash" | "pin-slash-solid" | "pin-solid" | "star-dashed" | "star-half-dashed" | "three-stars" | "three-stars-solid" | "alarm-solid" | "battery-indicator" | "circle-spark" | "dash-flag" | "de-compress" | "file-not-found" | "gas" | "half-moon" | "lifebelt" | "link-xmark" | "minus-square-dashed" | "number-0-square" | "number-0-square-solid" | "number-1-square" | "number-1-square-solid" | "number-2-square" | "number-2-square-solid" | "number-3-square" | "number-3-square-solid" | "number-4-square" | "number-4-square-solid" | "number-5-square" | "number-5-square-solid" | "number-6-square" | "number-6-square-solid" | "number-7-square" | "number-7-square-solid" | "number-8-square" | "number-8-square-solid" | "number-9-square" | "number-9-square-solid" | "page-flip" | "plus-square-dashed" | "spark-solid" | "sparks" | "sparks-solid" | "split-area" | "split-square-dashed" | "timer-solid" | "triangle-flag" | "triangle-flag-circle" | "triangle-flag-two-stripes" | "white-flag" | "white-flag-solid" | "auto-flash" | "avi-format" | "closed-captions-tag" | "closed-captions-tag-solid" | "collapse" | "enlarge" | "flash-solid" | "fx" | "fx-tag" | "fx-tag-solid" | "gif-format" | "hd-display" | "hd-display-solid" | "jpeg-format" | "jpg-format" | "media-image" | "media-image-folder" | "media-image-list" | "media-image-plus" | "media-image-xmark" | "media-video" | "media-video-folder" | "media-video-list" | "media-video-plus" | "media-video-xmark" | "mpeg-format" | "panorama-enlarge" | "panorama-reduce" | "png-format" | "raw-format" | "rotate-camera-left" | "rotate-camera-right" | "svg-format" | "tif-format" | "tiff-format" | "video-camera-off" | "webp-format" | "brain-electricity" | "brain-research" | "brain-warning" | "cooling-square" | "cooling-square-solid" | "depth" | "diameter-solid" | "droplet-snow-flake-in" | "droplet-snow-flake-in-solid" | "flask-solid" | "graduation-cap-solid" | "heating-square" | "heating-square-solid" | "inclination" | "magnet-energy" | "magnet-solid" | "microscope-solid" | "moon-sat" | "planet-alt" | "planet-sat" | "planet-solid" | "radiation-solid" | "radius-solid" | "round-flask" | "round-flask-solid" | "rubik-cube" | "test-tube-solid" | "vials-solid" | "historic-shield" | "historic-shield-alt" | "ip-address-tag" | "key-back" | "key-xmark" | "lock-slash" | "open-vpn" | "password-check" | "password-cursor" | "password-xmark" | "pc-check" | "pc-firewall" | "pc-no-entry" | "pc-warning" | "security-pass" | "shield-alt" | "shield-download" | "shield-eye" | "shield-loading" | "shield-plus-in" | "shield-upload" | "shield-xmark" | "tower-check" | "tower-no-access" | "tower-warning" | "minus-hexagon" | "cart-alt" | "clock-rotate-right" | "consumable" | "shopping-bag-arrow-down" | "shopping-bag-arrow-up" | "shopping-bag-pocket" | "shopping-bag-warning" | "shopping-code" | "shopping-code-check" | "shopping-code-xmark" | "simple-cart" | "user-bag" | "user-cart" | "app-store" | "app-store-solid" | "behance-tag" | "facebook-tag" | "google-circle" | "google-circle-solid" | "peerlist-solid" | "pocket-solid" | "post-solid" | "rss-feed-tag" | "rss-feed-tag-solid" | "snapchat-solid" | "telegram-circle" | "tiktok-solid" | "whatsapp-solid" | "youtube-solid" | "accessibility-sign" | "accessibility-tech" | "apple-mac" | "apple-shortcuts" | "apple-shortcuts-solid" | "battery-25" | "battery-75" | "battery-slash" | "bin" | "bin-full" | "bin-half" | "bin-minus-in" | "bin-plus-in" | "brightness-window" | "calendar-arrow-down-solid" | "calendar-arrow-up-solid" | "calendar-check-solid" | "calendar-minus-solid" | "calendar-plus-solid" | "calendar-rotate" | "calendar-rotate-solid" | "calendar-xmark-solid" | "control-slider" | "cpu-warning" | "dashboard-dots" | "dashboard-speed" | "download-data-window" | "energy-usage-window" | "favourite-window" | "finder" | "fingerprint-window" | "half-cookie" | "heart-arrow-down" | "input-output" | "ios-settings" | "key-command" | "log-no-access" | "mac-control-key" | "mac-dock" | "mac-option-key" | "mac-os-window" | "mouse-button-left" | "mouse-button-right" | "multi-mac-os-window" | "multi-window" | "off-tag" | "on-tag" | "pause-window" | "pc-mouse" | "reload-window" | "search-engine" | "search-window" | "secure-window" | "settings-profiles" | "square-cursor" | "square-cursor-solid" | "switch-off" | "switch-on" | "system-restart" | "system-shut" | "terminal-tag" | "upload-data-window" | "warning-window" | "web-window" | "web-window-energy-consumption" | "web-window-energy-consumption-solid" | "web-window-solid" | "web-window-xmark" | "web-window-xmark-solid" | "window-check" | "window-lock" | "window-no-access" | "window-tabs" | "window-tabs-solid" | "window-xmark" | "angle-tool" | "airplane-helix" | "airplane-helix-45deg" | "airplane-rotation" | "bus-green" | "drone-charge-full" | "drone-charge-half" | "drone-charge-low" | "drone-check" | "drone-landing" | "drone-refresh" | "drone-take-off" | "drone-xmark" | "ev-charge" | "ev-charge-alt" | "ev-plug" | "ev-plug-charging" | "ev-plug-xmark" | "ev-tag" | "gas-tank" | "gas-tank-droplet" | "hand-brake" | "hot-air-balloon" | "package-lock" | "truck-green" | "truck-length" | "vehicle-green" | "f-square" | "n-square" | "o-square" | "y-square" | "z-square" | "community" | "learning" | "people-tag" | "profile-circle" | "user-badge-check" | "user-crown" | "user-love" | "cloud-sunny" | "heavy-rain" | "snow-flake" | "sun-light" | "temperature-down" | "temperature-up">): import("react").JSX.Element;
1683
1683
  displayName: string;
1684
1684
  };
1685
1685
  export {};
@@ -242,7 +242,7 @@ declare const icons8IconNames: {
242
242
  };
243
243
  export type Icons8IconName = keyof typeof icons8IconNames;
244
244
  export declare const Icons8: {
245
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"sort" | "filter" | "search" | "header" | "list" | "key" | "bold" | "picture" | "circle" | "archive" | "asterisk" | "barcode" | "binoculars" | "bookmark" | "briefcase" | "cancel" | "clipboard" | "copyright" | "crop" | "download" | "eraser" | "export" | "grid" | "group" | "import" | "keyboard" | "notebook" | "ticket" | "timeline" | "undo" | "upload" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "refresh" | "rotate-left" | "rotate-right" | "share" | "music" | "lock" | "bitcoin" | "box" | "fax" | "phone" | "database" | "monitor" | "brush" | "pencil" | "file" | "folder" | "controller" | "puzzle" | "fire-extinguisher" | "bed" | "gift" | "camera" | "home" | "angle-right" | "calculator" | "minus" | "plus" | "doctor" | "film" | "airport" | "library" | "trophy" | "umbrella" | "banknotes" | "document" | "italic" | "moon" | "numbered-list" | "qr-code" | "shopping-cart" | "strikethrough" | "trash" | "underline" | "copy" | "euro" | "info" | "japanese-yen" | "settings" | "subscript" | "superscript" | "tags" | "turkish-lira" | "align-center" | "align-justify" | "align-left" | "align-right" | "bar-chart" | "columns" | "pie-chart" | "cut" | "exclamation-mark" | "news" | "pdf" | "question-mark" | "spy" | "hdd" | "indent" | "paragraph" | "paypal" | "sort-down" | "sort-up" | "stripe" | "angle-down" | "angle-left" | "angle-up" | "text-height" | "text-width" | "compress" | "paste" | "comments" | "outdent" | "circle-notch" | "checkmark" | "xls" | "idea" | "female" | "male" | "mastercard" | "visa" | "amex" | "support" | "audio-file" | "video-call" | "add-shopping-cart" | "area-chart" | "recycling" | "video-file" | "download-2" | "upload-2" | "fantasy" | "google-wallet" | "services" | "tasks" | "down-arrow" | "left-arrow" | "right-arrow" | "rupee" | "shekel" | "up-arrow" | "won" | "british-pound" | "level-down" | "level-up" | "user-female" | "organization" | "translation" | "resize-horizontal" | "resize-vertical" | "add-user" | "price-tag" | "remove-user" | "checked" | "iphone" | "circle-thin" | "rouble" | "ipad" | "student" | "electricity" | "double-left" | "double-right" | "double-up" | "alphabetical-sorting" | "insert-table" | "powerpoint" | "word" | "bank-card" | "buy" | "adventures" | "advertising" | "alphabetical-sorting-2" | "arrows-long-down" | "arrows-long-left" | "arrows-long-right" | "arrows-long-up" | "babys-room" | "cancel-2" | "cat-footprint" | "checked-2" | "chevron-down-round" | "chevron-left-round" | "chevron-right-round" | "chevron-up-round" | "code-file" | "color-dropper" | "create-new" | "dining-room" | "diploma-1" | "down-round" | "down-squared" | "electrical" | "finish-flag" | "football2" | "gender" | "gender-neutral-user" | "genderqueer" | "generic-sorting" | "generic-sorting-2" | "generic-text" | "gps-device" | "grid-2" | "grid-3" | "hospital-2" | "image-file" | "last-quarter" | "left-round" | "left-squared" | "lock-2" | "numerical-sorting-12" | "numerical-sorting-21" | "old-time-camera" | "opened-folder" | "parallel-tasks" | "pin-3" | "resize-diagonal" | "resize-four-directions" | "right-round" | "right-squared" | "rounded-rectangle" | "rounded-rectangle-filled" | "sensor" | "shutdown" | "sort-left" | "sort-right" | "todo-list" | "unlock-2" | "up-round" | "up-squared" | "us-dollar" | "user-male">): import("react").JSX.Element;
245
+ ({ 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" | "filter" | "search" | "bold" | "header" | "list" | "key" | "picture" | "circle" | "archive" | "asterisk" | "barcode" | "binoculars" | "bookmark" | "briefcase" | "cancel" | "clipboard" | "copyright" | "crop" | "download" | "eraser" | "export" | "grid" | "group" | "import" | "keyboard" | "notebook" | "ticket" | "timeline" | "undo" | "upload" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "refresh" | "rotate-left" | "rotate-right" | "share" | "music" | "lock" | "bitcoin" | "box" | "fax" | "phone" | "database" | "monitor" | "brush" | "pencil" | "file" | "folder" | "controller" | "puzzle" | "fire-extinguisher" | "bed" | "gift" | "camera" | "home" | "angle-right" | "calculator" | "minus" | "plus" | "doctor" | "film" | "airport" | "library" | "trophy" | "umbrella" | "banknotes" | "document" | "italic" | "moon" | "numbered-list" | "qr-code" | "shopping-cart" | "strikethrough" | "trash" | "underline" | "copy" | "euro" | "info" | "japanese-yen" | "settings" | "subscript" | "superscript" | "tags" | "turkish-lira" | "align-center" | "align-justify" | "align-left" | "align-right" | "bar-chart" | "columns" | "pie-chart" | "cut" | "exclamation-mark" | "news" | "pdf" | "question-mark" | "spy" | "hdd" | "indent" | "paragraph" | "paypal" | "sort-down" | "sort-up" | "stripe" | "angle-down" | "angle-left" | "angle-up" | "text-height" | "text-width" | "compress" | "paste" | "comments" | "outdent" | "circle-notch" | "checkmark" | "xls" | "idea" | "female" | "male" | "mastercard" | "visa" | "amex" | "support" | "audio-file" | "video-call" | "add-shopping-cart" | "area-chart" | "recycling" | "video-file" | "download-2" | "upload-2" | "fantasy" | "google-wallet" | "services" | "tasks" | "down-arrow" | "left-arrow" | "right-arrow" | "rupee" | "shekel" | "up-arrow" | "won" | "british-pound" | "level-down" | "level-up" | "user-female" | "organization" | "translation" | "resize-horizontal" | "resize-vertical" | "add-user" | "price-tag" | "remove-user" | "checked" | "iphone" | "circle-thin" | "rouble" | "ipad" | "student" | "electricity" | "double-left" | "double-right" | "double-up" | "alphabetical-sorting" | "insert-table" | "powerpoint" | "word" | "bank-card" | "buy" | "adventures" | "advertising" | "alphabetical-sorting-2" | "arrows-long-down" | "arrows-long-left" | "arrows-long-right" | "arrows-long-up" | "babys-room" | "cancel-2" | "cat-footprint" | "checked-2" | "chevron-down-round" | "chevron-left-round" | "chevron-right-round" | "chevron-up-round" | "code-file" | "color-dropper" | "create-new" | "dining-room" | "diploma-1" | "down-round" | "down-squared" | "electrical" | "finish-flag" | "football2" | "gender" | "gender-neutral-user" | "genderqueer" | "generic-sorting" | "generic-sorting-2" | "generic-text" | "gps-device" | "grid-2" | "grid-3" | "hospital-2" | "image-file" | "last-quarter" | "left-round" | "left-squared" | "lock-2" | "numerical-sorting-12" | "numerical-sorting-21" | "old-time-camera" | "opened-folder" | "parallel-tasks" | "pin-3" | "resize-diagonal" | "resize-four-directions" | "right-round" | "right-squared" | "rounded-rectangle" | "rounded-rectangle-filled" | "sensor" | "shutdown" | "sort-left" | "sort-right" | "todo-list" | "unlock-2" | "up-round" | "up-squared" | "us-dollar" | "user-male">): import("react").JSX.Element;
246
246
  displayName: string;
247
247
  };
248
248
  export {};
@@ -92,7 +92,7 @@ declare const ilIconNames: {
92
92
  };
93
93
  export type IlIconName = keyof typeof ilIconNames;
94
94
  export declare const Il: {
95
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"image" | "search" | "menu" | "dialog" | "select" | "attachment" | "book" | "bucket" | "comment" | "contrast" | "email" | "eye" | "flag" | "grid" | "inbox" | "pin" | "ribbon" | "tag" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "refresh" | "music" | "lock" | "box" | "dropbox" | "facebook" | "github" | "google-plus" | "instagram" | "linkedin" | "twitter" | "youtube" | "cloud" | "calendar" | "clock" | "tablet" | "pencil" | "file" | "folder" | "cup" | "card" | "heart" | "compass" | "layers" | "bell" | "camera" | "cog" | "triangle-down" | "basket" | "cart" | "envelope" | "moon" | "user" | "users" | "dribbble" | "ellipsis" | "house" | "mic" | "unlock" | "brightness" | "dashboard" | "location" | "notification" | "world" | "behance" | "paypal" | "mobile" | "money" | "url" | "conversation" | "triangle-up" | "drop" | "add-user" | "pie" | "market" | "videocamera" | "controls" | "small-arrow-down" | "small-arrow-left" | "small-arrow-right" | "small-arrow-up" | "thumbs">): import("react").JSX.Element;
95
+ ({ 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<"search" | "image" | "menu" | "dialog" | "select" | "attachment" | "book" | "bucket" | "comment" | "contrast" | "email" | "eye" | "flag" | "grid" | "inbox" | "pin" | "ribbon" | "tag" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "refresh" | "music" | "lock" | "box" | "dropbox" | "facebook" | "github" | "google-plus" | "instagram" | "linkedin" | "twitter" | "youtube" | "cloud" | "calendar" | "clock" | "tablet" | "pencil" | "file" | "folder" | "cup" | "card" | "heart" | "compass" | "layers" | "bell" | "camera" | "cog" | "triangle-down" | "basket" | "cart" | "envelope" | "moon" | "user" | "users" | "dribbble" | "ellipsis" | "house" | "mic" | "unlock" | "brightness" | "dashboard" | "location" | "notification" | "world" | "behance" | "paypal" | "mobile" | "money" | "url" | "conversation" | "triangle-up" | "drop" | "add-user" | "pie" | "market" | "videocamera" | "controls" | "small-arrow-down" | "small-arrow-left" | "small-arrow-right" | "small-arrow-up" | "thumbs">): import("react").JSX.Element;
96
96
  displayName: string;
97
97
  };
98
98
  export {};
@@ -1365,7 +1365,7 @@ declare const ionIconNames: {
1365
1365
  };
1366
1366
  export type IonIconName = keyof typeof ionIconNames;
1367
1367
  export declare const Ion: {
1368
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"push" | "map" | "filter" | "scale" | "image" | "link" | "search" | "text" | "alert" | "checkbox" | "menu" | "radio" | "timer" | "list" | "key" | "repeat" | "body" | "code" | "time" | "ellipse" | "stop" | "archive" | "archive-outline" | "at" | "backspace" | "backspace-outline" | "bandage" | "barcode" | "binoculars" | "bluetooth" | "book" | "book-outline" | "bookmark" | "bookmark-outline" | "briefcase" | "briefcase-outline" | "clipboard" | "clipboard-outline" | "close-outline" | "contrast" | "crop" | "diamond" | "diamond-outline" | "download" | "download-outline" | "eye" | "eye-off" | "eye-off-outline" | "eye-outline" | "filter-outline" | "flag" | "flag-outline" | "flash-off" | "flash-off-outline" | "flashlight" | "grid" | "heart-circle" | "heart-circle-outline" | "help" | "help-circle" | "help-circle-outline" | "id-card" | "image-outline" | "key-outline" | "magnet" | "mail" | "newspaper" | "pause-circle" | "pause-circle-outline" | "pin" | "pin-outline" | "play-circle" | "play-circle-outline" | "play-outline" | "refresh-circle" | "resize" | "ribbon" | "school" | "school-outline" | "send" | "send-outline" | "server" | "server-outline" | "shield-half" | "stop-circle" | "stop-circle-outline" | "sync" | "sync-circle" | "ticket" | "ticket-outline" | "trending-down" | "trending-up" | "wifi" | "egg" | "egg-outline" | "flower" | "flower-outline" | "leaf" | "water" | "alert-circle" | "alert-circle-outline" | "alert-outline" | "bug" | "bug-outline" | "fish" | "paw" | "paw-outline" | "arrow-down" | "arrow-down-circle" | "arrow-down-circle-outline" | "arrow-up" | "arrow-up-circle" | "arrow-up-circle-outline" | "chevron-down" | "chevron-down-circle" | "chevron-down-circle-outline" | "chevron-up" | "chevron-up-circle" | "chevron-up-circle-outline" | "refresh" | "reload" | "share" | "share-outline" | "shuffle" | "swap-horizontal" | "swap-vertical" | "headset" | "volume-high" | "volume-low" | "volume-medium" | "volume-mute" | "volume-off" | "battery-charging" | "battery-charging-outline" | "car" | "car-outline" | "lock-open" | "lock-open-outline" | "speedometer" | "thermometer" | "cash" | "receipt" | "receipt-outline" | "wallet" | "wallet-outline" | "glasses" | "cloud" | "cloud-circle" | "cloud-circle-outline" | "cloud-download" | "cloud-download-outline" | "cloud-outline" | "cloud-upload" | "cloud-upload-outline" | "alarm" | "calendar" | "calendar-outline" | "timer-outline" | "laptop" | "watch" | "brush" | "brush-outline" | "pencil" | "pencil-outline" | "folder" | "folder-open" | "folder-open-outline" | "folder-outline" | "beer" | "beer-outline" | "cube-outline" | "ice-cream" | "nutrition" | "pizza" | "card" | "card-outline" | "checkbox-outline" | "close" | "close-circle" | "close-circle-outline" | "flask" | "flask-outline" | "heart" | "heart-half" | "heart-half-outline" | "heart-outline" | "medal" | "shield" | "shield-outline" | "skull" | "skull-outline" | "compass" | "compass-outline" | "earth" | "layers" | "layers-outline" | "map-outline" | "hammer" | "balloon" | "bed" | "bed-outline" | "gift" | "gift-outline" | "camera" | "home" | "home-outline" | "pause" | "play" | "power" | "water-outline" | "calculator" | "pulse" | "disc" | "airplane" | "bus" | "train" | "walk" | "camera-outline" | "film" | "library" | "library-outline" | "storefront" | "storefront-outline" | "beaker" | "beaker-outline" | "rocket" | "rocket-outline" | "telescope" | "cog" | "cog-outline" | "information" | "information-outline" | "cube" | "ellipse-outline" | "square" | "square-outline" | "star" | "star-half" | "star-outline" | "triangle" | "triangle-outline" | "basket" | "basket-outline" | "cart" | "cart-outline" | "baseball" | "baseball-outline" | "basketball" | "bicycle" | "football" | "golf" | "medal-outline" | "podium" | "trophy" | "trophy-outline" | "subway" | "apps" | "flash" | "flash-outline" | "umbrella" | "umbrella-outline" | "document" | "document-text" | "ellipsis-horizontal" | "ellipsis-horizontal-circle" | "ellipsis-vertical" | "finger-print" | "funnel" | "information-circle" | "language" | "lock-closed" | "megaphone" | "moon" | "musical-note" | "qr-code" | "sparkles" | "trash" | "tv" | "accessibility" | "aperture" | "ban" | "battery-full" | "cloudy" | "copy" | "ear" | "expand" | "flame" | "git-branch" | "git-compare" | "git-merge" | "git-pull-request" | "globe" | "hourglass" | "images" | "locate" | "log-in" | "log-out" | "mail-open" | "mic" | "mic-off" | "move" | "rose" | "save" | "scan" | "settings" | "shapes" | "shirt" | "terminal" | "thumbs-down" | "thumbs-up" | "transgender" | "unlink" | "wine" | "bar-chart" | "git-commit" | "pie-chart" | "arrow-back" | "arrow-forward" | "barbell" | "bookmarks" | "bulb" | "caret-down" | "caret-up" | "color-filter" | "contract" | "cut" | "dice" | "location" | "man" | "planet" | "prism" | "scale-outline" | "stopwatch" | "woman" | "bag" | "bag-check" | "battery-half" | "chevron-expand" | "code-slash" | "easel" | "filter-circle" | "journal" | "people" | "person" | "person-add" | "person-circle" | "phone-landscape" | "snow" | "tablet-landscape" | "print" | "paper-plane" | "desktop" | "bowling-ball" | "add" | "chevron-down-outline" | "chevron-up-outline" | "color-palette" | "exit" | "pause-outline" | "recording" | "stop-outline" | "logo-angular" | "logo-discord" | "logo-facebook" | "logo-figma" | "logo-flickr" | "logo-github" | "logo-gitlab" | "logo-instagram" | "logo-linkedin" | "logo-mastodon" | "logo-medium" | "logo-npm" | "logo-pinterest" | "logo-python" | "logo-react" | "logo-skype" | "logo-slack" | "logo-snapchat" | "logo-tumblr" | "logo-twitter" | "logo-vue" | "logo-wechat" | "logo-x" | "logo-xing" | "logo-youtube" | "analytics" | "checkmark" | "checkmark-outline" | "warning" | "cafe" | "restaurant" | "thunderstorm" | "cloud-offline" | "accessibility-outline" | "accessibility-sharp" | "add-circle" | "add-circle-outline" | "add-circle-sharp" | "add-outline" | "add-sharp" | "airplane-outline" | "airplane-sharp" | "alarm-outline" | "alarm-sharp" | "albums" | "albums-outline" | "albums-sharp" | "alert-circle-sharp" | "alert-sharp" | "american-football" | "american-football-outline" | "american-football-sharp" | "analytics-outline" | "analytics-sharp" | "aperture-outline" | "aperture-sharp" | "apps-outline" | "apps-sharp" | "archive-sharp" | "arrow-back-circle" | "arrow-back-circle-outline" | "arrow-back-circle-sharp" | "arrow-back-outline" | "arrow-back-sharp" | "arrow-down-circle-sharp" | "arrow-down-left-box" | "arrow-down-left-box-outline" | "arrow-down-left-box-sharp" | "arrow-down-outline" | "arrow-down-right-box" | "arrow-down-right-box-outline" | "arrow-down-right-box-sharp" | "arrow-down-sharp" | "arrow-forward-circle" | "arrow-forward-circle-outline" | "arrow-forward-circle-sharp" | "arrow-forward-outline" | "arrow-forward-sharp" | "arrow-redo" | "arrow-redo-circle" | "arrow-redo-circle-outline" | "arrow-redo-circle-sharp" | "arrow-redo-outline" | "arrow-redo-sharp" | "arrow-undo" | "arrow-undo-circle" | "arrow-undo-circle-outline" | "arrow-undo-circle-sharp" | "arrow-undo-outline" | "arrow-undo-sharp" | "arrow-up-circle-sharp" | "arrow-up-left-box" | "arrow-up-left-box-outline" | "arrow-up-left-box-sharp" | "arrow-up-outline" | "arrow-up-right-box" | "arrow-up-right-box-outline" | "arrow-up-right-box-sharp" | "arrow-up-sharp" | "at-circle" | "at-circle-outline" | "at-circle-sharp" | "at-outline" | "at-sharp" | "attach" | "attach-outline" | "attach-sharp" | "backspace-sharp" | "bag-add" | "bag-add-outline" | "bag-add-sharp" | "bag-check-outline" | "bag-check-sharp" | "bag-handle" | "bag-handle-outline" | "bag-handle-sharp" | "bag-outline" | "bag-remove" | "bag-remove-outline" | "bag-remove-sharp" | "bag-sharp" | "balloon-outline" | "balloon-sharp" | "ban-outline" | "ban-sharp" | "bandage-outline" | "bandage-sharp" | "bar-chart-outline" | "bar-chart-sharp" | "barbell-outline" | "barbell-sharp" | "barcode-outline" | "barcode-sharp" | "baseball-sharp" | "basket-sharp" | "basketball-outline" | "basketball-sharp" | "battery-charging-sharp" | "battery-dead" | "battery-dead-outline" | "battery-dead-sharp" | "battery-full-outline" | "battery-full-sharp" | "battery-half-outline" | "battery-half-sharp" | "beaker-sharp" | "bed-sharp" | "beer-sharp" | "bicycle-outline" | "bicycle-sharp" | "binoculars-outline" | "binoculars-sharp" | "bluetooth-outline" | "bluetooth-sharp" | "boat" | "boat-outline" | "boat-sharp" | "body-outline" | "body-sharp" | "bonfire" | "bonfire-outline" | "bonfire-sharp" | "book-sharp" | "bookmark-sharp" | "bookmarks-outline" | "bookmarks-sharp" | "bowling-ball-outline" | "bowling-ball-sharp" | "briefcase-sharp" | "browsers" | "browsers-outline" | "browsers-sharp" | "brush-sharp" | "bug-sharp" | "build" | "build-outline" | "build-sharp" | "bulb-outline" | "bulb-sharp" | "bus-outline" | "bus-sharp" | "business" | "business-outline" | "business-sharp" | "cafe-outline" | "cafe-sharp" | "calculator-outline" | "calculator-sharp" | "calendar-clear" | "calendar-clear-outline" | "calendar-clear-sharp" | "calendar-number" | "calendar-number-outline" | "calendar-number-sharp" | "calendar-sharp" | "call" | "call-outline" | "call-sharp" | "camera-reverse" | "camera-reverse-outline" | "camera-reverse-sharp" | "camera-sharp" | "car-sharp" | "car-sport" | "car-sport-outline" | "car-sport-sharp" | "card-sharp" | "caret-back" | "caret-back-circle" | "caret-back-circle-outline" | "caret-back-circle-sharp" | "caret-back-outline" | "caret-back-sharp" | "caret-down-circle" | "caret-down-circle-outline" | "caret-down-circle-sharp" | "caret-down-outline" | "caret-down-sharp" | "caret-forward" | "caret-forward-circle" | "caret-forward-circle-outline" | "caret-forward-circle-sharp" | "caret-forward-outline" | "caret-forward-sharp" | "caret-up-circle" | "caret-up-circle-outline" | "caret-up-circle-sharp" | "caret-up-outline" | "caret-up-sharp" | "cart-sharp" | "cash-outline" | "cash-sharp" | "cellular" | "cellular-outline" | "cellular-sharp" | "chatbox" | "chatbox-ellipses" | "chatbox-ellipses-outline" | "chatbox-ellipses-sharp" | "chatbox-outline" | "chatbox-sharp" | "chatbubble" | "chatbubble-ellipses" | "chatbubble-ellipses-outline" | "chatbubble-ellipses-sharp" | "chatbubble-outline" | "chatbubble-sharp" | "chatbubbles" | "chatbubbles-outline" | "chatbubbles-sharp" | "checkbox-sharp" | "checkmark-circle" | "checkmark-circle-outline" | "checkmark-circle-sharp" | "checkmark-done" | "checkmark-done-circle" | "checkmark-done-circle-outline" | "checkmark-done-circle-sharp" | "checkmark-done-outline" | "checkmark-done-sharp" | "checkmark-sharp" | "chevron-back" | "chevron-back-circle" | "chevron-back-circle-outline" | "chevron-back-circle-sharp" | "chevron-back-outline" | "chevron-back-sharp" | "chevron-collapse" | "chevron-collapse-outline" | "chevron-collapse-sharp" | "chevron-down-circle-sharp" | "chevron-down-sharp" | "chevron-expand-outline" | "chevron-expand-sharp" | "chevron-forward" | "chevron-forward-circle" | "chevron-forward-circle-outline" | "chevron-forward-circle-sharp" | "chevron-forward-outline" | "chevron-forward-sharp" | "chevron-up-circle-sharp" | "chevron-up-sharp" | "clipboard-sharp" | "close-circle-sharp" | "close-sharp" | "cloud-circle-sharp" | "cloud-done" | "cloud-done-outline" | "cloud-done-sharp" | "cloud-download-sharp" | "cloud-offline-outline" | "cloud-offline-sharp" | "cloud-sharp" | "cloud-upload-sharp" | "cloudy-night" | "cloudy-night-outline" | "cloudy-night-sharp" | "cloudy-outline" | "cloudy-sharp" | "code-download" | "code-download-outline" | "code-download-sharp" | "code-outline" | "code-sharp" | "code-slash-outline" | "code-slash-sharp" | "code-working" | "code-working-outline" | "code-working-sharp" | "cog-sharp" | "color-fill" | "color-fill-outline" | "color-fill-sharp" | "color-filter-outline" | "color-filter-sharp" | "color-palette-outline" | "color-palette-sharp" | "color-wand" | "color-wand-outline" | "color-wand-sharp" | "compass-sharp" | "construct" | "construct-outline" | "construct-sharp" | "contract-outline" | "contract-sharp" | "contrast-outline" | "contrast-sharp" | "copy-outline" | "copy-sharp" | "create" | "create-outline" | "create-sharp" | "crop-outline" | "crop-sharp" | "cube-sharp" | "cut-outline" | "cut-sharp" | "desktop-outline" | "desktop-sharp" | "diamond-sharp" | "dice-outline" | "dice-sharp" | "disc-outline" | "disc-sharp" | "document-attach" | "document-attach-outline" | "document-attach-sharp" | "document-lock" | "document-lock-outline" | "document-lock-sharp" | "document-outline" | "document-sharp" | "document-text-outline" | "document-text-sharp" | "documents" | "documents-outline" | "documents-sharp" | "download-sharp" | "duplicate" | "duplicate-outline" | "duplicate-sharp" | "ear-outline" | "ear-sharp" | "earth-outline" | "earth-sharp" | "easel-outline" | "easel-sharp" | "egg-sharp" | "ellipse-sharp" | "ellipsis-horizontal-circle-outline" | "ellipsis-horizontal-circle-sharp" | "ellipsis-horizontal-outline" | "ellipsis-horizontal-sharp" | "ellipsis-vertical-circle" | "ellipsis-vertical-circle-outline" | "ellipsis-vertical-circle-sharp" | "ellipsis-vertical-outline" | "ellipsis-vertical-sharp" | "enter" | "enter-outline" | "enter-sharp" | "exit-outline" | "exit-sharp" | "expand-outline" | "expand-sharp" | "extension-puzzle" | "extension-puzzle-outline" | "extension-puzzle-sharp" | "eye-off-sharp" | "eye-sharp" | "eyedrop" | "eyedrop-outline" | "eyedrop-sharp" | "fast-food" | "fast-food-outline" | "fast-food-sharp" | "female" | "female-outline" | "female-sharp" | "file-tray" | "file-tray-full" | "file-tray-full-outline" | "file-tray-full-sharp" | "file-tray-outline" | "file-tray-sharp" | "file-tray-stacked" | "file-tray-stacked-outline" | "file-tray-stacked-sharp" | "film-outline" | "film-sharp" | "filter-circle-outline" | "filter-circle-sharp" | "filter-sharp" | "finger-print-outline" | "finger-print-sharp" | "fish-outline" | "fish-sharp" | "fitness" | "fitness-outline" | "fitness-sharp" | "flag-sharp" | "flame-outline" | "flame-sharp" | "flash-off-sharp" | "flash-sharp" | "flashlight-outline" | "flashlight-sharp" | "flask-sharp" | "flower-sharp" | "folder-open-sharp" | "folder-sharp" | "football-outline" | "football-sharp" | "footsteps" | "footsteps-outline" | "footsteps-sharp" | "funnel-outline" | "funnel-sharp" | "game-controller" | "game-controller-outline" | "game-controller-sharp" | "gift-sharp" | "git-branch-outline" | "git-branch-sharp" | "git-commit-outline" | "git-commit-sharp" | "git-compare-outline" | "git-compare-sharp" | "git-merge-outline" | "git-merge-sharp" | "git-network" | "git-network-outline" | "git-network-sharp" | "git-pull-request-outline" | "git-pull-request-sharp" | "glasses-outline" | "glasses-sharp" | "globe-outline" | "globe-sharp" | "golf-outline" | "golf-sharp" | "grid-outline" | "grid-sharp" | "hammer-outline" | "hammer-sharp" | "hand-left" | "hand-left-outline" | "hand-left-sharp" | "hand-right" | "hand-right-outline" | "hand-right-sharp" | "happy" | "happy-outline" | "happy-sharp" | "hardware-chip" | "hardware-chip-outline" | "hardware-chip-sharp" | "headset-outline" | "headset-sharp" | "heart-circle-sharp" | "heart-dislike" | "heart-dislike-circle" | "heart-dislike-circle-outline" | "heart-dislike-circle-sharp" | "heart-dislike-outline" | "heart-dislike-sharp" | "heart-half-sharp" | "heart-sharp" | "help-buoy" | "help-buoy-outline" | "help-buoy-sharp" | "help-circle-sharp" | "help-outline" | "help-sharp" | "home-sharp" | "hourglass-outline" | "hourglass-sharp" | "ice-cream-outline" | "ice-cream-sharp" | "id-card-outline" | "id-card-sharp" | "image-sharp" | "images-outline" | "images-sharp" | "infinite" | "infinite-outline" | "infinite-sharp" | "information-circle-outline" | "information-circle-sharp" | "information-sharp" | "invert-mode" | "invert-mode-outline" | "invert-mode-sharp" | "journal-outline" | "journal-sharp" | "key-sharp" | "keypad" | "keypad-outline" | "keypad-sharp" | "language-outline" | "language-sharp" | "laptop-outline" | "laptop-sharp" | "layers-sharp" | "leaf-outline" | "leaf-sharp" | "library-sharp" | "link-outline" | "link-sharp" | "list-circle" | "list-circle-outline" | "list-circle-sharp" | "list-outline" | "list-sharp" | "locate-outline" | "locate-sharp" | "location-outline" | "location-sharp" | "lock-closed-outline" | "lock-closed-sharp" | "lock-open-sharp" | "log-in-outline" | "log-in-sharp" | "log-out-outline" | "log-out-sharp" | "logo-alipay" | "logo-amazon" | "logo-amplify" | "logo-android" | "logo-appflow" | "logo-apple" | "logo-apple-appstore" | "logo-apple-ar" | "logo-behance" | "logo-bitbucket" | "logo-bitcoin" | "logo-buffer" | "logo-capacitor" | "logo-chrome" | "logo-closed-captioning" | "logo-codepen" | "logo-css3" | "logo-designernews" | "logo-deviantart" | "logo-docker" | "logo-dribbble" | "logo-dropbox" | "logo-edge" | "logo-electron" | "logo-euro" | "logo-firebase" | "logo-firefox" | "logo-foursquare" | "logo-google" | "logo-google-playstore" | "logo-hackernews" | "logo-html5" | "logo-ionic" | "logo-ionitron" | "logo-javascript" | "logo-laravel" | "logo-markdown" | "logo-microsoft" | "logo-no-smoking" | "logo-nodejs" | "logo-octocat" | "logo-paypal" | "logo-playstation" | "logo-pwa" | "logo-reddit" | "logo-rss" | "logo-sass" | "logo-soundcloud" | "logo-stackoverflow" | "logo-steam" | "logo-stencil" | "logo-tableau" | "logo-threads" | "logo-tiktok" | "logo-trapeze" | "logo-tux" | "logo-twitch" | "logo-usd" | "logo-venmo" | "logo-vercel" | "logo-vimeo" | "logo-vk" | "logo-web-component" | "logo-whatsapp" | "logo-windows" | "logo-wordpress" | "logo-xbox" | "logo-yahoo" | "logo-yen" | "magnet-outline" | "magnet-sharp" | "mail-open-outline" | "mail-open-sharp" | "mail-outline" | "mail-sharp" | "mail-unread" | "mail-unread-outline" | "mail-unread-sharp" | "male" | "male-female" | "male-female-outline" | "male-female-sharp" | "male-outline" | "male-sharp" | "man-outline" | "man-sharp" | "map-sharp" | "medal-sharp" | "medical" | "medical-outline" | "medical-sharp" | "medkit" | "medkit-outline" | "medkit-sharp" | "megaphone-outline" | "megaphone-sharp" | "menu-outline" | "menu-sharp" | "mic-circle" | "mic-circle-outline" | "mic-circle-sharp" | "mic-off-circle" | "mic-off-circle-outline" | "mic-off-circle-sharp" | "mic-off-outline" | "mic-off-sharp" | "mic-outline" | "mic-sharp" | "moon-outline" | "moon-sharp" | "move-outline" | "move-sharp" | "musical-note-outline" | "musical-note-sharp" | "musical-notes" | "musical-notes-outline" | "musical-notes-sharp" | "navigate" | "navigate-circle" | "navigate-circle-outline" | "navigate-circle-sharp" | "navigate-outline" | "navigate-sharp" | "newspaper-outline" | "newspaper-sharp" | "notifications" | "notifications-circle" | "notifications-circle-outline" | "notifications-circle-sharp" | "notifications-off" | "notifications-off-circle" | "notifications-off-circle-outline" | "notifications-off-circle-sharp" | "notifications-off-outline" | "notifications-off-sharp" | "notifications-outline" | "notifications-sharp" | "nuclear" | "nuclear-outline" | "nuclear-sharp" | "nutrition-outline" | "nutrition-sharp" | "open" | "open-outline" | "open-sharp" | "options" | "options-outline" | "options-sharp" | "paper-plane-outline" | "paper-plane-sharp" | "partly-sunny" | "partly-sunny-outline" | "partly-sunny-sharp" | "pause-circle-sharp" | "pause-sharp" | "paw-sharp" | "pencil-sharp" | "people-circle" | "people-circle-outline" | "people-circle-sharp" | "people-outline" | "people-sharp" | "person-add-outline" | "person-add-sharp" | "person-circle-outline" | "person-circle-sharp" | "person-outline" | "person-remove" | "person-remove-outline" | "person-remove-sharp" | "person-sharp" | "phone-landscape-outline" | "phone-landscape-sharp" | "phone-portrait" | "phone-portrait-outline" | "phone-portrait-sharp" | "pie-chart-outline" | "pie-chart-sharp" | "pin-sharp" | "pint" | "pint-outline" | "pint-sharp" | "pizza-outline" | "pizza-sharp" | "planet-outline" | "planet-sharp" | "play-back" | "play-back-circle" | "play-back-circle-outline" | "play-back-circle-sharp" | "play-back-outline" | "play-back-sharp" | "play-circle-sharp" | "play-forward" | "play-forward-circle" | "play-forward-circle-outline" | "play-forward-circle-sharp" | "play-forward-outline" | "play-forward-sharp" | "play-sharp" | "play-skip-back" | "play-skip-back-circle" | "play-skip-back-circle-outline" | "play-skip-back-circle-sharp" | "play-skip-back-outline" | "play-skip-back-sharp" | "play-skip-forward" | "play-skip-forward-circle" | "play-skip-forward-circle-outline" | "play-skip-forward-circle-sharp" | "play-skip-forward-outline" | "play-skip-forward-sharp" | "podium-outline" | "podium-sharp" | "power-outline" | "power-sharp" | "pricetag" | "pricetag-outline" | "pricetag-sharp" | "pricetags" | "pricetags-outline" | "pricetags-sharp" | "print-outline" | "print-sharp" | "prism-outline" | "prism-sharp" | "pulse-outline" | "pulse-sharp" | "push-outline" | "push-sharp" | "qr-code-outline" | "qr-code-sharp" | "radio-button-off" | "radio-button-off-outline" | "radio-button-off-sharp" | "radio-button-on" | "radio-button-on-outline" | "radio-button-on-sharp" | "radio-outline" | "radio-sharp" | "rainy" | "rainy-outline" | "rainy-sharp" | "reader" | "reader-outline" | "reader-sharp" | "receipt-sharp" | "recording-outline" | "recording-sharp" | "refresh-circle-outline" | "refresh-circle-sharp" | "refresh-outline" | "refresh-sharp" | "reload-circle" | "reload-circle-outline" | "reload-circle-sharp" | "reload-outline" | "reload-sharp" | "remove" | "remove-circle" | "remove-circle-outline" | "remove-circle-sharp" | "remove-outline" | "remove-sharp" | "reorder-four" | "reorder-four-outline" | "reorder-four-sharp" | "reorder-three" | "reorder-three-outline" | "reorder-three-sharp" | "reorder-two" | "reorder-two-outline" | "reorder-two-sharp" | "repeat-outline" | "repeat-sharp" | "resize-outline" | "resize-sharp" | "restaurant-outline" | "restaurant-sharp" | "return-down-back" | "return-down-back-outline" | "return-down-back-sharp" | "return-down-forward" | "return-down-forward-outline" | "return-down-forward-sharp" | "return-up-back" | "return-up-back-outline" | "return-up-back-sharp" | "return-up-forward" | "return-up-forward-outline" | "return-up-forward-sharp" | "ribbon-outline" | "ribbon-sharp" | "rocket-sharp" | "rose-outline" | "rose-sharp" | "sad" | "sad-outline" | "sad-sharp" | "save-outline" | "save-sharp" | "scale-sharp" | "scan-circle" | "scan-circle-outline" | "scan-circle-sharp" | "scan-outline" | "scan-sharp" | "school-sharp" | "search-circle" | "search-circle-outline" | "search-circle-sharp" | "search-outline" | "search-sharp" | "send-sharp" | "server-sharp" | "settings-outline" | "settings-sharp" | "shapes-outline" | "shapes-sharp" | "share-sharp" | "share-social" | "share-social-outline" | "share-social-sharp" | "shield-checkmark" | "shield-checkmark-outline" | "shield-checkmark-sharp" | "shield-half-outline" | "shield-half-sharp" | "shield-sharp" | "shirt-outline" | "shirt-sharp" | "shuffle-outline" | "shuffle-sharp" | "skull-sharp" | "snow-outline" | "snow-sharp" | "sparkles-outline" | "sparkles-sharp" | "speedometer-outline" | "speedometer-sharp" | "square-sharp" | "star-half-outline" | "star-half-sharp" | "star-sharp" | "stats-chart" | "stats-chart-outline" | "stats-chart-sharp" | "stop-circle-sharp" | "stop-sharp" | "stopwatch-outline" | "stopwatch-sharp" | "storefront-sharp" | "subway-outline" | "subway-sharp" | "sunny" | "sunny-outline" | "sunny-sharp" | "swap-horizontal-outline" | "swap-horizontal-sharp" | "swap-vertical-outline" | "swap-vertical-sharp" | "sync-circle-outline" | "sync-circle-sharp" | "sync-outline" | "sync-sharp" | "tablet-landscape-outline" | "tablet-landscape-sharp" | "tablet-portrait" | "tablet-portrait-outline" | "tablet-portrait-sharp" | "telescope-outline" | "telescope-sharp" | "tennisball" | "tennisball-outline" | "tennisball-sharp" | "terminal-outline" | "terminal-sharp" | "text-outline" | "text-sharp" | "thermometer-outline" | "thermometer-sharp" | "thumbs-down-outline" | "thumbs-down-sharp" | "thumbs-up-outline" | "thumbs-up-sharp" | "thunderstorm-outline" | "thunderstorm-sharp" | "ticket-sharp" | "time-outline" | "time-sharp" | "timer-sharp" | "today" | "today-outline" | "today-sharp" | "toggle" | "toggle-outline" | "toggle-sharp" | "trail-sign" | "trail-sign-outline" | "trail-sign-sharp" | "train-outline" | "train-sharp" | "transgender-outline" | "transgender-sharp" | "trash-bin" | "trash-bin-outline" | "trash-bin-sharp" | "trash-outline" | "trash-sharp" | "trending-down-outline" | "trending-down-sharp" | "trending-up-outline" | "trending-up-sharp" | "triangle-sharp" | "trophy-sharp" | "tv-outline" | "tv-sharp" | "umbrella-sharp" | "unlink-outline" | "unlink-sharp" | "videocam" | "videocam-off" | "videocam-off-outline" | "videocam-off-sharp" | "videocam-outline" | "videocam-sharp" | "volume-high-outline" | "volume-high-sharp" | "volume-low-outline" | "volume-low-sharp" | "volume-medium-outline" | "volume-medium-sharp" | "volume-mute-outline" | "volume-mute-sharp" | "volume-off-outline" | "volume-off-sharp" | "walk-outline" | "walk-sharp" | "wallet-sharp" | "warning-outline" | "warning-sharp" | "watch-outline" | "watch-sharp" | "water-sharp" | "wifi-outline" | "wifi-sharp" | "wine-outline" | "wine-sharp" | "woman-outline" | "woman-sharp">): import("react").JSX.Element;
1368
+ ({ 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<"push" | "map" | "filter" | "pulse" | "scale" | "search" | "repeat" | "link" | "image" | "text" | "alert" | "checkbox" | "menu" | "radio" | "timer" | "list" | "key" | "body" | "code" | "time" | "ellipse" | "stop" | "call" | "archive" | "archive-outline" | "at" | "backspace" | "backspace-outline" | "bandage" | "barcode" | "binoculars" | "bluetooth" | "book" | "book-outline" | "bookmark" | "bookmark-outline" | "briefcase" | "briefcase-outline" | "clipboard" | "clipboard-outline" | "close-outline" | "contrast" | "crop" | "diamond" | "diamond-outline" | "download" | "download-outline" | "eye" | "eye-off" | "eye-off-outline" | "eye-outline" | "filter-outline" | "flag" | "flag-outline" | "flash-off" | "flash-off-outline" | "flashlight" | "grid" | "heart-circle" | "heart-circle-outline" | "help" | "help-circle" | "help-circle-outline" | "id-card" | "image-outline" | "key-outline" | "magnet" | "mail" | "newspaper" | "pause-circle" | "pause-circle-outline" | "pin" | "pin-outline" | "play-circle" | "play-circle-outline" | "play-outline" | "refresh-circle" | "resize" | "ribbon" | "school" | "school-outline" | "send" | "send-outline" | "server" | "server-outline" | "shield-half" | "stop-circle" | "stop-circle-outline" | "sync" | "sync-circle" | "ticket" | "ticket-outline" | "trending-down" | "trending-up" | "wifi" | "egg" | "egg-outline" | "flower" | "flower-outline" | "leaf" | "water" | "alert-circle" | "alert-circle-outline" | "alert-outline" | "bug" | "bug-outline" | "fish" | "paw" | "paw-outline" | "arrow-down" | "arrow-down-circle" | "arrow-down-circle-outline" | "arrow-up" | "arrow-up-circle" | "arrow-up-circle-outline" | "chevron-down" | "chevron-down-circle" | "chevron-down-circle-outline" | "chevron-up" | "chevron-up-circle" | "chevron-up-circle-outline" | "refresh" | "reload" | "share" | "share-outline" | "shuffle" | "swap-horizontal" | "swap-vertical" | "headset" | "volume-high" | "volume-low" | "volume-medium" | "volume-mute" | "volume-off" | "battery-charging" | "battery-charging-outline" | "car" | "car-outline" | "lock-open" | "lock-open-outline" | "speedometer" | "thermometer" | "cash" | "receipt" | "receipt-outline" | "wallet" | "wallet-outline" | "glasses" | "cloud" | "cloud-circle" | "cloud-circle-outline" | "cloud-download" | "cloud-download-outline" | "cloud-outline" | "cloud-upload" | "cloud-upload-outline" | "alarm" | "calendar" | "calendar-outline" | "timer-outline" | "laptop" | "watch" | "brush" | "brush-outline" | "pencil" | "pencil-outline" | "folder" | "folder-open" | "folder-open-outline" | "folder-outline" | "beer" | "beer-outline" | "cube-outline" | "ice-cream" | "nutrition" | "pizza" | "card" | "card-outline" | "checkbox-outline" | "close" | "close-circle" | "close-circle-outline" | "flask" | "flask-outline" | "heart" | "heart-half" | "heart-half-outline" | "heart-outline" | "medal" | "shield" | "shield-outline" | "skull" | "skull-outline" | "compass" | "compass-outline" | "earth" | "layers" | "layers-outline" | "map-outline" | "hammer" | "balloon" | "bed" | "bed-outline" | "gift" | "gift-outline" | "camera" | "home" | "home-outline" | "pause" | "play" | "power" | "water-outline" | "calculator" | "disc" | "airplane" | "bus" | "train" | "walk" | "camera-outline" | "film" | "library" | "library-outline" | "storefront" | "storefront-outline" | "beaker" | "beaker-outline" | "rocket" | "rocket-outline" | "telescope" | "cog" | "cog-outline" | "information" | "information-outline" | "cube" | "ellipse-outline" | "square" | "square-outline" | "star" | "star-half" | "star-outline" | "triangle" | "triangle-outline" | "basket" | "basket-outline" | "cart" | "cart-outline" | "baseball" | "baseball-outline" | "basketball" | "bicycle" | "football" | "golf" | "medal-outline" | "podium" | "trophy" | "trophy-outline" | "subway" | "apps" | "flash" | "flash-outline" | "umbrella" | "umbrella-outline" | "document" | "document-text" | "ellipsis-horizontal" | "ellipsis-horizontal-circle" | "ellipsis-vertical" | "finger-print" | "funnel" | "information-circle" | "language" | "lock-closed" | "megaphone" | "moon" | "musical-note" | "qr-code" | "sparkles" | "trash" | "tv" | "accessibility" | "aperture" | "ban" | "battery-full" | "cloudy" | "copy" | "ear" | "expand" | "flame" | "git-branch" | "git-compare" | "git-merge" | "git-pull-request" | "globe" | "hourglass" | "images" | "locate" | "log-in" | "log-out" | "mail-open" | "mic" | "mic-off" | "move" | "rose" | "save" | "scan" | "settings" | "shapes" | "shirt" | "terminal" | "thumbs-down" | "thumbs-up" | "transgender" | "unlink" | "wine" | "bar-chart" | "git-commit" | "pie-chart" | "arrow-back" | "arrow-forward" | "barbell" | "bookmarks" | "bulb" | "caret-down" | "caret-up" | "color-filter" | "contract" | "cut" | "dice" | "location" | "man" | "planet" | "prism" | "scale-outline" | "stopwatch" | "woman" | "bag" | "bag-check" | "battery-half" | "chevron-expand" | "code-slash" | "easel" | "filter-circle" | "journal" | "people" | "person" | "person-add" | "person-circle" | "phone-landscape" | "snow" | "tablet-landscape" | "print" | "paper-plane" | "desktop" | "bowling-ball" | "add" | "chevron-down-outline" | "chevron-up-outline" | "color-palette" | "exit" | "pause-outline" | "recording" | "stop-outline" | "logo-angular" | "logo-discord" | "logo-facebook" | "logo-figma" | "logo-flickr" | "logo-github" | "logo-gitlab" | "logo-instagram" | "logo-linkedin" | "logo-mastodon" | "logo-medium" | "logo-npm" | "logo-pinterest" | "logo-python" | "logo-react" | "logo-skype" | "logo-slack" | "logo-snapchat" | "logo-tumblr" | "logo-twitter" | "logo-vue" | "logo-wechat" | "logo-x" | "logo-xing" | "logo-youtube" | "analytics" | "checkmark" | "checkmark-outline" | "warning" | "cafe" | "restaurant" | "thunderstorm" | "cloud-offline" | "accessibility-outline" | "accessibility-sharp" | "add-circle" | "add-circle-outline" | "add-circle-sharp" | "add-outline" | "add-sharp" | "airplane-outline" | "airplane-sharp" | "alarm-outline" | "alarm-sharp" | "albums" | "albums-outline" | "albums-sharp" | "alert-circle-sharp" | "alert-sharp" | "american-football" | "american-football-outline" | "american-football-sharp" | "analytics-outline" | "analytics-sharp" | "aperture-outline" | "aperture-sharp" | "apps-outline" | "apps-sharp" | "archive-sharp" | "arrow-back-circle" | "arrow-back-circle-outline" | "arrow-back-circle-sharp" | "arrow-back-outline" | "arrow-back-sharp" | "arrow-down-circle-sharp" | "arrow-down-left-box" | "arrow-down-left-box-outline" | "arrow-down-left-box-sharp" | "arrow-down-outline" | "arrow-down-right-box" | "arrow-down-right-box-outline" | "arrow-down-right-box-sharp" | "arrow-down-sharp" | "arrow-forward-circle" | "arrow-forward-circle-outline" | "arrow-forward-circle-sharp" | "arrow-forward-outline" | "arrow-forward-sharp" | "arrow-redo" | "arrow-redo-circle" | "arrow-redo-circle-outline" | "arrow-redo-circle-sharp" | "arrow-redo-outline" | "arrow-redo-sharp" | "arrow-undo" | "arrow-undo-circle" | "arrow-undo-circle-outline" | "arrow-undo-circle-sharp" | "arrow-undo-outline" | "arrow-undo-sharp" | "arrow-up-circle-sharp" | "arrow-up-left-box" | "arrow-up-left-box-outline" | "arrow-up-left-box-sharp" | "arrow-up-outline" | "arrow-up-right-box" | "arrow-up-right-box-outline" | "arrow-up-right-box-sharp" | "arrow-up-sharp" | "at-circle" | "at-circle-outline" | "at-circle-sharp" | "at-outline" | "at-sharp" | "attach" | "attach-outline" | "attach-sharp" | "backspace-sharp" | "bag-add" | "bag-add-outline" | "bag-add-sharp" | "bag-check-outline" | "bag-check-sharp" | "bag-handle" | "bag-handle-outline" | "bag-handle-sharp" | "bag-outline" | "bag-remove" | "bag-remove-outline" | "bag-remove-sharp" | "bag-sharp" | "balloon-outline" | "balloon-sharp" | "ban-outline" | "ban-sharp" | "bandage-outline" | "bandage-sharp" | "bar-chart-outline" | "bar-chart-sharp" | "barbell-outline" | "barbell-sharp" | "barcode-outline" | "barcode-sharp" | "baseball-sharp" | "basket-sharp" | "basketball-outline" | "basketball-sharp" | "battery-charging-sharp" | "battery-dead" | "battery-dead-outline" | "battery-dead-sharp" | "battery-full-outline" | "battery-full-sharp" | "battery-half-outline" | "battery-half-sharp" | "beaker-sharp" | "bed-sharp" | "beer-sharp" | "bicycle-outline" | "bicycle-sharp" | "binoculars-outline" | "binoculars-sharp" | "bluetooth-outline" | "bluetooth-sharp" | "boat" | "boat-outline" | "boat-sharp" | "body-outline" | "body-sharp" | "bonfire" | "bonfire-outline" | "bonfire-sharp" | "book-sharp" | "bookmark-sharp" | "bookmarks-outline" | "bookmarks-sharp" | "bowling-ball-outline" | "bowling-ball-sharp" | "briefcase-sharp" | "browsers" | "browsers-outline" | "browsers-sharp" | "brush-sharp" | "bug-sharp" | "build" | "build-outline" | "build-sharp" | "bulb-outline" | "bulb-sharp" | "bus-outline" | "bus-sharp" | "business" | "business-outline" | "business-sharp" | "cafe-outline" | "cafe-sharp" | "calculator-outline" | "calculator-sharp" | "calendar-clear" | "calendar-clear-outline" | "calendar-clear-sharp" | "calendar-number" | "calendar-number-outline" | "calendar-number-sharp" | "calendar-sharp" | "call-outline" | "call-sharp" | "camera-reverse" | "camera-reverse-outline" | "camera-reverse-sharp" | "camera-sharp" | "car-sharp" | "car-sport" | "car-sport-outline" | "car-sport-sharp" | "card-sharp" | "caret-back" | "caret-back-circle" | "caret-back-circle-outline" | "caret-back-circle-sharp" | "caret-back-outline" | "caret-back-sharp" | "caret-down-circle" | "caret-down-circle-outline" | "caret-down-circle-sharp" | "caret-down-outline" | "caret-down-sharp" | "caret-forward" | "caret-forward-circle" | "caret-forward-circle-outline" | "caret-forward-circle-sharp" | "caret-forward-outline" | "caret-forward-sharp" | "caret-up-circle" | "caret-up-circle-outline" | "caret-up-circle-sharp" | "caret-up-outline" | "caret-up-sharp" | "cart-sharp" | "cash-outline" | "cash-sharp" | "cellular" | "cellular-outline" | "cellular-sharp" | "chatbox" | "chatbox-ellipses" | "chatbox-ellipses-outline" | "chatbox-ellipses-sharp" | "chatbox-outline" | "chatbox-sharp" | "chatbubble" | "chatbubble-ellipses" | "chatbubble-ellipses-outline" | "chatbubble-ellipses-sharp" | "chatbubble-outline" | "chatbubble-sharp" | "chatbubbles" | "chatbubbles-outline" | "chatbubbles-sharp" | "checkbox-sharp" | "checkmark-circle" | "checkmark-circle-outline" | "checkmark-circle-sharp" | "checkmark-done" | "checkmark-done-circle" | "checkmark-done-circle-outline" | "checkmark-done-circle-sharp" | "checkmark-done-outline" | "checkmark-done-sharp" | "checkmark-sharp" | "chevron-back" | "chevron-back-circle" | "chevron-back-circle-outline" | "chevron-back-circle-sharp" | "chevron-back-outline" | "chevron-back-sharp" | "chevron-collapse" | "chevron-collapse-outline" | "chevron-collapse-sharp" | "chevron-down-circle-sharp" | "chevron-down-sharp" | "chevron-expand-outline" | "chevron-expand-sharp" | "chevron-forward" | "chevron-forward-circle" | "chevron-forward-circle-outline" | "chevron-forward-circle-sharp" | "chevron-forward-outline" | "chevron-forward-sharp" | "chevron-up-circle-sharp" | "chevron-up-sharp" | "clipboard-sharp" | "close-circle-sharp" | "close-sharp" | "cloud-circle-sharp" | "cloud-done" | "cloud-done-outline" | "cloud-done-sharp" | "cloud-download-sharp" | "cloud-offline-outline" | "cloud-offline-sharp" | "cloud-sharp" | "cloud-upload-sharp" | "cloudy-night" | "cloudy-night-outline" | "cloudy-night-sharp" | "cloudy-outline" | "cloudy-sharp" | "code-download" | "code-download-outline" | "code-download-sharp" | "code-outline" | "code-sharp" | "code-slash-outline" | "code-slash-sharp" | "code-working" | "code-working-outline" | "code-working-sharp" | "cog-sharp" | "color-fill" | "color-fill-outline" | "color-fill-sharp" | "color-filter-outline" | "color-filter-sharp" | "color-palette-outline" | "color-palette-sharp" | "color-wand" | "color-wand-outline" | "color-wand-sharp" | "compass-sharp" | "construct" | "construct-outline" | "construct-sharp" | "contract-outline" | "contract-sharp" | "contrast-outline" | "contrast-sharp" | "copy-outline" | "copy-sharp" | "create" | "create-outline" | "create-sharp" | "crop-outline" | "crop-sharp" | "cube-sharp" | "cut-outline" | "cut-sharp" | "desktop-outline" | "desktop-sharp" | "diamond-sharp" | "dice-outline" | "dice-sharp" | "disc-outline" | "disc-sharp" | "document-attach" | "document-attach-outline" | "document-attach-sharp" | "document-lock" | "document-lock-outline" | "document-lock-sharp" | "document-outline" | "document-sharp" | "document-text-outline" | "document-text-sharp" | "documents" | "documents-outline" | "documents-sharp" | "download-sharp" | "duplicate" | "duplicate-outline" | "duplicate-sharp" | "ear-outline" | "ear-sharp" | "earth-outline" | "earth-sharp" | "easel-outline" | "easel-sharp" | "egg-sharp" | "ellipse-sharp" | "ellipsis-horizontal-circle-outline" | "ellipsis-horizontal-circle-sharp" | "ellipsis-horizontal-outline" | "ellipsis-horizontal-sharp" | "ellipsis-vertical-circle" | "ellipsis-vertical-circle-outline" | "ellipsis-vertical-circle-sharp" | "ellipsis-vertical-outline" | "ellipsis-vertical-sharp" | "enter" | "enter-outline" | "enter-sharp" | "exit-outline" | "exit-sharp" | "expand-outline" | "expand-sharp" | "extension-puzzle" | "extension-puzzle-outline" | "extension-puzzle-sharp" | "eye-off-sharp" | "eye-sharp" | "eyedrop" | "eyedrop-outline" | "eyedrop-sharp" | "fast-food" | "fast-food-outline" | "fast-food-sharp" | "female" | "female-outline" | "female-sharp" | "file-tray" | "file-tray-full" | "file-tray-full-outline" | "file-tray-full-sharp" | "file-tray-outline" | "file-tray-sharp" | "file-tray-stacked" | "file-tray-stacked-outline" | "file-tray-stacked-sharp" | "film-outline" | "film-sharp" | "filter-circle-outline" | "filter-circle-sharp" | "filter-sharp" | "finger-print-outline" | "finger-print-sharp" | "fish-outline" | "fish-sharp" | "fitness" | "fitness-outline" | "fitness-sharp" | "flag-sharp" | "flame-outline" | "flame-sharp" | "flash-off-sharp" | "flash-sharp" | "flashlight-outline" | "flashlight-sharp" | "flask-sharp" | "flower-sharp" | "folder-open-sharp" | "folder-sharp" | "football-outline" | "football-sharp" | "footsteps" | "footsteps-outline" | "footsteps-sharp" | "funnel-outline" | "funnel-sharp" | "game-controller" | "game-controller-outline" | "game-controller-sharp" | "gift-sharp" | "git-branch-outline" | "git-branch-sharp" | "git-commit-outline" | "git-commit-sharp" | "git-compare-outline" | "git-compare-sharp" | "git-merge-outline" | "git-merge-sharp" | "git-network" | "git-network-outline" | "git-network-sharp" | "git-pull-request-outline" | "git-pull-request-sharp" | "glasses-outline" | "glasses-sharp" | "globe-outline" | "globe-sharp" | "golf-outline" | "golf-sharp" | "grid-outline" | "grid-sharp" | "hammer-outline" | "hammer-sharp" | "hand-left" | "hand-left-outline" | "hand-left-sharp" | "hand-right" | "hand-right-outline" | "hand-right-sharp" | "happy" | "happy-outline" | "happy-sharp" | "hardware-chip" | "hardware-chip-outline" | "hardware-chip-sharp" | "headset-outline" | "headset-sharp" | "heart-circle-sharp" | "heart-dislike" | "heart-dislike-circle" | "heart-dislike-circle-outline" | "heart-dislike-circle-sharp" | "heart-dislike-outline" | "heart-dislike-sharp" | "heart-half-sharp" | "heart-sharp" | "help-buoy" | "help-buoy-outline" | "help-buoy-sharp" | "help-circle-sharp" | "help-outline" | "help-sharp" | "home-sharp" | "hourglass-outline" | "hourglass-sharp" | "ice-cream-outline" | "ice-cream-sharp" | "id-card-outline" | "id-card-sharp" | "image-sharp" | "images-outline" | "images-sharp" | "infinite" | "infinite-outline" | "infinite-sharp" | "information-circle-outline" | "information-circle-sharp" | "information-sharp" | "invert-mode" | "invert-mode-outline" | "invert-mode-sharp" | "journal-outline" | "journal-sharp" | "key-sharp" | "keypad" | "keypad-outline" | "keypad-sharp" | "language-outline" | "language-sharp" | "laptop-outline" | "laptop-sharp" | "layers-sharp" | "leaf-outline" | "leaf-sharp" | "library-sharp" | "link-outline" | "link-sharp" | "list-circle" | "list-circle-outline" | "list-circle-sharp" | "list-outline" | "list-sharp" | "locate-outline" | "locate-sharp" | "location-outline" | "location-sharp" | "lock-closed-outline" | "lock-closed-sharp" | "lock-open-sharp" | "log-in-outline" | "log-in-sharp" | "log-out-outline" | "log-out-sharp" | "logo-alipay" | "logo-amazon" | "logo-amplify" | "logo-android" | "logo-appflow" | "logo-apple" | "logo-apple-appstore" | "logo-apple-ar" | "logo-behance" | "logo-bitbucket" | "logo-bitcoin" | "logo-buffer" | "logo-capacitor" | "logo-chrome" | "logo-closed-captioning" | "logo-codepen" | "logo-css3" | "logo-designernews" | "logo-deviantart" | "logo-docker" | "logo-dribbble" | "logo-dropbox" | "logo-edge" | "logo-electron" | "logo-euro" | "logo-firebase" | "logo-firefox" | "logo-foursquare" | "logo-google" | "logo-google-playstore" | "logo-hackernews" | "logo-html5" | "logo-ionic" | "logo-ionitron" | "logo-javascript" | "logo-laravel" | "logo-markdown" | "logo-microsoft" | "logo-no-smoking" | "logo-nodejs" | "logo-octocat" | "logo-paypal" | "logo-playstation" | "logo-pwa" | "logo-reddit" | "logo-rss" | "logo-sass" | "logo-soundcloud" | "logo-stackoverflow" | "logo-steam" | "logo-stencil" | "logo-tableau" | "logo-threads" | "logo-tiktok" | "logo-trapeze" | "logo-tux" | "logo-twitch" | "logo-usd" | "logo-venmo" | "logo-vercel" | "logo-vimeo" | "logo-vk" | "logo-web-component" | "logo-whatsapp" | "logo-windows" | "logo-wordpress" | "logo-xbox" | "logo-yahoo" | "logo-yen" | "magnet-outline" | "magnet-sharp" | "mail-open-outline" | "mail-open-sharp" | "mail-outline" | "mail-sharp" | "mail-unread" | "mail-unread-outline" | "mail-unread-sharp" | "male" | "male-female" | "male-female-outline" | "male-female-sharp" | "male-outline" | "male-sharp" | "man-outline" | "man-sharp" | "map-sharp" | "medal-sharp" | "medical" | "medical-outline" | "medical-sharp" | "medkit" | "medkit-outline" | "medkit-sharp" | "megaphone-outline" | "megaphone-sharp" | "menu-outline" | "menu-sharp" | "mic-circle" | "mic-circle-outline" | "mic-circle-sharp" | "mic-off-circle" | "mic-off-circle-outline" | "mic-off-circle-sharp" | "mic-off-outline" | "mic-off-sharp" | "mic-outline" | "mic-sharp" | "moon-outline" | "moon-sharp" | "move-outline" | "move-sharp" | "musical-note-outline" | "musical-note-sharp" | "musical-notes" | "musical-notes-outline" | "musical-notes-sharp" | "navigate" | "navigate-circle" | "navigate-circle-outline" | "navigate-circle-sharp" | "navigate-outline" | "navigate-sharp" | "newspaper-outline" | "newspaper-sharp" | "notifications" | "notifications-circle" | "notifications-circle-outline" | "notifications-circle-sharp" | "notifications-off" | "notifications-off-circle" | "notifications-off-circle-outline" | "notifications-off-circle-sharp" | "notifications-off-outline" | "notifications-off-sharp" | "notifications-outline" | "notifications-sharp" | "nuclear" | "nuclear-outline" | "nuclear-sharp" | "nutrition-outline" | "nutrition-sharp" | "open" | "open-outline" | "open-sharp" | "options" | "options-outline" | "options-sharp" | "paper-plane-outline" | "paper-plane-sharp" | "partly-sunny" | "partly-sunny-outline" | "partly-sunny-sharp" | "pause-circle-sharp" | "pause-sharp" | "paw-sharp" | "pencil-sharp" | "people-circle" | "people-circle-outline" | "people-circle-sharp" | "people-outline" | "people-sharp" | "person-add-outline" | "person-add-sharp" | "person-circle-outline" | "person-circle-sharp" | "person-outline" | "person-remove" | "person-remove-outline" | "person-remove-sharp" | "person-sharp" | "phone-landscape-outline" | "phone-landscape-sharp" | "phone-portrait" | "phone-portrait-outline" | "phone-portrait-sharp" | "pie-chart-outline" | "pie-chart-sharp" | "pin-sharp" | "pint" | "pint-outline" | "pint-sharp" | "pizza-outline" | "pizza-sharp" | "planet-outline" | "planet-sharp" | "play-back" | "play-back-circle" | "play-back-circle-outline" | "play-back-circle-sharp" | "play-back-outline" | "play-back-sharp" | "play-circle-sharp" | "play-forward" | "play-forward-circle" | "play-forward-circle-outline" | "play-forward-circle-sharp" | "play-forward-outline" | "play-forward-sharp" | "play-sharp" | "play-skip-back" | "play-skip-back-circle" | "play-skip-back-circle-outline" | "play-skip-back-circle-sharp" | "play-skip-back-outline" | "play-skip-back-sharp" | "play-skip-forward" | "play-skip-forward-circle" | "play-skip-forward-circle-outline" | "play-skip-forward-circle-sharp" | "play-skip-forward-outline" | "play-skip-forward-sharp" | "podium-outline" | "podium-sharp" | "power-outline" | "power-sharp" | "pricetag" | "pricetag-outline" | "pricetag-sharp" | "pricetags" | "pricetags-outline" | "pricetags-sharp" | "print-outline" | "print-sharp" | "prism-outline" | "prism-sharp" | "pulse-outline" | "pulse-sharp" | "push-outline" | "push-sharp" | "qr-code-outline" | "qr-code-sharp" | "radio-button-off" | "radio-button-off-outline" | "radio-button-off-sharp" | "radio-button-on" | "radio-button-on-outline" | "radio-button-on-sharp" | "radio-outline" | "radio-sharp" | "rainy" | "rainy-outline" | "rainy-sharp" | "reader" | "reader-outline" | "reader-sharp" | "receipt-sharp" | "recording-outline" | "recording-sharp" | "refresh-circle-outline" | "refresh-circle-sharp" | "refresh-outline" | "refresh-sharp" | "reload-circle" | "reload-circle-outline" | "reload-circle-sharp" | "reload-outline" | "reload-sharp" | "remove" | "remove-circle" | "remove-circle-outline" | "remove-circle-sharp" | "remove-outline" | "remove-sharp" | "reorder-four" | "reorder-four-outline" | "reorder-four-sharp" | "reorder-three" | "reorder-three-outline" | "reorder-three-sharp" | "reorder-two" | "reorder-two-outline" | "reorder-two-sharp" | "repeat-outline" | "repeat-sharp" | "resize-outline" | "resize-sharp" | "restaurant-outline" | "restaurant-sharp" | "return-down-back" | "return-down-back-outline" | "return-down-back-sharp" | "return-down-forward" | "return-down-forward-outline" | "return-down-forward-sharp" | "return-up-back" | "return-up-back-outline" | "return-up-back-sharp" | "return-up-forward" | "return-up-forward-outline" | "return-up-forward-sharp" | "ribbon-outline" | "ribbon-sharp" | "rocket-sharp" | "rose-outline" | "rose-sharp" | "sad" | "sad-outline" | "sad-sharp" | "save-outline" | "save-sharp" | "scale-sharp" | "scan-circle" | "scan-circle-outline" | "scan-circle-sharp" | "scan-outline" | "scan-sharp" | "school-sharp" | "search-circle" | "search-circle-outline" | "search-circle-sharp" | "search-outline" | "search-sharp" | "send-sharp" | "server-sharp" | "settings-outline" | "settings-sharp" | "shapes-outline" | "shapes-sharp" | "share-sharp" | "share-social" | "share-social-outline" | "share-social-sharp" | "shield-checkmark" | "shield-checkmark-outline" | "shield-checkmark-sharp" | "shield-half-outline" | "shield-half-sharp" | "shield-sharp" | "shirt-outline" | "shirt-sharp" | "shuffle-outline" | "shuffle-sharp" | "skull-sharp" | "snow-outline" | "snow-sharp" | "sparkles-outline" | "sparkles-sharp" | "speedometer-outline" | "speedometer-sharp" | "square-sharp" | "star-half-outline" | "star-half-sharp" | "star-sharp" | "stats-chart" | "stats-chart-outline" | "stats-chart-sharp" | "stop-circle-sharp" | "stop-sharp" | "stopwatch-outline" | "stopwatch-sharp" | "storefront-sharp" | "subway-outline" | "subway-sharp" | "sunny" | "sunny-outline" | "sunny-sharp" | "swap-horizontal-outline" | "swap-horizontal-sharp" | "swap-vertical-outline" | "swap-vertical-sharp" | "sync-circle-outline" | "sync-circle-sharp" | "sync-outline" | "sync-sharp" | "tablet-landscape-outline" | "tablet-landscape-sharp" | "tablet-portrait" | "tablet-portrait-outline" | "tablet-portrait-sharp" | "telescope-outline" | "telescope-sharp" | "tennisball" | "tennisball-outline" | "tennisball-sharp" | "terminal-outline" | "terminal-sharp" | "text-outline" | "text-sharp" | "thermometer-outline" | "thermometer-sharp" | "thumbs-down-outline" | "thumbs-down-sharp" | "thumbs-up-outline" | "thumbs-up-sharp" | "thunderstorm-outline" | "thunderstorm-sharp" | "ticket-sharp" | "time-outline" | "time-sharp" | "timer-sharp" | "today" | "today-outline" | "today-sharp" | "toggle" | "toggle-outline" | "toggle-sharp" | "trail-sign" | "trail-sign-outline" | "trail-sign-sharp" | "train-outline" | "train-sharp" | "transgender-outline" | "transgender-sharp" | "trash-bin" | "trash-bin-outline" | "trash-bin-sharp" | "trash-outline" | "trash-sharp" | "trending-down-outline" | "trending-down-sharp" | "trending-up-outline" | "trending-up-sharp" | "triangle-sharp" | "trophy-sharp" | "tv-outline" | "tv-sharp" | "umbrella-sharp" | "unlink-outline" | "unlink-sharp" | "videocam" | "videocam-off" | "videocam-off-outline" | "videocam-off-sharp" | "videocam-outline" | "videocam-sharp" | "volume-high-outline" | "volume-high-sharp" | "volume-low-outline" | "volume-low-sharp" | "volume-medium-outline" | "volume-medium-sharp" | "volume-mute-outline" | "volume-mute-sharp" | "volume-off-outline" | "volume-off-sharp" | "walk-outline" | "walk-sharp" | "wallet-sharp" | "warning-outline" | "warning-sharp" | "watch-outline" | "watch-sharp" | "water-sharp" | "wifi-outline" | "wifi-sharp" | "wine-outline" | "wine-sharp" | "woman-outline" | "woman-sharp">): import("react").JSX.Element;
1369
1369
  displayName: string;
1370
1370
  };
1371
1371
  export {};
@@ -113,7 +113,7 @@ declare const iwwaIconNames: {
113
113
  };
114
114
  export type IwwaIconName = keyof typeof iwwaIconNames;
115
115
  export declare const Iwwa: {
116
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"map" | "filter" | "search" | "alert" | "menu" | "option" | "delete" | "export" | "flag" | "help" | "logout" | "merge" | "tag" | "upload" | "delta" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "gauge" | "lock" | "thermometer" | "box" | "alarm" | "calendar" | "history" | "close" | "lightbulb" | "pause" | "power" | "minus" | "square-root" | "information" | "star" | "divide" | "trash" | "user" | "expand" | "info" | "settings" | "edit" | "csv" | "dashboard" | "drag-drop" | "percentage" | "png" | "swipe" | "file-pdf" | "angle-left" | "file-csv" | "clone" | "add" | "reset" | "humidity" | "duplicate" | "monitoring" | "file-png" | "co2" | "pinch" | "chart" | "multiply" | "star-o" | "assign" | "month" | "week" | "danger" | "bad" | "good" | "add-15m" | "add-1d" | "add-1m" | "add-1w" | "add-1y" | "alarm-o" | "bad-o" | "chart-style1" | "chart-style2" | "chart-style3" | "chart-style4" | "circumflex" | "close-braket" | "confront" | "connection-o" | "consumption-o" | "file-xsl" | "good-o" | "innowatio-logo" | "list-favourite" | "middle-o" | "middling" | "number-asc" | "number-desc" | "open-braket" | "option-horizontal" | "remote-control-o" | "remove-15m" | "remove-1d" | "remove-1m" | "remove-1w" | "remove-1y" | "sort-by" | "text-asc" | "text-desc" | "user-functions" | "year">): import("react").JSX.Element;
116
+ ({ 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" | "search" | "alert" | "menu" | "option" | "delete" | "export" | "flag" | "help" | "logout" | "merge" | "tag" | "upload" | "delta" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "gauge" | "lock" | "thermometer" | "box" | "alarm" | "calendar" | "history" | "close" | "lightbulb" | "pause" | "power" | "minus" | "square-root" | "information" | "star" | "divide" | "trash" | "user" | "expand" | "info" | "settings" | "edit" | "csv" | "dashboard" | "drag-drop" | "percentage" | "png" | "swipe" | "file-pdf" | "angle-left" | "file-csv" | "clone" | "add" | "reset" | "humidity" | "duplicate" | "monitoring" | "file-png" | "co2" | "pinch" | "chart" | "multiply" | "star-o" | "assign" | "month" | "week" | "danger" | "bad" | "good" | "add-15m" | "add-1d" | "add-1m" | "add-1w" | "add-1y" | "alarm-o" | "bad-o" | "chart-style1" | "chart-style2" | "chart-style3" | "chart-style4" | "circumflex" | "close-braket" | "confront" | "connection-o" | "consumption-o" | "file-xsl" | "good-o" | "innowatio-logo" | "list-favourite" | "middle-o" | "middling" | "number-asc" | "number-desc" | "open-braket" | "option-horizontal" | "remote-control-o" | "remove-15m" | "remove-1d" | "remove-1m" | "remove-1w" | "remove-1y" | "sort-by" | "text-asc" | "text-desc" | "user-functions" | "year">): import("react").JSX.Element;
117
117
  displayName: string;
118
118
  };
119
119
  export {};