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
@@ -381,7 +381,7 @@ declare const lucide_labIconNames: {
381
381
  };
382
382
  export type LucideLabIconName = keyof typeof lucide_labIconNames;
383
383
  export declare const LucideLab: {
384
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"tab" | "briefcase-plus" | "broom" | "bucket" | "mortar-pestle" | "mustache" | "peace" | "tab-plus" | "ufo" | "yin-yang" | "barn" | "bee" | "flower-tulip" | "pig" | "tire" | "butterfly" | "elephant" | "owl" | "penguin" | "shark" | "spider" | "iron" | "lingerie" | "tie" | "cheese" | "kettle" | "pretzel" | "sausage" | "pac-man" | "toolbox" | "pumpkin" | "snowman" | "spider-web" | "desk-lamp" | "dishwasher" | "faucet" | "floor-plan" | "light-switch" | "shower" | "toaster" | "wardrobe" | "cactus" | "snowboard" | "baseball" | "basketball" | "bowling" | "football" | "football-helmet" | "rugby" | "tennis-ball" | "volleyball" | "stairs" | "card-sim" | "house" | "avocado" | "bowl-chopsticks" | "burger" | "diaper" | "jacket" | "lemon" | "mug" | "planet" | "razor" | "steering-wheel" | "target-arrow" | "wheel" | "windmill" | "fork-knife" | "houses" | "mailbox-flag" | "bell-concierge" | "floppy-disk" | "jar" | "horse-head" | "igloo" | "socks" | "bacon" | "vest" | "strawberry" | "intercom" | "waffle" | "watch-check" | "stroller" | "cabin" | "toast" | "soccer-ball" | "farm" | "scarf" | "at-sign-circle" | "bold-square" | "italic-square" | "text-square" | "underline-square" | "euro-square" | "pillow" | "coconut" | "kiwi" | "sushi" | "whisk" | "cricket-ball" | "coffee-bean" | "pear" | "socket-eu" | "socket-uk" | "crab" | "dress" | "frog-face" | "grapes" | "onion" | "peach" | "shorts" | "watermelon" | "goal-net" | "ice-hockey" | "ice-skate" | "skis" | "hot-dog" | "pancakes" | "bear-face" | "whale" | "barber-pole" | "goblet" | "cocktail" | "hat-hard" | "garlic" | "hedgehog" | "olive" | "pie" | "apple-core" | "astronaut-helmet" | "barbecue" | "beach-ball" | "belt" | "candle-holder" | "cauldron" | "chest" | "flower-pot" | "high-heel" | "hockey" | "jug" | "life-jacket" | "razor-blade" | "skirt" | "tennis-racket" | "trousers" | "face-alien" | "bed-bunk" | "euro-circle" | "surfboard" | "baseline-square" | "coat-hanger" | "sweater" | "hairdryer" | "candlestick" | "ampersand-square" | "arrows-up-down-square" | "at-sign-square" | "baby-pacifier" | "bag-hand" | "bat-ball" | "bath-bubble" | "bee-hive" | "beetle-scarab" | "bell-concierge-dot" | "bell-concierge-off" | "bottle-baby" | "bottle-champagne" | "bottle-dispenser" | "bottle-perfume" | "bottle-plastic" | "bottle-spray" | "bottle-toothbrush-comb" | "bowl-overflow" | "bra-sports" | "bull-head" | "cabinet-filing" | "candle-holder-lit" | "candle-tealight" | "candle-tealight-lit" | "candlestick-big" | "candlestick-big-lit" | "candlestick-lit" | "card-credit" | "card-sd" | "carton" | "carton-off" | "case-camel" | "case-kebab" | "case-snake" | "case-snake-upper" | "cat-big" | "cent" | "cent-circle" | "cent-square" | "chairs-table-parasol" | "chairs-table-platter" | "chameleon" | "chevrons-left-right-square" | "chevrons-up-down-square" | "cloth" | "coffeemaker" | "coins-exchange" | "coins-stack" | "copy-code" | "copy-down" | "copy-file-path" | "copy-image" | "copy-text" | "copy-type" | "cow-head" | "cow-udder-droplets" | "cricket-wicket" | "cross-square" | "crosshair-2" | "crosshair-2-dot" | "crosshair-plus" | "crosshair-plus-dot" | "crosshair-square" | "cup-saucer" | "cup-to-go" | "currency-square" | "dollar-sign-circle" | "dollar-sign-square" | "doorbell-intercom" | "egg-cup" | "elephant-face" | "escalator-arrow-down-left" | "escalator-arrow-up-right" | "fan-handheld" | "feather-plus" | "feather-square" | "feather-text" | "flippers" | "floppy-disk-2" | "floppy-disk-rear" | "floppy-disks" | "floppy-disks-2" | "floppy-disks-rear" | "flower-lotus" | "flower-rose" | "flower-rose-single" | "flower-stem" | "football-goal" | "fork-knife-crossed" | "fox-face-tail" | "fruit" | "gearbox" | "gearbox-square" | "gem-ring" | "glasses-square" | "glasses-sun" | "goblet-crack" | "golf-driver" | "grid-lines" | "grid-lines-offset" | "hat-baseball" | "hat-beanie" | "hat-bowler" | "hat-chef" | "hat-top" | "heading-circle" | "heading-square" | "helmet-diving" | "hexagons-3" | "hexagons-7" | "hockey-mask" | "house-manor" | "house-off" | "house-roof" | "house-roof-off" | "indian-rupee-circle" | "indian-rupee-square" | "iron-off" | "ironing-board" | "jacket-sports" | "japanese-yen-circle" | "japanese-yen-square" | "kebab" | "kettle-electric" | "layout-grid-move-horizontal" | "layout-grid-move-vertical" | "layout-grid-plus" | "layout-list-move" | "ligature-square" | "locate-square" | "luggage-cabin" | "lunch-box" | "mask-snorkel" | "meal-box" | "motor-racing-helmet" | "mug-teabag" | "pac-man-ghost" | "palmtree-island-sun" | "pepper-chilli" | "pig-head" | "pin-safety" | "pin-safety-open" | "pineapple-ring" | "pond" | "pound-sterling-circle" | "pound-sterling-square" | "pram" | "reel-thread" | "refrigerator-freezer" | "remove-formatting-square" | "russian-ruble-circle" | "russian-ruble-square" | "scissors-hair-comb" | "shave-face" | "shirt-folded-buttons" | "shirt-long-sleeve" | "shirt-t" | "shirt-t-ruler" | "shirt-t-v-neck" | "shorts-boxer" | "shovel-dig" | "slot-card" | "slot-card-credit" | "slot-disc" | "sneaker" | "soap-bar" | "soccer-pitch" | "socket-usa" | "stairs-arch" | "stairs-arrow-down-left" | "stairs-arrow-up-right" | "star-north" | "strikethrough-square" | "sunlounger-parasol-sun" | "sunlounger-parasol-sun-palmtree" | "sunlounger-parasol-table" | "sushi-2" | "sushi-3" | "sushi-chopsticks" | "swiss-franc-circle" | "swiss-franc-square" | "tab-arrow-down" | "tab-arrow-up-right" | "tab-check" | "tab-dot" | "tab-slash" | "tab-text" | "tab-x" | "tie-bow" | "tie-bow-ribbon" | "toilet-roll" | "toolbox-2" | "top-crop" | "towel-folded" | "towel-rack" | "trees-forest" | "triangle-stripes" | "tuxedo" | "type-square" | "unicorn-head" | "venn" | "watch-activity" | "watch-alarm" | "watch-bars" | "watch-charging" | "watch-loader" | "watch-music" | "watch-square" | "watch-square-alarm" | "watch-text" | "wave-circle" | "waves-birds" | "waves-shark-fin" | "whale-narwhal" | "whisk-fork-knife" | "whisks" | "wine-glass-bottle" | "yarn-ball">): import("react").JSX.Element;
384
+ ({ 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<"tab" | "briefcase-plus" | "broom" | "bucket" | "mortar-pestle" | "mustache" | "peace" | "tab-plus" | "ufo" | "yin-yang" | "barn" | "bee" | "flower-tulip" | "pig" | "tire" | "butterfly" | "elephant" | "owl" | "penguin" | "shark" | "spider" | "iron" | "lingerie" | "tie" | "cheese" | "kettle" | "pretzel" | "sausage" | "pac-man" | "toolbox" | "pumpkin" | "snowman" | "spider-web" | "desk-lamp" | "dishwasher" | "faucet" | "floor-plan" | "light-switch" | "shower" | "toaster" | "wardrobe" | "cactus" | "snowboard" | "baseball" | "basketball" | "bowling" | "football" | "football-helmet" | "rugby" | "tennis-ball" | "volleyball" | "stairs" | "card-sim" | "house" | "avocado" | "bowl-chopsticks" | "burger" | "diaper" | "jacket" | "lemon" | "mug" | "planet" | "razor" | "steering-wheel" | "target-arrow" | "wheel" | "windmill" | "fork-knife" | "houses" | "mailbox-flag" | "bell-concierge" | "floppy-disk" | "jar" | "horse-head" | "igloo" | "socks" | "bacon" | "vest" | "strawberry" | "intercom" | "waffle" | "watch-check" | "stroller" | "cabin" | "toast" | "soccer-ball" | "farm" | "scarf" | "at-sign-circle" | "bold-square" | "italic-square" | "text-square" | "underline-square" | "euro-square" | "pillow" | "coconut" | "kiwi" | "sushi" | "whisk" | "cricket-ball" | "coffee-bean" | "pear" | "socket-eu" | "socket-uk" | "crab" | "dress" | "frog-face" | "grapes" | "onion" | "peach" | "shorts" | "watermelon" | "goal-net" | "ice-hockey" | "ice-skate" | "skis" | "hot-dog" | "pancakes" | "bear-face" | "whale" | "barber-pole" | "goblet" | "cocktail" | "hat-hard" | "garlic" | "hedgehog" | "olive" | "pie" | "apple-core" | "astronaut-helmet" | "barbecue" | "beach-ball" | "belt" | "candle-holder" | "cauldron" | "chest" | "flower-pot" | "high-heel" | "hockey" | "jug" | "life-jacket" | "razor-blade" | "skirt" | "tennis-racket" | "trousers" | "face-alien" | "bed-bunk" | "euro-circle" | "surfboard" | "baseline-square" | "coat-hanger" | "sweater" | "hairdryer" | "candlestick" | "ampersand-square" | "arrows-up-down-square" | "at-sign-square" | "baby-pacifier" | "bag-hand" | "bat-ball" | "bath-bubble" | "bee-hive" | "beetle-scarab" | "bell-concierge-dot" | "bell-concierge-off" | "bottle-baby" | "bottle-champagne" | "bottle-dispenser" | "bottle-perfume" | "bottle-plastic" | "bottle-spray" | "bottle-toothbrush-comb" | "bowl-overflow" | "bra-sports" | "bull-head" | "cabinet-filing" | "candle-holder-lit" | "candle-tealight" | "candle-tealight-lit" | "candlestick-big" | "candlestick-big-lit" | "candlestick-lit" | "card-credit" | "card-sd" | "carton" | "carton-off" | "case-camel" | "case-kebab" | "case-snake" | "case-snake-upper" | "cat-big" | "cent" | "cent-circle" | "cent-square" | "chairs-table-parasol" | "chairs-table-platter" | "chameleon" | "chevrons-left-right-square" | "chevrons-up-down-square" | "cloth" | "coffeemaker" | "coins-exchange" | "coins-stack" | "copy-code" | "copy-down" | "copy-file-path" | "copy-image" | "copy-text" | "copy-type" | "cow-head" | "cow-udder-droplets" | "cricket-wicket" | "cross-square" | "crosshair-2" | "crosshair-2-dot" | "crosshair-plus" | "crosshair-plus-dot" | "crosshair-square" | "cup-saucer" | "cup-to-go" | "currency-square" | "dollar-sign-circle" | "dollar-sign-square" | "doorbell-intercom" | "egg-cup" | "elephant-face" | "escalator-arrow-down-left" | "escalator-arrow-up-right" | "fan-handheld" | "feather-plus" | "feather-square" | "feather-text" | "flippers" | "floppy-disk-2" | "floppy-disk-rear" | "floppy-disks" | "floppy-disks-2" | "floppy-disks-rear" | "flower-lotus" | "flower-rose" | "flower-rose-single" | "flower-stem" | "football-goal" | "fork-knife-crossed" | "fox-face-tail" | "fruit" | "gearbox" | "gearbox-square" | "gem-ring" | "glasses-square" | "glasses-sun" | "goblet-crack" | "golf-driver" | "grid-lines" | "grid-lines-offset" | "hat-baseball" | "hat-beanie" | "hat-bowler" | "hat-chef" | "hat-top" | "heading-circle" | "heading-square" | "helmet-diving" | "hexagons-3" | "hexagons-7" | "hockey-mask" | "house-manor" | "house-off" | "house-roof" | "house-roof-off" | "indian-rupee-circle" | "indian-rupee-square" | "iron-off" | "ironing-board" | "jacket-sports" | "japanese-yen-circle" | "japanese-yen-square" | "kebab" | "kettle-electric" | "layout-grid-move-horizontal" | "layout-grid-move-vertical" | "layout-grid-plus" | "layout-list-move" | "ligature-square" | "locate-square" | "luggage-cabin" | "lunch-box" | "mask-snorkel" | "meal-box" | "motor-racing-helmet" | "mug-teabag" | "pac-man-ghost" | "palmtree-island-sun" | "pepper-chilli" | "pig-head" | "pin-safety" | "pin-safety-open" | "pineapple-ring" | "pond" | "pound-sterling-circle" | "pound-sterling-square" | "pram" | "reel-thread" | "refrigerator-freezer" | "remove-formatting-square" | "russian-ruble-circle" | "russian-ruble-square" | "scissors-hair-comb" | "shave-face" | "shirt-folded-buttons" | "shirt-long-sleeve" | "shirt-t" | "shirt-t-ruler" | "shirt-t-v-neck" | "shorts-boxer" | "shovel-dig" | "slot-card" | "slot-card-credit" | "slot-disc" | "sneaker" | "soap-bar" | "soccer-pitch" | "socket-usa" | "stairs-arch" | "stairs-arrow-down-left" | "stairs-arrow-up-right" | "star-north" | "strikethrough-square" | "sunlounger-parasol-sun" | "sunlounger-parasol-sun-palmtree" | "sunlounger-parasol-table" | "sushi-2" | "sushi-3" | "sushi-chopsticks" | "swiss-franc-circle" | "swiss-franc-square" | "tab-arrow-down" | "tab-arrow-up-right" | "tab-check" | "tab-dot" | "tab-slash" | "tab-text" | "tab-x" | "tie-bow" | "tie-bow-ribbon" | "toilet-roll" | "toolbox-2" | "top-crop" | "towel-folded" | "towel-rack" | "trees-forest" | "triangle-stripes" | "tuxedo" | "type-square" | "unicorn-head" | "venn" | "watch-activity" | "watch-alarm" | "watch-bars" | "watch-charging" | "watch-loader" | "watch-music" | "watch-square" | "watch-square-alarm" | "watch-text" | "wave-circle" | "waves-birds" | "waves-shark-fin" | "whale-narwhal" | "whisk-fork-knife" | "whisks" | "wine-glass-bottle" | "yarn-ball">): import("react").JSX.Element;
385
385
  displayName: string;
386
386
  };
387
387
  export {};
@@ -1050,7 +1050,7 @@ declare const mageIconNames: {
1050
1050
  };
1051
1051
  export type MageIconName = keyof typeof mageIconNames;
1052
1052
  export declare const Mage: {
1053
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"filter" | "image" | "link" | "search" | "key" | "meta" | "video" | "line" | "stop" | "archive" | "arrow-up-left" | "arrow-up-right" | "attachment" | "book" | "bookmark" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "briefcase" | "cancel" | "chip" | "clipboard" | "dots-circle" | "dots-horizontal" | "dots-horizontal-circle" | "dots-square" | "download" | "email" | "eye" | "eye-closed" | "eye-off" | "fast-forward" | "fingerprint" | "flag" | "id-card" | "image-check" | "image-minus" | "image-plus" | "inbox" | "keyboard" | "login" | "logout" | "message" | "message-check" | "message-minus" | "message-plus" | "mouse" | "note" | "note-text" | "pin" | "play-circle" | "plus-circle" | "ribbon" | "robot-dead" | "robot-happy" | "server" | "shield-plus" | "stop-circle" | "tag" | "tag-check" | "tag-minus" | "tag-plus" | "upload" | "voicemail" | "wifi" | "shield-check" | "arrow-down" | "arrow-down-circle" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-left-circle" | "arrow-right" | "arrow-right-circle" | "arrow-up" | "arrow-up-circle" | "chevron-down" | "chevron-down-circle" | "chevron-left" | "chevron-left-circle" | "chevron-right" | "chevron-right-circle" | "chevron-up" | "chevron-up-circle" | "refresh" | "reload" | "share" | "music" | "music-circle" | "volume-mute" | "battery-charging" | "lock" | "credit-card" | "battery-low" | "apple" | "box" | "facebook" | "github" | "google" | "linkedin" | "microsoft-windows" | "netflix" | "pinterest" | "reddit" | "slack" | "snapchat" | "spotify" | "steam" | "twitter" | "whatsapp" | "youtube" | "phone" | "phone-cancel" | "phone-incoming" | "phone-minus" | "phone-outgoing" | "phone-plus" | "database" | "calendar" | "calendar-check" | "calendar-minus" | "calendar-plus" | "clock" | "laptop" | "tablet" | "television" | "pen" | "file" | "file-check" | "file-download" | "file-minus" | "file-plus" | "file-upload" | "folder" | "folder-check" | "folder-minus" | "folder-open" | "folder-plus" | "check" | "check-circle" | "minus-circle" | "heart" | "shield-cross" | "compass" | "earth" | "map-marker" | "bolt" | "wrench" | "gift" | "camera" | "home" | "home-heart" | "home-plus" | "pause" | "play" | "printer" | "robot" | "calculator" | "minus" | "plus" | "microphone" | "rocket" | "star" | "star-circle" | "basket" | "basket-fill" | "trophy" | "video-check" | "video-minus" | "video-plus" | "broadcast" | "divide" | "exclamation-circle" | "exclamation-triangle" | "gif" | "information-circle" | "light-bulb" | "moon" | "qr-code" | "question-mark-circle" | "shopping-bag" | "shopping-cart" | "sun" | "trash" | "user" | "user-circle" | "user-minus" | "user-plus" | "users" | "alarm-clock" | "battery-full" | "book-text" | "copy" | "dribbble" | "external-link" | "figma" | "file-question-mark" | "focus" | "globe" | "hash" | "layout-grid" | "maximize" | "message-square" | "minimize" | "mouse-pointer" | "phone-call" | "scan" | "settings" | "shield-question-mark" | "thumbs-down" | "thumbs-up" | "trash-2" | "user-check" | "x" | "zap" | "zoom-in" | "zoom-out" | "align-center" | "align-left" | "align-right" | "check-square" | "divide-circle" | "divide-square" | "edit" | "minus-square" | "plus-square" | "x-square" | "arrow-down-left-circle" | "arrow-down-right-circle" | "arrow-down-square" | "arrow-left-square" | "arrow-right-square" | "arrow-up-left-circle" | "arrow-up-right-circle" | "arrow-up-square" | "caret-down" | "caret-left" | "caret-right" | "caret-up" | "checklist" | "color-picker" | "color-swatch" | "dashboard" | "dots" | "filter-2" | "first-aid-kit" | "home-2" | "home-check" | "hospital-circle" | "location" | "location-pin" | "lock-square" | "message-dots" | "mouse-2" | "playlist" | "playlist-add" | "server-2" | "stack" | "user-square" | "amazon" | "archive-fill" | "arrow-down-circle-fill" | "arrow-down-left-circle-fill" | "arrow-down-left-square" | "arrow-down-left-square-fill" | "arrow-down-right-circle-fill" | "arrow-down-right-square" | "arrow-down-right-square-fill" | "arrow-down-square-fill" | "arrow-left-circle-fill" | "arrow-left-square-fill" | "arrow-right-circle-fill" | "arrow-right-square-fill" | "arrow-up-circle-fill" | "arrow-up-left-circle-fill" | "arrow-up-left-square" | "arrow-up-left-square-fill" | "arrow-up-right-circle-fill" | "arrow-up-right-square" | "arrow-up-right-square-fill" | "arrow-up-square-fill" | "battery-half" | "behance" | "book-fill" | "bookmark-check-fill" | "bookmark-fill" | "bookmark-plus-fill" | "box-fill" | "briefcase-fill" | "calculator-fill" | "calendar-check-fill" | "calendar-fill" | "calendar-minus-fill" | "calendar-plus-fill" | "camera-fill" | "caret-down-fill" | "caret-left-fill" | "caret-right-fill" | "caret-up-fill" | "check-circle-fill" | "check-square-fill" | "clipboard-fill" | "clock-fill" | "compass-fill" | "credit-card-fill" | "cup-hot" | "cup-hot-fill" | "database-fill" | "discord" | "exclamation-circle-fill" | "exclamation-square" | "exclamation-square-fill" | "exclamation-triangle-fill" | "eye-fill" | "fast-forward-fill" | "file-check-fill" | "file-fill" | "file-minus-fill" | "file-plus-fill" | "filter-square" | "filter-square-fill" | "flag-fill" | "folder-fill" | "gift-fill" | "heart-fill" | "image-fill" | "inbox-fill" | "key-fill" | "keyboard-fill" | "laptop-fill" | "lock-fill" | "medium" | "messenger" | "moon-fill" | "mouse-fill" | "pause-fill" | "paypal" | "pen-fill" | "phone-fill" | "pin-fill" | "play-circle-fill" | "play-fill" | "plus-circle-fill" | "plus-square-fill" | "printer-fill" | "rocket-fill" | "share-fill" | "shop" | "star-fill" | "stop-circle-fill" | "stop-fill" | "stripe" | "sun-fill" | "tablet-fill" | "tag-fill" | "telegram" | "threads" | "tiktok" | "trash-fill" | "trophy-fill" | "volume-down" | "volume-down-fill" | "volume-mute-fill" | "volume-up" | "volume-up-fill" | "sim-card" | "battery-empty" | "home-2-fill" | "home-3-fill" | "home-4-fill" | "home-fill" | "home-heart-fill" | "archive-drawer-fill" | "calendar-2-fill" | "id-card-fill" | "stack-fill" | "message-fill" | "edit-fill" | "focus-fill" | "layout-grid-fill" | "layout-left-fill" | "layout-right-fill" | "wrench-fill" | "battery-low-fill" | "dashboard-2-fill" | "dashboard-3-fill" | "database-2-fill" | "qr-code-fill" | "server-fill" | "shut-down-fill" | "sim-card-fill" | "file-2-fill" | "file-download-fill" | "file-upload-fill" | "folder-2-fill" | "folder-check-fill" | "folder-open-fill" | "shopping-bag-fill" | "shopping-cart-fill" | "first-aid-kit-fill" | "earth-fill" | "globe-fill" | "broadcast-fill" | "camera-2-fill" | "music-fill" | "video-download-fill" | "video-fill" | "video-upload-fill" | "dashboard-fill" | "eye-off-fill" | "filter-2-fill" | "filter-fill" | "search-fill" | "settings-fill" | "shield-check-fill" | "shield-cross-fill" | "zoom-in-fill" | "zoom-out-fill" | "robot-fill" | "user-fill" | "user-minus-fill" | "unlocked" | "video-player" | "information-square" | "delivery-truck" | "battery-dead" | "female" | "male" | "lens" | "notion" | "visa" | "adobe" | "preview" | "water-drop" | "dashboard-2" | "microphone-mute" | "dollar" | "light-bulb-off" | "layout-left" | "layout-right" | "calendar-2" | "calendar-3" | "folder-2" | "next" | "screencast" | "chart" | "chevron-down-square" | "chevron-left-square" | "chevron-right-square" | "chevron-up-square" | "heart-square" | "memory-card" | "facebook-circle" | "facebook-square" | "direction-right" | "phone-cross" | "direction-up-right" | "illustrator" | "photoshop" | "gem-stone" | "mobile-phone" | "hour-glass" | "edit-pen" | "color-picker-fill" | "copy-fill" | "email-fill" | "message-square-fill" | "minus-circle-fill" | "minus-square-fill" | "phone-call-fill" | "question-mark-circle-fill" | "trash-2-fill" | "bolt-fill" | "chevron-down-circle-fill" | "chevron-down-square-fill" | "chevron-left-circle-fill" | "chevron-left-square-fill" | "chevron-right-circle-fill" | "chevron-right-square-fill" | "chevron-up-circle-fill" | "chevron-up-square-fill" | "divide-circle-fill" | "divide-square-fill" | "location-fill" | "multiply" | "multiply-circle" | "multiply-circle-fill" | "multiply-square" | "multiply-square-fill" | "star-circle-fill" | "instagram-square" | "contact-book" | "inbox-check" | "previous" | "scale-up" | "sound-waves" | "thumbs-down-fill" | "thumbs-up-fill" | "electricity" | "phone-missed-call" | "chart-down" | "chart-up" | "gameboy" | "headphone-mute" | "image-download" | "image-upload" | "inbox-download" | "inbox-upload" | "play-square" | "search-square" | "shut-down" | "star-square" | "information-circle-fill" | "information-square-fill" | "question-mark-square" | "question-mark-square-fill" | "microphone-fill" | "playlist-fill" | "refresh-reverse" | "tube" | "chart-fill" | "package-box" | "battery-full-fill" | "cancel-fill" | "email-opened" | "database-2" | "trash-3" | "aeroplane" | "aeroplane-fill" | "after-effects" | "alarm-clock-fill" | "archive-drawer" | "arrowlist" | "arrows-all-direction" | "arrows-all-direction-2" | "bag-a" | "bag-a-fill" | "bag-b" | "bag-b-fill" | "bar-code-scan" | "battery-charging-fill" | "battery-dead-fill" | "battery-empty-fill" | "battery-half-fill" | "bell-notification-square" | "bell-notification-square-fill" | "book-text-fill" | "bookmark-cross" | "bookmark-cross-fill" | "bookmark-download" | "bookmark-download-fill" | "bookmark-minus-fill" | "bookmark-question-mark" | "bookmark-question-mark-fill" | "bookmark-upload" | "bookmark-upload-fill" | "box-3d" | "box-3d-check" | "box-3d-check-fill" | "box-3d-cross" | "box-3d-cross-fill" | "box-3d-download" | "box-3d-download-fill" | "box-3d-fill" | "box-3d-minus" | "box-3d-minus-fill" | "box-3d-notification" | "box-3d-notification-fill" | "box-3d-plus" | "box-3d-plus-fill" | "box-3d-question-mark" | "box-3d-question-mark-fill" | "box-3d-scan" | "box-3d-scan-fill" | "box-3d-upload" | "box-3d-upload-fill" | "box-check" | "box-check-fill" | "box-cross" | "box-cross-fill" | "box-minus" | "box-minus-fill" | "box-plus" | "box-plus-fill" | "box-question-mark" | "box-question-mark-fill" | "box-upload" | "box-upload-fill" | "building-a" | "building-a-fill" | "building-b" | "building-b-fill" | "building-tree" | "building-tree-fill" | "calendar-3-fill" | "calendar-cross" | "calendar-cross-fill" | "calendar-download" | "calendar-download-fill" | "calendar-question-mark" | "calendar-question-mark-fill" | "calendar-upload" | "calendar-upload-fill" | "camera-2" | "chart-15" | "chart-15-fill" | "chart-25" | "chart-25-fill" | "chart-50" | "chart-50-fill" | "chart-b" | "chart-b-fill" | "chart-down-b" | "chart-down-b-fill" | "chart-down-fill" | "chart-up-b" | "chart-up-b-fill" | "chart-up-fill" | "chart-vertical" | "chart-vertical-fill" | "checklist-note" | "checklist-note-fill" | "chip-fill" | "clipboard-2" | "clipboard-2-fill" | "clipboard-3" | "coin-a" | "coin-a-fill" | "coin-b" | "coin-b-fill" | "color-swatch-fill" | "compact-disk" | "compact-disk-fill" | "contact-book-fill" | "crown-a" | "crown-a-fill" | "crown-b" | "crown-b-fill" | "dash-menu" | "dashboard-3" | "dashboard-4" | "dashboard-4-fill" | "dashboard-bar" | "dashboard-bar-fill" | "dashboard-bar-notification" | "dashboard-chart" | "dashboard-chart-arrow" | "dashboard-chart-arrow-fill" | "dashboard-chart-fill" | "dashboard-chart-notification" | "dashboard-chart-star" | "dashboard-check" | "dashboard-check-fill" | "dashboard-circle-bar" | "dashboard-circle-bar-fill" | "dashboard-circle-chart" | "dashboard-circle-chart-fill" | "dashboard-cross" | "dashboard-cross-fill" | "dashboard-minus" | "dashboard-minus-fill" | "dashboard-plus" | "dashboard-plus-fill" | "delivery-truck-fill" | "dialer-keypad" | "dialer-keypad-fill" | "direction-right-2" | "direction-right-2-fill" | "direction-right-fill" | "direction-up" | "direction-up-2" | "direction-up-2-fill" | "direction-up-fill" | "direction-up-right-2" | "direction-up-right-2-fill" | "direction-up-right-fill" | "dollar-fill" | "dots-circle-fill" | "dots-horizontal-circle-fill" | "dots-horizontal-square" | "dots-horizontal-square-fill" | "dots-menu" | "dots-square-fill" | "double-arrow-circle" | "double-arrow-circle-fill" | "double-arrow-down" | "double-arrow-left" | "double-arrow-right" | "double-arrow-up" | "double-circle" | "double-circle-fill" | "double-diamond" | "double-diamond-fill" | "double-square" | "double-square-fill" | "edit-pen-fill" | "electricity-danger" | "electricity-danger-fill" | "electricity-fill" | "email-notification" | "email-opened-fill" | "exchange-a" | "exchange-b" | "exclamation-hexagon" | "exclamation-hexagon-fill" | "fast-forward-back" | "fast-forward-back-fill" | "file-2" | "file-3" | "file-cross" | "file-cross-fill" | "file-question-mark-fill" | "file-records" | "file-records-fill" | "fingerprint-minimal" | "fire-a" | "fire-a-fill" | "fire-b" | "fire-b-fill" | "folder-cross" | "folder-cross-fill" | "folder-minus-fill" | "folder-plus-fill" | "gameboy-fill" | "gem-a" | "gem-a-fill" | "gem-b" | "gem-b-fill" | "gem-c" | "gem-c-fill" | "gem-stone-fill" | "gif-fill" | "goals" | "goals-fill" | "handicapped" | "handicapped-fill" | "headphone-mute-fill" | "health-circle" | "health-circle-fill" | "health-square" | "health-square-fill" | "heaphone" | "heaphone-fill" | "heart-health" | "heart-health-fill" | "heart-square-fill" | "home-3" | "home-4" | "home-check-fill" | "home-cross" | "home-cross-fill" | "home-plus-fill" | "home-security-lock" | "home-security-lock-fill" | "hospital-circle-fill" | "hospital-plus" | "hospital-plus-fill" | "hospital-shield" | "hospital-shield-fill" | "hospital-square" | "hospital-square-fill" | "hour-glass-fill" | "image-cross" | "image-question-mark" | "inbox-check-fill" | "inbox-cross" | "inbox-cross-fill" | "inbox-download-fill" | "inbox-minus" | "inbox-minus-fill" | "inbox-notification" | "inbox-notification-fill" | "inbox-plus" | "inbox-plus-fill" | "inbox-question-mark" | "inbox-question-mark-fill" | "inbox-star" | "inbox-star-fill" | "inbox-upload-fill" | "instagram-circle" | "l-arrow-down-left" | "l-arrow-down-right" | "l-arrow-left-down" | "l-arrow-left-up" | "l-arrow-right-down" | "l-arrow-right-up" | "l-arrow-up-left" | "l-arrow-up-right" | "layout-center" | "layout-center-fill" | "layout-down" | "layout-down-fill" | "layout-up" | "layout-up-fill" | "layout-up-left" | "layout-up-left-fill" | "layout-up-right" | "layout-up-right-fill" | "lens-fill" | "light-bulb-electricity" | "light-bulb-electricity-fill" | "light-bulb-fill" | "light-bulb-off-fill" | "lock-square-fill" | "magnet-down" | "magnet-down-fill" | "magnet-left" | "magnet-left-fill" | "magnet-right" | "magnet-right-fill" | "magnet-up" | "magnet-up-fill" | "map-marker-fill" | "media-reel-h" | "media-reel-h-fill" | "media-reel-v" | "media-reel-v-fill" | "megaphone-a" | "megaphone-a-fill" | "megaphone-b" | "megaphone-b-fill" | "memory-card-fill" | "message-check-fill" | "message-check-round" | "message-check-round-fill" | "message-conversation" | "message-conversation-fill" | "message-dots-check" | "message-dots-cross" | "message-dots-download" | "message-dots-fill" | "message-dots-minus" | "message-dots-plus" | "message-dots-question-mark" | "message-dots-round" | "message-dots-round-check" | "message-dots-round-cross" | "message-dots-round-download" | "message-dots-round-fill" | "message-dots-round-minus" | "message-dots-round-plus" | "message-dots-round-question-mark" | "message-dots-round-upload" | "message-dots-upload" | "message-info-round" | "message-info-round-fill" | "message-information" | "message-information-fill" | "message-minus-fill" | "message-minus-round" | "message-minus-round-fill" | "message-plus-fill" | "message-plus-round" | "message-plus-round-fill" | "message-question-mark" | "message-question-mark-fill" | "message-question-mark-round" | "message-question-mark-round-fill" | "message-round" | "message-round-fill" | "message-round-square" | "message-round-square-fill" | "microphone-mute-fill" | "mobile-phone-fill" | "money-exchange" | "mouse-2-fill" | "mouse-pointer-fill" | "music-alternate" | "music-alternate-fill" | "music-circle-fill" | "music-square" | "music-square-fill" | "next-fill" | "note-fill" | "note-text-fill" | "note-with-text" | "note-with-text-fill" | "notification-bell" | "notification-bell-check" | "notification-bell-check-fill" | "notification-bell-cross" | "notification-bell-cross-fill" | "notification-bell-download" | "notification-bell-download-fill" | "notification-bell-fill" | "notification-bell-minus" | "notification-bell-minus-fill" | "notification-bell-muted" | "notification-bell-muted-fill" | "notification-bell-pending" | "notification-bell-pending-fill" | "notification-bell-plus" | "notification-bell-plus-fill" | "notification-bell-question-mark" | "notification-bell-question-mark-fill" | "notification-bell-snooze" | "notification-bell-snooze-2" | "notification-bell-snooze-2-fill" | "notification-bell-upload" | "notification-bell-upload-fill" | "package-box-fill" | "pause-square" | "pause-square-fill" | "phone-cancel-fill" | "phone-cross-fill" | "phone-incoming-fill" | "phone-minus-fill" | "phone-missed-call-fill" | "phone-outgoing-fill" | "phone-plus-fill" | "phone-ringing-loud" | "phone-ringing-loud-fill" | "play-square-fill" | "playlist-alternate" | "playlist-alternate-fill" | "playstore" | "premier-pro" | "preview-circle" | "preview-circle-fill" | "preview-fill" | "previous-fill" | "reload-reverse" | "ribbon-fill" | "robot-appreciate" | "robot-appreciate-fill" | "robot-dead-fill" | "robot-happy-fill" | "robot-sad" | "robot-sad-fill" | "robot-screen" | "robot-screen-fill" | "robot-uwu" | "robot-uwu-fill" | "robot-wink" | "robot-wink-fill" | "round-sticker" | "round-sticker-fill" | "save-floppy" | "save-floppy-fill" | "scale-down" | "scan-user" | "scan-user-fill" | "screencast-fill" | "search-square-fill" | "security-shield" | "security-shield-fill" | "select-box" | "server-2-fill" | "shield-plus-fill" | "shield-question-mark-fill" | "shiled-minus" | "shiled-minus-fill" | "shop-fill" | "star-moving" | "star-moving-fill" | "star-square-fill" | "stars-a" | "stars-a-fill" | "stars-b" | "stars-b-fill" | "stars-c" | "stars-c-fill" | "stop-square" | "stop-square-fill" | "swim-ring-fill" | "tag-2" | "tag-2-fill" | "tag-check-fill" | "tag-cross" | "tag-cross-fill" | "tag-minus-fill" | "tag-plus-fill" | "tag-question-mark" | "tag-question-mark-fill" | "television-check" | "television-check-fill" | "television-cross" | "television-cross-fill" | "television-download" | "television-download-fill" | "television-fill" | "television-minus" | "television-minus-fill" | "television-plus" | "television-plus-fill" | "television-question-mark" | "television-question-mark-fill" | "television-upload" | "television-upload-fill" | "threads-square" | "three-d-box-square" | "three-d-box-square-fill" | "tiktok-circle" | "trash-3-fill" | "trash-square" | "trash-square-fill" | "trophy-circle" | "trophy-circle-fill" | "trophy-down" | "trophy-down-fill" | "trophy-star" | "trophy-star-fill" | "trophy-up" | "trophy-up-fill" | "tube-fill" | "twtich" | "unlocked-fill" | "user-check-fill" | "user-circle-fill" | "user-cross" | "user-cross-fill" | "user-plus-fill" | "user-question-mark" | "user-question-mark-fill" | "user-square-fill" | "users-fill" | "verified-check" | "verified-check-fill" | "video-check-fill" | "video-cross" | "video-cross-fill" | "video-download" | "video-minus-fill" | "video-player-fill" | "video-plus-fill" | "video-question-mark" | "video-question-mark-fill" | "video-upload" | "visa-square" | "voicemail-fill" | "volume-zero" | "volume-zero-fill" | "water-drop-fill" | "water-glass" | "water-glass-fill" | "we-chat" | "whatsapp-filled" | "zap-circle" | "zap-circle-fill" | "zap-fill" | "zap-square" | "zap-square-fill">): import("react").JSX.Element;
1053
+ ({ 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<"filter" | "search" | "link" | "image" | "key" | "meta" | "video" | "line" | "stop" | "x" | "archive" | "arrow-up-left" | "arrow-up-right" | "attachment" | "book" | "bookmark" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "briefcase" | "cancel" | "chip" | "clipboard" | "dots-circle" | "dots-horizontal" | "dots-horizontal-circle" | "dots-square" | "download" | "email" | "eye" | "eye-closed" | "eye-off" | "fast-forward" | "fingerprint" | "flag" | "id-card" | "image-check" | "image-minus" | "image-plus" | "inbox" | "keyboard" | "login" | "logout" | "message" | "message-check" | "message-minus" | "message-plus" | "mouse" | "note" | "note-text" | "pin" | "play-circle" | "plus-circle" | "ribbon" | "robot-dead" | "robot-happy" | "server" | "shield-plus" | "stop-circle" | "tag" | "tag-check" | "tag-minus" | "tag-plus" | "upload" | "voicemail" | "wifi" | "shield-check" | "arrow-down" | "arrow-down-circle" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-left-circle" | "arrow-right" | "arrow-right-circle" | "arrow-up" | "arrow-up-circle" | "chevron-down" | "chevron-down-circle" | "chevron-left" | "chevron-left-circle" | "chevron-right" | "chevron-right-circle" | "chevron-up" | "chevron-up-circle" | "refresh" | "reload" | "share" | "music" | "music-circle" | "volume-mute" | "battery-charging" | "lock" | "credit-card" | "battery-low" | "apple" | "box" | "facebook" | "github" | "google" | "linkedin" | "microsoft-windows" | "netflix" | "pinterest" | "reddit" | "slack" | "snapchat" | "spotify" | "steam" | "twitter" | "whatsapp" | "youtube" | "phone" | "phone-cancel" | "phone-incoming" | "phone-minus" | "phone-outgoing" | "phone-plus" | "database" | "calendar" | "calendar-check" | "calendar-minus" | "calendar-plus" | "clock" | "laptop" | "tablet" | "television" | "pen" | "file" | "file-check" | "file-download" | "file-minus" | "file-plus" | "file-upload" | "folder" | "folder-check" | "folder-minus" | "folder-open" | "folder-plus" | "check" | "check-circle" | "minus-circle" | "heart" | "shield-cross" | "compass" | "earth" | "map-marker" | "bolt" | "wrench" | "gift" | "camera" | "home" | "home-heart" | "home-plus" | "pause" | "play" | "printer" | "robot" | "calculator" | "minus" | "plus" | "microphone" | "rocket" | "star" | "star-circle" | "basket" | "basket-fill" | "trophy" | "video-check" | "video-minus" | "video-plus" | "broadcast" | "divide" | "exclamation-circle" | "exclamation-triangle" | "gif" | "information-circle" | "light-bulb" | "moon" | "qr-code" | "question-mark-circle" | "shopping-bag" | "shopping-cart" | "sun" | "trash" | "user" | "user-circle" | "user-minus" | "user-plus" | "users" | "alarm-clock" | "battery-full" | "book-text" | "copy" | "dribbble" | "external-link" | "figma" | "file-question-mark" | "focus" | "globe" | "hash" | "layout-grid" | "maximize" | "message-square" | "minimize" | "mouse-pointer" | "phone-call" | "scan" | "settings" | "shield-question-mark" | "thumbs-down" | "thumbs-up" | "trash-2" | "user-check" | "zap" | "zoom-in" | "zoom-out" | "align-center" | "align-left" | "align-right" | "check-square" | "divide-circle" | "divide-square" | "edit" | "minus-square" | "plus-square" | "x-square" | "arrow-down-left-circle" | "arrow-down-right-circle" | "arrow-down-square" | "arrow-left-square" | "arrow-right-square" | "arrow-up-left-circle" | "arrow-up-right-circle" | "arrow-up-square" | "caret-down" | "caret-left" | "caret-right" | "caret-up" | "checklist" | "color-picker" | "color-swatch" | "dashboard" | "dots" | "filter-2" | "first-aid-kit" | "home-2" | "home-check" | "hospital-circle" | "location" | "location-pin" | "lock-square" | "message-dots" | "mouse-2" | "playlist" | "playlist-add" | "server-2" | "stack" | "user-square" | "amazon" | "archive-fill" | "arrow-down-circle-fill" | "arrow-down-left-circle-fill" | "arrow-down-left-square" | "arrow-down-left-square-fill" | "arrow-down-right-circle-fill" | "arrow-down-right-square" | "arrow-down-right-square-fill" | "arrow-down-square-fill" | "arrow-left-circle-fill" | "arrow-left-square-fill" | "arrow-right-circle-fill" | "arrow-right-square-fill" | "arrow-up-circle-fill" | "arrow-up-left-circle-fill" | "arrow-up-left-square" | "arrow-up-left-square-fill" | "arrow-up-right-circle-fill" | "arrow-up-right-square" | "arrow-up-right-square-fill" | "arrow-up-square-fill" | "battery-half" | "behance" | "book-fill" | "bookmark-check-fill" | "bookmark-fill" | "bookmark-plus-fill" | "box-fill" | "briefcase-fill" | "calculator-fill" | "calendar-check-fill" | "calendar-fill" | "calendar-minus-fill" | "calendar-plus-fill" | "camera-fill" | "caret-down-fill" | "caret-left-fill" | "caret-right-fill" | "caret-up-fill" | "check-circle-fill" | "check-square-fill" | "clipboard-fill" | "clock-fill" | "compass-fill" | "credit-card-fill" | "cup-hot" | "cup-hot-fill" | "database-fill" | "discord" | "exclamation-circle-fill" | "exclamation-square" | "exclamation-square-fill" | "exclamation-triangle-fill" | "eye-fill" | "fast-forward-fill" | "file-check-fill" | "file-fill" | "file-minus-fill" | "file-plus-fill" | "filter-square" | "filter-square-fill" | "flag-fill" | "folder-fill" | "gift-fill" | "heart-fill" | "image-fill" | "inbox-fill" | "key-fill" | "keyboard-fill" | "laptop-fill" | "lock-fill" | "medium" | "messenger" | "moon-fill" | "mouse-fill" | "pause-fill" | "paypal" | "pen-fill" | "phone-fill" | "pin-fill" | "play-circle-fill" | "play-fill" | "plus-circle-fill" | "plus-square-fill" | "printer-fill" | "rocket-fill" | "share-fill" | "shop" | "star-fill" | "stop-circle-fill" | "stop-fill" | "stripe" | "sun-fill" | "tablet-fill" | "tag-fill" | "telegram" | "threads" | "tiktok" | "trash-fill" | "trophy-fill" | "volume-down" | "volume-down-fill" | "volume-mute-fill" | "volume-up" | "volume-up-fill" | "sim-card" | "battery-empty" | "home-2-fill" | "home-3-fill" | "home-4-fill" | "home-fill" | "home-heart-fill" | "archive-drawer-fill" | "calendar-2-fill" | "id-card-fill" | "stack-fill" | "message-fill" | "edit-fill" | "focus-fill" | "layout-grid-fill" | "layout-left-fill" | "layout-right-fill" | "wrench-fill" | "battery-low-fill" | "dashboard-2-fill" | "dashboard-3-fill" | "database-2-fill" | "qr-code-fill" | "server-fill" | "shut-down-fill" | "sim-card-fill" | "file-2-fill" | "file-download-fill" | "file-upload-fill" | "folder-2-fill" | "folder-check-fill" | "folder-open-fill" | "shopping-bag-fill" | "shopping-cart-fill" | "first-aid-kit-fill" | "earth-fill" | "globe-fill" | "broadcast-fill" | "camera-2-fill" | "music-fill" | "video-download-fill" | "video-fill" | "video-upload-fill" | "dashboard-fill" | "eye-off-fill" | "filter-2-fill" | "filter-fill" | "search-fill" | "settings-fill" | "shield-check-fill" | "shield-cross-fill" | "zoom-in-fill" | "zoom-out-fill" | "robot-fill" | "user-fill" | "user-minus-fill" | "unlocked" | "video-player" | "information-square" | "delivery-truck" | "battery-dead" | "female" | "male" | "lens" | "notion" | "visa" | "adobe" | "preview" | "water-drop" | "dashboard-2" | "microphone-mute" | "dollar" | "light-bulb-off" | "layout-left" | "layout-right" | "calendar-2" | "calendar-3" | "folder-2" | "next" | "screencast" | "chart" | "chevron-down-square" | "chevron-left-square" | "chevron-right-square" | "chevron-up-square" | "heart-square" | "memory-card" | "facebook-circle" | "facebook-square" | "direction-right" | "phone-cross" | "direction-up-right" | "illustrator" | "photoshop" | "gem-stone" | "mobile-phone" | "hour-glass" | "edit-pen" | "color-picker-fill" | "copy-fill" | "email-fill" | "message-square-fill" | "minus-circle-fill" | "minus-square-fill" | "phone-call-fill" | "question-mark-circle-fill" | "trash-2-fill" | "bolt-fill" | "chevron-down-circle-fill" | "chevron-down-square-fill" | "chevron-left-circle-fill" | "chevron-left-square-fill" | "chevron-right-circle-fill" | "chevron-right-square-fill" | "chevron-up-circle-fill" | "chevron-up-square-fill" | "divide-circle-fill" | "divide-square-fill" | "location-fill" | "multiply" | "multiply-circle" | "multiply-circle-fill" | "multiply-square" | "multiply-square-fill" | "star-circle-fill" | "instagram-square" | "contact-book" | "inbox-check" | "previous" | "scale-up" | "sound-waves" | "thumbs-down-fill" | "thumbs-up-fill" | "electricity" | "phone-missed-call" | "chart-down" | "chart-up" | "gameboy" | "headphone-mute" | "image-download" | "image-upload" | "inbox-download" | "inbox-upload" | "play-square" | "search-square" | "shut-down" | "star-square" | "information-circle-fill" | "information-square-fill" | "question-mark-square" | "question-mark-square-fill" | "microphone-fill" | "playlist-fill" | "refresh-reverse" | "tube" | "chart-fill" | "package-box" | "battery-full-fill" | "cancel-fill" | "email-opened" | "database-2" | "trash-3" | "aeroplane" | "aeroplane-fill" | "after-effects" | "alarm-clock-fill" | "archive-drawer" | "arrowlist" | "arrows-all-direction" | "arrows-all-direction-2" | "bag-a" | "bag-a-fill" | "bag-b" | "bag-b-fill" | "bar-code-scan" | "battery-charging-fill" | "battery-dead-fill" | "battery-empty-fill" | "battery-half-fill" | "bell-notification-square" | "bell-notification-square-fill" | "book-text-fill" | "bookmark-cross" | "bookmark-cross-fill" | "bookmark-download" | "bookmark-download-fill" | "bookmark-minus-fill" | "bookmark-question-mark" | "bookmark-question-mark-fill" | "bookmark-upload" | "bookmark-upload-fill" | "box-3d" | "box-3d-check" | "box-3d-check-fill" | "box-3d-cross" | "box-3d-cross-fill" | "box-3d-download" | "box-3d-download-fill" | "box-3d-fill" | "box-3d-minus" | "box-3d-minus-fill" | "box-3d-notification" | "box-3d-notification-fill" | "box-3d-plus" | "box-3d-plus-fill" | "box-3d-question-mark" | "box-3d-question-mark-fill" | "box-3d-scan" | "box-3d-scan-fill" | "box-3d-upload" | "box-3d-upload-fill" | "box-check" | "box-check-fill" | "box-cross" | "box-cross-fill" | "box-minus" | "box-minus-fill" | "box-plus" | "box-plus-fill" | "box-question-mark" | "box-question-mark-fill" | "box-upload" | "box-upload-fill" | "building-a" | "building-a-fill" | "building-b" | "building-b-fill" | "building-tree" | "building-tree-fill" | "calendar-3-fill" | "calendar-cross" | "calendar-cross-fill" | "calendar-download" | "calendar-download-fill" | "calendar-question-mark" | "calendar-question-mark-fill" | "calendar-upload" | "calendar-upload-fill" | "camera-2" | "chart-15" | "chart-15-fill" | "chart-25" | "chart-25-fill" | "chart-50" | "chart-50-fill" | "chart-b" | "chart-b-fill" | "chart-down-b" | "chart-down-b-fill" | "chart-down-fill" | "chart-up-b" | "chart-up-b-fill" | "chart-up-fill" | "chart-vertical" | "chart-vertical-fill" | "checklist-note" | "checklist-note-fill" | "chip-fill" | "clipboard-2" | "clipboard-2-fill" | "clipboard-3" | "coin-a" | "coin-a-fill" | "coin-b" | "coin-b-fill" | "color-swatch-fill" | "compact-disk" | "compact-disk-fill" | "contact-book-fill" | "crown-a" | "crown-a-fill" | "crown-b" | "crown-b-fill" | "dash-menu" | "dashboard-3" | "dashboard-4" | "dashboard-4-fill" | "dashboard-bar" | "dashboard-bar-fill" | "dashboard-bar-notification" | "dashboard-chart" | "dashboard-chart-arrow" | "dashboard-chart-arrow-fill" | "dashboard-chart-fill" | "dashboard-chart-notification" | "dashboard-chart-star" | "dashboard-check" | "dashboard-check-fill" | "dashboard-circle-bar" | "dashboard-circle-bar-fill" | "dashboard-circle-chart" | "dashboard-circle-chart-fill" | "dashboard-cross" | "dashboard-cross-fill" | "dashboard-minus" | "dashboard-minus-fill" | "dashboard-plus" | "dashboard-plus-fill" | "delivery-truck-fill" | "dialer-keypad" | "dialer-keypad-fill" | "direction-right-2" | "direction-right-2-fill" | "direction-right-fill" | "direction-up" | "direction-up-2" | "direction-up-2-fill" | "direction-up-fill" | "direction-up-right-2" | "direction-up-right-2-fill" | "direction-up-right-fill" | "dollar-fill" | "dots-circle-fill" | "dots-horizontal-circle-fill" | "dots-horizontal-square" | "dots-horizontal-square-fill" | "dots-menu" | "dots-square-fill" | "double-arrow-circle" | "double-arrow-circle-fill" | "double-arrow-down" | "double-arrow-left" | "double-arrow-right" | "double-arrow-up" | "double-circle" | "double-circle-fill" | "double-diamond" | "double-diamond-fill" | "double-square" | "double-square-fill" | "edit-pen-fill" | "electricity-danger" | "electricity-danger-fill" | "electricity-fill" | "email-notification" | "email-opened-fill" | "exchange-a" | "exchange-b" | "exclamation-hexagon" | "exclamation-hexagon-fill" | "fast-forward-back" | "fast-forward-back-fill" | "file-2" | "file-3" | "file-cross" | "file-cross-fill" | "file-question-mark-fill" | "file-records" | "file-records-fill" | "fingerprint-minimal" | "fire-a" | "fire-a-fill" | "fire-b" | "fire-b-fill" | "folder-cross" | "folder-cross-fill" | "folder-minus-fill" | "folder-plus-fill" | "gameboy-fill" | "gem-a" | "gem-a-fill" | "gem-b" | "gem-b-fill" | "gem-c" | "gem-c-fill" | "gem-stone-fill" | "gif-fill" | "goals" | "goals-fill" | "handicapped" | "handicapped-fill" | "headphone-mute-fill" | "health-circle" | "health-circle-fill" | "health-square" | "health-square-fill" | "heaphone" | "heaphone-fill" | "heart-health" | "heart-health-fill" | "heart-square-fill" | "home-3" | "home-4" | "home-check-fill" | "home-cross" | "home-cross-fill" | "home-plus-fill" | "home-security-lock" | "home-security-lock-fill" | "hospital-circle-fill" | "hospital-plus" | "hospital-plus-fill" | "hospital-shield" | "hospital-shield-fill" | "hospital-square" | "hospital-square-fill" | "hour-glass-fill" | "image-cross" | "image-question-mark" | "inbox-check-fill" | "inbox-cross" | "inbox-cross-fill" | "inbox-download-fill" | "inbox-minus" | "inbox-minus-fill" | "inbox-notification" | "inbox-notification-fill" | "inbox-plus" | "inbox-plus-fill" | "inbox-question-mark" | "inbox-question-mark-fill" | "inbox-star" | "inbox-star-fill" | "inbox-upload-fill" | "instagram-circle" | "l-arrow-down-left" | "l-arrow-down-right" | "l-arrow-left-down" | "l-arrow-left-up" | "l-arrow-right-down" | "l-arrow-right-up" | "l-arrow-up-left" | "l-arrow-up-right" | "layout-center" | "layout-center-fill" | "layout-down" | "layout-down-fill" | "layout-up" | "layout-up-fill" | "layout-up-left" | "layout-up-left-fill" | "layout-up-right" | "layout-up-right-fill" | "lens-fill" | "light-bulb-electricity" | "light-bulb-electricity-fill" | "light-bulb-fill" | "light-bulb-off-fill" | "lock-square-fill" | "magnet-down" | "magnet-down-fill" | "magnet-left" | "magnet-left-fill" | "magnet-right" | "magnet-right-fill" | "magnet-up" | "magnet-up-fill" | "map-marker-fill" | "media-reel-h" | "media-reel-h-fill" | "media-reel-v" | "media-reel-v-fill" | "megaphone-a" | "megaphone-a-fill" | "megaphone-b" | "megaphone-b-fill" | "memory-card-fill" | "message-check-fill" | "message-check-round" | "message-check-round-fill" | "message-conversation" | "message-conversation-fill" | "message-dots-check" | "message-dots-cross" | "message-dots-download" | "message-dots-fill" | "message-dots-minus" | "message-dots-plus" | "message-dots-question-mark" | "message-dots-round" | "message-dots-round-check" | "message-dots-round-cross" | "message-dots-round-download" | "message-dots-round-fill" | "message-dots-round-minus" | "message-dots-round-plus" | "message-dots-round-question-mark" | "message-dots-round-upload" | "message-dots-upload" | "message-info-round" | "message-info-round-fill" | "message-information" | "message-information-fill" | "message-minus-fill" | "message-minus-round" | "message-minus-round-fill" | "message-plus-fill" | "message-plus-round" | "message-plus-round-fill" | "message-question-mark" | "message-question-mark-fill" | "message-question-mark-round" | "message-question-mark-round-fill" | "message-round" | "message-round-fill" | "message-round-square" | "message-round-square-fill" | "microphone-mute-fill" | "mobile-phone-fill" | "money-exchange" | "mouse-2-fill" | "mouse-pointer-fill" | "music-alternate" | "music-alternate-fill" | "music-circle-fill" | "music-square" | "music-square-fill" | "next-fill" | "note-fill" | "note-text-fill" | "note-with-text" | "note-with-text-fill" | "notification-bell" | "notification-bell-check" | "notification-bell-check-fill" | "notification-bell-cross" | "notification-bell-cross-fill" | "notification-bell-download" | "notification-bell-download-fill" | "notification-bell-fill" | "notification-bell-minus" | "notification-bell-minus-fill" | "notification-bell-muted" | "notification-bell-muted-fill" | "notification-bell-pending" | "notification-bell-pending-fill" | "notification-bell-plus" | "notification-bell-plus-fill" | "notification-bell-question-mark" | "notification-bell-question-mark-fill" | "notification-bell-snooze" | "notification-bell-snooze-2" | "notification-bell-snooze-2-fill" | "notification-bell-upload" | "notification-bell-upload-fill" | "package-box-fill" | "pause-square" | "pause-square-fill" | "phone-cancel-fill" | "phone-cross-fill" | "phone-incoming-fill" | "phone-minus-fill" | "phone-missed-call-fill" | "phone-outgoing-fill" | "phone-plus-fill" | "phone-ringing-loud" | "phone-ringing-loud-fill" | "play-square-fill" | "playlist-alternate" | "playlist-alternate-fill" | "playstore" | "premier-pro" | "preview-circle" | "preview-circle-fill" | "preview-fill" | "previous-fill" | "reload-reverse" | "ribbon-fill" | "robot-appreciate" | "robot-appreciate-fill" | "robot-dead-fill" | "robot-happy-fill" | "robot-sad" | "robot-sad-fill" | "robot-screen" | "robot-screen-fill" | "robot-uwu" | "robot-uwu-fill" | "robot-wink" | "robot-wink-fill" | "round-sticker" | "round-sticker-fill" | "save-floppy" | "save-floppy-fill" | "scale-down" | "scan-user" | "scan-user-fill" | "screencast-fill" | "search-square-fill" | "security-shield" | "security-shield-fill" | "select-box" | "server-2-fill" | "shield-plus-fill" | "shield-question-mark-fill" | "shiled-minus" | "shiled-minus-fill" | "shop-fill" | "star-moving" | "star-moving-fill" | "star-square-fill" | "stars-a" | "stars-a-fill" | "stars-b" | "stars-b-fill" | "stars-c" | "stars-c-fill" | "stop-square" | "stop-square-fill" | "swim-ring-fill" | "tag-2" | "tag-2-fill" | "tag-check-fill" | "tag-cross" | "tag-cross-fill" | "tag-minus-fill" | "tag-plus-fill" | "tag-question-mark" | "tag-question-mark-fill" | "television-check" | "television-check-fill" | "television-cross" | "television-cross-fill" | "television-download" | "television-download-fill" | "television-fill" | "television-minus" | "television-minus-fill" | "television-plus" | "television-plus-fill" | "television-question-mark" | "television-question-mark-fill" | "television-upload" | "television-upload-fill" | "threads-square" | "three-d-box-square" | "three-d-box-square-fill" | "tiktok-circle" | "trash-3-fill" | "trash-square" | "trash-square-fill" | "trophy-circle" | "trophy-circle-fill" | "trophy-down" | "trophy-down-fill" | "trophy-star" | "trophy-star-fill" | "trophy-up" | "trophy-up-fill" | "tube-fill" | "twtich" | "unlocked-fill" | "user-check-fill" | "user-circle-fill" | "user-cross" | "user-cross-fill" | "user-plus-fill" | "user-question-mark" | "user-question-mark-fill" | "user-square-fill" | "users-fill" | "verified-check" | "verified-check-fill" | "video-check-fill" | "video-cross" | "video-cross-fill" | "video-download" | "video-minus-fill" | "video-player-fill" | "video-plus-fill" | "video-question-mark" | "video-question-mark-fill" | "video-upload" | "visa-square" | "voicemail-fill" | "volume-zero" | "volume-zero-fill" | "water-drop-fill" | "water-glass" | "water-glass-fill" | "we-chat" | "whatsapp-filled" | "zap-circle" | "zap-circle-fill" | "zap-fill" | "zap-square" | "zap-square-fill">): import("react").JSX.Element;
1054
1054
  displayName: string;
1055
1055
  };
1056
1056
  export {};
@@ -768,7 +768,7 @@ declare const majesticonsIconNames: {
768
768
  };
769
769
  export type MajesticonsIconName = keyof typeof majesticonsIconNames;
770
770
  export declare const Majesticons: {
771
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"filter" | "scroll" | "image" | "link" | "search" | "text" | "menu" | "timer" | "key" | "bold" | "article" | "code" | "data" | "table" | "video" | "align-horizontal-center" | "align-vertical-center" | "attachment" | "bluetooth" | "book" | "book-minus" | "book-open" | "book-plus" | "bookmark" | "bookmark-minus" | "bookmark-plus" | "briefcase" | "chat" | "clipboard" | "clipboard-check" | "clipboard-minus" | "clipboard-plus" | "comment" | "comment-text" | "crown" | "eject" | "eraser" | "eye" | "eye-off" | "ferris-wheel" | "flag" | "image-multiple" | "image-off" | "image-plus" | "incognito" | "keyboard" | "link-circle" | "list-box" | "login" | "logout" | "mail" | "mouse" | "note-text" | "pause-circle" | "pin" | "pinwheel" | "play-circle" | "presentation" | "presentation-play" | "redo" | "send" | "server" | "shield-off" | "shield-plus" | "sitemap" | "stop-circle" | "table-heart" | "tag" | "tag-off" | "ticket" | "undo" | "usb" | "alert-circle" | "fish" | "arrow-down" | "arrow-down-circle" | "arrow-left" | "arrow-left-circle" | "arrow-right" | "arrow-right-circle" | "arrow-up" | "arrow-up-circle" | "chevron-down" | "chevron-down-circle" | "chevron-left" | "chevron-left-circle" | "chevron-right" | "chevron-right-circle" | "chevron-up" | "chevron-up-circle" | "reload" | "share" | "share-circle" | "headset" | "music" | "music-note" | "speaker" | "battery" | "car" | "lock" | "receipt-text" | "battery-low" | "box" | "phone" | "phone-dial" | "phone-hangup" | "phone-incoming" | "phone-outgoing" | "phone-ring" | "cloud" | "calendar" | "calendar-plus" | "clock" | "clock-plus" | "laptop" | "monitor" | "scanner" | "watch" | "file" | "file-minus" | "file-plus" | "folder" | "folder-check" | "folder-minus" | "folder-plus" | "cake" | "cheese" | "cookie" | "cup" | "close" | "flask" | "heart" | "puzzle" | "shield" | "skull" | "map-marker" | "map-marker-path" | "map-marker-plus" | "bell" | "camera" | "home" | "home-analytics" | "image-frame" | "lightning-bolt" | "printer" | "robot" | "lock-off" | "calculator" | "minus" | "percent" | "plus" | "plus-minus" | "pill" | "pulse" | "microphone" | "airplane" | "bus" | "camera-off" | "beach" | "church" | "library" | "telescope" | "table-plus" | "tooltip" | "tooltip-text" | "scooter" | "lifebuoy" | "video-minus" | "video-plus" | "umbrella" | "divide" | "document" | "italic" | "megaphone" | "moon" | "presentation-chart-line" | "qr-code" | "shopping-cart" | "underline" | "user" | "users" | "view-columns" | "award" | "battery-full" | "coins" | "cpu" | "flower-2" | "git-branch" | "git-compare" | "git-fork" | "git-merge" | "hand" | "hard-drive" | "maximize" | "minimize" | "save" | "scroll-text" | "ship" | "text-align-center" | "text-align-justify" | "text-wrap" | "ticket-check" | "tickets" | "align-left" | "align-right" | "git-commit" | "atom-2" | "browser" | "burger" | "comet" | "door-enter" | "door-exit" | "image-in-picture" | "info-circle" | "line-height" | "planet" | "playlist" | "ruler-2" | "settings-cog" | "ux-circle" | "align-bottom" | "align-top" | "battery-half" | "chat-text" | "distribute-horizontal" | "distribute-vertical" | "paragraph" | "question-circle" | "suitcase" | "users-line" | "hand-pointer" | "comments" | "sim-card" | "arrow-down-circle-line" | "arrow-down-line" | "arrow-left-circle-line" | "arrow-left-line" | "arrow-right-circle-line" | "arrow-right-line" | "arrow-up-circle-line" | "arrow-up-line" | "community-line" | "home-line" | "attachment-line" | "award-line" | "bookmark-line" | "briefcase-line" | "calculator-line" | "calendar-line" | "cloud-line" | "flag-line" | "mail-line" | "megaphone-line" | "presentation-line" | "printer-line" | "chat-2-line" | "eraser-line" | "ruler-2-line" | "table-line" | "bug-2-line" | "code-line" | "git-branch-line" | "git-commit-line" | "git-fork-line" | "git-merge-line" | "puzzle-line" | "battery-line" | "battery-low-line" | "bluetooth-line" | "cpu-line" | "hard-drive-line" | "keyboard-line" | "mouse-line" | "phone-line" | "qr-code-line" | "save-line" | "server-line" | "sim-card-line" | "usb-line" | "article-line" | "book-line" | "book-open-line" | "clipboard-line" | "file-line" | "folder-check-line" | "folder-line" | "code-block" | "font-size" | "coins-line" | "percent-line" | "shopping-cart-line" | "ticket-line" | "cake-line" | "cup-line" | "flask-line" | "heart-line" | "pulse-line" | "bus-line" | "car-line" | "compass-2-line" | "lifebuoy-line" | "planet-line" | "ship-line" | "suitcase-2-line" | "suitcase-3-line" | "suitcase-line" | "camera-line" | "camera-off-line" | "eject-line" | "image-circle-line" | "image-line" | "music-line" | "pause-circle-line" | "play-circle-line" | "speaker-line" | "stop-circle-line" | "video-line" | "bell-line" | "key-line" | "t-shirt-line" | "umbrella-line" | "close-line" | "delete-bin-line" | "divide-line" | "eye-line" | "eye-off-line" | "filter-line" | "lock-line" | "menu-line" | "search-line" | "share-circle-line" | "share-line" | "shield-line" | "timer-line" | "robot-line" | "skull-line" | "user-line" | "moon-line" | "text-align-left" | "text-align-right" | "money" | "analytics" | "open" | "reload-circle" | "forward-circle" | "chromecast" | "bitcoin-circle" | "dollar-circle" | "home-simple" | "community" | "t-shirt" | "creditcard" | "add-column" | "add-row" | "chat-2" | "analytics-line" | "info-circle-line" | "view-columns-line" | "clock-line" | "document-line" | "fish-line" | "library-line" | "login-line" | "logout-line" | "minus-line" | "pin-line" | "plus-line" | "redo-line" | "scroll-line" | "tag-line" | "undo-line" | "microphone-line" | "music-note-line" | "crown-line" | "link-line" | "align-bottom-line" | "align-left-line" | "align-right-line" | "align-top-line" | "bold-line" | "checkbox-list-line" | "font-size-line" | "italic-line" | "text-line" | "underline-line" | "airplane-line" | "map-marker-line" | "covid" | "test-tube-filled" | "shooting-star" | "data-line" | "multiply" | "textbox" | "search-minus" | "search-plus" | "remove-format" | "git-pull" | "globe-earth" | "strike-through" | "euro-circle" | "pound-circle" | "yen-circle" | "chats" | "more-menu" | "backward-circle" | "user-box" | "cent-circle" | "scan-user" | "add-column-line" | "add-row-line" | "airplane-flight-2" | "airplane-flight-2-line" | "alert-circle-line" | "align-horizontal-center-line" | "align-vertical-center-line" | "analytics-delete" | "analytics-delete-line" | "analytics-plus" | "analytics-plus-line" | "analytics-restricted" | "analytics-restricted-line" | "arrows-collapse-full" | "arrows-collapse-full-line" | "arrows-expand-full" | "arrows-expand-full-line" | "article-search" | "article-search-line" | "atom-2-line" | "back-circle" | "back-circle-line" | "backward-circle-line" | "backward-start-circle" | "backward-start-circle-line" | "band-aids" | "band-aids-line" | "barcode-2" | "barcode-2-line" | "basket-2" | "basket-2-line" | "bath-shower" | "bath-shower-line" | "battery-full-line" | "battery-half-line" | "beach-line" | "bitcoin-circle-line" | "book-minus-line" | "book-plus-line" | "bookmark-minus-line" | "bookmark-plus-line" | "box-line" | "browser-cookie" | "browser-cookie-line" | "browser-line" | "bug-2" | "burger-line" | "calendar-plus-line" | "cent-circle-line" | "chat-2-text" | "chat-2-text-line" | "chat-line" | "chat-signal" | "chat-signal-line" | "chat-status" | "chat-status-line" | "chat-text-line" | "chats-2" | "chats-2-line" | "chats-line" | "checkbox-list" | "checkbox-list-detail" | "checkbox-list-detail-line" | "cheese-line" | "chevron-down-circle-line" | "chevron-down-line" | "chevron-left-circle-line" | "chevron-left-line" | "chevron-right-circle-line" | "chevron-right-line" | "chevron-up-circle-line" | "chevron-up-line" | "chromecast-line" | "church-line" | "clipboard-check-line" | "clipboard-minus-line" | "clipboard-plus-line" | "clock-plus-line" | "code-block-line" | "comet-line" | "comment-2" | "comment-2-line" | "comment-2-text" | "comment-2-text-line" | "comment-line" | "comment-text-line" | "comments-2" | "comments-2-line" | "comments-line" | "compass-2" | "cookie-line" | "covid-exclamation" | "covid-exclamation-line" | "covid-line" | "covid-off" | "covid-off-line" | "creditcard-hand" | "creditcard-hand-line" | "creditcard-line" | "creditcard-plus" | "creditcard-plus-line" | "curly-braces" | "curly-braces-line" | "data-minus" | "data-minus-line" | "data-plus" | "data-plus-line" | "delete-bin" | "distribute-horizontal-line" | "distribute-vertical-line" | "document-award" | "document-award-line" | "dollar-circle-line" | "door-enter-line" | "door-exit-line" | "earth-sphere" | "earth-sphere-line" | "edit-pen-2" | "edit-pen-2-line" | "edit-pen-4" | "edit-pen-4-line" | "etherium-circle" | "etherium-circle-line" | "euro-circle-line" | "ferris-wheel-line" | "file-minus-line" | "file-plus-line" | "flower-2-line" | "folder-minus-line" | "folder-plus-line" | "forward-circle-line" | "forward-end-circle" | "forward-end-circle-line" | "git-compare-line" | "git-pull-line" | "glas-water" | "glas-water-line" | "globe-earth-2" | "globe-earth-2-line" | "globe-earth-line" | "globe-grid" | "globe-grid-line" | "hand-line" | "hand-pointer-2" | "hand-pointer-2-line" | "hand-pointer-event" | "hand-pointer-event-line" | "hand-pointer-line" | "headset-line" | "home-analytics-line" | "home-simple-line" | "image-circle" | "image-circle-off" | "image-circle-off-line" | "image-circle-plus" | "image-circle-plus-line" | "image-circle-story" | "image-circle-story-line" | "image-frame-line" | "image-in-picture-line" | "image-multiple-line" | "image-off-line" | "image-photography" | "image-photography-line" | "image-plus-line" | "incognito-line" | "iphone-old-apps" | "iphone-old-apps-line" | "iphone-x-apps" | "iphone-x-apps-line" | "laptop-line" | "leaf-3-angled" | "leaf-3-angled-line" | "lidquid-drop-waves-2" | "lidquid-drop-waves-2-line" | "lightbulb-shine" | "lightbulb-shine-line" | "lightning-bolt-line" | "line-height-line" | "link-circle-line" | "lira-circle" | "lira-circle-line" | "list-box-line" | "lock-off-line" | "login-half-circle" | "login-half-circle-line" | "logout-half-circle" | "logout-half-circle-line" | "map-marker-area" | "map-marker-area-line" | "map-marker-path-line" | "map-marker-plus-line" | "map-simple" | "map-simple-destination" | "map-simple-destination-line" | "map-simple-line" | "map-simple-marker" | "map-simple-marker-line" | "map-simple-off" | "map-simple-off-line" | "maximize-line" | "menu-expand-left" | "menu-expand-left-line" | "menu-expand-right" | "menu-expand-right-line" | "minimize-line" | "minus-five-circle" | "minus-five-circle-line" | "minus-ten-circle" | "minus-ten-circle-line" | "money-hand" | "money-hand-line" | "money-line" | "money-minus" | "money-minus-line" | "money-plus" | "money-plus-line" | "monitor-line" | "more-menu-line" | "more-menu-vertical" | "more-menu-vertical-line" | "multiply-line" | "next-circle" | "next-circle-line" | "note-text-line" | "note-text-minus" | "note-text-minus-line" | "note-text-plus" | "note-text-plus-line" | "noteblock" | "noteblock-line" | "noteblock-text" | "noteblock-text-line" | "open-line" | "paper-fold" | "paper-fold-line" | "paper-fold-text" | "paper-fold-text-line" | "paper-roll-2" | "paper-roll-2-line" | "paragraph-line" | "phone-dial-line" | "phone-hangup-line" | "phone-incoming-line" | "phone-outgoing-line" | "phone-retro" | "phone-retro-line" | "phone-ring-line" | "pill-line" | "pinwheel-line" | "planet-ring-2" | "planet-ring-2-line" | "planet-rocket" | "planet-rocket-line" | "playlist-line" | "plus-five-circle" | "plus-five-circle-line" | "plus-minus-2" | "plus-minus-2-line" | "plus-minus-line" | "plus-ten-circle" | "plus-ten-circle-line" | "pound-circle-line" | "presentation-chart" | "presentation-play-line" | "question-circle-line" | "radio-list" | "radio-list-line" | "receipt-text-line" | "reload-circle-line" | "reload-line" | "remove-column" | "remove-column-line" | "remove-format-line" | "remove-row" | "remove-row-line" | "repeat-circle" | "repeat-circle-line" | "restricted" | "restricted-line" | "rocket-3-start" | "rocket-3-start-line" | "rubel-circle" | "rubel-circle-line" | "rupee-circle" | "rupee-circle-line" | "scale-light" | "scale-light-line" | "scan-fingerprint" | "scan-fingerprint-line" | "scan-user-line" | "scanner-line" | "scooter-line" | "script-prescription" | "script-prescription-line" | "scroll-text-line" | "search-minus-line" | "search-plus-line" | "send-line" | "settings-cog-check" | "settings-cog-check-line" | "settings-cog-line" | "settings-cog-plus" | "settings-cog-plus-line" | "shield-off-line" | "shield-plus-line" | "shooting-star-line" | "sitemap-line" | "smartphone-apps" | "smartphone-apps-line" | "strike-through-line" | "suitcase-2" | "suitcase-3" | "table-heart-line" | "table-plus-line" | "tag-off-line" | "telescope-line" | "test-tube-filled-line" | "text-align-center-line" | "text-align-justify-line" | "text-align-left-line" | "text-align-right-line" | "text-wrap-line" | "textbox-line" | "textbox-minus" | "textbox-minus-line" | "textbox-plus" | "textbox-plus-line" | "ticket-check-line" | "ticket-text" | "ticket-text-line" | "tickets-line" | "tooltip-line" | "tooltip-text-line" | "tooltips" | "tooltips-2" | "tooltips-2-line" | "tooltips-line" | "tv-old" | "tv-old-line" | "underline-2" | "underline-2-line" | "unlock-open" | "unlock-open-line" | "user-box-line" | "ux-circle-line" | "video-minus-line" | "video-plus-line" | "view-rows" | "view-rows-line" | "watch-line" | "yen-circle-line">): import("react").JSX.Element;
771
+ ({ 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<"filter" | "data" | "pulse" | "search" | "bold" | "link" | "scroll" | "image" | "text" | "menu" | "timer" | "key" | "article" | "code" | "table" | "video" | "align-horizontal-center" | "align-vertical-center" | "attachment" | "bluetooth" | "book" | "book-minus" | "book-open" | "book-plus" | "bookmark" | "bookmark-minus" | "bookmark-plus" | "briefcase" | "chat" | "clipboard" | "clipboard-check" | "clipboard-minus" | "clipboard-plus" | "comment" | "comment-text" | "crown" | "eject" | "eraser" | "eye" | "eye-off" | "ferris-wheel" | "flag" | "image-multiple" | "image-off" | "image-plus" | "incognito" | "keyboard" | "link-circle" | "list-box" | "login" | "logout" | "mail" | "mouse" | "note-text" | "pause-circle" | "pin" | "pinwheel" | "play-circle" | "presentation" | "presentation-play" | "redo" | "send" | "server" | "shield-off" | "shield-plus" | "sitemap" | "stop-circle" | "table-heart" | "tag" | "tag-off" | "ticket" | "undo" | "usb" | "alert-circle" | "fish" | "arrow-down" | "arrow-down-circle" | "arrow-left" | "arrow-left-circle" | "arrow-right" | "arrow-right-circle" | "arrow-up" | "arrow-up-circle" | "chevron-down" | "chevron-down-circle" | "chevron-left" | "chevron-left-circle" | "chevron-right" | "chevron-right-circle" | "chevron-up" | "chevron-up-circle" | "reload" | "share" | "share-circle" | "headset" | "music" | "music-note" | "speaker" | "battery" | "car" | "lock" | "receipt-text" | "battery-low" | "box" | "phone" | "phone-dial" | "phone-hangup" | "phone-incoming" | "phone-outgoing" | "phone-ring" | "cloud" | "calendar" | "calendar-plus" | "clock" | "clock-plus" | "laptop" | "monitor" | "scanner" | "watch" | "file" | "file-minus" | "file-plus" | "folder" | "folder-check" | "folder-minus" | "folder-plus" | "cake" | "cheese" | "cookie" | "cup" | "close" | "flask" | "heart" | "puzzle" | "shield" | "skull" | "map-marker" | "map-marker-path" | "map-marker-plus" | "bell" | "camera" | "home" | "home-analytics" | "image-frame" | "lightning-bolt" | "printer" | "robot" | "lock-off" | "calculator" | "minus" | "percent" | "plus" | "plus-minus" | "pill" | "microphone" | "airplane" | "bus" | "camera-off" | "beach" | "church" | "library" | "telescope" | "table-plus" | "tooltip" | "tooltip-text" | "scooter" | "lifebuoy" | "video-minus" | "video-plus" | "umbrella" | "divide" | "document" | "italic" | "megaphone" | "moon" | "presentation-chart-line" | "qr-code" | "shopping-cart" | "underline" | "user" | "users" | "view-columns" | "award" | "battery-full" | "coins" | "cpu" | "flower-2" | "git-branch" | "git-compare" | "git-fork" | "git-merge" | "hand" | "hard-drive" | "maximize" | "minimize" | "save" | "scroll-text" | "ship" | "text-align-center" | "text-align-justify" | "text-wrap" | "ticket-check" | "tickets" | "align-left" | "align-right" | "git-commit" | "atom-2" | "browser" | "burger" | "comet" | "door-enter" | "door-exit" | "image-in-picture" | "info-circle" | "line-height" | "planet" | "playlist" | "ruler-2" | "settings-cog" | "ux-circle" | "align-bottom" | "align-top" | "battery-half" | "chat-text" | "distribute-horizontal" | "distribute-vertical" | "paragraph" | "question-circle" | "suitcase" | "users-line" | "hand-pointer" | "comments" | "sim-card" | "arrow-down-circle-line" | "arrow-down-line" | "arrow-left-circle-line" | "arrow-left-line" | "arrow-right-circle-line" | "arrow-right-line" | "arrow-up-circle-line" | "arrow-up-line" | "community-line" | "home-line" | "attachment-line" | "award-line" | "bookmark-line" | "briefcase-line" | "calculator-line" | "calendar-line" | "cloud-line" | "flag-line" | "mail-line" | "megaphone-line" | "presentation-line" | "printer-line" | "chat-2-line" | "eraser-line" | "ruler-2-line" | "table-line" | "bug-2-line" | "code-line" | "git-branch-line" | "git-commit-line" | "git-fork-line" | "git-merge-line" | "puzzle-line" | "battery-line" | "battery-low-line" | "bluetooth-line" | "cpu-line" | "hard-drive-line" | "keyboard-line" | "mouse-line" | "phone-line" | "qr-code-line" | "save-line" | "server-line" | "sim-card-line" | "usb-line" | "article-line" | "book-line" | "book-open-line" | "clipboard-line" | "file-line" | "folder-check-line" | "folder-line" | "code-block" | "font-size" | "coins-line" | "percent-line" | "shopping-cart-line" | "ticket-line" | "cake-line" | "cup-line" | "flask-line" | "heart-line" | "pulse-line" | "bus-line" | "car-line" | "compass-2-line" | "lifebuoy-line" | "planet-line" | "ship-line" | "suitcase-2-line" | "suitcase-3-line" | "suitcase-line" | "camera-line" | "camera-off-line" | "eject-line" | "image-circle-line" | "image-line" | "music-line" | "pause-circle-line" | "play-circle-line" | "speaker-line" | "stop-circle-line" | "video-line" | "bell-line" | "key-line" | "t-shirt-line" | "umbrella-line" | "close-line" | "delete-bin-line" | "divide-line" | "eye-line" | "eye-off-line" | "filter-line" | "lock-line" | "menu-line" | "search-line" | "share-circle-line" | "share-line" | "shield-line" | "timer-line" | "robot-line" | "skull-line" | "user-line" | "moon-line" | "text-align-left" | "text-align-right" | "money" | "analytics" | "open" | "reload-circle" | "forward-circle" | "chromecast" | "bitcoin-circle" | "dollar-circle" | "home-simple" | "community" | "t-shirt" | "creditcard" | "add-column" | "add-row" | "chat-2" | "analytics-line" | "info-circle-line" | "view-columns-line" | "clock-line" | "document-line" | "fish-line" | "library-line" | "login-line" | "logout-line" | "minus-line" | "pin-line" | "plus-line" | "redo-line" | "scroll-line" | "tag-line" | "undo-line" | "microphone-line" | "music-note-line" | "crown-line" | "link-line" | "align-bottom-line" | "align-left-line" | "align-right-line" | "align-top-line" | "bold-line" | "checkbox-list-line" | "font-size-line" | "italic-line" | "text-line" | "underline-line" | "airplane-line" | "map-marker-line" | "covid" | "test-tube-filled" | "shooting-star" | "data-line" | "multiply" | "textbox" | "search-minus" | "search-plus" | "remove-format" | "git-pull" | "globe-earth" | "strike-through" | "euro-circle" | "pound-circle" | "yen-circle" | "chats" | "more-menu" | "backward-circle" | "user-box" | "cent-circle" | "scan-user" | "add-column-line" | "add-row-line" | "airplane-flight-2" | "airplane-flight-2-line" | "alert-circle-line" | "align-horizontal-center-line" | "align-vertical-center-line" | "analytics-delete" | "analytics-delete-line" | "analytics-plus" | "analytics-plus-line" | "analytics-restricted" | "analytics-restricted-line" | "arrows-collapse-full" | "arrows-collapse-full-line" | "arrows-expand-full" | "arrows-expand-full-line" | "article-search" | "article-search-line" | "atom-2-line" | "back-circle" | "back-circle-line" | "backward-circle-line" | "backward-start-circle" | "backward-start-circle-line" | "band-aids" | "band-aids-line" | "barcode-2" | "barcode-2-line" | "basket-2" | "basket-2-line" | "bath-shower" | "bath-shower-line" | "battery-full-line" | "battery-half-line" | "beach-line" | "bitcoin-circle-line" | "book-minus-line" | "book-plus-line" | "bookmark-minus-line" | "bookmark-plus-line" | "box-line" | "browser-cookie" | "browser-cookie-line" | "browser-line" | "bug-2" | "burger-line" | "calendar-plus-line" | "cent-circle-line" | "chat-2-text" | "chat-2-text-line" | "chat-line" | "chat-signal" | "chat-signal-line" | "chat-status" | "chat-status-line" | "chat-text-line" | "chats-2" | "chats-2-line" | "chats-line" | "checkbox-list" | "checkbox-list-detail" | "checkbox-list-detail-line" | "cheese-line" | "chevron-down-circle-line" | "chevron-down-line" | "chevron-left-circle-line" | "chevron-left-line" | "chevron-right-circle-line" | "chevron-right-line" | "chevron-up-circle-line" | "chevron-up-line" | "chromecast-line" | "church-line" | "clipboard-check-line" | "clipboard-minus-line" | "clipboard-plus-line" | "clock-plus-line" | "code-block-line" | "comet-line" | "comment-2" | "comment-2-line" | "comment-2-text" | "comment-2-text-line" | "comment-line" | "comment-text-line" | "comments-2" | "comments-2-line" | "comments-line" | "compass-2" | "cookie-line" | "covid-exclamation" | "covid-exclamation-line" | "covid-line" | "covid-off" | "covid-off-line" | "creditcard-hand" | "creditcard-hand-line" | "creditcard-line" | "creditcard-plus" | "creditcard-plus-line" | "curly-braces" | "curly-braces-line" | "data-minus" | "data-minus-line" | "data-plus" | "data-plus-line" | "delete-bin" | "distribute-horizontal-line" | "distribute-vertical-line" | "document-award" | "document-award-line" | "dollar-circle-line" | "door-enter-line" | "door-exit-line" | "earth-sphere" | "earth-sphere-line" | "edit-pen-2" | "edit-pen-2-line" | "edit-pen-4" | "edit-pen-4-line" | "etherium-circle" | "etherium-circle-line" | "euro-circle-line" | "ferris-wheel-line" | "file-minus-line" | "file-plus-line" | "flower-2-line" | "folder-minus-line" | "folder-plus-line" | "forward-circle-line" | "forward-end-circle" | "forward-end-circle-line" | "git-compare-line" | "git-pull-line" | "glas-water" | "glas-water-line" | "globe-earth-2" | "globe-earth-2-line" | "globe-earth-line" | "globe-grid" | "globe-grid-line" | "hand-line" | "hand-pointer-2" | "hand-pointer-2-line" | "hand-pointer-event" | "hand-pointer-event-line" | "hand-pointer-line" | "headset-line" | "home-analytics-line" | "home-simple-line" | "image-circle" | "image-circle-off" | "image-circle-off-line" | "image-circle-plus" | "image-circle-plus-line" | "image-circle-story" | "image-circle-story-line" | "image-frame-line" | "image-in-picture-line" | "image-multiple-line" | "image-off-line" | "image-photography" | "image-photography-line" | "image-plus-line" | "incognito-line" | "iphone-old-apps" | "iphone-old-apps-line" | "iphone-x-apps" | "iphone-x-apps-line" | "laptop-line" | "leaf-3-angled" | "leaf-3-angled-line" | "lidquid-drop-waves-2" | "lidquid-drop-waves-2-line" | "lightbulb-shine" | "lightbulb-shine-line" | "lightning-bolt-line" | "line-height-line" | "link-circle-line" | "lira-circle" | "lira-circle-line" | "list-box-line" | "lock-off-line" | "login-half-circle" | "login-half-circle-line" | "logout-half-circle" | "logout-half-circle-line" | "map-marker-area" | "map-marker-area-line" | "map-marker-path-line" | "map-marker-plus-line" | "map-simple" | "map-simple-destination" | "map-simple-destination-line" | "map-simple-line" | "map-simple-marker" | "map-simple-marker-line" | "map-simple-off" | "map-simple-off-line" | "maximize-line" | "menu-expand-left" | "menu-expand-left-line" | "menu-expand-right" | "menu-expand-right-line" | "minimize-line" | "minus-five-circle" | "minus-five-circle-line" | "minus-ten-circle" | "minus-ten-circle-line" | "money-hand" | "money-hand-line" | "money-line" | "money-minus" | "money-minus-line" | "money-plus" | "money-plus-line" | "monitor-line" | "more-menu-line" | "more-menu-vertical" | "more-menu-vertical-line" | "multiply-line" | "next-circle" | "next-circle-line" | "note-text-line" | "note-text-minus" | "note-text-minus-line" | "note-text-plus" | "note-text-plus-line" | "noteblock" | "noteblock-line" | "noteblock-text" | "noteblock-text-line" | "open-line" | "paper-fold" | "paper-fold-line" | "paper-fold-text" | "paper-fold-text-line" | "paper-roll-2" | "paper-roll-2-line" | "paragraph-line" | "phone-dial-line" | "phone-hangup-line" | "phone-incoming-line" | "phone-outgoing-line" | "phone-retro" | "phone-retro-line" | "phone-ring-line" | "pill-line" | "pinwheel-line" | "planet-ring-2" | "planet-ring-2-line" | "planet-rocket" | "planet-rocket-line" | "playlist-line" | "plus-five-circle" | "plus-five-circle-line" | "plus-minus-2" | "plus-minus-2-line" | "plus-minus-line" | "plus-ten-circle" | "plus-ten-circle-line" | "pound-circle-line" | "presentation-chart" | "presentation-play-line" | "question-circle-line" | "radio-list" | "radio-list-line" | "receipt-text-line" | "reload-circle-line" | "reload-line" | "remove-column" | "remove-column-line" | "remove-format-line" | "remove-row" | "remove-row-line" | "repeat-circle" | "repeat-circle-line" | "restricted" | "restricted-line" | "rocket-3-start" | "rocket-3-start-line" | "rubel-circle" | "rubel-circle-line" | "rupee-circle" | "rupee-circle-line" | "scale-light" | "scale-light-line" | "scan-fingerprint" | "scan-fingerprint-line" | "scan-user-line" | "scanner-line" | "scooter-line" | "script-prescription" | "script-prescription-line" | "scroll-text-line" | "search-minus-line" | "search-plus-line" | "send-line" | "settings-cog-check" | "settings-cog-check-line" | "settings-cog-line" | "settings-cog-plus" | "settings-cog-plus-line" | "shield-off-line" | "shield-plus-line" | "shooting-star-line" | "sitemap-line" | "smartphone-apps" | "smartphone-apps-line" | "strike-through-line" | "suitcase-2" | "suitcase-3" | "table-heart-line" | "table-plus-line" | "tag-off-line" | "telescope-line" | "test-tube-filled-line" | "text-align-center-line" | "text-align-justify-line" | "text-align-left-line" | "text-align-right-line" | "text-wrap-line" | "textbox-line" | "textbox-minus" | "textbox-minus-line" | "textbox-plus" | "textbox-plus-line" | "ticket-check-line" | "ticket-text" | "ticket-text-line" | "tickets-line" | "tooltip-line" | "tooltip-text-line" | "tooltips" | "tooltips-2" | "tooltips-2-line" | "tooltips-line" | "tv-old" | "tv-old-line" | "underline-2" | "underline-2-line" | "unlock-open" | "unlock-open-line" | "user-box-line" | "ux-circle-line" | "video-minus-line" | "video-plus-line" | "view-rows" | "view-rows-line" | "watch-line" | "yen-circle-line">): import("react").JSX.Element;
772
772
  displayName: string;
773
773
  };
774
774
  export {};
@@ -223,7 +223,7 @@ declare const makiIconNames: {
223
223
  };
224
224
  export type MakiIconName = keyof typeof makiIconNames;
225
225
  export declare const Maki: {
226
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"circle" | "marker" | "diamond" | "fire-station" | "lighthouse" | "post" | "school" | "fence" | "water" | "music" | "car" | "fuel" | "bank" | "watch" | "beer" | "ice-cream" | "heart" | "cross" | "gift" | "gate" | "home" | "toilet" | "waterfall" | "doctor" | "hospital" | "wheelchair" | "volcano" | "bus" | "ferry" | "taxi" | "airport" | "beach" | "bridge" | "castle" | "city" | "library" | "parking" | "stadium" | "town-hall" | "warehouse" | "rocket" | "information" | "square" | "star" | "triangle" | "baseball" | "basketball" | "bicycle" | "cricket" | "golf" | "skateboard" | "snowmobile" | "soccer" | "table-tennis" | "tennis" | "volleyball" | "elevator" | "scooter" | "tunnel" | "building" | "construction" | "dam" | "globe" | "landmark" | "mountain" | "terminal" | "paint" | "prison" | "shoe" | "swimming" | "windmill" | "shop" | "suitcase" | "telephone" | "charging-station" | "industry" | "monument" | "place-of-worship" | "bar" | "cafe" | "campsite" | "harbor" | "police" | "restaurant" | "american-football" | "fast-food" | "toll" | "laundry" | "grocery" | "hardware" | "park" | "playground" | "recycling" | "car-rental" | "car-repair" | "casino" | "museum" | "farm" | "bbq" | "cinema" | "shelter" | "florist" | "garden" | "mobile-phone" | "caution" | "skiing" | "arrow" | "aquarium" | "barrier" | "bowling-alley" | "logging" | "village" | "danger" | "attraction" | "amusement-park" | "zoo" | "pharmacy" | "drinking-water" | "hairdresser" | "defibrillator" | "college" | "aerialway" | "airfield" | "alcohol-shop" | "animal-shelter" | "art-gallery" | "bakery" | "bank-jp" | "bicycle-share" | "blood-bank" | "building-alt1" | "castle-jp" | "cemetery" | "cemetery-jp" | "circle-stroked" | "clothing-store" | "college-jp" | "commercial" | "communications-tower" | "confectionery" | "convenience" | "dentist" | "dog-park" | "embassy" | "emergency-phone" | "entrance" | "entrance-alt1" | "ferry-jp" | "fire-station-jp" | "fitness-centre" | "furniture" | "gaming" | "garden-centre" | "heliport" | "highway-rest-area" | "historic" | "horse-riding" | "hospital-jp" | "hot-spring" | "jewelry-store" | "karaoke" | "landmark-jp" | "landuse" | "lift-gate" | "lighthouse-jp" | "lodging" | "marae" | "marker-stroked" | "monument-jp" | "natural" | "nightclub" | "observation-tower" | "optician" | "park-alt1" | "parking-garage" | "parking-paid" | "picnic-site" | "pitch" | "police-jp" | "post-jp" | "racetrack" | "racetrack-boat" | "racetrack-cycling" | "racetrack-horse" | "rail" | "rail-light" | "rail-metro" | "ranger-station" | "religious-buddhist" | "religious-christian" | "religious-jewish" | "religious-muslim" | "religious-shinto" | "residential-community" | "restaurant-bbq" | "restaurant-noodle" | "restaurant-pizza" | "restaurant-seafood" | "restaurant-sushi" | "road-accident" | "roadblock" | "school-jp" | "slaughterhouse" | "slipway" | "square-stroked" | "star-stroked" | "teahouse" | "theatre" | "town" | "triangle-stroked" | "veterinary" | "viewpoint" | "waste-basket" | "watermill" | "wetland">): import("react").JSX.Element;
226
+ ({ 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<"logging" | "circle" | "marker" | "diamond" | "fire-station" | "lighthouse" | "post" | "school" | "fence" | "water" | "music" | "car" | "fuel" | "bank" | "watch" | "beer" | "ice-cream" | "heart" | "cross" | "gift" | "gate" | "home" | "toilet" | "waterfall" | "doctor" | "hospital" | "wheelchair" | "volcano" | "bus" | "ferry" | "taxi" | "airport" | "beach" | "bridge" | "castle" | "city" | "library" | "parking" | "stadium" | "town-hall" | "warehouse" | "rocket" | "information" | "square" | "star" | "triangle" | "baseball" | "basketball" | "bicycle" | "cricket" | "golf" | "skateboard" | "snowmobile" | "soccer" | "table-tennis" | "tennis" | "volleyball" | "elevator" | "scooter" | "tunnel" | "building" | "construction" | "dam" | "globe" | "landmark" | "mountain" | "terminal" | "paint" | "prison" | "shoe" | "swimming" | "windmill" | "shop" | "suitcase" | "telephone" | "charging-station" | "industry" | "monument" | "place-of-worship" | "bar" | "cafe" | "campsite" | "harbor" | "police" | "restaurant" | "american-football" | "fast-food" | "toll" | "laundry" | "grocery" | "hardware" | "park" | "playground" | "recycling" | "car-rental" | "car-repair" | "casino" | "museum" | "farm" | "bbq" | "cinema" | "shelter" | "florist" | "garden" | "mobile-phone" | "caution" | "skiing" | "arrow" | "aquarium" | "barrier" | "bowling-alley" | "village" | "danger" | "attraction" | "amusement-park" | "zoo" | "pharmacy" | "drinking-water" | "hairdresser" | "defibrillator" | "college" | "aerialway" | "airfield" | "alcohol-shop" | "animal-shelter" | "art-gallery" | "bakery" | "bank-jp" | "bicycle-share" | "blood-bank" | "building-alt1" | "castle-jp" | "cemetery" | "cemetery-jp" | "circle-stroked" | "clothing-store" | "college-jp" | "commercial" | "communications-tower" | "confectionery" | "convenience" | "dentist" | "dog-park" | "embassy" | "emergency-phone" | "entrance" | "entrance-alt1" | "ferry-jp" | "fire-station-jp" | "fitness-centre" | "furniture" | "gaming" | "garden-centre" | "heliport" | "highway-rest-area" | "historic" | "horse-riding" | "hospital-jp" | "hot-spring" | "jewelry-store" | "karaoke" | "landmark-jp" | "landuse" | "lift-gate" | "lighthouse-jp" | "lodging" | "marae" | "marker-stroked" | "monument-jp" | "natural" | "nightclub" | "observation-tower" | "optician" | "park-alt1" | "parking-garage" | "parking-paid" | "picnic-site" | "pitch" | "police-jp" | "post-jp" | "racetrack" | "racetrack-boat" | "racetrack-cycling" | "racetrack-horse" | "rail" | "rail-light" | "rail-metro" | "ranger-station" | "religious-buddhist" | "religious-christian" | "religious-jewish" | "religious-muslim" | "religious-shinto" | "residential-community" | "restaurant-bbq" | "restaurant-noodle" | "restaurant-pizza" | "restaurant-seafood" | "restaurant-sushi" | "road-accident" | "roadblock" | "school-jp" | "slaughterhouse" | "slipway" | "square-stroked" | "star-stroked" | "teahouse" | "theatre" | "town" | "triangle-stroked" | "veterinary" | "viewpoint" | "waste-basket" | "watermill" | "wetland">): import("react").JSX.Element;
227
227
  displayName: string;
228
228
  };
229
229
  export {};
@@ -175,7 +175,7 @@ declare const mapIconNames: {
175
175
  };
176
176
  export type MapIconName = keyof typeof mapIconNames;
177
177
  export declare const Map: {
178
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"search" | "circle" | "atm" | "braille" | "fire-station" | "fullscreen" | "school" | "sign-language" | "square-rounded" | "surfing" | "car-wash" | "gas-station" | "bank" | "finance" | "food" | "compass" | "crosshairs" | "toilet" | "doctor" | "hospital" | "wheelchair" | "spa" | "diving" | "kayaking" | "skateboarding" | "sledding" | "airport" | "church" | "library" | "parking" | "stadium" | "store" | "synagogue" | "mosque" | "square" | "baseball" | "snowmobile" | "tennis" | "map-pin" | "expand" | "route" | "university" | "zoom-in" | "zoom-out" | "ice-skating" | "scuba-diving" | "ski-jumping" | "snowboarding" | "swimming" | "snow" | "audio-description" | "closed-captioning" | "location-arrow" | "campground" | "place-of-worship" | "bar" | "cafe" | "police" | "restaurant" | "female" | "male" | "storage" | "laundry" | "park" | "playground" | "sailing" | "car-rental" | "car-repair" | "casino" | "museum" | "archery" | "gym" | "health" | "florist" | "assistive-listening-system" | "canoe" | "convenience-store" | "department-store" | "post-office" | "skiing" | "hindu-temple" | "aquarium" | "bowling-alley" | "volume-control-telephone" | "amusement-park" | "zoo" | "pharmacy" | "shopping-mall" | "art-gallery" | "bakery" | "cemetery" | "clothing-store" | "dentist" | "embassy" | "jewelry-store" | "lodging" | "abseiling" | "accounting" | "beauty-salon" | "bicycle-store" | "boat-ramp" | "boat-tour" | "boating" | "book-store" | "bus-station" | "car-dealer" | "chairlift" | "city-hall" | "climbing" | "courthouse" | "cross-country-skiing" | "electrician" | "electronics-store" | "fish-cleaning" | "fishing-pier" | "funeral-home" | "furniture-store" | "general-contractor" | "grocery-or-supermarket" | "hair-care" | "hang-gliding" | "hardware-store" | "ice-fishing" | "inline-skating" | "insurance-agency" | "jet-skiing" | "lawyer" | "liquor-store" | "local-government" | "locksmith" | "low-vision-access" | "marina" | "movie-rental" | "movie-theater" | "moving-company" | "natural-feature" | "night-club" | "open-captioning" | "painter" | "pet-store" | "physiotherapist" | "plumber" | "point-of-interest" | "political" | "post-box" | "postal-code" | "postal-code-prefix" | "rafting" | "real-estate-agency" | "roofing-contractor" | "route-pin" | "rv-park" | "sheild" | "snow-shoeing" | "square-pin" | "subway-station" | "taxi-stand" | "train-station" | "transit-station" | "travel-agency" | "unisex" | "veterinary-care" | "waterskiing" | "whale-watching" | "wind-surfing" | "zoom-in-alt" | "zoom-out-alt">): import("react").JSX.Element;
178
+ ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"search" | "circle" | "atm" | "braille" | "fire-station" | "fullscreen" | "school" | "sign-language" | "square-rounded" | "surfing" | "car-wash" | "gas-station" | "bank" | "finance" | "food" | "compass" | "crosshairs" | "toilet" | "doctor" | "hospital" | "wheelchair" | "spa" | "diving" | "kayaking" | "skateboarding" | "sledding" | "airport" | "church" | "library" | "parking" | "stadium" | "store" | "synagogue" | "mosque" | "square" | "baseball" | "snowmobile" | "tennis" | "map-pin" | "expand" | "route" | "university" | "zoom-in" | "zoom-out" | "ice-skating" | "scuba-diving" | "ski-jumping" | "snowboarding" | "swimming" | "snow" | "audio-description" | "closed-captioning" | "location-arrow" | "campground" | "place-of-worship" | "bar" | "cafe" | "police" | "restaurant" | "female" | "male" | "storage" | "laundry" | "park" | "playground" | "sailing" | "car-rental" | "car-repair" | "casino" | "museum" | "archery" | "gym" | "health" | "florist" | "assistive-listening-system" | "canoe" | "convenience-store" | "department-store" | "post-office" | "skiing" | "hindu-temple" | "aquarium" | "bowling-alley" | "volume-control-telephone" | "amusement-park" | "zoo" | "pharmacy" | "shopping-mall" | "art-gallery" | "bakery" | "cemetery" | "clothing-store" | "dentist" | "embassy" | "jewelry-store" | "lodging" | "abseiling" | "accounting" | "beauty-salon" | "bicycle-store" | "boat-ramp" | "boat-tour" | "boating" | "book-store" | "bus-station" | "car-dealer" | "chairlift" | "city-hall" | "climbing" | "courthouse" | "cross-country-skiing" | "electrician" | "electronics-store" | "fish-cleaning" | "fishing-pier" | "funeral-home" | "furniture-store" | "general-contractor" | "grocery-or-supermarket" | "hair-care" | "hang-gliding" | "hardware-store" | "ice-fishing" | "inline-skating" | "insurance-agency" | "jet-skiing" | "lawyer" | "liquor-store" | "local-government" | "locksmith" | "low-vision-access" | "marina" | "movie-rental" | "movie-theater" | "moving-company" | "natural-feature" | "night-club" | "open-captioning" | "painter" | "pet-store" | "physiotherapist" | "plumber" | "point-of-interest" | "political" | "post-box" | "postal-code" | "postal-code-prefix" | "rafting" | "real-estate-agency" | "roofing-contractor" | "route-pin" | "rv-park" | "sheild" | "snow-shoeing" | "square-pin" | "subway-station" | "taxi-stand" | "train-station" | "transit-station" | "travel-agency" | "unisex" | "veterinary-care" | "waterskiing" | "whale-watching" | "wind-surfing" | "zoom-in-alt" | "zoom-out-alt">): import("react").JSX.Element;
179
179
  displayName: string;
180
180
  };
181
181
  export {};
@@ -598,7 +598,7 @@ declare const marketeqIconNames: {
598
598
  };
599
599
  export type MarketeqIconName = keyof typeof marketeqIconNames;
600
600
  export declare const Marketeq: {
601
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"sort" | "map" | "filter" | "signal" | "menu" | "video" | "stop" | "attachment" | "barcode-scan" | "chip" | "delete" | "email-open" | "eye" | "fast-forward" | "help" | "id-card" | "knife" | "launch" | "lighthouse" | "mouse" | "note-text" | "notebook" | "package" | "pause-circle" | "recycle" | "stool" | "tent" | "ticket" | "translate" | "vibrate" | "wifi" | "alpha" | "delta" | "bug" | "refresh" | "battery" | "caravan" | "lock" | "bank" | "wallet" | "box" | "phone" | "iron" | "cloud" | "update" | "monitor" | "pencil-ruler" | "grill" | "check-circle" | "axe" | "bed" | "cradle" | "curtains" | "fireplace" | "floor-lamp" | "pause" | "play" | "power" | "sofa" | "toaster" | "toilet" | "lock-check" | "chart-pie" | "diameter" | "exclamation" | "minus" | "plus" | "radius" | "square-root" | "ambulance" | "cassette" | "microphone" | "bus" | "mosque" | "atom" | "telescope" | "cube" | "cylinder" | "cart" | "cart-remove" | "basketball-hoop" | "podium" | "trophy" | "sort-ascending" | "sort-descending" | "helicopter" | "stairs" | "subway" | "forklift" | "battery-100" | "divide" | "envelope" | "map-pin" | "user" | "window" | "backpack" | "badge" | "cpu" | "files" | "goal" | "joystick" | "log-in" | "maximize-2" | "mic" | "minimize" | "mountain" | "paint-roller" | "sailboat" | "satellite-dish" | "settings" | "divide-circle" | "divide-square" | "more-vertical" | "unlock" | "avocado" | "bread" | "brightness" | "direction" | "direction-sign" | "discount" | "edit-circle" | "exchange" | "file-zip" | "flask-2" | "ruler-2" | "tax" | "toilet-paper" | "bag" | "cursor" | "fast-forward-circle" | "question" | "check-double" | "scan-alt" | "chemistry" | "money" | "information-square" | "warning-alt" | "arrival" | "delivery-truck" | "cursor-2" | "call" | "infinite" | "_2k" | "browse" | "measuring-tape" | "camping" | "money-bag" | "work" | "table-lamp" | "conversation" | "water-bottle" | "note-alt" | "filter-alt" | "switch-left" | "switch-right" | "birthday-cake" | "football-ball" | "sound-min" | "voice" | "agenda" | "aim" | "cabinet" | "clock-alt" | "gallery" | "maps" | "next" | "cart-add" | "down-arrow" | "home-alt-2" | "link-alt" | "search-alt-2" | "share-alt" | "signal-2" | "stats" | "up-arrow" | "wallet-alt" | "coupon" | "mute" | "cd" | "menu-alt" | "money-alt" | "fast-backward" | "left-right-arrow" | "up-down-arrow" | "price-tag" | "job" | "push-pin" | "gold-medal" | "caution" | "lock-circle" | "money-dollar" | "money-euro" | "phone-square" | "sign-out-alt" | "frying-pan" | "canned-food" | "plunger" | "receipt-check" | "date" | "secure" | "acorn" | "barrier" | "door-handle" | "fishing-hook" | "gas-stove" | "processor" | "school-bag" | "sleeping-bag" | "swiss-army-knife" | "eye-alt" | "cross-circle" | "chat-alt" | "alpha-circle" | "dome" | "favourite" | "gravity" | "notification-circle" | "pendulum" | "square-root-square" | "vision" | "battery-charge" | "coffee-machine" | "jewelry" | "take-off" | "music-1" | "fast-backward-circle" | "gps-fixed" | "sound-max" | "bag-alt" | "chat-alt-3" | "database-2" | "laptop-2" | "tree-2" | "file-3" | "home-3" | "notification-bell" | "karaoke" | "_1st-place" | "_2nd-place" | "_3rd-place" | "_4k-2" | "acrobatic-2" | "action-cam" | "action-camera" | "adapter-3" | "add-collection" | "add-playlist" | "add-playlist-2" | "agenda-left" | "aim-2" | "angel-45" | "appartment-2" | "apple-fruit" | "armchair-4" | "avocado-2" | "baby-crib-2" | "backward-2" | "bag-alt-1" | "banana-left" | "bananas-left" | "bathroom-2" | "bathtub-3" | "bathtub-8" | "battery-100-line" | "bedroom-4" | "bedroom-6" | "bench-press" | "bike-2" | "bikecycle" | "bill-dollar" | "billiard-ball" | "black-board" | "blueprint-architecture" | "blunted-cone" | "boat-2" | "bracket-2" | "bracket-square-2" | "breakfast-2" | "brickwall-2" | "cabinet-4" | "cabinet-5" | "cableway-2" | "call-in-2" | "camping-chair" | "camping-gas" | "canned-food-2" | "car-allert" | "car-lifter" | "car-shipping" | "cargo-ship-2" | "carpet-3" | "cart-alt-1" | "cashier-machine-left" | "caution-sign-circle" | "caution-sign-square" | "chair-2" | "chair-5" | "chaise-longue" | "chart-colum" | "chart-column-grow" | "chart-column-low" | "chart-line-alt-1" | "chassis" | "chat-4" | "chat-alert-left-3" | "chat-left-2" | "check-mark-circle" | "check-mark-square" | "check-mark-square-2" | "chemistry-5" | "chronometer-watch-3-second" | "clipboard-add-2" | "clipboard-checklist-2" | "clipboard-delete-2" | "clipboard-edit-3" | "clipboard-edit-left-2" | "compact-disk-2" | "compact-disk-3" | "compact-disk-disable" | "cone-geometric" | "contract-right" | "contrass" | "contrass-alt" | "contrass-alt-3" | "contrass-alt-6" | "couldron" | "create-note" | "create-note-alt" | "cross-arrow" | "curve-arrow-right" | "curve-arrow-right-3" | "curve-arrow-right-9" | "dashboard-alt" | "dashboard-alt-3" | "date-alt-add" | "date-alt-check" | "date-alt-star" | "debit-purchase" | "decrease-circle" | "delete-alt-2" | "delete-collection" | "delta-square" | "desk-2" | "desk-6" | "desk-lamp-round" | "diagram-bar-2" | "diagram-bar-3" | "diameter-circle" | "diskette" | "done-collection" | "done-playlist-2" | "double-down-sign" | "double-down-sign-square" | "double-left-sign" | "double-left-sign-circle" | "double-left-sign-square" | "double-right-sign" | "double-right-sign-circle" | "double-right-sign-square" | "double-up-scroll-bar" | "double-up-sign" | "double-up-sign-square" | "down-direction-2" | "down-junction-sign" | "down-octagon" | "down-trend" | "down-up-scroll-bar" | "download-5" | "download-alt-4" | "download-alt-5" | "drawers-2" | "drawers-3" | "drawing-tablet-pencil" | "dumbbell-3" | "earphone" | "earphone-bluetooth" | "edit-alt-5" | "edit-alt-6" | "edit-user-6" | "email-file" | "export-2" | "favourite-alt" | "file-6" | "file-favorite-8" | "file-folder-approved-2" | "file-music-2" | "file-video-4" | "film-movie" | "film-roll" | "filter-alt-4" | "filter-alt-5" | "fire-left" | "flask-3" | "floppy-disk-alert" | "forest-2" | "forward-2" | "full-cross-circle" | "gallery-collections" | "game-console-cable" | "gearshift-car" | "gold-medal-6" | "grill-bbq" | "hammer-drill" | "handphone" | "handphone-laptop" | "handphone-lock" | "hastag" | "hastag-circle" | "hastag-square" | "headset-alt" | "home-alt-3" | "home-telephone" | "hotel-2" | "import-left-2" | "infinite-2" | "information-chat-right" | "integral" | "invoice-dollar-done-left" | "jet-plane-right" | "jetski" | "key-11" | "key-7" | "key-lock-circle" | "keyboard-3" | "kitchen-cabinet-2" | "lattern" | "laundry-basket-2" | "lawn-mower" | "lcd" | "left-alt-circle" | "left-circle" | "left-direction" | "left-direction-square" | "left-right-scroll-bar" | "left-sign" | "left-square-3" | "link-alt-2" | "lock-1" | "log-in-double-arrow-2" | "love-playlist-2" | "maps-location" | "maps-pin" | "marshmallow" | "marshmallow-right" | "microphone-audio" | "microphone-disable" | "microphone-music-2" | "microphone-right" | "microphone-stand" | "minimize-left" | "minimize-size" | "minus-collection" | "mobile-data-circle" | "mobile-hotspot" | "mobile-payment-dollar" | "mobile-payment-done-2" | "money-3" | "money-alt-1" | "money-dollar-coin" | "more-circle-vertical" | "mp3-player" | "multi-folder" | "music-album-2" | "music-disable" | "music-file-2" | "note-book" | "note-down" | "note-up" | "notification-alt" | "package-alt-2" | "pantone" | "parabolic-function" | "parking-square" | "pendulum-5" | "picnic-basket-2" | "picnic-basket-3" | "pipe-4" | "place-disable" | "power-bank" | "present-circle" | "present-grow" | "presentation-bar-chart" | "print-alt-3" | "print-alt-9" | "qr-code-scan-2" | "receipt-add" | "receipt-clese" | "receipt-down" | "receipt-remove" | "refresh-round" | "rejected-file-2" | "research" | "research-presentation-left" | "reward" | "right-circle" | "right-circle-2" | "right-direction" | "right-direction-circle" | "right-direction-square" | "right-left-scroll-bar" | "right-sign" | "right-square-3" | "rotate-lock" | "router-4" | "ruler-10" | "ruler-6" | "ruler-7" | "safebox" | "safebox-2" | "save-error-left" | "screen-capture" | "screenchot" | "search-alt-3" | "secured-file-folder-2" | "settings-alt-4" | "settings-alt-5" | "share-alt-5" | "shipping-box-2" | "sign-in-double-arrow-2" | "sign-out-left" | "sleeping-bag-2" | "sofa-2" | "sound-increase" | "sound-reduce" | "square-root-of-x" | "stairs-3" | "stamp-3" | "sticky-notes-2" | "sticky-notes-6" | "sticky-notes-9" | "stool-2" | "stopwatch-3-second" | "stopwatch-7-second" | "suit" | "suitcase-bag" | "suspension" | "suspension-2" | "switch-double" | "tablet-laptop" | "time-clock" | "timer-5-second" | "timer-error" | "toaster-2" | "toilet-2" | "toilet-paper-7" | "toilet-paper-9" | "top-circle" | "touchid" | "triangle-ruler-pencil" | "trowel-3" | "truck-lift" | "turn-around-down-direction" | "turn-around-left-top-direction-2" | "turn-around-right-direction-2" | "turn-around-up-direction" | "turn-left-sign" | "turn-right-sign" | "tv-stand" | "tv-stand-2" | "unicycle-2" | "unlock-1" | "up-alt" | "up-direction-2" | "up-down-arrow-2" | "up-junction-sign" | "up-octagon" | "up-trend" | "upload-5" | "upload-alt-4" | "upload-new" | "user-6" | "user-7" | "user-alert" | "user-circle-2" | "vase-2" | "vest-2" | "wallet-alt-2" | "wallet-money" | "wallet-money-3" | "warning-alt-3" | "washbasin-4" | "water-can-2" | "water-tap" | "white-board" | "window-5" | "window-6" | "work-agenda" | "zig-zag-left-right-arrow" | "zig-zag-left-up-arrow" | "zig-zag-right-up-arrow">): import("react").JSX.Element;
601
+ ({ 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" | "translate" | "signal" | "menu" | "cursor" | "direction" | "video" | "stop" | "call" | "attachment" | "barcode-scan" | "chip" | "delete" | "email-open" | "eye" | "fast-forward" | "help" | "id-card" | "knife" | "launch" | "lighthouse" | "mouse" | "note-text" | "notebook" | "package" | "pause-circle" | "recycle" | "stool" | "tent" | "ticket" | "vibrate" | "wifi" | "alpha" | "delta" | "bug" | "refresh" | "battery" | "caravan" | "lock" | "bank" | "wallet" | "box" | "phone" | "iron" | "cloud" | "update" | "monitor" | "pencil-ruler" | "grill" | "check-circle" | "axe" | "bed" | "cradle" | "curtains" | "fireplace" | "floor-lamp" | "pause" | "play" | "power" | "sofa" | "toaster" | "toilet" | "lock-check" | "chart-pie" | "diameter" | "exclamation" | "minus" | "plus" | "radius" | "square-root" | "ambulance" | "cassette" | "microphone" | "bus" | "mosque" | "atom" | "telescope" | "cube" | "cylinder" | "cart" | "cart-remove" | "basketball-hoop" | "podium" | "trophy" | "sort-ascending" | "sort-descending" | "helicopter" | "stairs" | "subway" | "forklift" | "battery-100" | "divide" | "envelope" | "map-pin" | "user" | "window" | "backpack" | "badge" | "cpu" | "files" | "goal" | "joystick" | "log-in" | "maximize-2" | "mic" | "minimize" | "mountain" | "paint-roller" | "sailboat" | "satellite-dish" | "settings" | "divide-circle" | "divide-square" | "more-vertical" | "unlock" | "avocado" | "bread" | "brightness" | "direction-sign" | "discount" | "edit-circle" | "exchange" | "file-zip" | "flask-2" | "ruler-2" | "tax" | "toilet-paper" | "bag" | "fast-forward-circle" | "question" | "check-double" | "scan-alt" | "chemistry" | "money" | "information-square" | "warning-alt" | "arrival" | "delivery-truck" | "cursor-2" | "infinite" | "_2k" | "browse" | "measuring-tape" | "camping" | "money-bag" | "work" | "table-lamp" | "conversation" | "water-bottle" | "note-alt" | "filter-alt" | "switch-left" | "switch-right" | "birthday-cake" | "football-ball" | "sound-min" | "voice" | "agenda" | "aim" | "cabinet" | "clock-alt" | "gallery" | "maps" | "next" | "cart-add" | "down-arrow" | "home-alt-2" | "link-alt" | "search-alt-2" | "share-alt" | "signal-2" | "stats" | "up-arrow" | "wallet-alt" | "coupon" | "mute" | "cd" | "menu-alt" | "money-alt" | "fast-backward" | "left-right-arrow" | "up-down-arrow" | "price-tag" | "job" | "push-pin" | "gold-medal" | "caution" | "lock-circle" | "money-dollar" | "money-euro" | "phone-square" | "sign-out-alt" | "frying-pan" | "canned-food" | "plunger" | "receipt-check" | "date" | "secure" | "acorn" | "barrier" | "door-handle" | "fishing-hook" | "gas-stove" | "processor" | "school-bag" | "sleeping-bag" | "swiss-army-knife" | "eye-alt" | "cross-circle" | "chat-alt" | "alpha-circle" | "dome" | "favourite" | "gravity" | "notification-circle" | "pendulum" | "square-root-square" | "vision" | "battery-charge" | "coffee-machine" | "jewelry" | "take-off" | "music-1" | "fast-backward-circle" | "gps-fixed" | "sound-max" | "bag-alt" | "chat-alt-3" | "database-2" | "laptop-2" | "tree-2" | "file-3" | "home-3" | "notification-bell" | "karaoke" | "_1st-place" | "_2nd-place" | "_3rd-place" | "_4k-2" | "acrobatic-2" | "action-cam" | "action-camera" | "adapter-3" | "add-collection" | "add-playlist" | "add-playlist-2" | "agenda-left" | "aim-2" | "angel-45" | "appartment-2" | "apple-fruit" | "armchair-4" | "avocado-2" | "baby-crib-2" | "backward-2" | "bag-alt-1" | "banana-left" | "bananas-left" | "bathroom-2" | "bathtub-3" | "bathtub-8" | "battery-100-line" | "bedroom-4" | "bedroom-6" | "bench-press" | "bike-2" | "bikecycle" | "bill-dollar" | "billiard-ball" | "black-board" | "blueprint-architecture" | "blunted-cone" | "boat-2" | "bracket-2" | "bracket-square-2" | "breakfast-2" | "brickwall-2" | "cabinet-4" | "cabinet-5" | "cableway-2" | "call-in-2" | "camping-chair" | "camping-gas" | "canned-food-2" | "car-allert" | "car-lifter" | "car-shipping" | "cargo-ship-2" | "carpet-3" | "cart-alt-1" | "cashier-machine-left" | "caution-sign-circle" | "caution-sign-square" | "chair-2" | "chair-5" | "chaise-longue" | "chart-colum" | "chart-column-grow" | "chart-column-low" | "chart-line-alt-1" | "chassis" | "chat-4" | "chat-alert-left-3" | "chat-left-2" | "check-mark-circle" | "check-mark-square" | "check-mark-square-2" | "chemistry-5" | "chronometer-watch-3-second" | "clipboard-add-2" | "clipboard-checklist-2" | "clipboard-delete-2" | "clipboard-edit-3" | "clipboard-edit-left-2" | "compact-disk-2" | "compact-disk-3" | "compact-disk-disable" | "cone-geometric" | "contract-right" | "contrass" | "contrass-alt" | "contrass-alt-3" | "contrass-alt-6" | "couldron" | "create-note" | "create-note-alt" | "cross-arrow" | "curve-arrow-right" | "curve-arrow-right-3" | "curve-arrow-right-9" | "dashboard-alt" | "dashboard-alt-3" | "date-alt-add" | "date-alt-check" | "date-alt-star" | "debit-purchase" | "decrease-circle" | "delete-alt-2" | "delete-collection" | "delta-square" | "desk-2" | "desk-6" | "desk-lamp-round" | "diagram-bar-2" | "diagram-bar-3" | "diameter-circle" | "diskette" | "done-collection" | "done-playlist-2" | "double-down-sign" | "double-down-sign-square" | "double-left-sign" | "double-left-sign-circle" | "double-left-sign-square" | "double-right-sign" | "double-right-sign-circle" | "double-right-sign-square" | "double-up-scroll-bar" | "double-up-sign" | "double-up-sign-square" | "down-direction-2" | "down-junction-sign" | "down-octagon" | "down-trend" | "down-up-scroll-bar" | "download-5" | "download-alt-4" | "download-alt-5" | "drawers-2" | "drawers-3" | "drawing-tablet-pencil" | "dumbbell-3" | "earphone" | "earphone-bluetooth" | "edit-alt-5" | "edit-alt-6" | "edit-user-6" | "email-file" | "export-2" | "favourite-alt" | "file-6" | "file-favorite-8" | "file-folder-approved-2" | "file-music-2" | "file-video-4" | "film-movie" | "film-roll" | "filter-alt-4" | "filter-alt-5" | "fire-left" | "flask-3" | "floppy-disk-alert" | "forest-2" | "forward-2" | "full-cross-circle" | "gallery-collections" | "game-console-cable" | "gearshift-car" | "gold-medal-6" | "grill-bbq" | "hammer-drill" | "handphone" | "handphone-laptop" | "handphone-lock" | "hastag" | "hastag-circle" | "hastag-square" | "headset-alt" | "home-alt-3" | "home-telephone" | "hotel-2" | "import-left-2" | "infinite-2" | "information-chat-right" | "integral" | "invoice-dollar-done-left" | "jet-plane-right" | "jetski" | "key-11" | "key-7" | "key-lock-circle" | "keyboard-3" | "kitchen-cabinet-2" | "lattern" | "laundry-basket-2" | "lawn-mower" | "lcd" | "left-alt-circle" | "left-circle" | "left-direction" | "left-direction-square" | "left-right-scroll-bar" | "left-sign" | "left-square-3" | "link-alt-2" | "lock-1" | "log-in-double-arrow-2" | "love-playlist-2" | "maps-location" | "maps-pin" | "marshmallow" | "marshmallow-right" | "microphone-audio" | "microphone-disable" | "microphone-music-2" | "microphone-right" | "microphone-stand" | "minimize-left" | "minimize-size" | "minus-collection" | "mobile-data-circle" | "mobile-hotspot" | "mobile-payment-dollar" | "mobile-payment-done-2" | "money-3" | "money-alt-1" | "money-dollar-coin" | "more-circle-vertical" | "mp3-player" | "multi-folder" | "music-album-2" | "music-disable" | "music-file-2" | "note-book" | "note-down" | "note-up" | "notification-alt" | "package-alt-2" | "pantone" | "parabolic-function" | "parking-square" | "pendulum-5" | "picnic-basket-2" | "picnic-basket-3" | "pipe-4" | "place-disable" | "power-bank" | "present-circle" | "present-grow" | "presentation-bar-chart" | "print-alt-3" | "print-alt-9" | "qr-code-scan-2" | "receipt-add" | "receipt-clese" | "receipt-down" | "receipt-remove" | "refresh-round" | "rejected-file-2" | "research" | "research-presentation-left" | "reward" | "right-circle" | "right-circle-2" | "right-direction" | "right-direction-circle" | "right-direction-square" | "right-left-scroll-bar" | "right-sign" | "right-square-3" | "rotate-lock" | "router-4" | "ruler-10" | "ruler-6" | "ruler-7" | "safebox" | "safebox-2" | "save-error-left" | "screen-capture" | "screenchot" | "search-alt-3" | "secured-file-folder-2" | "settings-alt-4" | "settings-alt-5" | "share-alt-5" | "shipping-box-2" | "sign-in-double-arrow-2" | "sign-out-left" | "sleeping-bag-2" | "sofa-2" | "sound-increase" | "sound-reduce" | "square-root-of-x" | "stairs-3" | "stamp-3" | "sticky-notes-2" | "sticky-notes-6" | "sticky-notes-9" | "stool-2" | "stopwatch-3-second" | "stopwatch-7-second" | "suit" | "suitcase-bag" | "suspension" | "suspension-2" | "switch-double" | "tablet-laptop" | "time-clock" | "timer-5-second" | "timer-error" | "toaster-2" | "toilet-2" | "toilet-paper-7" | "toilet-paper-9" | "top-circle" | "touchid" | "triangle-ruler-pencil" | "trowel-3" | "truck-lift" | "turn-around-down-direction" | "turn-around-left-top-direction-2" | "turn-around-right-direction-2" | "turn-around-up-direction" | "turn-left-sign" | "turn-right-sign" | "tv-stand" | "tv-stand-2" | "unicycle-2" | "unlock-1" | "up-alt" | "up-direction-2" | "up-down-arrow-2" | "up-junction-sign" | "up-octagon" | "up-trend" | "upload-5" | "upload-alt-4" | "upload-new" | "user-6" | "user-7" | "user-alert" | "user-circle-2" | "vase-2" | "vest-2" | "wallet-alt-2" | "wallet-money" | "wallet-money-3" | "warning-alt-3" | "washbasin-4" | "water-can-2" | "water-tap" | "white-board" | "window-5" | "window-6" | "work-agenda" | "zig-zag-left-right-arrow" | "zig-zag-left-up-arrow" | "zig-zag-right-up-arrow">): import("react").JSX.Element;
602
602
  displayName: string;
603
603
  };
604
604
  export {};