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
@@ -292,7 +292,7 @@ declare const mdi_lightIconNames: {
292
292
  };
293
293
  export type MdiLightIconName = keyof typeof mdi_lightIconNames;
294
294
  export declare const MdiLight: {
295
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"loading" | "signal" | "image" | "link" | "alert" | "menu" | "tab" | "repeat" | "label" | "script" | "table" | "circle" | "stop" | "xml" | "bluetooth" | "book" | "book-multiple" | "book-plus" | "bookmark" | "briefcase" | "bullhorn" | "cancel" | "clipboard" | "clipboard-check" | "clipboard-plus" | "clipboard-text" | "closed-caption" | "comment" | "comment-text" | "console" | "content-duplicate" | "content-save" | "content-save-all" | "crop" | "crop-free" | "delete" | "diamond-stone" | "dots-horizontal" | "dots-vertical" | "download" | "eject" | "email" | "email-open" | "eye" | "eye-off" | "fast-forward" | "flag" | "forum" | "fullscreen" | "fullscreen-exit" | "gender-female" | "gender-male" | "gender-male-female" | "gender-transgender" | "grid" | "grid-large" | "grid-off" | "group" | "help" | "help-circle" | "inbox" | "link-variant" | "login" | "logout" | "magnify-minus" | "magnify-plus" | "memory" | "message" | "message-image" | "message-processing" | "message-reply" | "message-text" | "note" | "note-multiple" | "note-plus" | "note-text" | "paperclip" | "pin" | "pin-off" | "plus-circle" | "presentation" | "presentation-play" | "redo-variant" | "repeat-off" | "repeat-once" | "rewind" | "rss" | "share-variant" | "sitemap" | "sleep" | "sleep-off" | "spellcheck" | "tab-plus" | "tag" | "thumb-down" | "thumb-up" | "thumbs-up-down" | "undo-variant" | "unfold-less-horizontal" | "unfold-less-vertical" | "unfold-more-horizontal" | "unfold-more-vertical" | "ungroup" | "upload" | "wifi" | "account" | "account-alert" | "alert-circle" | "alert-octagon" | "comment-alert" | "file-alert" | "message-alert" | "sim-alert" | "arrange-bring-forward" | "arrange-bring-to-front" | "arrange-send-backward" | "arrange-send-to-back" | "vector-arrange-above" | "vector-arrange-below" | "arrow-down" | "arrow-down-circle" | "arrow-left" | "arrow-left-circle" | "arrow-right" | "arrow-right-circle" | "arrow-up" | "arrow-up-circle" | "chevron-double-down" | "chevron-double-left" | "chevron-double-right" | "chevron-double-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "refresh" | "share" | "shuffle" | "equalizer" | "music" | "music-off" | "volume-high" | "volume-minus" | "volume-mute" | "volume-off" | "volume-plus" | "lock" | "lock-open" | "bank" | "credit-card" | "credit-card-scan" | "currency-eur" | "currency-gbp" | "currency-rub" | "currency-usd" | "wallet" | "phone" | "sim" | "sim-off" | "face-mask" | "cloud" | "cloud-download" | "cloud-upload" | "alarm" | "alarm-plus" | "calendar" | "clock" | "monitor" | "monitor-multiple" | "television" | "pencil" | "file" | "file-multiple" | "file-plus" | "folder" | "folder-multiple" | "folder-plus" | "hamburger" | "taco" | "check" | "check-circle" | "minus-box" | "minus-circle" | "flask" | "flask-empty" | "heart" | "heart-half" | "shield" | "layers" | "magnify" | "map-marker" | "vector-combine" | "vector-difference" | "vector-difference-ab" | "vector-difference-ba" | "vector-intersection" | "vector-union" | "factory" | "content-cut" | "gift" | "alarm-panel" | "bell" | "camera" | "home" | "lightbulb" | "lightbulb-on" | "nfc-variant" | "pause" | "play" | "power" | "printer" | "skip-next" | "skip-previous" | "chart-areaspline" | "chart-bar" | "chart-histogram" | "chart-line" | "chart-pie" | "minus" | "plus" | "plus-box" | "heart-off" | "microphone" | "microphone-off" | "bell-off" | "bell-plus" | "information" | "hexagon" | "octagon" | "rhombus" | "square" | "star" | "star-half" | "triangle" | "cart" | "baseball-diamond" | "trophy" | "border-all" | "border-bottom" | "border-horizontal" | "border-inside" | "border-left" | "border-none" | "border-outside" | "border-right" | "border-top" | "border-vertical" | "content-paste" | "format-align-bottom" | "format-align-center" | "format-align-justify" | "format-align-left" | "format-align-middle" | "format-align-right" | "format-align-top" | "format-bold" | "format-clear" | "format-float-center" | "format-float-left" | "format-float-none" | "format-float-right" | "format-indent-decrease" | "format-indent-increase" | "format-italic" | "format-line-spacing" | "format-list-bulleted" | "format-list-checks" | "format-list-numbered" | "format-quote-close" | "format-quote-open" | "format-underline" | "format-wrap-inline" | "format-wrap-square" | "format-wrap-tight" | "format-wrap-top-bottom" | "tooltip" | "tooltip-text" | "truck" | "camcorder" | "message-video" | "view-dashboard" | "view-module" | "flash" | "settings">): import("react").JSX.Element;
295
+ ({ 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<"loading" | "repeat" | "link" | "signal" | "image" | "alert" | "menu" | "tab" | "label" | "script" | "table" | "circle" | "stop" | "xml" | "bluetooth" | "book" | "book-multiple" | "book-plus" | "bookmark" | "briefcase" | "bullhorn" | "cancel" | "clipboard" | "clipboard-check" | "clipboard-plus" | "clipboard-text" | "closed-caption" | "comment" | "comment-text" | "console" | "content-duplicate" | "content-save" | "content-save-all" | "crop" | "crop-free" | "delete" | "diamond-stone" | "dots-horizontal" | "dots-vertical" | "download" | "eject" | "email" | "email-open" | "eye" | "eye-off" | "fast-forward" | "flag" | "forum" | "fullscreen" | "fullscreen-exit" | "gender-female" | "gender-male" | "gender-male-female" | "gender-transgender" | "grid" | "grid-large" | "grid-off" | "group" | "help" | "help-circle" | "inbox" | "link-variant" | "login" | "logout" | "magnify-minus" | "magnify-plus" | "memory" | "message" | "message-image" | "message-processing" | "message-reply" | "message-text" | "note" | "note-multiple" | "note-plus" | "note-text" | "paperclip" | "pin" | "pin-off" | "plus-circle" | "presentation" | "presentation-play" | "redo-variant" | "repeat-off" | "repeat-once" | "rewind" | "rss" | "share-variant" | "sitemap" | "sleep" | "sleep-off" | "spellcheck" | "tab-plus" | "tag" | "thumb-down" | "thumb-up" | "thumbs-up-down" | "undo-variant" | "unfold-less-horizontal" | "unfold-less-vertical" | "unfold-more-horizontal" | "unfold-more-vertical" | "ungroup" | "upload" | "wifi" | "account" | "account-alert" | "alert-circle" | "alert-octagon" | "comment-alert" | "file-alert" | "message-alert" | "sim-alert" | "arrange-bring-forward" | "arrange-bring-to-front" | "arrange-send-backward" | "arrange-send-to-back" | "vector-arrange-above" | "vector-arrange-below" | "arrow-down" | "arrow-down-circle" | "arrow-left" | "arrow-left-circle" | "arrow-right" | "arrow-right-circle" | "arrow-up" | "arrow-up-circle" | "chevron-double-down" | "chevron-double-left" | "chevron-double-right" | "chevron-double-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "refresh" | "share" | "shuffle" | "equalizer" | "music" | "music-off" | "volume-high" | "volume-minus" | "volume-mute" | "volume-off" | "volume-plus" | "lock" | "lock-open" | "bank" | "credit-card" | "credit-card-scan" | "currency-eur" | "currency-gbp" | "currency-rub" | "currency-usd" | "wallet" | "phone" | "sim" | "sim-off" | "face-mask" | "cloud" | "cloud-download" | "cloud-upload" | "alarm" | "alarm-plus" | "calendar" | "clock" | "monitor" | "monitor-multiple" | "television" | "pencil" | "file" | "file-multiple" | "file-plus" | "folder" | "folder-multiple" | "folder-plus" | "hamburger" | "taco" | "check" | "check-circle" | "minus-box" | "minus-circle" | "flask" | "flask-empty" | "heart" | "heart-half" | "shield" | "layers" | "magnify" | "map-marker" | "vector-combine" | "vector-difference" | "vector-difference-ab" | "vector-difference-ba" | "vector-intersection" | "vector-union" | "factory" | "content-cut" | "gift" | "alarm-panel" | "bell" | "camera" | "home" | "lightbulb" | "lightbulb-on" | "nfc-variant" | "pause" | "play" | "power" | "printer" | "skip-next" | "skip-previous" | "chart-areaspline" | "chart-bar" | "chart-histogram" | "chart-line" | "chart-pie" | "minus" | "plus" | "plus-box" | "heart-off" | "microphone" | "microphone-off" | "bell-off" | "bell-plus" | "information" | "hexagon" | "octagon" | "rhombus" | "square" | "star" | "star-half" | "triangle" | "cart" | "baseball-diamond" | "trophy" | "border-all" | "border-bottom" | "border-horizontal" | "border-inside" | "border-left" | "border-none" | "border-outside" | "border-right" | "border-top" | "border-vertical" | "content-paste" | "format-align-bottom" | "format-align-center" | "format-align-justify" | "format-align-left" | "format-align-middle" | "format-align-right" | "format-align-top" | "format-bold" | "format-clear" | "format-float-center" | "format-float-left" | "format-float-none" | "format-float-right" | "format-indent-decrease" | "format-indent-increase" | "format-italic" | "format-line-spacing" | "format-list-bulleted" | "format-list-checks" | "format-list-numbered" | "format-quote-close" | "format-quote-open" | "format-underline" | "format-wrap-inline" | "format-wrap-square" | "format-wrap-tight" | "format-wrap-top-bottom" | "tooltip" | "tooltip-text" | "truck" | "camcorder" | "message-video" | "view-dashboard" | "view-module" | "flash" | "settings">): import("react").JSX.Element;
296
296
  displayName: string;
297
297
  };
298
298
  export {};
@@ -152,7 +152,7 @@ declare const medical_iconIconNames: {
152
152
  };
153
153
  export type MedicalIconIconName = keyof typeof medical_iconIconNames;
154
154
  export declare const MedicalIcon: {
155
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"smoking" | "nutrition" | "fire-extinguisher" | "ambulance" | "hospital" | "stairs" | "accessibility" | "dental" | "restaurant" | "physical-therapy" | "emergency" | "outpatient" | "cardiology" | "dermatology" | "genetics" | "inpatient" | "neurology" | "oncology" | "ophthalmology" | "pediatrics" | "radiology" | "first-aid" | "no-smoking" | "chapel" | "laboratory" | "ultrasound" | "volume-control" | "coffee-shop" | "care-staff-area" | "health-services" | "intensive-care" | "mri-pet" | "pharmacy" | "surgery" | "nursery" | "gift-shop" | "drinking-fountain" | "medical-records" | "ear-nose-throat" | "mental-health" | "administration" | "alternative-complementary" | "anesthesia" | "billing" | "cath-lab" | "diabetes-education" | "elevators" | "family-practice" | "health-education" | "hearing-assistance" | "i-accessibility" | "i-administration" | "i-alternative-complementary" | "i-ambulance" | "i-anesthesia" | "i-billing" | "i-cardiology" | "i-care-staff-area" | "i-cath-lab" | "i-chapel" | "i-coffee-shop" | "i-dental" | "i-dermatology" | "i-diabetes-education" | "i-drinking-fountain" | "i-ear-nose-throat" | "i-elevators" | "i-emergency" | "i-family-practice" | "i-fire-extinguisher" | "i-first-aid" | "i-genetics" | "i-gift-shop" | "i-health-education" | "i-health-services" | "i-hearing-assistance" | "i-hospital" | "i-imaging-alternative-ct" | "i-imaging-alternative-mri" | "i-imaging-alternative-mri-two" | "i-imaging-alternative-pet" | "i-imaging-root-category" | "i-immunizations" | "i-infectious-diseases" | "i-information-us" | "i-inpatient" | "i-intensive-care" | "i-internal-medicine" | "i-interpreter-services" | "i-kidney" | "i-labor-delivery" | "i-laboratory" | "i-mammography" | "i-medical-library" | "i-medical-records" | "i-mental-health" | "i-mri-pet" | "i-neurology" | "i-no-smoking" | "i-nursery" | "i-nutrition" | "i-oncology" | "i-ophthalmology" | "i-outpatient" | "i-pathology" | "i-pediatrics" | "i-pharmacy" | "i-physical-therapy" | "i-radiology" | "i-registration" | "i-respiratory" | "i-restaurant" | "i-restrooms" | "i-smoking" | "i-social-services" | "i-stairs" | "i-surgery" | "i-text-telephone" | "i-ultrasound" | "i-volume-control" | "i-waiting-area" | "i-womens-health" | "imaging-alternative-ct" | "imaging-alternative-mri" | "imaging-alternative-mri-two" | "imaging-alternative-pet" | "imaging-root-category" | "immunizations" | "infectious-diseases" | "information-us" | "internal-medicine" | "interpreter-services" | "kidney" | "labor-delivery" | "mammography" | "medical-library" | "pathology" | "registration" | "respiratory" | "restrooms" | "social-services" | "text-telephone" | "waiting-area" | "womens-health">): import("react").JSX.Element;
155
+ ({ 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<"smoking" | "nutrition" | "fire-extinguisher" | "ambulance" | "hospital" | "stairs" | "accessibility" | "dental" | "restaurant" | "physical-therapy" | "emergency" | "outpatient" | "cardiology" | "dermatology" | "genetics" | "inpatient" | "neurology" | "oncology" | "ophthalmology" | "pediatrics" | "radiology" | "first-aid" | "no-smoking" | "chapel" | "laboratory" | "ultrasound" | "volume-control" | "coffee-shop" | "care-staff-area" | "health-services" | "intensive-care" | "mri-pet" | "pharmacy" | "surgery" | "nursery" | "gift-shop" | "drinking-fountain" | "medical-records" | "ear-nose-throat" | "mental-health" | "administration" | "alternative-complementary" | "anesthesia" | "billing" | "cath-lab" | "diabetes-education" | "elevators" | "family-practice" | "health-education" | "hearing-assistance" | "i-accessibility" | "i-administration" | "i-alternative-complementary" | "i-ambulance" | "i-anesthesia" | "i-billing" | "i-cardiology" | "i-care-staff-area" | "i-cath-lab" | "i-chapel" | "i-coffee-shop" | "i-dental" | "i-dermatology" | "i-diabetes-education" | "i-drinking-fountain" | "i-ear-nose-throat" | "i-elevators" | "i-emergency" | "i-family-practice" | "i-fire-extinguisher" | "i-first-aid" | "i-genetics" | "i-gift-shop" | "i-health-education" | "i-health-services" | "i-hearing-assistance" | "i-hospital" | "i-imaging-alternative-ct" | "i-imaging-alternative-mri" | "i-imaging-alternative-mri-two" | "i-imaging-alternative-pet" | "i-imaging-root-category" | "i-immunizations" | "i-infectious-diseases" | "i-information-us" | "i-inpatient" | "i-intensive-care" | "i-internal-medicine" | "i-interpreter-services" | "i-kidney" | "i-labor-delivery" | "i-laboratory" | "i-mammography" | "i-medical-library" | "i-medical-records" | "i-mental-health" | "i-mri-pet" | "i-neurology" | "i-no-smoking" | "i-nursery" | "i-nutrition" | "i-oncology" | "i-ophthalmology" | "i-outpatient" | "i-pathology" | "i-pediatrics" | "i-pharmacy" | "i-physical-therapy" | "i-radiology" | "i-registration" | "i-respiratory" | "i-restaurant" | "i-restrooms" | "i-smoking" | "i-social-services" | "i-stairs" | "i-surgery" | "i-text-telephone" | "i-ultrasound" | "i-volume-control" | "i-waiting-area" | "i-womens-health" | "imaging-alternative-ct" | "imaging-alternative-mri" | "imaging-alternative-mri-two" | "imaging-alternative-pet" | "imaging-root-category" | "immunizations" | "infectious-diseases" | "information-us" | "internal-medicine" | "interpreter-services" | "kidney" | "labor-delivery" | "mammography" | "medical-library" | "pathology" | "registration" | "respiratory" | "restrooms" | "social-services" | "text-telephone" | "waiting-area" | "womens-health">): import("react").JSX.Element;
156
156
  displayName: string;
157
157
  };
158
158
  export {};
@@ -659,7 +659,7 @@ declare const memoryIconNames: {
659
659
  };
660
660
  export type MemoryIconName = keyof typeof memoryIconNames;
661
661
  export declare const Memory: {
662
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"number" | "map" | "filter" | "fill" | "image" | "search" | "alert" | "key" | "label" | "script" | "circle" | "stop" | "align-horizontal-center" | "align-horizontal-left" | "align-horizontal-right" | "align-vertical-bottom" | "align-vertical-center" | "align-vertical-top" | "anvil" | "application" | "apps-box" | "archive" | "arrow-up-left" | "arrow-up-right" | "aspect-ratio" | "barcode" | "book" | "bookmark" | "briefcase" | "cancel" | "card-text" | "chat" | "chat-processing" | "clipboard" | "close-outline" | "comment" | "comment-text" | "crown" | "cube-unfolded" | "diamond" | "download" | "email" | "eye" | "heart-broken" | "help" | "help-box" | "label-variant" | "login" | "logout" | "magnify-minus" | "magnify-plus" | "message" | "message-processing" | "message-text" | "note" | "notebook" | "paperclip" | "peace" | "plus-circle" | "poll" | "pound" | "relative-scale" | "ring" | "stool" | "tag" | "tag-text" | "target" | "tent" | "toggle-switch-off" | "toy-brick" | "upload" | "wall" | "weight" | "account" | "account-box" | "shovel" | "water" | "alert-box" | "alert-circle" | "alert-octagon" | "alert-rhombus" | "alpha-a" | "alpha-b" | "alpha-c" | "alpha-d" | "alpha-e" | "alpha-f" | "alpha-g" | "alpha-h" | "alpha-i" | "alpha-j" | "alpha-k" | "alpha-l" | "alpha-m" | "alpha-n" | "alpha-o" | "alpha-p" | "alpha-q" | "alpha-r" | "alpha-s" | "alpha-t" | "alpha-u" | "alpha-v" | "alpha-w" | "alpha-x" | "alpha-y" | "alpha-z" | "bug" | "arrow-bottom-left" | "arrow-bottom-right" | "arrow-down" | "arrow-down-bold" | "arrow-down-box" | "arrow-down-circle" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-left-bold" | "arrow-left-box" | "arrow-left-circle" | "arrow-left-right" | "arrow-right" | "arrow-right-bold" | "arrow-right-box" | "arrow-right-circle" | "arrow-top-left" | "arrow-top-right" | "arrow-up" | "arrow-up-bold" | "arrow-up-box" | "arrow-up-circle" | "arrow-up-down" | "chevron-down" | "chevron-down-circle" | "chevron-left" | "chevron-left-circle" | "chevron-right" | "chevron-right-circle" | "chevron-up" | "chevron-up-circle" | "menu-down" | "menu-left" | "menu-right" | "menu-up" | "music-note" | "speaker" | "volume-high" | "volume-low" | "volume-medium" | "volume-mute" | "battery-50" | "lock" | "lock-open" | "bank" | "cash" | "credit-card" | "box" | "glasses" | "necklace" | "cloud" | "database" | "calendar" | "calendar-import" | "calendar-month" | "clock" | "monitor" | "pencil" | "file" | "folder" | "folder-open" | "text-box" | "beer" | "coffee" | "card" | "check" | "checkbox-blank" | "checkbox-intermediate" | "checkbox-intermediate-variant" | "checkbox-marked" | "close" | "minus-box" | "minus-circle" | "radiobox-marked" | "bow-arrow" | "checkerboard" | "flask" | "flask-empty" | "gamepad" | "gamepad-down" | "gamepad-left" | "gamepad-right" | "gamepad-up" | "heart" | "shield" | "skull" | "spear" | "sword" | "compass" | "axe" | "pickaxe" | "toolbox" | "bell" | "cast" | "door" | "door-open" | "fire" | "lightbulb" | "pause" | "play" | "calculator" | "chart-bar" | "division" | "minus" | "plus" | "plus-box" | "microphone" | "castle" | "flask-round-bottom" | "flask-round-bottom-empty" | "cube" | "hexagon" | "octagon" | "cart" | "torch" | "align-horizontal-distribute" | "align-vertical-distribute" | "border-bottom" | "border-inside" | "border-left" | "border-none" | "border-outside" | "border-right" | "border-top" | "format-align-bottom" | "format-align-center" | "format-align-justify" | "format-align-left" | "format-align-right" | "format-align-top" | "format-bold" | "format-float-left" | "format-float-right" | "format-horizontal-align-center" | "format-italic" | "format-line-spacing" | "format-text" | "format-vertical-align-center" | "bag-personal" | "apps" | "broadcast" | "umbrella" | "battery-0" | "battery-100" | "trash" | "terminal" | "wind" | "alert-hexagon" | "bow" | "cloud-down" | "cloud-up" | "message-user" | "notification" | "rotate-clockwise" | "trident" | "bug-fill" | "clock-fill" | "eye-fill" | "journal" | "plus-circle-fill" | "border-top-left" | "floppy-disk" | "gamepad-fill" | "weight-fill" | "rotate-counterclockwise" | "arrow-down-left-box" | "arrow-down-right-box" | "arrow-up-left-box" | "arrow-up-right-box" | "remove-circle" | "battery-25" | "battery-75" | "dagger" | "alert-circle-fill" | "minus-circle-fill" | "multiply" | "pike" | "arrow" | "blood" | "range" | "battle-axe" | "chest" | "crossbow" | "glaive" | "halberd" | "led" | "well" | "whip" | "device" | "arrow-left-down" | "arrow-left-up" | "arrow-right-down" | "arrow-right-up" | "alert-hexagon-fill" | "apps-box-fill" | "bag-personal-fill" | "box-light-dashed-down-left" | "box-light-dashed-down-right" | "box-light-dashed-horizontal" | "box-light-dashed-up-left" | "box-light-dashed-up-right" | "box-light-dashed-vertical" | "box-light-dashed-vertical-horizontal" | "box-light-double-down-left" | "box-light-double-down-right" | "box-light-double-horizontal" | "box-light-double-horizontal-down" | "box-light-double-horizontal-light-down" | "box-light-double-horizontal-light-up" | "box-light-double-horizontal-up" | "box-light-double-round-down-left" | "box-light-double-round-down-right" | "box-light-double-round-up-left" | "box-light-double-round-up-right" | "box-light-double-up-left" | "box-light-double-up-right" | "box-light-double-vertical" | "box-light-double-vertical-horizontal" | "box-light-double-vertical-left" | "box-light-double-vertical-light-left" | "box-light-double-vertical-light-right" | "box-light-double-vertical-right" | "box-light-down-left" | "box-light-down-left-circle" | "box-light-down-left-stipple" | "box-light-down-left-stipple-inner" | "box-light-down-left-stipple-outer" | "box-light-down-right" | "box-light-down-right-circle" | "box-light-down-right-stipple" | "box-light-down-right-stipple-inner" | "box-light-down-right-stipple-outer" | "box-light-fold-down-left" | "box-light-fold-down-right" | "box-light-fold-up-left" | "box-light-fold-up-right" | "box-light-horizontal" | "box-light-horizontal-circle" | "box-light-horizontal-down" | "box-light-horizontal-down-stipple" | "box-light-horizontal-down-stipple-down" | "box-light-horizontal-down-stipple-down-left" | "box-light-horizontal-down-stipple-down-right" | "box-light-horizontal-menu-down" | "box-light-horizontal-menu-left" | "box-light-horizontal-menu-right" | "box-light-horizontal-menu-up" | "box-light-horizontal-stipple" | "box-light-horizontal-stipple-down" | "box-light-horizontal-stipple-up" | "box-light-horizontal-up" | "box-light-horizontal-up-stipple" | "box-light-horizontal-up-stipple-down" | "box-light-horizontal-up-stipple-up" | "box-light-horizontal-up-stipple-up-left" | "box-light-horizontal-up-stipple-up-right" | "box-light-round-down-left" | "box-light-round-down-left-stipple" | "box-light-round-down-left-stipple-inner" | "box-light-round-down-left-stipple-outer" | "box-light-round-down-right" | "box-light-round-down-right-stipple" | "box-light-round-down-right-stipple-inner" | "box-light-round-down-right-stipple-outer" | "box-light-round-up-left" | "box-light-round-up-left-stipple" | "box-light-round-up-left-stipple-inner" | "box-light-round-up-left-stipple-outer" | "box-light-round-up-right" | "box-light-round-up-right-stipple" | "box-light-round-up-right-stipple-inner" | "box-light-round-up-right-stipple-outer" | "box-light-up-left" | "box-light-up-left-circle" | "box-light-up-left-stipple" | "box-light-up-left-stipple-inner" | "box-light-up-left-stipple-outer" | "box-light-up-right" | "box-light-up-right-circle" | "box-light-up-right-stipple" | "box-light-up-right-stipple-inner" | "box-light-up-right-stipple-outer" | "box-light-vertical" | "box-light-vertical-circle" | "box-light-vertical-horizontal" | "box-light-vertical-horizontal-stipple" | "box-light-vertical-horizontal-stipple-down" | "box-light-vertical-horizontal-stipple-down-left" | "box-light-vertical-horizontal-stipple-down-right" | "box-light-vertical-horizontal-stipple-left" | "box-light-vertical-horizontal-stipple-left-down-right" | "box-light-vertical-horizontal-stipple-left-up-right" | "box-light-vertical-horizontal-stipple-right" | "box-light-vertical-horizontal-stipple-right-down-left" | "box-light-vertical-horizontal-stipple-right-up-left" | "box-light-vertical-horizontal-stipple-up" | "box-light-vertical-horizontal-stipple-up-left" | "box-light-vertical-horizontal-stipple-up-right" | "box-light-vertical-left" | "box-light-vertical-left-stipple" | "box-light-vertical-left-stipple-down-left" | "box-light-vertical-left-stipple-left" | "box-light-vertical-left-stipple-up-left" | "box-light-vertical-menu-down" | "box-light-vertical-menu-left" | "box-light-vertical-menu-right" | "box-light-vertical-menu-up" | "box-light-vertical-right" | "box-light-vertical-right-stipple" | "box-light-vertical-right-stipple-down-right" | "box-light-vertical-right-stipple-left" | "box-light-vertical-right-stipple-right" | "box-light-vertical-right-stipple-up-right" | "box-light-vertical-stipple" | "box-light-vertical-stipple-left" | "box-light-vertical-stipple-right" | "box-outer-light-all" | "box-outer-light-dashed-all" | "box-outer-light-dashed-down" | "box-outer-light-dashed-down-left" | "box-outer-light-dashed-down-left-right" | "box-outer-light-dashed-down-right" | "box-outer-light-dashed-fold-down-left" | "box-outer-light-dashed-fold-down-right" | "box-outer-light-dashed-fold-up-left" | "box-outer-light-dashed-fold-up-right" | "box-outer-light-dashed-left" | "box-outer-light-dashed-left-right" | "box-outer-light-dashed-right" | "box-outer-light-dashed-up" | "box-outer-light-dashed-up-down" | "box-outer-light-dashed-up-down-left" | "box-outer-light-dashed-up-down-right" | "box-outer-light-dashed-up-left" | "box-outer-light-dashed-up-left-right" | "box-outer-light-dashed-up-right" | "box-outer-light-down" | "box-outer-light-down-left" | "box-outer-light-down-left-right" | "box-outer-light-down-left-stipple" | "box-outer-light-down-right" | "box-outer-light-down-right-stipple" | "box-outer-light-down-stipple" | "box-outer-light-down-vertical-stipple" | "box-outer-light-down-vertical-stipple-left" | "box-outer-light-down-vertical-stipple-right" | "box-outer-light-left" | "box-outer-light-left-horizontal-stipple" | "box-outer-light-left-horizontal-stipple-down" | "box-outer-light-left-horizontal-stipple-up" | "box-outer-light-left-right" | "box-outer-light-left-right-stipple" | "box-outer-light-left-stipple" | "box-outer-light-right" | "box-outer-light-right-horizontal-stipple" | "box-outer-light-right-horizontal-stipple-down" | "box-outer-light-right-horizontal-stipple-up" | "box-outer-light-right-stipple" | "box-outer-light-round-down-left" | "box-outer-light-round-down-right" | "box-outer-light-round-up-left" | "box-outer-light-round-up-right" | "box-outer-light-up" | "box-outer-light-up-down" | "box-outer-light-up-down-left" | "box-outer-light-up-down-right" | "box-outer-light-up-down-stipple" | "box-outer-light-up-left" | "box-outer-light-up-left-right" | "box-outer-light-up-left-stipple" | "box-outer-light-up-right" | "box-outer-light-up-right-stipple" | "box-outer-light-up-stipple" | "box-outer-light-up-vertical-stipple" | "box-outer-light-up-vertical-stipple-left" | "box-outer-light-up-vertical-stipple-right" | "checker-large" | "checker-medium" | "checker-small" | "chest-fill" | "coin-copper" | "coin-electrum" | "coin-gold" | "coin-platinum" | "coin-silver" | "comment-user" | "dot-hexagon" | "dot-hexagon-fill" | "dot-octagon" | "dot-octagon-fill" | "format-text-multiline" | "format-text-single-line" | "gamepad-center" | "gamepad-down-left" | "gamepad-down-right" | "gamepad-up-left" | "gamepad-up-right" | "help-box-fill" | "home-thatched" | "javalin" | "lance" | "linen" | "menu-bottom-left" | "menu-bottom-right" | "menu-down-fill" | "menu-left-fill" | "menu-left-right" | "menu-right-fill" | "menu-top-left" | "menu-top-right" | "menu-up-down" | "menu-up-fill" | "minus-box-fill" | "note-nailed" | "pictogrammers" | "plus-box-fill" | "quarterstaff" | "scimitar" | "slider-end" | "slider-right" | "table-top-door-horizontal" | "table-top-door-one-way-down" | "table-top-door-one-way-left" | "table-top-door-one-way-right" | "table-top-door-one-way-up" | "table-top-door-secret-horizontal" | "table-top-door-secret-vertical" | "table-top-door-vertical" | "table-top-horizontal-rotate-clockwise" | "table-top-horizontal-rotate-counterclockwise" | "table-top-horizontal-stairs-ascend-left" | "table-top-horizontal-stairs-ascend-right" | "table-top-horizontal-stairs-descend-down" | "table-top-horizontal-stairs-descend-left" | "table-top-horizontal-stairs-descend-right" | "table-top-horizontal-stairs-descend-up" | "table-top-spiral-stairs-down" | "table-top-spiral-stairs-left" | "table-top-spiral-stairs-right" | "table-top-spiral-stairs-round-down" | "table-top-spiral-stairs-round-left" | "table-top-spiral-stairs-round-right" | "table-top-spiral-stairs-round-up" | "table-top-spiral-stairs-up" | "table-top-stairs-down" | "table-top-stairs-left" | "table-top-stairs-right" | "table-top-stairs-up" | "table-top-vertical-rotate-clockwise" | "table-top-vertical-rotate-counterclockwise" | "table-top-vertical-stairs-ascend-down" | "table-top-vertical-stairs-ascend-up" | "text-image" | "tile-caution-heavy" | "tile-caution-thin" | "tile-diamond-hex" | "time-sand" | "toggle-switch-on" | "tooltip-above-help" | "tooltip-below-help" | "tooltip-end-help" | "tooltip-start-help" | "wall-fill" | "wall-front" | "wall-front-damaged" | "wall-front-gate" | "water-fill" | "alert-box-fill" | "alert-rhombus-fill" | "tooltip-above-alert" | "tooltip-below-alert" | "tooltip-end-alert" | "tooltip-start-alert" | "alpha-a-fill" | "alpha-b-fill" | "alpha-c-fill" | "alpha-d-fill" | "alpha-e-fill" | "alpha-f-fill" | "alpha-g-fill" | "alpha-h-fill" | "alpha-i-fill" | "alpha-j-fill" | "alpha-k-fill" | "alpha-l-fill" | "alpha-m-fill" | "alpha-n-fill" | "alpha-o-fill" | "alpha-p-fill" | "alpha-q-fill" | "alpha-r-fill" | "alpha-s-fill" | "alpha-t-fill" | "alpha-u-fill" | "alpha-v-fill" | "alpha-w-fill" | "alpha-x-fill" | "alpha-y-fill" | "alpha-z-fill" | "arrow-bottom-left-circle" | "arrow-bottom-right-circle" | "arrow-top-left-circle" | "arrow-top-right-circle" | "application-code" | "monitor-image" | "checkbox-cross" | "radiobox" | "gamepad-center-fill" | "gamepad-down-fill" | "gamepad-down-left-fill" | "gamepad-down-right-fill" | "gamepad-left-fill" | "gamepad-right-fill" | "gamepad-up-fill" | "gamepad-up-left-fill" | "gamepad-up-right-fill" | "door-box" | "compass-east-arrow" | "compass-north-arrow" | "compass-north-east" | "compass-north-west" | "compass-south-arrow" | "compass-south-east" | "compass-south-west" | "compass-west-arrow" | "border-bottom-left" | "border-bottom-left-right" | "border-bottom-right" | "border-left-right" | "border-top-bottom" | "border-top-left-bottom" | "border-top-left-right" | "border-top-right" | "border-top-right-bottom" | "tooltip-above" | "tooltip-above-text" | "tooltip-below" | "tooltip-below-text" | "tooltip-end" | "tooltip-end-text" | "tooltip-start" | "tooltip-start-text">): import("react").JSX.Element;
662
+ ({ 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<"number" | "map" | "filter" | "fill" | "search" | "image" | "alert" | "key" | "label" | "script" | "circle" | "stop" | "align-horizontal-center" | "align-horizontal-left" | "align-horizontal-right" | "align-vertical-bottom" | "align-vertical-center" | "align-vertical-top" | "anvil" | "application" | "apps-box" | "archive" | "arrow-up-left" | "arrow-up-right" | "aspect-ratio" | "barcode" | "book" | "bookmark" | "briefcase" | "cancel" | "card-text" | "chat" | "chat-processing" | "clipboard" | "close-outline" | "comment" | "comment-text" | "crown" | "cube-unfolded" | "diamond" | "download" | "email" | "eye" | "heart-broken" | "help" | "help-box" | "label-variant" | "login" | "logout" | "magnify-minus" | "magnify-plus" | "message" | "message-processing" | "message-text" | "note" | "notebook" | "paperclip" | "peace" | "plus-circle" | "poll" | "pound" | "relative-scale" | "ring" | "stool" | "tag" | "tag-text" | "target" | "tent" | "toggle-switch-off" | "toy-brick" | "upload" | "wall" | "weight" | "account" | "account-box" | "shovel" | "water" | "alert-box" | "alert-circle" | "alert-octagon" | "alert-rhombus" | "alpha-a" | "alpha-b" | "alpha-c" | "alpha-d" | "alpha-e" | "alpha-f" | "alpha-g" | "alpha-h" | "alpha-i" | "alpha-j" | "alpha-k" | "alpha-l" | "alpha-m" | "alpha-n" | "alpha-o" | "alpha-p" | "alpha-q" | "alpha-r" | "alpha-s" | "alpha-t" | "alpha-u" | "alpha-v" | "alpha-w" | "alpha-x" | "alpha-y" | "alpha-z" | "bug" | "arrow-bottom-left" | "arrow-bottom-right" | "arrow-down" | "arrow-down-bold" | "arrow-down-box" | "arrow-down-circle" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-left-bold" | "arrow-left-box" | "arrow-left-circle" | "arrow-left-right" | "arrow-right" | "arrow-right-bold" | "arrow-right-box" | "arrow-right-circle" | "arrow-top-left" | "arrow-top-right" | "arrow-up" | "arrow-up-bold" | "arrow-up-box" | "arrow-up-circle" | "arrow-up-down" | "chevron-down" | "chevron-down-circle" | "chevron-left" | "chevron-left-circle" | "chevron-right" | "chevron-right-circle" | "chevron-up" | "chevron-up-circle" | "menu-down" | "menu-left" | "menu-right" | "menu-up" | "music-note" | "speaker" | "volume-high" | "volume-low" | "volume-medium" | "volume-mute" | "battery-50" | "lock" | "lock-open" | "bank" | "cash" | "credit-card" | "box" | "glasses" | "necklace" | "cloud" | "database" | "calendar" | "calendar-import" | "calendar-month" | "clock" | "monitor" | "pencil" | "file" | "folder" | "folder-open" | "text-box" | "beer" | "coffee" | "card" | "check" | "checkbox-blank" | "checkbox-intermediate" | "checkbox-intermediate-variant" | "checkbox-marked" | "close" | "minus-box" | "minus-circle" | "radiobox-marked" | "bow-arrow" | "checkerboard" | "flask" | "flask-empty" | "gamepad" | "gamepad-down" | "gamepad-left" | "gamepad-right" | "gamepad-up" | "heart" | "shield" | "skull" | "spear" | "sword" | "compass" | "axe" | "pickaxe" | "toolbox" | "bell" | "cast" | "door" | "door-open" | "fire" | "lightbulb" | "pause" | "play" | "calculator" | "chart-bar" | "division" | "minus" | "plus" | "plus-box" | "microphone" | "castle" | "flask-round-bottom" | "flask-round-bottom-empty" | "cube" | "hexagon" | "octagon" | "cart" | "torch" | "align-horizontal-distribute" | "align-vertical-distribute" | "border-bottom" | "border-inside" | "border-left" | "border-none" | "border-outside" | "border-right" | "border-top" | "format-align-bottom" | "format-align-center" | "format-align-justify" | "format-align-left" | "format-align-right" | "format-align-top" | "format-bold" | "format-float-left" | "format-float-right" | "format-horizontal-align-center" | "format-italic" | "format-line-spacing" | "format-text" | "format-vertical-align-center" | "bag-personal" | "apps" | "broadcast" | "umbrella" | "battery-0" | "battery-100" | "trash" | "terminal" | "wind" | "alert-hexagon" | "bow" | "cloud-down" | "cloud-up" | "message-user" | "notification" | "rotate-clockwise" | "trident" | "bug-fill" | "clock-fill" | "eye-fill" | "journal" | "plus-circle-fill" | "border-top-left" | "floppy-disk" | "gamepad-fill" | "weight-fill" | "rotate-counterclockwise" | "arrow-down-left-box" | "arrow-down-right-box" | "arrow-up-left-box" | "arrow-up-right-box" | "remove-circle" | "battery-25" | "battery-75" | "dagger" | "alert-circle-fill" | "minus-circle-fill" | "multiply" | "pike" | "arrow" | "blood" | "range" | "battle-axe" | "chest" | "crossbow" | "glaive" | "halberd" | "led" | "well" | "whip" | "device" | "arrow-left-down" | "arrow-left-up" | "arrow-right-down" | "arrow-right-up" | "alert-hexagon-fill" | "apps-box-fill" | "bag-personal-fill" | "box-light-dashed-down-left" | "box-light-dashed-down-right" | "box-light-dashed-horizontal" | "box-light-dashed-up-left" | "box-light-dashed-up-right" | "box-light-dashed-vertical" | "box-light-dashed-vertical-horizontal" | "box-light-double-down-left" | "box-light-double-down-right" | "box-light-double-horizontal" | "box-light-double-horizontal-down" | "box-light-double-horizontal-light-down" | "box-light-double-horizontal-light-up" | "box-light-double-horizontal-up" | "box-light-double-round-down-left" | "box-light-double-round-down-right" | "box-light-double-round-up-left" | "box-light-double-round-up-right" | "box-light-double-up-left" | "box-light-double-up-right" | "box-light-double-vertical" | "box-light-double-vertical-horizontal" | "box-light-double-vertical-left" | "box-light-double-vertical-light-left" | "box-light-double-vertical-light-right" | "box-light-double-vertical-right" | "box-light-down-left" | "box-light-down-left-circle" | "box-light-down-left-stipple" | "box-light-down-left-stipple-inner" | "box-light-down-left-stipple-outer" | "box-light-down-right" | "box-light-down-right-circle" | "box-light-down-right-stipple" | "box-light-down-right-stipple-inner" | "box-light-down-right-stipple-outer" | "box-light-fold-down-left" | "box-light-fold-down-right" | "box-light-fold-up-left" | "box-light-fold-up-right" | "box-light-horizontal" | "box-light-horizontal-circle" | "box-light-horizontal-down" | "box-light-horizontal-down-stipple" | "box-light-horizontal-down-stipple-down" | "box-light-horizontal-down-stipple-down-left" | "box-light-horizontal-down-stipple-down-right" | "box-light-horizontal-menu-down" | "box-light-horizontal-menu-left" | "box-light-horizontal-menu-right" | "box-light-horizontal-menu-up" | "box-light-horizontal-stipple" | "box-light-horizontal-stipple-down" | "box-light-horizontal-stipple-up" | "box-light-horizontal-up" | "box-light-horizontal-up-stipple" | "box-light-horizontal-up-stipple-down" | "box-light-horizontal-up-stipple-up" | "box-light-horizontal-up-stipple-up-left" | "box-light-horizontal-up-stipple-up-right" | "box-light-round-down-left" | "box-light-round-down-left-stipple" | "box-light-round-down-left-stipple-inner" | "box-light-round-down-left-stipple-outer" | "box-light-round-down-right" | "box-light-round-down-right-stipple" | "box-light-round-down-right-stipple-inner" | "box-light-round-down-right-stipple-outer" | "box-light-round-up-left" | "box-light-round-up-left-stipple" | "box-light-round-up-left-stipple-inner" | "box-light-round-up-left-stipple-outer" | "box-light-round-up-right" | "box-light-round-up-right-stipple" | "box-light-round-up-right-stipple-inner" | "box-light-round-up-right-stipple-outer" | "box-light-up-left" | "box-light-up-left-circle" | "box-light-up-left-stipple" | "box-light-up-left-stipple-inner" | "box-light-up-left-stipple-outer" | "box-light-up-right" | "box-light-up-right-circle" | "box-light-up-right-stipple" | "box-light-up-right-stipple-inner" | "box-light-up-right-stipple-outer" | "box-light-vertical" | "box-light-vertical-circle" | "box-light-vertical-horizontal" | "box-light-vertical-horizontal-stipple" | "box-light-vertical-horizontal-stipple-down" | "box-light-vertical-horizontal-stipple-down-left" | "box-light-vertical-horizontal-stipple-down-right" | "box-light-vertical-horizontal-stipple-left" | "box-light-vertical-horizontal-stipple-left-down-right" | "box-light-vertical-horizontal-stipple-left-up-right" | "box-light-vertical-horizontal-stipple-right" | "box-light-vertical-horizontal-stipple-right-down-left" | "box-light-vertical-horizontal-stipple-right-up-left" | "box-light-vertical-horizontal-stipple-up" | "box-light-vertical-horizontal-stipple-up-left" | "box-light-vertical-horizontal-stipple-up-right" | "box-light-vertical-left" | "box-light-vertical-left-stipple" | "box-light-vertical-left-stipple-down-left" | "box-light-vertical-left-stipple-left" | "box-light-vertical-left-stipple-up-left" | "box-light-vertical-menu-down" | "box-light-vertical-menu-left" | "box-light-vertical-menu-right" | "box-light-vertical-menu-up" | "box-light-vertical-right" | "box-light-vertical-right-stipple" | "box-light-vertical-right-stipple-down-right" | "box-light-vertical-right-stipple-left" | "box-light-vertical-right-stipple-right" | "box-light-vertical-right-stipple-up-right" | "box-light-vertical-stipple" | "box-light-vertical-stipple-left" | "box-light-vertical-stipple-right" | "box-outer-light-all" | "box-outer-light-dashed-all" | "box-outer-light-dashed-down" | "box-outer-light-dashed-down-left" | "box-outer-light-dashed-down-left-right" | "box-outer-light-dashed-down-right" | "box-outer-light-dashed-fold-down-left" | "box-outer-light-dashed-fold-down-right" | "box-outer-light-dashed-fold-up-left" | "box-outer-light-dashed-fold-up-right" | "box-outer-light-dashed-left" | "box-outer-light-dashed-left-right" | "box-outer-light-dashed-right" | "box-outer-light-dashed-up" | "box-outer-light-dashed-up-down" | "box-outer-light-dashed-up-down-left" | "box-outer-light-dashed-up-down-right" | "box-outer-light-dashed-up-left" | "box-outer-light-dashed-up-left-right" | "box-outer-light-dashed-up-right" | "box-outer-light-down" | "box-outer-light-down-left" | "box-outer-light-down-left-right" | "box-outer-light-down-left-stipple" | "box-outer-light-down-right" | "box-outer-light-down-right-stipple" | "box-outer-light-down-stipple" | "box-outer-light-down-vertical-stipple" | "box-outer-light-down-vertical-stipple-left" | "box-outer-light-down-vertical-stipple-right" | "box-outer-light-left" | "box-outer-light-left-horizontal-stipple" | "box-outer-light-left-horizontal-stipple-down" | "box-outer-light-left-horizontal-stipple-up" | "box-outer-light-left-right" | "box-outer-light-left-right-stipple" | "box-outer-light-left-stipple" | "box-outer-light-right" | "box-outer-light-right-horizontal-stipple" | "box-outer-light-right-horizontal-stipple-down" | "box-outer-light-right-horizontal-stipple-up" | "box-outer-light-right-stipple" | "box-outer-light-round-down-left" | "box-outer-light-round-down-right" | "box-outer-light-round-up-left" | "box-outer-light-round-up-right" | "box-outer-light-up" | "box-outer-light-up-down" | "box-outer-light-up-down-left" | "box-outer-light-up-down-right" | "box-outer-light-up-down-stipple" | "box-outer-light-up-left" | "box-outer-light-up-left-right" | "box-outer-light-up-left-stipple" | "box-outer-light-up-right" | "box-outer-light-up-right-stipple" | "box-outer-light-up-stipple" | "box-outer-light-up-vertical-stipple" | "box-outer-light-up-vertical-stipple-left" | "box-outer-light-up-vertical-stipple-right" | "checker-large" | "checker-medium" | "checker-small" | "chest-fill" | "coin-copper" | "coin-electrum" | "coin-gold" | "coin-platinum" | "coin-silver" | "comment-user" | "dot-hexagon" | "dot-hexagon-fill" | "dot-octagon" | "dot-octagon-fill" | "format-text-multiline" | "format-text-single-line" | "gamepad-center" | "gamepad-down-left" | "gamepad-down-right" | "gamepad-up-left" | "gamepad-up-right" | "help-box-fill" | "home-thatched" | "javalin" | "lance" | "linen" | "menu-bottom-left" | "menu-bottom-right" | "menu-down-fill" | "menu-left-fill" | "menu-left-right" | "menu-right-fill" | "menu-top-left" | "menu-top-right" | "menu-up-down" | "menu-up-fill" | "minus-box-fill" | "note-nailed" | "pictogrammers" | "plus-box-fill" | "quarterstaff" | "scimitar" | "slider-end" | "slider-right" | "table-top-door-horizontal" | "table-top-door-one-way-down" | "table-top-door-one-way-left" | "table-top-door-one-way-right" | "table-top-door-one-way-up" | "table-top-door-secret-horizontal" | "table-top-door-secret-vertical" | "table-top-door-vertical" | "table-top-horizontal-rotate-clockwise" | "table-top-horizontal-rotate-counterclockwise" | "table-top-horizontal-stairs-ascend-left" | "table-top-horizontal-stairs-ascend-right" | "table-top-horizontal-stairs-descend-down" | "table-top-horizontal-stairs-descend-left" | "table-top-horizontal-stairs-descend-right" | "table-top-horizontal-stairs-descend-up" | "table-top-spiral-stairs-down" | "table-top-spiral-stairs-left" | "table-top-spiral-stairs-right" | "table-top-spiral-stairs-round-down" | "table-top-spiral-stairs-round-left" | "table-top-spiral-stairs-round-right" | "table-top-spiral-stairs-round-up" | "table-top-spiral-stairs-up" | "table-top-stairs-down" | "table-top-stairs-left" | "table-top-stairs-right" | "table-top-stairs-up" | "table-top-vertical-rotate-clockwise" | "table-top-vertical-rotate-counterclockwise" | "table-top-vertical-stairs-ascend-down" | "table-top-vertical-stairs-ascend-up" | "text-image" | "tile-caution-heavy" | "tile-caution-thin" | "tile-diamond-hex" | "time-sand" | "toggle-switch-on" | "tooltip-above-help" | "tooltip-below-help" | "tooltip-end-help" | "tooltip-start-help" | "wall-fill" | "wall-front" | "wall-front-damaged" | "wall-front-gate" | "water-fill" | "alert-box-fill" | "alert-rhombus-fill" | "tooltip-above-alert" | "tooltip-below-alert" | "tooltip-end-alert" | "tooltip-start-alert" | "alpha-a-fill" | "alpha-b-fill" | "alpha-c-fill" | "alpha-d-fill" | "alpha-e-fill" | "alpha-f-fill" | "alpha-g-fill" | "alpha-h-fill" | "alpha-i-fill" | "alpha-j-fill" | "alpha-k-fill" | "alpha-l-fill" | "alpha-m-fill" | "alpha-n-fill" | "alpha-o-fill" | "alpha-p-fill" | "alpha-q-fill" | "alpha-r-fill" | "alpha-s-fill" | "alpha-t-fill" | "alpha-u-fill" | "alpha-v-fill" | "alpha-w-fill" | "alpha-x-fill" | "alpha-y-fill" | "alpha-z-fill" | "arrow-bottom-left-circle" | "arrow-bottom-right-circle" | "arrow-top-left-circle" | "arrow-top-right-circle" | "application-code" | "monitor-image" | "checkbox-cross" | "radiobox" | "gamepad-center-fill" | "gamepad-down-fill" | "gamepad-down-left-fill" | "gamepad-down-right-fill" | "gamepad-left-fill" | "gamepad-right-fill" | "gamepad-up-fill" | "gamepad-up-left-fill" | "gamepad-up-right-fill" | "door-box" | "compass-east-arrow" | "compass-north-arrow" | "compass-north-east" | "compass-north-west" | "compass-south-arrow" | "compass-south-east" | "compass-south-west" | "compass-west-arrow" | "border-bottom-left" | "border-bottom-left-right" | "border-bottom-right" | "border-left-right" | "border-top-bottom" | "border-top-left-bottom" | "border-top-left-right" | "border-top-right" | "border-top-right-bottom" | "tooltip-above" | "tooltip-above-text" | "tooltip-below" | "tooltip-below-text" | "tooltip-end" | "tooltip-end-text" | "tooltip-start" | "tooltip-start-text">): import("react").JSX.Element;
663
663
  displayName: string;
664
664
  };
665
665
  export {};
@@ -455,7 +455,7 @@ declare const meteoconsIconNames: {
455
455
  };
456
456
  export type MeteoconsIconName = keyof typeof meteoconsIconNames;
457
457
  export declare const Meteocons: {
458
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"smoke" | "snowflake" | "thermometer" | "compass" | "snowman" | "lightning-bolt" | "thermometer-water" | "hail" | "star" | "moon-first-quarter" | "moon-full" | "moon-last-quarter" | "moon-new" | "moon-waning-crescent" | "moon-waning-gibbous" | "moon-waxing-crescent" | "moon-waxing-gibbous" | "umbrella" | "windsock" | "cloudy" | "haze" | "rainbow" | "sunrise" | "sunset" | "thermometer-sun" | "wind" | "cloud-down" | "cloud-up" | "mist" | "uv-index" | "cloudy-fill" | "compass-fill" | "hurricane" | "snow" | "star-fill" | "sunrise-fill" | "sunset-fill" | "thermometer-snow" | "umbrella-fill" | "thermometer-fill" | "celsius-fill" | "drizzle-fill" | "fahrenheit-fill" | "hail-fill" | "haze-fill" | "mist-fill" | "rainbow-fill" | "snowflake-fill" | "thunderstorms-fill" | "fog" | "haze-night" | "humidity" | "moonrise" | "moonset" | "not-available" | "partly-cloudy-night" | "rain" | "sleet" | "drizzle" | "overcast" | "partly-cloudy-day" | "dust" | "horizon" | "raindrop" | "smoke-fill" | "wind-snow" | "clear-night" | "thunderstorms" | "celsius" | "fahrenheit" | "glove" | "rain-fill" | "barometer" | "barometer-fill" | "beanie" | "beanie-fill" | "clear-day" | "clear-day-fill" | "clear-night-fill" | "cloud-down-fill" | "cloud-up-fill" | "code-green" | "code-green-fill" | "code-orange" | "code-orange-fill" | "code-red" | "code-red-fill" | "code-yellow" | "code-yellow-fill" | "dust-day" | "dust-day-fill" | "dust-fill" | "dust-night" | "dust-night-fill" | "dust-wind" | "dust-wind-fill" | "extreme" | "extreme-day" | "extreme-day-drizzle" | "extreme-day-drizzle-fill" | "extreme-day-fill" | "extreme-day-fog" | "extreme-day-fog-fill" | "extreme-day-hail" | "extreme-day-hail-fill" | "extreme-day-haze" | "extreme-day-haze-fill" | "extreme-day-rain" | "extreme-day-rain-fill" | "extreme-day-sleet" | "extreme-day-sleet-fill" | "extreme-day-smoke" | "extreme-day-smoke-fill" | "extreme-day-snow" | "extreme-day-snow-fill" | "extreme-drizzle" | "extreme-drizzle-fill" | "extreme-fill" | "extreme-fog" | "extreme-fog-fill" | "extreme-hail" | "extreme-hail-fill" | "extreme-haze" | "extreme-haze-fill" | "extreme-night" | "extreme-night-drizzle" | "extreme-night-drizzle-fill" | "extreme-night-fill" | "extreme-night-fog" | "extreme-night-fog-fill" | "extreme-night-hail" | "extreme-night-hail-fill" | "extreme-night-haze" | "extreme-night-haze-fill" | "extreme-night-rain" | "extreme-night-rain-fill" | "extreme-night-sleet" | "extreme-night-sleet-fill" | "extreme-night-smoke" | "extreme-night-smoke-fill" | "extreme-night-snow" | "extreme-night-snow-fill" | "extreme-rain" | "extreme-rain-fill" | "extreme-sleet" | "extreme-sleet-fill" | "extreme-smoke" | "extreme-smoke-fill" | "extreme-snow" | "extreme-snow-fill" | "falling-stars" | "falling-stars-fill" | "flag-gale-warning" | "flag-gale-warning-fill" | "flag-hurricane-warning" | "flag-hurricane-warning-fill" | "flag-small-craft-advisory" | "flag-small-craft-advisory-fill" | "flag-storm-warning" | "flag-storm-warning-fill" | "fog-day" | "fog-day-fill" | "fog-fill" | "fog-night" | "fog-night-fill" | "glove-fill" | "haze-day" | "haze-day-fill" | "haze-night-fill" | "horizon-fill" | "humidity-fill" | "hurricane-fill" | "lightning-bolt-fill" | "moon-first-quarter-fill" | "moon-full-fill" | "moon-last-quarter-fill" | "moon-new-fill" | "moon-waning-crescent-fill" | "moon-waning-gibbous-fill" | "moon-waxing-crescent-fill" | "moon-waxing-gibbous-fill" | "moonrise-fill" | "moonset-fill" | "not-available-fill" | "overcast-day" | "overcast-day-drizzle" | "overcast-day-drizzle-fill" | "overcast-day-fill" | "overcast-day-fog" | "overcast-day-fog-fill" | "overcast-day-hail" | "overcast-day-hail-fill" | "overcast-day-haze" | "overcast-day-haze-fill" | "overcast-day-rain" | "overcast-day-rain-fill" | "overcast-day-sleet" | "overcast-day-sleet-fill" | "overcast-day-smoke" | "overcast-day-smoke-fill" | "overcast-day-snow" | "overcast-day-snow-fill" | "overcast-drizzle" | "overcast-drizzle-fill" | "overcast-fill" | "overcast-fog" | "overcast-fog-fill" | "overcast-hail" | "overcast-hail-fill" | "overcast-haze" | "overcast-haze-fill" | "overcast-night" | "overcast-night-drizzle" | "overcast-night-drizzle-fill" | "overcast-night-fill" | "overcast-night-fog" | "overcast-night-fog-fill" | "overcast-night-hail" | "overcast-night-hail-fill" | "overcast-night-haze" | "overcast-night-haze-fill" | "overcast-night-rain" | "overcast-night-rain-fill" | "overcast-night-sleet" | "overcast-night-sleet-fill" | "overcast-night-smoke" | "overcast-night-smoke-fill" | "overcast-night-snow" | "overcast-night-snow-fill" | "overcast-rain" | "overcast-rain-fill" | "overcast-sleet" | "overcast-sleet-fill" | "overcast-smoke" | "overcast-smoke-fill" | "overcast-snow" | "overcast-snow-fill" | "partly-cloudy-day-drizzle" | "partly-cloudy-day-drizzle-fill" | "partly-cloudy-day-fill" | "partly-cloudy-day-fog" | "partly-cloudy-day-fog-fill" | "partly-cloudy-day-hail" | "partly-cloudy-day-hail-fill" | "partly-cloudy-day-haze" | "partly-cloudy-day-haze-fill" | "partly-cloudy-day-rain" | "partly-cloudy-day-rain-fill" | "partly-cloudy-day-sleet" | "partly-cloudy-day-sleet-fill" | "partly-cloudy-day-smoke" | "partly-cloudy-day-smoke-fill" | "partly-cloudy-day-snow" | "partly-cloudy-day-snow-fill" | "partly-cloudy-night-drizzle" | "partly-cloudy-night-drizzle-fill" | "partly-cloudy-night-fill" | "partly-cloudy-night-fog" | "partly-cloudy-night-fog-fill" | "partly-cloudy-night-hail" | "partly-cloudy-night-haze" | "partly-cloudy-night-haze-fill" | "partly-cloudy-night-rain" | "partly-cloudy-night-rain-fill" | "partly-cloudy-night-sleet" | "partly-cloudy-night-sleet-fill" | "partly-cloudy-night-smoke" | "partly-cloudy-night-smoke-fill" | "partly-cloudy-night-snow" | "partly-cloudy-night-snow-fill" | "pollen" | "pollen-fill" | "pollen-flower" | "pollen-flower-fill" | "pollen-grass" | "pollen-grass-fill" | "pollen-tree" | "pollen-tree-fill" | "pressure-high" | "pressure-high-alt" | "pressure-high-alt-fill" | "pressure-high-fill" | "pressure-low" | "pressure-low-alt" | "pressure-low-alt-fill" | "pressure-low-fill" | "rainbow-clear" | "rainbow-clear-fill" | "raindrop-fill" | "raindrop-measure" | "raindrop-measure-fill" | "raindrops" | "raindrops-fill" | "sleet-fill" | "smoke-particles" | "smoke-particles-fill" | "snow-fill" | "snowman-fill" | "solar-eclipse" | "solar-eclipse-fill" | "starry-night" | "starry-night-fill" | "sun-hot" | "sun-hot-fill" | "thermometer-celsius" | "thermometer-celsius-fill" | "thermometer-colder" | "thermometer-colder-fill" | "thermometer-fahrenheit" | "thermometer-fahrenheit-fill" | "thermometer-glass" | "thermometer-glass-celsius" | "thermometer-glass-celsius-fill" | "thermometer-glass-fahrenheit" | "thermometer-glass-fahrenheit-fill" | "thermometer-glass-fill" | "thermometer-mercury" | "thermometer-mercury-cold" | "thermometer-mercury-cold-fill" | "thermometer-mercury-fill" | "thermometer-moon" | "thermometer-moon-fill" | "thermometer-raindrop" | "thermometer-raindrop-fill" | "thermometer-snow-fill" | "thermometer-sun-fill" | "thermometer-warmer" | "thermometer-warmer-fill" | "thermometer-water-fill" | "thunderstorms-day" | "thunderstorms-day-extreme" | "thunderstorms-day-extreme-fill" | "thunderstorms-day-extreme-snow" | "thunderstorms-day-extreme-snow-fill" | "thunderstorms-day-fill" | "thunderstorms-day-overcast" | "thunderstorms-day-overcast-fill" | "thunderstorms-day-overcast-snow" | "thunderstorms-day-overcast-snow-fill" | "thunderstorms-day-snow" | "thunderstorms-day-snow-fill" | "thunderstorms-extreme" | "thunderstorms-extreme-fill" | "thunderstorms-extreme-snow" | "thunderstorms-extreme-snow-fill" | "thunderstorms-night" | "thunderstorms-night-extreme" | "thunderstorms-night-extreme-fill" | "thunderstorms-night-extreme-snow" | "thunderstorms-night-extreme-snow-fill" | "thunderstorms-night-fill" | "thunderstorms-night-overcast" | "thunderstorms-night-overcast-fill" | "thunderstorms-night-overcast-snow" | "thunderstorms-night-overcast-snow-fill" | "thunderstorms-night-snow" | "thunderstorms-night-snow-fill" | "thunderstorms-overcast" | "thunderstorms-overcast-fill" | "thunderstorms-overcast-snow" | "thunderstorms-overcast-snow-fill" | "thunderstorms-snow" | "thunderstorms-snow-fill" | "tide-high" | "tide-high-fill" | "tide-low" | "tide-low-fill" | "time-afternoon" | "time-afternoon-fill" | "time-evening" | "time-evening-fill" | "time-late-afternoon" | "time-late-afternoon-fill" | "time-late-evening" | "time-late-evening-fill" | "time-late-morning" | "time-late-morning-fill" | "time-late-night" | "time-late-night-fill" | "time-morning" | "time-morning-fill" | "time-night" | "time-night-fill" | "umbrella-wind" | "umbrella-wind-alt" | "umbrella-wind-alt-fill" | "umbrella-wind-fill" | "uv-index-1" | "uv-index-1-fill" | "uv-index-10" | "uv-index-10-fill" | "uv-index-11" | "uv-index-11-fill" | "uv-index-2" | "uv-index-2-fill" | "uv-index-3" | "uv-index-3-fill" | "uv-index-4" | "uv-index-4-fill" | "uv-index-5" | "uv-index-5-fill" | "uv-index-6" | "uv-index-6-fill" | "uv-index-7" | "uv-index-7-fill" | "uv-index-8" | "uv-index-8-fill" | "uv-index-9" | "uv-index-9-fill" | "uv-index-fill" | "wind-alert" | "wind-alert-fill" | "wind-beaufort-0" | "wind-beaufort-0-fill" | "wind-beaufort-1" | "wind-beaufort-1-fill" | "wind-beaufort-10" | "wind-beaufort-10-fill" | "wind-beaufort-11" | "wind-beaufort-11-fill" | "wind-beaufort-12" | "wind-beaufort-12-fill" | "wind-beaufort-2" | "wind-beaufort-2-fill" | "wind-beaufort-3" | "wind-beaufort-3-fill" | "wind-beaufort-4" | "wind-beaufort-4-fill" | "wind-beaufort-5" | "wind-beaufort-5-fill" | "wind-beaufort-6" | "wind-beaufort-6-fill" | "wind-beaufort-7" | "wind-beaufort-7-fill" | "wind-beaufort-8" | "wind-beaufort-8-fill" | "wind-beaufort-9" | "wind-beaufort-9-fill" | "wind-fill" | "wind-offshore" | "wind-offshore-fill" | "wind-onshore" | "wind-onshore-fill" | "wind-snow-fill" | "windsock-fill" | "windsock-weak" | "windsock-weak-fill">): import("react").JSX.Element;
458
+ ({ 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<"smoke" | "snowflake" | "thermometer" | "compass" | "snowman" | "lightning-bolt" | "thermometer-water" | "hail" | "star" | "moon-first-quarter" | "moon-full" | "moon-last-quarter" | "moon-new" | "moon-waning-crescent" | "moon-waning-gibbous" | "moon-waxing-crescent" | "moon-waxing-gibbous" | "umbrella" | "windsock" | "cloudy" | "haze" | "rainbow" | "sunrise" | "sunset" | "thermometer-sun" | "wind" | "cloud-down" | "cloud-up" | "mist" | "uv-index" | "cloudy-fill" | "compass-fill" | "hurricane" | "snow" | "star-fill" | "sunrise-fill" | "sunset-fill" | "thermometer-snow" | "umbrella-fill" | "thermometer-fill" | "celsius-fill" | "drizzle-fill" | "fahrenheit-fill" | "hail-fill" | "haze-fill" | "mist-fill" | "rainbow-fill" | "snowflake-fill" | "thunderstorms-fill" | "fog" | "haze-night" | "humidity" | "moonrise" | "moonset" | "not-available" | "partly-cloudy-night" | "rain" | "sleet" | "drizzle" | "overcast" | "partly-cloudy-day" | "dust" | "horizon" | "raindrop" | "smoke-fill" | "wind-snow" | "clear-night" | "thunderstorms" | "celsius" | "fahrenheit" | "glove" | "rain-fill" | "barometer" | "barometer-fill" | "beanie" | "beanie-fill" | "clear-day" | "clear-day-fill" | "clear-night-fill" | "cloud-down-fill" | "cloud-up-fill" | "code-green" | "code-green-fill" | "code-orange" | "code-orange-fill" | "code-red" | "code-red-fill" | "code-yellow" | "code-yellow-fill" | "dust-day" | "dust-day-fill" | "dust-fill" | "dust-night" | "dust-night-fill" | "dust-wind" | "dust-wind-fill" | "extreme" | "extreme-day" | "extreme-day-drizzle" | "extreme-day-drizzle-fill" | "extreme-day-fill" | "extreme-day-fog" | "extreme-day-fog-fill" | "extreme-day-hail" | "extreme-day-hail-fill" | "extreme-day-haze" | "extreme-day-haze-fill" | "extreme-day-rain" | "extreme-day-rain-fill" | "extreme-day-sleet" | "extreme-day-sleet-fill" | "extreme-day-smoke" | "extreme-day-smoke-fill" | "extreme-day-snow" | "extreme-day-snow-fill" | "extreme-drizzle" | "extreme-drizzle-fill" | "extreme-fill" | "extreme-fog" | "extreme-fog-fill" | "extreme-hail" | "extreme-hail-fill" | "extreme-haze" | "extreme-haze-fill" | "extreme-night" | "extreme-night-drizzle" | "extreme-night-drizzle-fill" | "extreme-night-fill" | "extreme-night-fog" | "extreme-night-fog-fill" | "extreme-night-hail" | "extreme-night-hail-fill" | "extreme-night-haze" | "extreme-night-haze-fill" | "extreme-night-rain" | "extreme-night-rain-fill" | "extreme-night-sleet" | "extreme-night-sleet-fill" | "extreme-night-smoke" | "extreme-night-smoke-fill" | "extreme-night-snow" | "extreme-night-snow-fill" | "extreme-rain" | "extreme-rain-fill" | "extreme-sleet" | "extreme-sleet-fill" | "extreme-smoke" | "extreme-smoke-fill" | "extreme-snow" | "extreme-snow-fill" | "falling-stars" | "falling-stars-fill" | "flag-gale-warning" | "flag-gale-warning-fill" | "flag-hurricane-warning" | "flag-hurricane-warning-fill" | "flag-small-craft-advisory" | "flag-small-craft-advisory-fill" | "flag-storm-warning" | "flag-storm-warning-fill" | "fog-day" | "fog-day-fill" | "fog-fill" | "fog-night" | "fog-night-fill" | "glove-fill" | "haze-day" | "haze-day-fill" | "haze-night-fill" | "horizon-fill" | "humidity-fill" | "hurricane-fill" | "lightning-bolt-fill" | "moon-first-quarter-fill" | "moon-full-fill" | "moon-last-quarter-fill" | "moon-new-fill" | "moon-waning-crescent-fill" | "moon-waning-gibbous-fill" | "moon-waxing-crescent-fill" | "moon-waxing-gibbous-fill" | "moonrise-fill" | "moonset-fill" | "not-available-fill" | "overcast-day" | "overcast-day-drizzle" | "overcast-day-drizzle-fill" | "overcast-day-fill" | "overcast-day-fog" | "overcast-day-fog-fill" | "overcast-day-hail" | "overcast-day-hail-fill" | "overcast-day-haze" | "overcast-day-haze-fill" | "overcast-day-rain" | "overcast-day-rain-fill" | "overcast-day-sleet" | "overcast-day-sleet-fill" | "overcast-day-smoke" | "overcast-day-smoke-fill" | "overcast-day-snow" | "overcast-day-snow-fill" | "overcast-drizzle" | "overcast-drizzle-fill" | "overcast-fill" | "overcast-fog" | "overcast-fog-fill" | "overcast-hail" | "overcast-hail-fill" | "overcast-haze" | "overcast-haze-fill" | "overcast-night" | "overcast-night-drizzle" | "overcast-night-drizzle-fill" | "overcast-night-fill" | "overcast-night-fog" | "overcast-night-fog-fill" | "overcast-night-hail" | "overcast-night-hail-fill" | "overcast-night-haze" | "overcast-night-haze-fill" | "overcast-night-rain" | "overcast-night-rain-fill" | "overcast-night-sleet" | "overcast-night-sleet-fill" | "overcast-night-smoke" | "overcast-night-smoke-fill" | "overcast-night-snow" | "overcast-night-snow-fill" | "overcast-rain" | "overcast-rain-fill" | "overcast-sleet" | "overcast-sleet-fill" | "overcast-smoke" | "overcast-smoke-fill" | "overcast-snow" | "overcast-snow-fill" | "partly-cloudy-day-drizzle" | "partly-cloudy-day-drizzle-fill" | "partly-cloudy-day-fill" | "partly-cloudy-day-fog" | "partly-cloudy-day-fog-fill" | "partly-cloudy-day-hail" | "partly-cloudy-day-hail-fill" | "partly-cloudy-day-haze" | "partly-cloudy-day-haze-fill" | "partly-cloudy-day-rain" | "partly-cloudy-day-rain-fill" | "partly-cloudy-day-sleet" | "partly-cloudy-day-sleet-fill" | "partly-cloudy-day-smoke" | "partly-cloudy-day-smoke-fill" | "partly-cloudy-day-snow" | "partly-cloudy-day-snow-fill" | "partly-cloudy-night-drizzle" | "partly-cloudy-night-drizzle-fill" | "partly-cloudy-night-fill" | "partly-cloudy-night-fog" | "partly-cloudy-night-fog-fill" | "partly-cloudy-night-hail" | "partly-cloudy-night-haze" | "partly-cloudy-night-haze-fill" | "partly-cloudy-night-rain" | "partly-cloudy-night-rain-fill" | "partly-cloudy-night-sleet" | "partly-cloudy-night-sleet-fill" | "partly-cloudy-night-smoke" | "partly-cloudy-night-smoke-fill" | "partly-cloudy-night-snow" | "partly-cloudy-night-snow-fill" | "pollen" | "pollen-fill" | "pollen-flower" | "pollen-flower-fill" | "pollen-grass" | "pollen-grass-fill" | "pollen-tree" | "pollen-tree-fill" | "pressure-high" | "pressure-high-alt" | "pressure-high-alt-fill" | "pressure-high-fill" | "pressure-low" | "pressure-low-alt" | "pressure-low-alt-fill" | "pressure-low-fill" | "rainbow-clear" | "rainbow-clear-fill" | "raindrop-fill" | "raindrop-measure" | "raindrop-measure-fill" | "raindrops" | "raindrops-fill" | "sleet-fill" | "smoke-particles" | "smoke-particles-fill" | "snow-fill" | "snowman-fill" | "solar-eclipse" | "solar-eclipse-fill" | "starry-night" | "starry-night-fill" | "sun-hot" | "sun-hot-fill" | "thermometer-celsius" | "thermometer-celsius-fill" | "thermometer-colder" | "thermometer-colder-fill" | "thermometer-fahrenheit" | "thermometer-fahrenheit-fill" | "thermometer-glass" | "thermometer-glass-celsius" | "thermometer-glass-celsius-fill" | "thermometer-glass-fahrenheit" | "thermometer-glass-fahrenheit-fill" | "thermometer-glass-fill" | "thermometer-mercury" | "thermometer-mercury-cold" | "thermometer-mercury-cold-fill" | "thermometer-mercury-fill" | "thermometer-moon" | "thermometer-moon-fill" | "thermometer-raindrop" | "thermometer-raindrop-fill" | "thermometer-snow-fill" | "thermometer-sun-fill" | "thermometer-warmer" | "thermometer-warmer-fill" | "thermometer-water-fill" | "thunderstorms-day" | "thunderstorms-day-extreme" | "thunderstorms-day-extreme-fill" | "thunderstorms-day-extreme-snow" | "thunderstorms-day-extreme-snow-fill" | "thunderstorms-day-fill" | "thunderstorms-day-overcast" | "thunderstorms-day-overcast-fill" | "thunderstorms-day-overcast-snow" | "thunderstorms-day-overcast-snow-fill" | "thunderstorms-day-snow" | "thunderstorms-day-snow-fill" | "thunderstorms-extreme" | "thunderstorms-extreme-fill" | "thunderstorms-extreme-snow" | "thunderstorms-extreme-snow-fill" | "thunderstorms-night" | "thunderstorms-night-extreme" | "thunderstorms-night-extreme-fill" | "thunderstorms-night-extreme-snow" | "thunderstorms-night-extreme-snow-fill" | "thunderstorms-night-fill" | "thunderstorms-night-overcast" | "thunderstorms-night-overcast-fill" | "thunderstorms-night-overcast-snow" | "thunderstorms-night-overcast-snow-fill" | "thunderstorms-night-snow" | "thunderstorms-night-snow-fill" | "thunderstorms-overcast" | "thunderstorms-overcast-fill" | "thunderstorms-overcast-snow" | "thunderstorms-overcast-snow-fill" | "thunderstorms-snow" | "thunderstorms-snow-fill" | "tide-high" | "tide-high-fill" | "tide-low" | "tide-low-fill" | "time-afternoon" | "time-afternoon-fill" | "time-evening" | "time-evening-fill" | "time-late-afternoon" | "time-late-afternoon-fill" | "time-late-evening" | "time-late-evening-fill" | "time-late-morning" | "time-late-morning-fill" | "time-late-night" | "time-late-night-fill" | "time-morning" | "time-morning-fill" | "time-night" | "time-night-fill" | "umbrella-wind" | "umbrella-wind-alt" | "umbrella-wind-alt-fill" | "umbrella-wind-fill" | "uv-index-1" | "uv-index-1-fill" | "uv-index-10" | "uv-index-10-fill" | "uv-index-11" | "uv-index-11-fill" | "uv-index-2" | "uv-index-2-fill" | "uv-index-3" | "uv-index-3-fill" | "uv-index-4" | "uv-index-4-fill" | "uv-index-5" | "uv-index-5-fill" | "uv-index-6" | "uv-index-6-fill" | "uv-index-7" | "uv-index-7-fill" | "uv-index-8" | "uv-index-8-fill" | "uv-index-9" | "uv-index-9-fill" | "uv-index-fill" | "wind-alert" | "wind-alert-fill" | "wind-beaufort-0" | "wind-beaufort-0-fill" | "wind-beaufort-1" | "wind-beaufort-1-fill" | "wind-beaufort-10" | "wind-beaufort-10-fill" | "wind-beaufort-11" | "wind-beaufort-11-fill" | "wind-beaufort-12" | "wind-beaufort-12-fill" | "wind-beaufort-2" | "wind-beaufort-2-fill" | "wind-beaufort-3" | "wind-beaufort-3-fill" | "wind-beaufort-4" | "wind-beaufort-4-fill" | "wind-beaufort-5" | "wind-beaufort-5-fill" | "wind-beaufort-6" | "wind-beaufort-6-fill" | "wind-beaufort-7" | "wind-beaufort-7-fill" | "wind-beaufort-8" | "wind-beaufort-8-fill" | "wind-beaufort-9" | "wind-beaufort-9-fill" | "wind-fill" | "wind-offshore" | "wind-offshore-fill" | "wind-onshore" | "wind-onshore-fill" | "wind-snow-fill" | "windsock-fill" | "windsock-weak" | "windsock-weak-fill">): import("react").JSX.Element;
459
459
  displayName: string;
460
460
  };
461
461
  export {};
@@ -329,7 +329,7 @@ declare const meteor_iconsIconNames: {
329
329
  };
330
330
  export type MeteorIconsIconName = keyof typeof meteor_iconsIconNames;
331
331
  export declare const MeteorIcons: {
332
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"boolean" | "map" | "filter" | "android" | "windows" | "image" | "link" | "search" | "text" | "radio" | "list" | "key" | "anchor" | "code" | "meta" | "circle" | "alien" | "arrow-up-left" | "arrow-up-right" | "at" | "book" | "book-open" | "bookmark" | "broom" | "bullhorn" | "comment" | "copyright" | "download" | "eraser" | "eye" | "fingerprint" | "grid" | "message" | "newspaper" | "paperclip" | "pin" | "rss" | "tag" | "trash-can" | "upload" | "carrot" | "leaf" | "tree" | "paw" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-right" | "arrow-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "forward" | "share" | "shuffle" | "album" | "headphones" | "music" | "music-note" | "volume-high" | "volume-low" | "volume-off" | "lock" | "credit-card" | "apple" | "codepen" | "deviantart" | "disqus" | "facebook" | "github" | "gitlab" | "google" | "google-drive" | "google-play" | "instagram" | "laravel" | "linkedin" | "meteor" | "patreon" | "pinterest" | "reddit" | "soundcloud" | "spotify" | "trello" | "twitch" | "twitter" | "vimeo" | "whatsapp" | "wikipedia" | "wordpress" | "youtube" | "devices" | "cloud" | "palette" | "alarm-plus" | "alarm-snooze" | "calendar" | "clock" | "laptop" | "pencil" | "file" | "file-minus" | "file-plus" | "file-search" | "folder" | "folder-minus" | "folder-plus" | "folder-search" | "coffee" | "cookie" | "check" | "gamepad" | "ghost" | "heart" | "shield" | "skull" | "bolt" | "cross" | "gift" | "fire" | "home" | "pause" | "play" | "power" | "robot" | "angle-right" | "minus" | "plus" | "disc" | "microphone" | "clover" | "feather" | "film" | "atom" | "cube" | "hexagon" | "rhombus" | "square" | "star" | "triangle" | "wave" | "backward" | "ellipsis-vertical" | "envelope" | "equals" | "face-frown" | "face-smile" | "language" | "map-pin" | "moon" | "sparkles" | "sun" | "table-cells" | "trash" | "tv" | "user" | "airplay" | "alarm-clock" | "badge-check" | "brackets" | "cassette-tape" | "chevrons-down" | "chevrons-left" | "chevrons-right" | "chevrons-up" | "circle-check" | "codesandbox" | "columns-3" | "command" | "copy" | "dribbble" | "droplet" | "ellipsis" | "euro" | "expand" | "figma" | "git-branch" | "git-fork" | "git-merge" | "globe" | "images" | "list-music" | "microchip" | "paint-roller" | "plug" | "rows-3" | "sparkle" | "terminal" | "thumbs-down" | "thumbs-up" | "tree-deciduous" | "unlink" | "wind" | "x" | "align-center" | "align-left" | "align-right" | "chrome" | "columns" | "download-cloud" | "git-commit" | "layout" | "sidebar" | "upload-cloud" | "alarm-minus" | "dice" | "location" | "message-dots" | "wave-square" | "amazon" | "bluesky" | "discord" | "gear" | "indent" | "openai" | "paypal" | "telegram" | "threads" | "tiktok" | "angles-down" | "angles-left" | "angles-right" | "angles-up" | "arrow-down-long" | "arrow-left-long" | "arrow-right-long" | "arrow-trend-down" | "arrow-trend-up" | "arrow-up-long" | "arrows-rotate" | "backward-step" | "bag-shopping" | "box-archive" | "cart-shopping" | "circle-exclamation" | "circle-xmark" | "face-angry" | "face-laugh" | "face-meh" | "face-meh-blank" | "file-lines" | "floppy-disk" | "forward-step" | "location-crosshairs" | "location-dot" | "table-list" | "triangle-exclamation" | "volume-xmark" | "xmark" | "angle-down" | "angle-left" | "angle-up" | "compress" | "comment-dots" | "quote-left" | "quote-right" | "mobile" | "paper-plane" | "compact-disc" | "desktop" | "outdent" | "bars" | "check-double" | "algolia" | "bilibili" | "binance" | "blogger" | "coinbase" | "flipboard" | "gumroad" | "mega" | "pexels" | "tumblr" | "vk" | "adobe" | "visual-studio-code" | "dollar" | "grid-plus" | "app-store" | "alarm-exclamation" | "bookmark-alt" | "rows" | "chain" | "usdt" | "facebook-alt" | "arrow-rotate" | "get-pocket" | "open-source" | "git-pull" | "square-exclamation" | "tv-retro" | "wave-triangle" | "app-gallery" | "bars-filter" | "bars-sort" | "brackets-angled" | "brackets-curly" | "brackets-round" | "clock-rotate" | "gamepad-modern" | "gohugo" | "grip-dots" | "grip-dots-vertical" | "key-skeleton" | "objects-column" | "sterling" | "table-layout" | "turn-down-left" | "turn-down-right" | "turn-left-down" | "turn-left-up" | "turn-right-down" | "turn-right-up" | "turn-up-left" | "turn-up-right" | "vinyl-disc" | "wave-lines" | "wave-pulse" | "x-alt">): import("react").JSX.Element;
332
+ ({ 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<"boolean" | "map" | "filter" | "android" | "windows" | "search" | "anchor" | "link" | "image" | "text" | "radio" | "list" | "key" | "code" | "meta" | "circle" | "x" | "alien" | "arrow-up-left" | "arrow-up-right" | "at" | "book" | "book-open" | "bookmark" | "broom" | "bullhorn" | "comment" | "copyright" | "download" | "eraser" | "eye" | "fingerprint" | "grid" | "message" | "newspaper" | "paperclip" | "pin" | "rss" | "tag" | "trash-can" | "upload" | "carrot" | "leaf" | "tree" | "paw" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-right" | "arrow-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "forward" | "share" | "shuffle" | "album" | "headphones" | "music" | "music-note" | "volume-high" | "volume-low" | "volume-off" | "lock" | "credit-card" | "apple" | "codepen" | "deviantart" | "disqus" | "facebook" | "github" | "gitlab" | "google" | "google-drive" | "google-play" | "instagram" | "laravel" | "linkedin" | "meteor" | "patreon" | "pinterest" | "reddit" | "soundcloud" | "spotify" | "trello" | "twitch" | "twitter" | "vimeo" | "whatsapp" | "wikipedia" | "wordpress" | "youtube" | "devices" | "cloud" | "palette" | "alarm-plus" | "alarm-snooze" | "calendar" | "clock" | "laptop" | "pencil" | "file" | "file-minus" | "file-plus" | "file-search" | "folder" | "folder-minus" | "folder-plus" | "folder-search" | "coffee" | "cookie" | "check" | "gamepad" | "ghost" | "heart" | "shield" | "skull" | "bolt" | "cross" | "gift" | "fire" | "home" | "pause" | "play" | "power" | "robot" | "angle-right" | "minus" | "plus" | "disc" | "microphone" | "clover" | "feather" | "film" | "atom" | "cube" | "hexagon" | "rhombus" | "square" | "star" | "triangle" | "wave" | "backward" | "ellipsis-vertical" | "envelope" | "equals" | "face-frown" | "face-smile" | "language" | "map-pin" | "moon" | "sparkles" | "sun" | "table-cells" | "trash" | "tv" | "user" | "airplay" | "alarm-clock" | "badge-check" | "brackets" | "cassette-tape" | "chevrons-down" | "chevrons-left" | "chevrons-right" | "chevrons-up" | "circle-check" | "codesandbox" | "columns-3" | "command" | "copy" | "dribbble" | "droplet" | "ellipsis" | "euro" | "expand" | "figma" | "git-branch" | "git-fork" | "git-merge" | "globe" | "images" | "list-music" | "microchip" | "paint-roller" | "plug" | "rows-3" | "sparkle" | "terminal" | "thumbs-down" | "thumbs-up" | "tree-deciduous" | "unlink" | "wind" | "align-center" | "align-left" | "align-right" | "chrome" | "columns" | "download-cloud" | "git-commit" | "layout" | "sidebar" | "upload-cloud" | "alarm-minus" | "dice" | "location" | "message-dots" | "wave-square" | "amazon" | "bluesky" | "discord" | "gear" | "indent" | "openai" | "paypal" | "telegram" | "threads" | "tiktok" | "angles-down" | "angles-left" | "angles-right" | "angles-up" | "arrow-down-long" | "arrow-left-long" | "arrow-right-long" | "arrow-trend-down" | "arrow-trend-up" | "arrow-up-long" | "arrows-rotate" | "backward-step" | "bag-shopping" | "box-archive" | "cart-shopping" | "circle-exclamation" | "circle-xmark" | "face-angry" | "face-laugh" | "face-meh" | "face-meh-blank" | "file-lines" | "floppy-disk" | "forward-step" | "location-crosshairs" | "location-dot" | "table-list" | "triangle-exclamation" | "volume-xmark" | "xmark" | "angle-down" | "angle-left" | "angle-up" | "compress" | "comment-dots" | "quote-left" | "quote-right" | "mobile" | "paper-plane" | "compact-disc" | "desktop" | "outdent" | "bars" | "check-double" | "algolia" | "bilibili" | "binance" | "blogger" | "coinbase" | "flipboard" | "gumroad" | "mega" | "pexels" | "tumblr" | "vk" | "adobe" | "visual-studio-code" | "dollar" | "grid-plus" | "app-store" | "alarm-exclamation" | "bookmark-alt" | "rows" | "chain" | "usdt" | "facebook-alt" | "arrow-rotate" | "get-pocket" | "open-source" | "git-pull" | "square-exclamation" | "tv-retro" | "wave-triangle" | "app-gallery" | "bars-filter" | "bars-sort" | "brackets-angled" | "brackets-curly" | "brackets-round" | "clock-rotate" | "gamepad-modern" | "gohugo" | "grip-dots" | "grip-dots-vertical" | "key-skeleton" | "objects-column" | "sterling" | "table-layout" | "turn-down-left" | "turn-down-right" | "turn-left-down" | "turn-left-up" | "turn-right-down" | "turn-right-up" | "turn-up-left" | "turn-up-right" | "vinyl-disc" | "wave-lines" | "wave-pulse" | "x-alt">): import("react").JSX.Element;
333
333
  displayName: string;
334
334
  };
335
335
  export {};
@@ -188,7 +188,7 @@ declare const miIconNames: {
188
188
  };
189
189
  export type MiIconName = keyof typeof miIconNames;
190
190
  export declare const Mi: {
191
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"sort" | "map" | "filter" | "image" | "link" | "search" | "text" | "menu" | "switch" | "list" | "repeat" | "bold" | "select" | "table" | "circle" | "stop" | "archive" | "attachment" | "backspace" | "book" | "bookmark" | "clipboard" | "clipboard-check" | "clipboard-list" | "comment" | "delete" | "download" | "drag" | "email" | "export" | "eye" | "eye-off" | "flag" | "grid" | "inbox" | "message" | "pin" | "send" | "tag" | "undo" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "chevron-double-down" | "chevron-double-left" | "chevron-double-right" | "chevron-double-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "refresh" | "share" | "shuffle" | "volume-off" | "lock" | "snowflake" | "credit-card" | "cloud" | "cloud-download" | "cloud-upload" | "database" | "calendar" | "clock" | "laptop" | "tablet" | "pen" | "folder" | "folder-check" | "folder-download" | "folder-remove" | "check" | "close" | "heart" | "compass" | "layers" | "camera" | "home" | "pause" | "play" | "webcam" | "document" | "document-check" | "italic" | "megaphone" | "moon" | "shopping-cart" | "strikethrough" | "sun" | "underline" | "user" | "users" | "window" | "ban" | "circle-arrow-down" | "circle-arrow-left" | "circle-arrow-right" | "circle-arrow-up" | "circle-check" | "cloudy" | "computer" | "copy" | "expand" | "external-link" | "log-in" | "log-out" | "minimize" | "save" | "settings" | "sunrise" | "sunset" | "user-check" | "wind" | "zoom-in" | "zoom-out" | "bar-chart" | "edit" | "layout" | "unlock" | "caret-down" | "caret-left" | "caret-right" | "caret-up" | "location" | "notification" | "notification-off" | "percentage" | "reorder" | "storm" | "temperature" | "snow" | "volume-up" | "print" | "mobile" | "add" | "favorite" | "document-add" | "document-download" | "folder-add" | "warning" | "fog" | "rain" | "call" | "enter" | "remove" | "filter-1" | "filter-alt" | "next" | "bar-chart-alt" | "edit-alt" | "link-alt" | "message-alt" | "circle-warning" | "user-add" | "user-remove" | "circle-help" | "drop" | "circle-remove" | "document-remove" | "previous" | "speakers" | "board" | "circle-information" | "arrow-left-down" | "arrow-left-up" | "arrow-right-down" | "arrow-right-up" | "shopping-cart-add" | "circle-add" | "circle-error" | "delete-alt" | "document-empty" | "options-horizontal" | "options-vertical" | "reorder-alt" | "sunrise-alt" | "three-rows" | "two-columns" | "two-rows">): import("react").JSX.Element;
191
+ ({ 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" | "search" | "repeat" | "bold" | "link" | "image" | "text" | "menu" | "switch" | "list" | "select" | "table" | "circle" | "stop" | "call" | "archive" | "attachment" | "backspace" | "book" | "bookmark" | "clipboard" | "clipboard-check" | "clipboard-list" | "comment" | "delete" | "download" | "drag" | "email" | "export" | "eye" | "eye-off" | "flag" | "grid" | "inbox" | "message" | "pin" | "send" | "tag" | "undo" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "chevron-double-down" | "chevron-double-left" | "chevron-double-right" | "chevron-double-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "refresh" | "share" | "shuffle" | "volume-off" | "lock" | "snowflake" | "credit-card" | "cloud" | "cloud-download" | "cloud-upload" | "database" | "calendar" | "clock" | "laptop" | "tablet" | "pen" | "folder" | "folder-check" | "folder-download" | "folder-remove" | "check" | "close" | "heart" | "compass" | "layers" | "camera" | "home" | "pause" | "play" | "webcam" | "document" | "document-check" | "italic" | "megaphone" | "moon" | "shopping-cart" | "strikethrough" | "sun" | "underline" | "user" | "users" | "window" | "ban" | "circle-arrow-down" | "circle-arrow-left" | "circle-arrow-right" | "circle-arrow-up" | "circle-check" | "cloudy" | "computer" | "copy" | "expand" | "external-link" | "log-in" | "log-out" | "minimize" | "save" | "settings" | "sunrise" | "sunset" | "user-check" | "wind" | "zoom-in" | "zoom-out" | "bar-chart" | "edit" | "layout" | "unlock" | "caret-down" | "caret-left" | "caret-right" | "caret-up" | "location" | "notification" | "notification-off" | "percentage" | "reorder" | "storm" | "temperature" | "snow" | "volume-up" | "print" | "mobile" | "add" | "favorite" | "document-add" | "document-download" | "folder-add" | "warning" | "fog" | "rain" | "enter" | "remove" | "filter-1" | "filter-alt" | "next" | "bar-chart-alt" | "edit-alt" | "link-alt" | "message-alt" | "circle-warning" | "user-add" | "user-remove" | "circle-help" | "drop" | "circle-remove" | "document-remove" | "previous" | "speakers" | "board" | "circle-information" | "arrow-left-down" | "arrow-left-up" | "arrow-right-down" | "arrow-right-up" | "shopping-cart-add" | "circle-add" | "circle-error" | "delete-alt" | "document-empty" | "options-horizontal" | "options-vertical" | "reorder-alt" | "sunrise-alt" | "three-rows" | "two-columns" | "two-rows">): import("react").JSX.Element;
192
192
  displayName: string;
193
193
  };
194
194
  export {};