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
@@ -1508,7 +1508,7 @@ declare const streamline_flexIconNames: {
1508
1508
  };
1509
1509
  export type StreamlineFlexIconName = keyof typeof streamline_flexIconNames;
1510
1510
  export declare const StreamlineFlex: {
1511
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"anchor" | "table" | "alien" | "binoculars" | "bookmark" | "brightness-1" | "brightness-4" | "campfire" | "crown" | "flash-off" | "inbox" | "keyboard" | "network" | "presentation" | "school" | "tag" | "target" | "texture" | "typewriter" | "usb-port" | "carrot" | "flower" | "pine-tree" | "arrow-expand" | "rotate-left" | "shuffle" | "volume-mute" | "battery-charging" | "thermometer" | "piggy-bank" | "receipt" | "wallet" | "apple" | "youtube" | "phone" | "bow-tie" | "iron" | "cloud" | "cloud-download" | "cloud-off" | "database" | "laptop" | "projector" | "scanner" | "chess-king" | "dice-5" | "heart" | "shield-cross" | "treasure-chest" | "balloon" | "party-popper" | "bell" | "lightbulb" | "printer" | "record-player" | "sofa" | "toaster" | "webcam" | "sigma" | "tooth" | "wheelchair" | "film" | "printer-wireless" | "dna" | "rocket" | "cog" | "cube" | "star-circle" | "trophy" | "drone" | "elevator" | "archive-box" | "archive-box-solid" | "bell-solid" | "bookmark-solid" | "cloud-solid" | "cog-solid" | "cube-solid" | "film-solid" | "heart-solid" | "inbox-solid" | "information-circle" | "information-circle-solid" | "magnifying-glass" | "magnifying-glass-solid" | "pencil-square" | "pencil-square-solid" | "phone-solid" | "printer-solid" | "qr-code" | "qr-code-solid" | "scissors" | "scissors-solid" | "sun" | "sun-solid" | "tag-solid" | "trophy-solid" | "wallet-solid" | "bluetooth-searching" | "cake-slice" | "graduation-cap" | "hourglass" | "maximize-2" | "notepad-text" | "pen-tool" | "satellite-dish" | "shirt" | "tickets" | "zoom-in" | "zoom-out" | "check-square" | "pie-chart" | "color-picker" | "filter-2" | "hierarchy-2" | "home-2" | "ice-cream-2" | "moustache" | "screenshot" | "stopwatch" | "windmill" | "bag" | "camera-video" | "fork-knife" | "tiktok" | "floppy-disk" | "map-location" | "screwdriver-wrench" | "suitcase-rolling" | "fragile" | "vpn-connection" | "warning-diamond" | "snooze" | "tinder" | "bluetooth-disabled" | "landscape-2" | "photo-camera" | "left-click" | "check-square-solid" | "presentation-solid" | "bell-notification" | "bell-notification-solid" | "network-solid" | "database-solid" | "text-square" | "text-square-solid" | "iris-scan" | "triangle-flag" | "graduation-cap-solid" | "tiktok-solid" | "youtube-solid" | "link-chain" | "gallery" | "apple-solid" | "cloud-download-solid" | "cloud-off-solid" | "bag-solid" | "zoom-in-solid" | "zoom-out-solid" | "shuffle-solid" | "map-location-solid" | "lightbulb-solid" | "ball" | "tag-alt" | "calculator-1" | "pie-chart-solid" | "piggy-bank-solid" | "color-picker-solid" | "hourglass-solid" | "target-solid" | "volume-mute-solid" | "crown-solid" | "happy-face-solid" | "dna-solid" | "keyboard-solid" | "new-file" | "new-folder" | "iphone" | "increase-indent" | "lock-rotation" | "speaker-1" | "mail-reply-all" | "cocktail" | "contact-book" | "receipt-solid" | "school-solid" | "carrot-solid" | "floppy-disk-solid" | "rocket-solid" | "incoming-call-solid" | "missed-call-solid" | "incoming-call" | "zip-folder" | "arrow-move" | "shopping-basket-add" | "camping-tent" | "charging" | "merge-vertical" | "walker" | "wheelchair-1" | "smoking-area" | "surveillance-camera" | "cursor-click" | "align-selection" | "camera-tripod" | "fahrenheit" | "file-bookmark" | "target-dollar" | "dribble" | "align-text-top" | "text-style" | "heart-rate" | "recycle-bin" | "eject-square" | "camera-1" | "hierarchy-1" | "layers-1" | "megaphone-1" | "paperclip-1" | "shield-2" | "dashboard-3" | "city-hall" | "shipping-box-2" | "white-board" | "anchor-solid" | "battery-charging-solid" | "binoculars-solid" | "campfire-solid" | "cocktail-solid" | "elevator-solid" | "flower-solid" | "sofa-solid" | "table-solid" | "thermometer-solid" | "webcam-solid" | "wheelchair-solid" | "cloud-warning" | "film-slate" | "missed-call" | "paintbrush-2" | "script-2" | "countdown-timer" | "laptop-solid" | "shirt-solid" | "tea-cup" | "stopwatch-solid" | "ai-generate-portrait-image-spark" | "ai-generate-portrait-image-spark-remix" | "ai-generate-portrait-image-spark-solid" | "battery-charging-remix" | "battery-medium-1" | "battery-medium-1-remix" | "battery-medium-1-solid" | "bluetooth-disabled-remix" | "bluetooth-disabled-solid" | "bluetooth-searching-remix" | "bluetooth-searching-solid" | "computer-chip-1" | "computer-chip-1-remix" | "computer-chip-1-solid" | "controller-wireless" | "controller-wireless-remix" | "controller-wireless-solid" | "cursor-click-remix" | "cursor-click-solid" | "cyborg-2" | "cyborg-2-solid" | "cyborg-remix" | "database-remix" | "drone-remix" | "drone-solid" | "electric-cord-1" | "electric-cord-1-remix" | "electric-cord-1-solid" | "facebook-1" | "facebook-1-solid" | "floppy-disk-remix" | "hand-held-tablet-writing" | "hand-held-tablet-writing-remix" | "hand-held-tablet-writing-solid" | "hard-drive-1" | "hard-drive-1-remix" | "hard-drive-1-solid" | "keyboard-remix" | "network-remix" | "printer-remix" | "screen-curve" | "screen-curve-remix" | "screen-curve-solid" | "tinder-solid" | "voice-mail" | "voice-mail-remix" | "voice-mail-solid" | "vpn-connection-remix" | "vpn-connection-solid" | "watch-2" | "watch-2-remix" | "watch-2-solid" | "watch-circle-charging" | "watch-circle-charging-remix" | "watch-circle-charging-solid" | "watch-circle-heartbeat-monitor-1" | "watch-circle-heartbeat-monitor-1-remix" | "watch-circle-heartbeat-monitor-1-solid" | "webcam-remix" | "webcam-video-off" | "webcam-video-off-remix" | "webcam-video-off-solid" | "wifi-antenna" | "wifi-antenna-remix" | "wifi-antenna-solid" | "news-paper" | "news-paper-remix" | "news-paper-solid" | "politics-speech" | "politics-speech-remix" | "politics-speech-solid" | "politics-vote-2" | "politics-vote-2-remix" | "politics-vote-2-solid" | "tickets-solid" | "balloon-remix" | "balloon-solid" | "button-power-1" | "button-power-1-remix" | "button-power-1-solid" | "camera-video-remix" | "camera-video-solid" | "chess-king-remix" | "chess-king-solid" | "dice-5-remix" | "dice-5-solid" | "earpods" | "earpods-remix" | "earpods-solid" | "esports" | "esports-remix" | "esports-solid" | "music-equalizer" | "music-equalizer-solid" | "party-popper-remix" | "party-popper-solid" | "play-list-4" | "play-list-4-remix" | "play-list-4-solid" | "recording-tape-bubble-circle" | "recording-tape-bubble-circle-remix" | "recording-tape-bubble-circle-solid" | "speaker-1-remix" | "speaker-1-solid" | "tape-cassette-record" | "tape-cassette-record-remix" | "tape-cassette-record-solid" | "volume-level-high" | "volume-level-high-remix" | "volume-level-high-solid" | "volume-mute-remix" | "cake-slice-remix" | "cake-slice-solid" | "champagne-party-alcohol" | "champagne-party-alcohol-remix" | "champagne-party-alcohol-solid" | "cocktail-remix" | "fork-knife-remix" | "fork-knife-solid" | "ice-cream-2-remix" | "ice-cream-2-solid" | "tea-cup-remix" | "tea-cup-solid" | "blood-donate-drop" | "blood-donate-drop-remix" | "blood-donate-drop-solid" | "call-center-support-service" | "call-center-support-service-remix" | "call-center-support-service-solid" | "checkup-medical-report-clipboard" | "checkup-medical-report-clipboard-remix" | "checkup-medical-report-clipboard-solid" | "health-care-2" | "health-care-2-remix" | "health-care-2-solid" | "insurance-hand-1-remix" | "microscope-observation-sciene" | "microscope-observation-sciene-remix" | "microscope-observation-sciene-solid" | "nurse-assistant-emergency" | "nurse-assistant-emergency-remix" | "nurse-assistant-emergency-solid" | "online-medical-service-monitor" | "online-medical-service-monitor-remix" | "online-medical-service-monitor-solid" | "prescription-pills-drugs-healthcare" | "prescription-pills-drugs-healthcare-remix" | "prescription-pills-drugs-healthcare-solid" | "sos-help-emergency-sign" | "sos-help-emergency-sign-remix" | "sos-help-emergency-sign-solid" | "tablet-capsule" | "tablet-capsule-remix" | "tablet-capsule-solid" | "tooth-remix" | "tooth-solid" | "virus-antivirus" | "virus-antivirus-remix" | "virus-antivirus-solid" | "wheelchair-remix" | "camera-1-remix" | "camera-1-solid" | "compsition-horizontal" | "compsition-horizontal-remix" | "compsition-horizontal-solid" | "film-slate-remix" | "film-slate-solid" | "flash-3" | "flash-3-remix" | "flash-3-solid" | "flash-off-remix" | "flash-off-solid" | "landscape-2-remix" | "landscape-2-solid" | "polaroid-four" | "polaroid-four-remix" | "polaroid-four-solid" | "align-back-1" | "align-back-1-remix" | "align-back-1-solid" | "archive-box-remix" | "arrow-cursor-2" | "arrow-cursor-2-remix" | "arrow-cursor-2-solid" | "arrow-expand-solid" | "arrow-move-solid" | "arrow-roadmap" | "arrow-roadmap-solid" | "blank-calendar" | "blank-calendar-remix" | "blank-calendar-solid" | "brightness-1-remix" | "brightness-1-solid" | "check-square-remix" | "cloud-remix" | "color-picker-remix" | "color-swatches" | "color-swatches-remix" | "color-swatches-solid" | "crown-remix" | "dark-dislay-mode" | "dark-dislay-mode-remix" | "dark-dislay-mode-solid" | "dashboard-3-remix" | "dashboard-3-solid" | "disable-bell-notification" | "disable-bell-notification-remix" | "disable-bell-notification-solid" | "download-box-1" | "download-box-1-remix" | "download-box-1-solid" | "empty-clipboard" | "empty-clipboard-remix" | "empty-clipboard-solid" | "face-scan-1" | "face-scan-1-remix" | "face-scan-1-solid" | "fahrenheit-remix" | "fahrenheit-solid" | "filter-2-remix" | "filter-2-solid" | "fingerprint-1" | "fingerprint-1-remix" | "fingerprint-1-solid" | "heart-remix" | "hierarchy-13" | "hierarchy-13-remix" | "hierarchy-13-solid" | "hierarchy-2-remix" | "hierarchy-2-solid" | "humidity-none" | "humidity-none-remix" | "humidity-none-solid" | "information-circle-remix" | "input-box" | "input-box-remix" | "input-box-solid" | "invisible-1" | "invisible-1-remix" | "invisible-1-solid" | "layers-1-remix" | "layers-1-solid" | "layout-window-1" | "layout-window-1-remix" | "layout-window-1-solid" | "lightbulb-remix" | "like-1" | "like-1-remix" | "like-1-solid" | "line-arrow-move-remix" | "link-chain-remix" | "link-chain-solid" | "lock-rotation-remix" | "lock-rotation-solid" | "login-1" | "login-1-remix" | "login-1-solid" | "logout-1" | "logout-1-remix" | "logout-1-solid" | "magic-wand-2" | "magic-wand-2-remix" | "magic-wand-2-solid" | "magnifying-glass-remix" | "new-file-remix" | "new-file-solid" | "new-folder-remix" | "new-folder-solid" | "new-sticky-note" | "new-sticky-note-remix" | "new-sticky-note-solid" | "one-finger-tap" | "one-finger-tap-remix" | "one-finger-tap-solid" | "open-umbrella" | "open-umbrella-remix" | "open-umbrella-solid" | "padlock-square-1" | "padlock-square-1-remix" | "padlock-square-1-solid" | "page-setting" | "page-setting-remix" | "page-setting-solid" | "paintbrush-2-remix" | "paintbrush-2-solid" | "paperclip-1-remix" | "paperclip-1-solid" | "pen-tool-remix" | "pen-tool-solid" | "pictures-folder-memories" | "pictures-folder-memories-remix" | "pictures-folder-memories-solid" | "projector-board" | "projector-board-remix" | "projector-board-solid" | "satellite-dish-remix" | "satellite-dish-solid" | "scanner-remix" | "scanner-solid" | "share-link" | "share-link-remix" | "share-link-solid" | "shield-1" | "shield-1-remix" | "shield-1-solid" | "shield-2-remix" | "shield-2-solid" | "shield-cross-remix" | "shield-cross-solid" | "sigma-remix" | "sigma-solid" | "spiral-shape" | "spiral-shape-remix" | "spiral-shape-solid" | "star-badge" | "star-badge-remix" | "star-badge-solid" | "tag-remix" | "text-square-remix" | "text-style-remix" | "text-style-solid" | "thermometer-remix" | "trending-content" | "trending-content-remix" | "trending-content-solid" | "trophy-remix" | "upload-box-1" | "upload-box-1-remix" | "upload-box-1-solid" | "user-circle-single" | "user-circle-single-remix" | "user-circle-single-solid" | "user-identifier-card" | "user-identifier-card-remix" | "user-identifier-card-solid" | "user-sync-online-in-person" | "user-sync-online-in-person-remix" | "user-sync-online-in-person-solid" | "voice-scan-2" | "voice-scan-2-remix" | "voice-scan-2-solid" | "chat-bubble-text-square" | "chat-bubble-text-square-remix" | "chat-bubble-text-square-solid" | "chat-bubble-typing-oval" | "chat-bubble-typing-oval-remix" | "chat-bubble-typing-oval-solid" | "discussion-converstion-reply" | "discussion-converstion-reply-remix" | "discussion-converstion-reply-solid" | "happy-face" | "happy-face-remix" | "inbox-favorite" | "inbox-favorite-remix" | "inbox-favorite-solid" | "inbox-tray-1" | "inbox-tray-1-remix" | "inbox-tray-1-solid" | "mail-send-envelope" | "mail-send-envelope-remix" | "mail-send-envelope-solid" | "sign-at" | "sign-at-remix" | "sign-at-solid" | "airport-plane" | "airport-plane-remix" | "airport-plane-solid" | "anchor-remix" | "baggage" | "baggage-remix" | "baggage-solid" | "bicycle-bike" | "bicycle-bike-remix" | "bicycle-bike-solid" | "camping-tent-remix" | "camping-tent-solid" | "car-taxi-1" | "car-taxi-1-remix" | "car-taxi-1-solid" | "city-hall-remix" | "city-hall-solid" | "earth-1" | "earth-1-remix" | "earth-1-solid" | "fire-alarm-2" | "fire-alarm-2-remix" | "fire-alarm-2-solid" | "gas-station-fuel-petroleum" | "gas-station-fuel-petroleum-remix" | "gas-station-fuel-petroleum-solid" | "high-speed-train-front" | "high-speed-train-front-remix" | "high-speed-train-front-solid" | "iron-remix" | "iron-solid" | "location-compass-1" | "location-compass-1-remix" | "location-compass-1-solid" | "location-pin-3" | "location-pin-3-remix" | "location-pin-3-solid" | "pet-paw" | "pet-paw-remix" | "pet-paw-solid" | "school-bus-side" | "school-bus-side-remix" | "school-bus-side-solid" | "smoking-area-remix" | "smoking-area-solid" | "street-road" | "street-road-remix" | "street-road-solid" | "street-sign" | "street-sign-remix" | "street-sign-solid" | "toilet-man" | "toilet-man-remix" | "toilet-man-solid" | "toilet-man-woman-1-remix" | "triangle-flag-remix" | "triangle-flag-solid" | "wheelchair-1-remix" | "wheelchair-1-solid" | "bag-remix" | "ball-remix" | "ball-solid" | "bill-4" | "bill-4-remix" | "bill-4-solid" | "bow-tie-remix" | "bow-tie-solid" | "calculator-1-remix" | "calculator-1-solid" | "coin-share" | "coin-share-remix" | "coin-share-solid" | "discount-percent-coupon" | "discount-percent-coupon-remix" | "discount-percent-coupon-solid" | "gift-2" | "gift-2-remix" | "gift-2-solid" | "graph-dot" | "graph-dot-remix" | "graph-dot-solid" | "justice-scale-1" | "justice-scale-1-remix" | "justice-scale-1-solid" | "moustache-remix" | "moustache-solid" | "pie-chart-remix" | "piggy-bank-remix" | "qr-code-remix" | "receipt-remix" | "safe-vault" | "safe-vault-remix" | "safe-vault-solid" | "scanner-bar-code" | "scanner-bar-code-remix" | "scanner-bar-code-solid" | "shopping-bag-hand-bag-2" | "shopping-bag-hand-bag-2-remix" | "shopping-bag-hand-bag-2-solid" | "shopping-basket-2" | "shopping-basket-2-remix" | "shopping-basket-2-solid" | "shopping-cart-2" | "shopping-cart-2-remix" | "shopping-cart-2-solid" | "store-1" | "store-1-solid" | "store-2-remix" | "subscription-cashflow" | "subscription-cashflow-remix" | "subscription-cashflow-solid" | "tag-alt-remix" | "tag-alt-solid" | "tall-hat" | "tall-hat-remix" | "tall-hat-solid" | "target-remix" | "wallet-remix" | "alien-remix" | "alien-solid" | "decent-work-and-economic-growth" | "decent-work-and-economic-growth-remix" | "decent-work-and-economic-growth-solid" | "dna-remix" | "erlenmeyer-flask" | "erlenmeyer-flask-remix" | "erlenmeyer-flask-solid" | "flower-remix" | "galaxy-2" | "galaxy-2-remix" | "galaxy-2-solid" | "recycle-1" | "recycle-1-remix" | "recycle-1-solid" | "reduced-inequalities" | "reduced-inequalities-remix" | "reduced-inequalities-solid" | "tidal-wave" | "tidal-wave-remix" | "tidal-wave-solid" | "windmill-remix" | "windmill-solid" | "airplane-disabled" | "airplane-disabled-remix" | "airplane-disabled-solid" | "cellular-network-lte" | "cellular-network-lte-remix" | "cellular-network-lte-solid" | "contact-phonebook-2" | "contact-phonebook-2-remix" | "contact-phonebook-2-solid" | "incoming-call-remix" | "missed-call-remix" | "notification-application-1" | "notification-application-1-remix" | "notification-application-1-solid" | "phone-qr" | "phone-qr-remix" | "phone-qr-solid" | "phone-remix" | "phone-ringing-1" | "phone-ringing-1-remix" | "phone-ringing-1-solid" | "signal-full" | "signal-full-remix" | "signal-full-solid" | "application-add" | "application-add-remix" | "application-add-solid" | "browser-multiple-window" | "browser-multiple-window-remix" | "browser-multiple-window-solid" | "bug-antivirus-shield" | "bug-antivirus-shield-remix" | "bug-antivirus-shield-solid" | "cloud-data-transfer" | "cloud-data-transfer-remix" | "cloud-data-transfer-solid" | "cloud-warning-remix" | "cloud-warning-solid" | "code-analysis" | "code-analysis-remix" | "code-analysis-solid" | "code-monitor-1" | "code-monitor-1-remix" | "code-monitor-1-solid" | "file-code-1" | "file-code-1-remix" | "file-code-1-solid" | "incognito-mode" | "incognito-mode-remix" | "incognito-mode-solid" | "screen-broadcast" | "screen-broadcast-remix" | "screen-broadcast-solid" | "script-2-remix" | "script-2-solid" | "fragile-remix" | "fragile-solid" | "transfer-truck-time-remix" | "warehouse-1" | "warehouse-1-remix" | "warehouse-1-solid" | "book-reading" | "book-reading-remix" | "book-reading-solid" | "definition-search-book" | "definition-search-book-remix" | "definition-search-book-solid" | "dictionary-language-book" | "dictionary-language-book-remix" | "dictionary-language-book-solid" | "graduation-cap-remix" | "office-building-1" | "office-building-1-remix" | "office-building-1-solid" | "workspace-desk" | "workspace-desk-remix" | "workspace-desk-solid" | "cat-2" | "dog-1" | "ai-chip-robot" | "ai-chip-robot-remix" | "ai-chip-robot-solid" | "ai-scanner-robot" | "ai-scanner-robot-remix" | "ai-scanner-robot-solid" | "artificial-intelligence-brain-chip" | "artificial-intelligence-brain-chip-remix" | "artificial-intelligence-brain-chip-solid" | "deepfake-technology-1" | "deepfake-technology-1-remix" | "deepfake-technology-1-solid" | "apple-logo-remix" | "charging-remix" | "charging-solid" | "controller-stick" | "controller-stick-remix" | "controller-stick-solid" | "desktop-lock" | "desktop-lock-remix" | "desktop-lock-solid" | "dribble-logo-remix" | "dribble-solid" | "eject-square-remix" | "eject-square-solid" | "facebook-logo-1-remix" | "ios-ipados" | "ios-ipados-remix" | "ios-ipados-solid" | "keyboard-option-setting-gear" | "keyboard-option-setting-gear-remix" | "keyboard-option-setting-gear-solid" | "laptop-remix" | "left-click-remix" | "left-click-solid" | "monitor-error" | "monitor-error-remix" | "monitor-error-solid" | "photo-camera-remix" | "photo-camera-solid" | "printer-wireless-remix" | "printer-wireless-solid" | "return-square-2" | "return-square-2-remix" | "return-square-2-solid" | "router-wifi-network" | "router-wifi-network-remix" | "router-wifi-network-solid" | "tiktok-logo-remix" | "tinder-logo-remix" | "usb-port-remix" | "usb-port-solid" | "watch-square-menu" | "watch-square-menu-remix" | "watch-square-menu-solid" | "wifi-secure-connection" | "wifi-secure-connection-remix" | "wifi-secure-connection-solid" | "wireless-fast-charging" | "wireless-fast-charging-remix" | "wireless-fast-charging-solid" | "youtube-logo-remix" | "tickets-remix" | "add-to-playlist" | "add-to-playlist-remix" | "add-to-playlist-solid" | "artist-song" | "artist-song-remix" | "artist-song-solid" | "button-move-circle" | "button-move-circle-remix" | "button-move-circle-solid" | "button-pause-circle" | "button-pause-circle-remix" | "button-pause-circle-solid" | "button-record-1" | "button-record-1-remix" | "button-record-1-solid" | "gambling" | "gambling-remix" | "gambling-solid" | "music-equalizer-remix" | "music-note-circle" | "music-note-circle-remix" | "music-note-circle-solid" | "play-list-6" | "play-list-6-remix" | "play-list-6-solid" | "record-player-remix" | "record-player-solid" | "repeat-single" | "repeat-single-remix" | "repeat-single-solid" | "tune-adjust-volume" | "tune-adjust-volume-remix" | "tune-adjust-volume-solid" | "watchtower-castle" | "watchtower-castle-remix" | "watchtower-castle-solid" | "allergens-fish" | "allergens-fish-remix" | "allergens-fish-solid" | "carrot-remix" | "chef-toque-hat" | "chef-toque-hat-remix" | "chef-toque-hat-solid" | "fried-egg-breakfast" | "fried-egg-breakfast-remix" | "fried-egg-breakfast-solid" | "salad-vegetable-diet" | "salad-vegetable-diet-remix" | "salad-vegetable-diet-solid" | "soft-drink-can" | "soft-drink-can-remix" | "soft-drink-can-solid" | "toaster-remix" | "toaster-solid" | "ear-speciality" | "ear-speciality-remix" | "ear-speciality-solid" | "heart-cross" | "heart-cross-remix" | "heart-cross-solid" | "heart-rate-remix" | "heart-rate-solid" | "hospital-sign" | "hospital-sign-remix" | "hospital-sign-solid" | "insurance-hand-1" | "insurance-hand-1-solid" | "camera-setting-gear" | "camera-setting-gear-remix" | "camera-setting-gear-solid" | "camera-tripod-remix" | "camera-tripod-solid" | "film-remix" | "flash-warning" | "flash-warning-remix" | "flash-warning-solid" | "focus-frame" | "focus-frame-remix" | "focus-frame-solid" | "gallery-remix" | "gallery-solid" | "image-location" | "image-location-remix" | "image-location-solid" | "landscape-lock" | "landscape-lock-remix" | "landscape-lock-solid" | "portrait-lock" | "portrait-lock-remix" | "portrait-lock-solid" | "time-lapse" | "time-lapse-remix" | "time-lapse-solid" | "_3d-coordinate-axis" | "_3d-coordinate-axis-remix" | "_3d-coordinate-axis-solid" | "_3d-rotate-1" | "_3d-rotate-1-remix" | "_3d-rotate-1-solid" | "_3d-rotate-y-axis" | "_3d-rotate-y-axis-remix" | "_3d-rotate-y-axis-solid" | "align-selection-remix" | "align-selection-solid" | "align-text-top-remix" | "align-text-top-solid" | "align-top-1" | "align-top-1-remix" | "align-top-1-solid" | "arrow-cursor-click-2" | "arrow-cursor-click-2-remix" | "arrow-cursor-click-2-solid" | "arrow-cursor-move" | "arrow-cursor-move-remix" | "arrow-cursor-move-solid" | "auto-correction-check" | "auto-correction-check-remix" | "auto-correction-check-solid" | "bell-notification-remix" | "binoculars-remix" | "block-2" | "block-2-remix" | "block-2-solid" | "bookmark-remix" | "brightness-4-remix" | "brightness-4-solid" | "broken-link-1" | "broken-link-1-remix" | "broken-link-1-solid" | "calendar-mark" | "calendar-mark-remix" | "calendar-mark-solid" | "clean-broom-wipe" | "clean-broom-wipe-remix" | "clean-broom-wipe-solid" | "cog-remix" | "contact-book-remix" | "contact-book-solid" | "copy-2" | "copy-2-remix" | "copy-2-solid" | "countdown-timer-remix" | "countdown-timer-solid" | "cube-remix" | "curves-levels-graph" | "curves-levels-graph-remix" | "curves-levels-graph-solid" | "customer-support-5" | "customer-support-5-remix" | "customer-support-5-solid" | "customer-support-7" | "customer-support-7-remix" | "customer-support-7-solid" | "dashboard-gauge-1" | "dashboard-gauge-1-remix" | "dashboard-gauge-1-solid" | "delete-tag" | "delete-tag-remix" | "delete-tag-solid" | "desktop-screensaver-sleep" | "desktop-screensaver-sleep-remix" | "desktop-screensaver-sleep-solid" | "dial-pad-finger-2" | "dial-pad-finger-2-remix" | "dial-pad-finger-2-solid" | "dislike-circle" | "dislike-circle-remix" | "dislike-circle-solid" | "download-arrow" | "download-arrow-remix" | "download-arrow-solid" | "download-tray" | "download-tray-remix" | "download-tray-solid" | "end-point-diamond" | "end-point-diamond-remix" | "end-point-diamond-solid" | "expand-crop-resize" | "expand-crop-resize-remix" | "expand-crop-resize-solid" | "expand-window-1" | "expand-window-1-solid" | "feather-pen" | "feather-pen-remix" | "feather-pen-solid" | "file-bookmark-remix" | "file-bookmark-solid" | "finger-snapping" | "finger-snapping-remix" | "finger-snapping-solid" | "flip-horizontal-arrow-1" | "flip-horizontal-arrow-1-remix" | "flip-horizontal-arrow-1-solid" | "flip-horizontal-circle-2" | "flip-horizontal-circle-2-remix" | "flip-horizontal-circle-2-solid" | "full-screen-osx" | "full-screen-osx-remix" | "full-screen-osx-solid" | "give-star" | "give-star-remix" | "give-star-solid" | "help-chat-1" | "help-chat-1-remix" | "help-chat-1-solid" | "hierarchy-1-remix" | "hierarchy-1-solid" | "hierarchy-16" | "hierarchy-16-remix" | "hierarchy-16-solid" | "hierarchy-line-3" | "hierarchy-line-3-remix" | "hierarchy-line-3-solid" | "home-2-remix" | "home-2-solid" | "horizontal-slider-2" | "horizontal-slider-2-remix" | "horizontal-slider-2-solid" | "horizontal-toggle-button" | "horizontal-toggle-button-remix" | "horizontal-toggle-button-solid" | "hourglass-remix" | "incorrect-password" | "incorrect-password-remix" | "incorrect-password-solid" | "increase-indent-remix" | "increase-indent-solid" | "insert-center-left-1" | "insert-center-left-1-remix" | "insert-center-left-1-solid" | "iris-scan-remix" | "iris-scan-solid" | "japanese-alphabet" | "japanese-alphabet-remix" | "japanese-alphabet-solid" | "key-frame" | "key-frame-remix" | "key-frame-solid" | "label-folder-tag" | "label-folder-tag-remix" | "label-folder-tag-solid" | "layout-right-sidebar" | "layout-right-sidebar-remix" | "layout-right-sidebar-solid" | "less-than-sign-circle" | "less-than-sign-circle-remix" | "less-than-sign-circle-solid" | "line-arrow-expand-remix" | "line-arrow-expand-window-2-remix" | "line-arrow-merge-vertical-remix" | "line-arrow-roadmap-remix" | "line-arrow-rotate-left-2-remix" | "line-arrow-rotate-right-circle-remix" | "magic-wand-1" | "magic-wand-1-remix" | "magic-wand-1-solid" | "maximize-2-remix" | "maximize-2-solid" | "megaphone-1-remix" | "megaphone-1-solid" | "merge-pdf" | "merge-pdf-remix" | "merge-pdf-solid" | "merge-vertical-solid" | "multiple-stars" | "multiple-stars-remix" | "multiple-stars-solid" | "new-badge-highlight" | "new-badge-highlight-remix" | "new-badge-highlight-solid" | "non-commercial-dollars" | "non-commercial-dollars-remix" | "non-commercial-dollars-solid" | "notepad-text-remix" | "notepad-text-solid" | "number-sign" | "number-sign-remix" | "number-sign-solid" | "padlock-square-2" | "padlock-square-2-remix" | "padlock-square-2-solid" | "panoramic-screen" | "panoramic-screen-remix" | "panoramic-screen-solid" | "pathfinder-minus-front-2" | "pathfinder-minus-front-2-remix" | "pathfinder-minus-front-2-solid" | "pdf-reader-application" | "pdf-reader-application-remix" | "pdf-reader-application-solid" | "pen-1" | "pen-1-remix" | "pen-1-solid" | "pencil-square-remix" | "pin-1" | "pin-1-remix" | "pin-1-solid" | "polygonal-lasso-tool" | "polygonal-lasso-tool-remix" | "polygonal-lasso-tool-solid" | "presentation-remix" | "projector-remix" | "projector-solid" | "rectangle-split-thirds" | "rectangle-split-thirds-remix" | "rectangle-split-thirds-solid" | "recycle-bin-3" | "recycle-bin-3-remix" | "recycle-bin-3-solid" | "recycle-bin-throw-1-remix" | "recycle-bin-throw-2" | "recycle-bin-throw-2-solid" | "rotate-left-solid" | "rotate-right-circle" | "rotate-right-circle-solid" | "round-anchor-point" | "round-anchor-point-remix" | "round-anchor-point-solid" | "scissors-remix" | "screenshot-remix" | "screenshot-solid" | "screwdriver-wrench-remix" | "screwdriver-wrench-solid" | "search-category" | "search-category-remix" | "search-category-solid" | "search-history-browser" | "search-history-browser-remix" | "search-history-browser-solid" | "show-layer" | "show-layer-remix" | "show-layer-solid" | "shuffle-line-arrow-remix" | "skull-2" | "skull-2-remix" | "skull-2-solid" | "small-caps" | "small-caps-remix" | "small-caps-solid" | "snooze-remix" | "snooze-solid" | "sound-recognition-search" | "sound-recognition-search-remix" | "sound-recognition-search-solid" | "star-circle-remix" | "star-circle-solid" | "stopwatch-remix" | "stopwatch-three-quarter" | "stopwatch-three-quarter-remix" | "stopwatch-three-quarter-solid" | "story-post" | "story-post-remix" | "story-post-solid" | "sun-remix" | "table-lamp-2" | "table-lamp-2-remix" | "table-lamp-2-solid" | "text-file" | "text-file-remix" | "text-file-solid" | "texture-remix" | "texture-solid" | "thread-post-tweet" | "thread-post-tweet-remix" | "thread-post-tweet-solid" | "timer-zero" | "timer-zero-remix" | "timer-zero-solid" | "track-select-right-tool" | "track-select-right-tool-remix" | "track-select-right-tool-solid" | "typewriter-remix" | "typewriter-solid" | "user-collaborate-group" | "user-collaborate-group-remix" | "user-collaborate-group-solid" | "user-feedback-heart" | "user-feedback-heart-remix" | "user-feedback-heart-solid" | "user-full-body" | "user-full-body-remix" | "user-full-body-solid" | "user-king-crown" | "user-king-crown-remix" | "user-king-crown-solid" | "user-queen-crown" | "user-queen-crown-remix" | "user-queen-crown-solid" | "video-close-captioning" | "video-close-captioning-remix" | "video-close-captioning-solid" | "voice-activation-check-validate" | "voice-activation-check-validate-remix" | "voice-activation-check-validate-solid" | "warning-diamond-remix" | "warning-diamond-solid" | "warranty-badge-highlight" | "warranty-badge-highlight-remix" | "warranty-badge-highlight-solid" | "wave-signal-circle" | "wave-signal-circle-remix" | "wave-signal-circle-solid" | "white-board-remix" | "white-board-solid" | "word-wrap-around-bounding-box" | "word-wrap-around-bounding-box-remix" | "word-wrap-around-bounding-box-solid" | "wrap-arc-upper" | "wrap-arc-upper-remix" | "wrap-arc-upper-solid" | "wrench-hand" | "wrench-hand-remix" | "wrench-hand-solid" | "zip-folder-remix" | "zip-folder-solid" | "zoom-in-remix" | "zoom-out-gesture" | "zoom-out-gesture-remix" | "zoom-out-gesture-solid" | "zoom-out-remix" | "chat-bubble-square-phone" | "chat-bubble-square-phone-remix" | "chat-bubble-square-phone-solid" | "inbox-open" | "inbox-open-remix" | "inbox-open-solid" | "inbox-remix" | "mail-reply-all-remix" | "mail-reply-all-solid" | "mail-send-email-message-circle" | "mail-send-email-message-circle-remix" | "mail-send-email-message-circle-solid" | "smiley-blessed" | "smiley-blessed-remix" | "smiley-blessed-solid" | "airship" | "airship-remix" | "airship-solid" | "bell-remix" | "campfire-remix" | "departure-time" | "departure-time-remix" | "departure-time-solid" | "elevator-remix" | "intersex-symbol" | "intersex-symbol-remix" | "intersex-symbol-solid" | "location-compass-2" | "location-compass-2-remix" | "location-compass-2-solid" | "location-heart-pin" | "location-heart-pin-remix" | "location-heart-pin-solid" | "location-pin-medical-hospital-2" | "location-pin-medical-hospital-2-remix" | "location-pin-medical-hospital-2-solid" | "location-target-2" | "location-target-2-remix" | "location-target-2-solid" | "map-location-remix" | "navigation-arrow-north" | "navigation-arrow-north-remix" | "navigation-arrow-north-solid" | "passport-globe" | "passport-globe-remix" | "passport-globe-solid" | "serving-dome-hand" | "serving-dome-hand-remix" | "serving-dome-hand-solid" | "signage-pedestrian-no-crossing" | "signage-pedestrian-no-crossing-remix" | "signage-pedestrian-no-crossing-solid" | "stairs-1" | "stairs-1-remix" | "stairs-1-solid" | "suitcase-rolling-remix" | "suitcase-rolling-solid" | "surveillance-camera-remix" | "surveillance-camera-solid" | "theater-mask" | "theater-mask-remix" | "theater-mask-solid" | "toilet-man-woman-1" | "toilet-man-woman-1-solid" | "toilet-sign-man" | "toilet-sign-man-remix" | "toilet-sign-man-solid" | "visual-blind-1" | "visual-blind-1-remix" | "visual-blind-1-solid" | "walker-remix" | "walker-solid" | "bag-suitcase-4" | "bag-suitcase-4-remix" | "bag-suitcase-4-solid" | "building-1" | "building-1-remix" | "building-1-solid" | "cashing-check" | "cashing-check-remix" | "cashing-check-solid" | "credit-card-4" | "credit-card-4-remix" | "credit-card-4-solid" | "credit-card-approved" | "credit-card-approved-remix" | "credit-card-approved-solid" | "credit-card-disable" | "credit-card-disable-remix" | "credit-card-disable-solid" | "critical-thinking-2" | "critical-thinking-2-remix" | "critical-thinking-2-solid" | "diamond-1" | "diamond-1-remix" | "diamond-1-solid" | "dollar-increase" | "dollar-increase-remix" | "dollar-increase-solid" | "graph-bar-increase-square" | "graph-bar-increase-square-remix" | "graph-bar-increase-square-solid" | "investing-and-banking" | "investing-and-banking-remix" | "investing-and-banking-solid" | "production-belt-time" | "production-belt-time-remix" | "production-belt-time-solid" | "search-arrow-increase" | "search-arrow-increase-remix" | "search-arrow-increase-solid" | "security-umbrella" | "security-umbrella-remix" | "security-umbrella-solid" | "shirt-remix" | "shopping-basket-add-remix" | "shopping-basket-add-solid" | "signage-1" | "signage-1-remix" | "signage-1-solid" | "sofa-remix" | "table-remix" | "target-dollar-remix" | "target-dollar-solid" | "treasure-chest-remix" | "treasure-chest-solid" | "cat-2-remix" | "cat-2-solid" | "dog-1-remix" | "dog-1-solid" | "pine-tree-remix" | "pine-tree-solid" | "recycle-bin-remix" | "recycle-bin-solid" | "rocket-remix" | "iphone-remix" | "iphone-solid" | "notification-alarm-snooze" | "notification-alarm-snooze-remix" | "notification-alarm-snooze-solid" | "phone-notification" | "phone-notification-remix" | "phone-notification-solid" | "phone-rotate-mobile" | "phone-rotate-mobile-remix" | "phone-rotate-mobile-solid" | "phone-shield" | "phone-shield-remix" | "phone-shield-solid" | "transfer-forwarding-call" | "transfer-forwarding-call-remix" | "transfer-forwarding-call-solid" | "browser-bookmark" | "browser-bookmark-remix" | "browser-bookmark-solid" | "browser-dashboard" | "browser-dashboard-remix" | "browser-dashboard-solid" | "cloud-download-remix" | "cloud-off-remix" | "module-puzzle-2" | "module-puzzle-2-remix" | "module-puzzle-2-solid" | "steps-2" | "steps-2-remix" | "steps-2-solid" | "threat-monitor" | "threat-monitor-remix" | "threat-monitor-solid" | "threat-phone" | "threat-phone-remix" | "threat-phone-solid" | "threat-usb" | "threat-usb-remix" | "threat-usb-solid" | "package-dimension" | "package-dimension-remix" | "package-dimension-solid" | "shipping-box-2-remix" | "shipping-box-2-solid" | "transfer-truck-time" | "transfer-truck-time-solid" | "group-meeting-approval" | "group-meeting-approval-remix" | "group-meeting-approval-solid" | "school-remix">): import("react").JSX.Element;
1511
+ ({ 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<"anchor" | "table" | "alien" | "binoculars" | "bookmark" | "brightness-1" | "brightness-4" | "campfire" | "crown" | "flash-off" | "inbox" | "keyboard" | "network" | "presentation" | "school" | "tag" | "target" | "texture" | "typewriter" | "usb-port" | "carrot" | "flower" | "pine-tree" | "arrow-expand" | "rotate-left" | "shuffle" | "volume-mute" | "battery-charging" | "thermometer" | "piggy-bank" | "receipt" | "wallet" | "apple" | "youtube" | "phone" | "bow-tie" | "iron" | "cloud" | "cloud-download" | "cloud-off" | "database" | "laptop" | "projector" | "scanner" | "chess-king" | "dice-5" | "heart" | "shield-cross" | "treasure-chest" | "balloon" | "party-popper" | "bell" | "lightbulb" | "printer" | "record-player" | "sofa" | "toaster" | "webcam" | "sigma" | "tooth" | "wheelchair" | "film" | "printer-wireless" | "dna" | "rocket" | "cog" | "cube" | "star-circle" | "trophy" | "drone" | "elevator" | "archive-box" | "archive-box-solid" | "bell-solid" | "bookmark-solid" | "cloud-solid" | "cog-solid" | "cube-solid" | "film-solid" | "heart-solid" | "inbox-solid" | "information-circle" | "information-circle-solid" | "magnifying-glass" | "magnifying-glass-solid" | "pencil-square" | "pencil-square-solid" | "phone-solid" | "printer-solid" | "qr-code" | "qr-code-solid" | "scissors" | "scissors-solid" | "sun" | "sun-solid" | "tag-solid" | "trophy-solid" | "wallet-solid" | "bluetooth-searching" | "cake-slice" | "graduation-cap" | "hourglass" | "maximize-2" | "notepad-text" | "pen-tool" | "satellite-dish" | "shirt" | "tickets" | "zoom-in" | "zoom-out" | "check-square" | "pie-chart" | "color-picker" | "filter-2" | "hierarchy-2" | "home-2" | "ice-cream-2" | "moustache" | "screenshot" | "stopwatch" | "windmill" | "bag" | "camera-video" | "fork-knife" | "tiktok" | "floppy-disk" | "map-location" | "screwdriver-wrench" | "suitcase-rolling" | "fragile" | "vpn-connection" | "warning-diamond" | "snooze" | "tinder" | "bluetooth-disabled" | "landscape-2" | "photo-camera" | "left-click" | "check-square-solid" | "presentation-solid" | "bell-notification" | "bell-notification-solid" | "network-solid" | "database-solid" | "text-square" | "text-square-solid" | "iris-scan" | "triangle-flag" | "graduation-cap-solid" | "tiktok-solid" | "youtube-solid" | "link-chain" | "gallery" | "apple-solid" | "cloud-download-solid" | "cloud-off-solid" | "bag-solid" | "zoom-in-solid" | "zoom-out-solid" | "shuffle-solid" | "map-location-solid" | "lightbulb-solid" | "ball" | "tag-alt" | "calculator-1" | "pie-chart-solid" | "piggy-bank-solid" | "color-picker-solid" | "hourglass-solid" | "target-solid" | "volume-mute-solid" | "crown-solid" | "happy-face-solid" | "dna-solid" | "keyboard-solid" | "new-file" | "new-folder" | "iphone" | "increase-indent" | "lock-rotation" | "speaker-1" | "mail-reply-all" | "cocktail" | "contact-book" | "receipt-solid" | "school-solid" | "carrot-solid" | "floppy-disk-solid" | "rocket-solid" | "incoming-call-solid" | "missed-call-solid" | "incoming-call" | "zip-folder" | "arrow-move" | "shopping-basket-add" | "camping-tent" | "charging" | "merge-vertical" | "walker" | "wheelchair-1" | "smoking-area" | "surveillance-camera" | "cursor-click" | "align-selection" | "camera-tripod" | "fahrenheit" | "file-bookmark" | "target-dollar" | "dribble" | "align-text-top" | "text-style" | "heart-rate" | "recycle-bin" | "eject-square" | "camera-1" | "hierarchy-1" | "layers-1" | "megaphone-1" | "paperclip-1" | "shield-2" | "dashboard-3" | "city-hall" | "shipping-box-2" | "white-board" | "anchor-solid" | "battery-charging-solid" | "binoculars-solid" | "campfire-solid" | "cocktail-solid" | "elevator-solid" | "flower-solid" | "sofa-solid" | "table-solid" | "thermometer-solid" | "webcam-solid" | "wheelchair-solid" | "cloud-warning" | "film-slate" | "missed-call" | "paintbrush-2" | "script-2" | "countdown-timer" | "laptop-solid" | "shirt-solid" | "tea-cup" | "stopwatch-solid" | "ai-generate-portrait-image-spark" | "ai-generate-portrait-image-spark-remix" | "ai-generate-portrait-image-spark-solid" | "battery-charging-remix" | "battery-medium-1" | "battery-medium-1-remix" | "battery-medium-1-solid" | "bluetooth-disabled-remix" | "bluetooth-disabled-solid" | "bluetooth-searching-remix" | "bluetooth-searching-solid" | "computer-chip-1" | "computer-chip-1-remix" | "computer-chip-1-solid" | "controller-wireless" | "controller-wireless-remix" | "controller-wireless-solid" | "cursor-click-remix" | "cursor-click-solid" | "cyborg-2" | "cyborg-2-solid" | "cyborg-remix" | "database-remix" | "drone-remix" | "drone-solid" | "electric-cord-1" | "electric-cord-1-remix" | "electric-cord-1-solid" | "facebook-1" | "facebook-1-solid" | "floppy-disk-remix" | "hand-held-tablet-writing" | "hand-held-tablet-writing-remix" | "hand-held-tablet-writing-solid" | "hard-drive-1" | "hard-drive-1-remix" | "hard-drive-1-solid" | "keyboard-remix" | "network-remix" | "printer-remix" | "screen-curve" | "screen-curve-remix" | "screen-curve-solid" | "tinder-solid" | "voice-mail" | "voice-mail-remix" | "voice-mail-solid" | "vpn-connection-remix" | "vpn-connection-solid" | "watch-2" | "watch-2-remix" | "watch-2-solid" | "watch-circle-charging" | "watch-circle-charging-remix" | "watch-circle-charging-solid" | "watch-circle-heartbeat-monitor-1" | "watch-circle-heartbeat-monitor-1-remix" | "watch-circle-heartbeat-monitor-1-solid" | "webcam-remix" | "webcam-video-off" | "webcam-video-off-remix" | "webcam-video-off-solid" | "wifi-antenna" | "wifi-antenna-remix" | "wifi-antenna-solid" | "news-paper" | "news-paper-remix" | "news-paper-solid" | "politics-speech" | "politics-speech-remix" | "politics-speech-solid" | "politics-vote-2" | "politics-vote-2-remix" | "politics-vote-2-solid" | "tickets-solid" | "balloon-remix" | "balloon-solid" | "button-power-1" | "button-power-1-remix" | "button-power-1-solid" | "camera-video-remix" | "camera-video-solid" | "chess-king-remix" | "chess-king-solid" | "dice-5-remix" | "dice-5-solid" | "earpods" | "earpods-remix" | "earpods-solid" | "esports" | "esports-remix" | "esports-solid" | "music-equalizer" | "music-equalizer-solid" | "party-popper-remix" | "party-popper-solid" | "play-list-4" | "play-list-4-remix" | "play-list-4-solid" | "recording-tape-bubble-circle" | "recording-tape-bubble-circle-remix" | "recording-tape-bubble-circle-solid" | "speaker-1-remix" | "speaker-1-solid" | "tape-cassette-record" | "tape-cassette-record-remix" | "tape-cassette-record-solid" | "volume-level-high" | "volume-level-high-remix" | "volume-level-high-solid" | "volume-mute-remix" | "cake-slice-remix" | "cake-slice-solid" | "champagne-party-alcohol" | "champagne-party-alcohol-remix" | "champagne-party-alcohol-solid" | "cocktail-remix" | "fork-knife-remix" | "fork-knife-solid" | "ice-cream-2-remix" | "ice-cream-2-solid" | "tea-cup-remix" | "tea-cup-solid" | "blood-donate-drop" | "blood-donate-drop-remix" | "blood-donate-drop-solid" | "call-center-support-service" | "call-center-support-service-remix" | "call-center-support-service-solid" | "checkup-medical-report-clipboard" | "checkup-medical-report-clipboard-remix" | "checkup-medical-report-clipboard-solid" | "health-care-2" | "health-care-2-remix" | "health-care-2-solid" | "insurance-hand-1-remix" | "microscope-observation-sciene" | "microscope-observation-sciene-remix" | "microscope-observation-sciene-solid" | "nurse-assistant-emergency" | "nurse-assistant-emergency-remix" | "nurse-assistant-emergency-solid" | "online-medical-service-monitor" | "online-medical-service-monitor-remix" | "online-medical-service-monitor-solid" | "prescription-pills-drugs-healthcare" | "prescription-pills-drugs-healthcare-remix" | "prescription-pills-drugs-healthcare-solid" | "sos-help-emergency-sign" | "sos-help-emergency-sign-remix" | "sos-help-emergency-sign-solid" | "tablet-capsule" | "tablet-capsule-remix" | "tablet-capsule-solid" | "tooth-remix" | "tooth-solid" | "virus-antivirus" | "virus-antivirus-remix" | "virus-antivirus-solid" | "wheelchair-remix" | "camera-1-remix" | "camera-1-solid" | "compsition-horizontal" | "compsition-horizontal-remix" | "compsition-horizontal-solid" | "film-slate-remix" | "film-slate-solid" | "flash-3" | "flash-3-remix" | "flash-3-solid" | "flash-off-remix" | "flash-off-solid" | "landscape-2-remix" | "landscape-2-solid" | "polaroid-four" | "polaroid-four-remix" | "polaroid-four-solid" | "align-back-1" | "align-back-1-remix" | "align-back-1-solid" | "archive-box-remix" | "arrow-cursor-2" | "arrow-cursor-2-remix" | "arrow-cursor-2-solid" | "arrow-expand-solid" | "arrow-move-solid" | "arrow-roadmap" | "arrow-roadmap-solid" | "blank-calendar" | "blank-calendar-remix" | "blank-calendar-solid" | "brightness-1-remix" | "brightness-1-solid" | "check-square-remix" | "cloud-remix" | "color-picker-remix" | "color-swatches" | "color-swatches-remix" | "color-swatches-solid" | "crown-remix" | "dark-dislay-mode" | "dark-dislay-mode-remix" | "dark-dislay-mode-solid" | "dashboard-3-remix" | "dashboard-3-solid" | "disable-bell-notification" | "disable-bell-notification-remix" | "disable-bell-notification-solid" | "download-box-1" | "download-box-1-remix" | "download-box-1-solid" | "empty-clipboard" | "empty-clipboard-remix" | "empty-clipboard-solid" | "face-scan-1" | "face-scan-1-remix" | "face-scan-1-solid" | "fahrenheit-remix" | "fahrenheit-solid" | "filter-2-remix" | "filter-2-solid" | "fingerprint-1" | "fingerprint-1-remix" | "fingerprint-1-solid" | "heart-remix" | "hierarchy-13" | "hierarchy-13-remix" | "hierarchy-13-solid" | "hierarchy-2-remix" | "hierarchy-2-solid" | "humidity-none" | "humidity-none-remix" | "humidity-none-solid" | "information-circle-remix" | "input-box" | "input-box-remix" | "input-box-solid" | "invisible-1" | "invisible-1-remix" | "invisible-1-solid" | "layers-1-remix" | "layers-1-solid" | "layout-window-1" | "layout-window-1-remix" | "layout-window-1-solid" | "lightbulb-remix" | "like-1" | "like-1-remix" | "like-1-solid" | "line-arrow-move-remix" | "link-chain-remix" | "link-chain-solid" | "lock-rotation-remix" | "lock-rotation-solid" | "login-1" | "login-1-remix" | "login-1-solid" | "logout-1" | "logout-1-remix" | "logout-1-solid" | "magic-wand-2" | "magic-wand-2-remix" | "magic-wand-2-solid" | "magnifying-glass-remix" | "new-file-remix" | "new-file-solid" | "new-folder-remix" | "new-folder-solid" | "new-sticky-note" | "new-sticky-note-remix" | "new-sticky-note-solid" | "one-finger-tap" | "one-finger-tap-remix" | "one-finger-tap-solid" | "open-umbrella" | "open-umbrella-remix" | "open-umbrella-solid" | "padlock-square-1" | "padlock-square-1-remix" | "padlock-square-1-solid" | "page-setting" | "page-setting-remix" | "page-setting-solid" | "paintbrush-2-remix" | "paintbrush-2-solid" | "paperclip-1-remix" | "paperclip-1-solid" | "pen-tool-remix" | "pen-tool-solid" | "pictures-folder-memories" | "pictures-folder-memories-remix" | "pictures-folder-memories-solid" | "projector-board" | "projector-board-remix" | "projector-board-solid" | "satellite-dish-remix" | "satellite-dish-solid" | "scanner-remix" | "scanner-solid" | "share-link" | "share-link-remix" | "share-link-solid" | "shield-1" | "shield-1-remix" | "shield-1-solid" | "shield-2-remix" | "shield-2-solid" | "shield-cross-remix" | "shield-cross-solid" | "sigma-remix" | "sigma-solid" | "spiral-shape" | "spiral-shape-remix" | "spiral-shape-solid" | "star-badge" | "star-badge-remix" | "star-badge-solid" | "tag-remix" | "text-square-remix" | "text-style-remix" | "text-style-solid" | "thermometer-remix" | "trending-content" | "trending-content-remix" | "trending-content-solid" | "trophy-remix" | "upload-box-1" | "upload-box-1-remix" | "upload-box-1-solid" | "user-circle-single" | "user-circle-single-remix" | "user-circle-single-solid" | "user-identifier-card" | "user-identifier-card-remix" | "user-identifier-card-solid" | "user-sync-online-in-person" | "user-sync-online-in-person-remix" | "user-sync-online-in-person-solid" | "voice-scan-2" | "voice-scan-2-remix" | "voice-scan-2-solid" | "chat-bubble-text-square" | "chat-bubble-text-square-remix" | "chat-bubble-text-square-solid" | "chat-bubble-typing-oval" | "chat-bubble-typing-oval-remix" | "chat-bubble-typing-oval-solid" | "discussion-converstion-reply" | "discussion-converstion-reply-remix" | "discussion-converstion-reply-solid" | "happy-face" | "happy-face-remix" | "inbox-favorite" | "inbox-favorite-remix" | "inbox-favorite-solid" | "inbox-tray-1" | "inbox-tray-1-remix" | "inbox-tray-1-solid" | "mail-send-envelope" | "mail-send-envelope-remix" | "mail-send-envelope-solid" | "sign-at" | "sign-at-remix" | "sign-at-solid" | "airport-plane" | "airport-plane-remix" | "airport-plane-solid" | "anchor-remix" | "baggage" | "baggage-remix" | "baggage-solid" | "bicycle-bike" | "bicycle-bike-remix" | "bicycle-bike-solid" | "camping-tent-remix" | "camping-tent-solid" | "car-taxi-1" | "car-taxi-1-remix" | "car-taxi-1-solid" | "city-hall-remix" | "city-hall-solid" | "earth-1" | "earth-1-remix" | "earth-1-solid" | "fire-alarm-2" | "fire-alarm-2-remix" | "fire-alarm-2-solid" | "gas-station-fuel-petroleum" | "gas-station-fuel-petroleum-remix" | "gas-station-fuel-petroleum-solid" | "high-speed-train-front" | "high-speed-train-front-remix" | "high-speed-train-front-solid" | "iron-remix" | "iron-solid" | "location-compass-1" | "location-compass-1-remix" | "location-compass-1-solid" | "location-pin-3" | "location-pin-3-remix" | "location-pin-3-solid" | "pet-paw" | "pet-paw-remix" | "pet-paw-solid" | "school-bus-side" | "school-bus-side-remix" | "school-bus-side-solid" | "smoking-area-remix" | "smoking-area-solid" | "street-road" | "street-road-remix" | "street-road-solid" | "street-sign" | "street-sign-remix" | "street-sign-solid" | "toilet-man" | "toilet-man-remix" | "toilet-man-solid" | "toilet-man-woman-1-remix" | "triangle-flag-remix" | "triangle-flag-solid" | "wheelchair-1-remix" | "wheelchair-1-solid" | "bag-remix" | "ball-remix" | "ball-solid" | "bill-4" | "bill-4-remix" | "bill-4-solid" | "bow-tie-remix" | "bow-tie-solid" | "calculator-1-remix" | "calculator-1-solid" | "coin-share" | "coin-share-remix" | "coin-share-solid" | "discount-percent-coupon" | "discount-percent-coupon-remix" | "discount-percent-coupon-solid" | "gift-2" | "gift-2-remix" | "gift-2-solid" | "graph-dot" | "graph-dot-remix" | "graph-dot-solid" | "justice-scale-1" | "justice-scale-1-remix" | "justice-scale-1-solid" | "moustache-remix" | "moustache-solid" | "pie-chart-remix" | "piggy-bank-remix" | "qr-code-remix" | "receipt-remix" | "safe-vault" | "safe-vault-remix" | "safe-vault-solid" | "scanner-bar-code" | "scanner-bar-code-remix" | "scanner-bar-code-solid" | "shopping-bag-hand-bag-2" | "shopping-bag-hand-bag-2-remix" | "shopping-bag-hand-bag-2-solid" | "shopping-basket-2" | "shopping-basket-2-remix" | "shopping-basket-2-solid" | "shopping-cart-2" | "shopping-cart-2-remix" | "shopping-cart-2-solid" | "store-1" | "store-1-solid" | "store-2-remix" | "subscription-cashflow" | "subscription-cashflow-remix" | "subscription-cashflow-solid" | "tag-alt-remix" | "tag-alt-solid" | "tall-hat" | "tall-hat-remix" | "tall-hat-solid" | "target-remix" | "wallet-remix" | "alien-remix" | "alien-solid" | "decent-work-and-economic-growth" | "decent-work-and-economic-growth-remix" | "decent-work-and-economic-growth-solid" | "dna-remix" | "erlenmeyer-flask" | "erlenmeyer-flask-remix" | "erlenmeyer-flask-solid" | "flower-remix" | "galaxy-2" | "galaxy-2-remix" | "galaxy-2-solid" | "recycle-1" | "recycle-1-remix" | "recycle-1-solid" | "reduced-inequalities" | "reduced-inequalities-remix" | "reduced-inequalities-solid" | "tidal-wave" | "tidal-wave-remix" | "tidal-wave-solid" | "windmill-remix" | "windmill-solid" | "airplane-disabled" | "airplane-disabled-remix" | "airplane-disabled-solid" | "cellular-network-lte" | "cellular-network-lte-remix" | "cellular-network-lte-solid" | "contact-phonebook-2" | "contact-phonebook-2-remix" | "contact-phonebook-2-solid" | "incoming-call-remix" | "missed-call-remix" | "notification-application-1" | "notification-application-1-remix" | "notification-application-1-solid" | "phone-qr" | "phone-qr-remix" | "phone-qr-solid" | "phone-remix" | "phone-ringing-1" | "phone-ringing-1-remix" | "phone-ringing-1-solid" | "signal-full" | "signal-full-remix" | "signal-full-solid" | "application-add" | "application-add-remix" | "application-add-solid" | "browser-multiple-window" | "browser-multiple-window-remix" | "browser-multiple-window-solid" | "bug-antivirus-shield" | "bug-antivirus-shield-remix" | "bug-antivirus-shield-solid" | "cloud-data-transfer" | "cloud-data-transfer-remix" | "cloud-data-transfer-solid" | "cloud-warning-remix" | "cloud-warning-solid" | "code-analysis" | "code-analysis-remix" | "code-analysis-solid" | "code-monitor-1" | "code-monitor-1-remix" | "code-monitor-1-solid" | "file-code-1" | "file-code-1-remix" | "file-code-1-solid" | "incognito-mode" | "incognito-mode-remix" | "incognito-mode-solid" | "screen-broadcast" | "screen-broadcast-remix" | "screen-broadcast-solid" | "script-2-remix" | "script-2-solid" | "fragile-remix" | "fragile-solid" | "transfer-truck-time-remix" | "warehouse-1" | "warehouse-1-remix" | "warehouse-1-solid" | "book-reading" | "book-reading-remix" | "book-reading-solid" | "definition-search-book" | "definition-search-book-remix" | "definition-search-book-solid" | "dictionary-language-book" | "dictionary-language-book-remix" | "dictionary-language-book-solid" | "graduation-cap-remix" | "office-building-1" | "office-building-1-remix" | "office-building-1-solid" | "workspace-desk" | "workspace-desk-remix" | "workspace-desk-solid" | "cat-2" | "dog-1" | "ai-chip-robot" | "ai-chip-robot-remix" | "ai-chip-robot-solid" | "ai-scanner-robot" | "ai-scanner-robot-remix" | "ai-scanner-robot-solid" | "artificial-intelligence-brain-chip" | "artificial-intelligence-brain-chip-remix" | "artificial-intelligence-brain-chip-solid" | "deepfake-technology-1" | "deepfake-technology-1-remix" | "deepfake-technology-1-solid" | "apple-logo-remix" | "charging-remix" | "charging-solid" | "controller-stick" | "controller-stick-remix" | "controller-stick-solid" | "desktop-lock" | "desktop-lock-remix" | "desktop-lock-solid" | "dribble-logo-remix" | "dribble-solid" | "eject-square-remix" | "eject-square-solid" | "facebook-logo-1-remix" | "ios-ipados" | "ios-ipados-remix" | "ios-ipados-solid" | "keyboard-option-setting-gear" | "keyboard-option-setting-gear-remix" | "keyboard-option-setting-gear-solid" | "laptop-remix" | "left-click-remix" | "left-click-solid" | "monitor-error" | "monitor-error-remix" | "monitor-error-solid" | "photo-camera-remix" | "photo-camera-solid" | "printer-wireless-remix" | "printer-wireless-solid" | "return-square-2" | "return-square-2-remix" | "return-square-2-solid" | "router-wifi-network" | "router-wifi-network-remix" | "router-wifi-network-solid" | "tiktok-logo-remix" | "tinder-logo-remix" | "usb-port-remix" | "usb-port-solid" | "watch-square-menu" | "watch-square-menu-remix" | "watch-square-menu-solid" | "wifi-secure-connection" | "wifi-secure-connection-remix" | "wifi-secure-connection-solid" | "wireless-fast-charging" | "wireless-fast-charging-remix" | "wireless-fast-charging-solid" | "youtube-logo-remix" | "tickets-remix" | "add-to-playlist" | "add-to-playlist-remix" | "add-to-playlist-solid" | "artist-song" | "artist-song-remix" | "artist-song-solid" | "button-move-circle" | "button-move-circle-remix" | "button-move-circle-solid" | "button-pause-circle" | "button-pause-circle-remix" | "button-pause-circle-solid" | "button-record-1" | "button-record-1-remix" | "button-record-1-solid" | "gambling" | "gambling-remix" | "gambling-solid" | "music-equalizer-remix" | "music-note-circle" | "music-note-circle-remix" | "music-note-circle-solid" | "play-list-6" | "play-list-6-remix" | "play-list-6-solid" | "record-player-remix" | "record-player-solid" | "repeat-single" | "repeat-single-remix" | "repeat-single-solid" | "tune-adjust-volume" | "tune-adjust-volume-remix" | "tune-adjust-volume-solid" | "watchtower-castle" | "watchtower-castle-remix" | "watchtower-castle-solid" | "allergens-fish" | "allergens-fish-remix" | "allergens-fish-solid" | "carrot-remix" | "chef-toque-hat" | "chef-toque-hat-remix" | "chef-toque-hat-solid" | "fried-egg-breakfast" | "fried-egg-breakfast-remix" | "fried-egg-breakfast-solid" | "salad-vegetable-diet" | "salad-vegetable-diet-remix" | "salad-vegetable-diet-solid" | "soft-drink-can" | "soft-drink-can-remix" | "soft-drink-can-solid" | "toaster-remix" | "toaster-solid" | "ear-speciality" | "ear-speciality-remix" | "ear-speciality-solid" | "heart-cross" | "heart-cross-remix" | "heart-cross-solid" | "heart-rate-remix" | "heart-rate-solid" | "hospital-sign" | "hospital-sign-remix" | "hospital-sign-solid" | "insurance-hand-1" | "insurance-hand-1-solid" | "camera-setting-gear" | "camera-setting-gear-remix" | "camera-setting-gear-solid" | "camera-tripod-remix" | "camera-tripod-solid" | "film-remix" | "flash-warning" | "flash-warning-remix" | "flash-warning-solid" | "focus-frame" | "focus-frame-remix" | "focus-frame-solid" | "gallery-remix" | "gallery-solid" | "image-location" | "image-location-remix" | "image-location-solid" | "landscape-lock" | "landscape-lock-remix" | "landscape-lock-solid" | "portrait-lock" | "portrait-lock-remix" | "portrait-lock-solid" | "time-lapse" | "time-lapse-remix" | "time-lapse-solid" | "_3d-coordinate-axis" | "_3d-coordinate-axis-remix" | "_3d-coordinate-axis-solid" | "_3d-rotate-1" | "_3d-rotate-1-remix" | "_3d-rotate-1-solid" | "_3d-rotate-y-axis" | "_3d-rotate-y-axis-remix" | "_3d-rotate-y-axis-solid" | "align-selection-remix" | "align-selection-solid" | "align-text-top-remix" | "align-text-top-solid" | "align-top-1" | "align-top-1-remix" | "align-top-1-solid" | "arrow-cursor-click-2" | "arrow-cursor-click-2-remix" | "arrow-cursor-click-2-solid" | "arrow-cursor-move" | "arrow-cursor-move-remix" | "arrow-cursor-move-solid" | "auto-correction-check" | "auto-correction-check-remix" | "auto-correction-check-solid" | "bell-notification-remix" | "binoculars-remix" | "block-2" | "block-2-remix" | "block-2-solid" | "bookmark-remix" | "brightness-4-remix" | "brightness-4-solid" | "broken-link-1" | "broken-link-1-remix" | "broken-link-1-solid" | "calendar-mark" | "calendar-mark-remix" | "calendar-mark-solid" | "clean-broom-wipe" | "clean-broom-wipe-remix" | "clean-broom-wipe-solid" | "cog-remix" | "contact-book-remix" | "contact-book-solid" | "copy-2" | "copy-2-remix" | "copy-2-solid" | "countdown-timer-remix" | "countdown-timer-solid" | "cube-remix" | "curves-levels-graph" | "curves-levels-graph-remix" | "curves-levels-graph-solid" | "customer-support-5" | "customer-support-5-remix" | "customer-support-5-solid" | "customer-support-7" | "customer-support-7-remix" | "customer-support-7-solid" | "dashboard-gauge-1" | "dashboard-gauge-1-remix" | "dashboard-gauge-1-solid" | "delete-tag" | "delete-tag-remix" | "delete-tag-solid" | "desktop-screensaver-sleep" | "desktop-screensaver-sleep-remix" | "desktop-screensaver-sleep-solid" | "dial-pad-finger-2" | "dial-pad-finger-2-remix" | "dial-pad-finger-2-solid" | "dislike-circle" | "dislike-circle-remix" | "dislike-circle-solid" | "download-arrow" | "download-arrow-remix" | "download-arrow-solid" | "download-tray" | "download-tray-remix" | "download-tray-solid" | "end-point-diamond" | "end-point-diamond-remix" | "end-point-diamond-solid" | "expand-crop-resize" | "expand-crop-resize-remix" | "expand-crop-resize-solid" | "expand-window-1" | "expand-window-1-solid" | "feather-pen" | "feather-pen-remix" | "feather-pen-solid" | "file-bookmark-remix" | "file-bookmark-solid" | "finger-snapping" | "finger-snapping-remix" | "finger-snapping-solid" | "flip-horizontal-arrow-1" | "flip-horizontal-arrow-1-remix" | "flip-horizontal-arrow-1-solid" | "flip-horizontal-circle-2" | "flip-horizontal-circle-2-remix" | "flip-horizontal-circle-2-solid" | "full-screen-osx" | "full-screen-osx-remix" | "full-screen-osx-solid" | "give-star" | "give-star-remix" | "give-star-solid" | "help-chat-1" | "help-chat-1-remix" | "help-chat-1-solid" | "hierarchy-1-remix" | "hierarchy-1-solid" | "hierarchy-16" | "hierarchy-16-remix" | "hierarchy-16-solid" | "hierarchy-line-3" | "hierarchy-line-3-remix" | "hierarchy-line-3-solid" | "home-2-remix" | "home-2-solid" | "horizontal-slider-2" | "horizontal-slider-2-remix" | "horizontal-slider-2-solid" | "horizontal-toggle-button" | "horizontal-toggle-button-remix" | "horizontal-toggle-button-solid" | "hourglass-remix" | "incorrect-password" | "incorrect-password-remix" | "incorrect-password-solid" | "increase-indent-remix" | "increase-indent-solid" | "insert-center-left-1" | "insert-center-left-1-remix" | "insert-center-left-1-solid" | "iris-scan-remix" | "iris-scan-solid" | "japanese-alphabet" | "japanese-alphabet-remix" | "japanese-alphabet-solid" | "key-frame" | "key-frame-remix" | "key-frame-solid" | "label-folder-tag" | "label-folder-tag-remix" | "label-folder-tag-solid" | "layout-right-sidebar" | "layout-right-sidebar-remix" | "layout-right-sidebar-solid" | "less-than-sign-circle" | "less-than-sign-circle-remix" | "less-than-sign-circle-solid" | "line-arrow-expand-remix" | "line-arrow-expand-window-2-remix" | "line-arrow-merge-vertical-remix" | "line-arrow-roadmap-remix" | "line-arrow-rotate-left-2-remix" | "line-arrow-rotate-right-circle-remix" | "magic-wand-1" | "magic-wand-1-remix" | "magic-wand-1-solid" | "maximize-2-remix" | "maximize-2-solid" | "megaphone-1-remix" | "megaphone-1-solid" | "merge-pdf" | "merge-pdf-remix" | "merge-pdf-solid" | "merge-vertical-solid" | "multiple-stars" | "multiple-stars-remix" | "multiple-stars-solid" | "new-badge-highlight" | "new-badge-highlight-remix" | "new-badge-highlight-solid" | "non-commercial-dollars" | "non-commercial-dollars-remix" | "non-commercial-dollars-solid" | "notepad-text-remix" | "notepad-text-solid" | "number-sign" | "number-sign-remix" | "number-sign-solid" | "padlock-square-2" | "padlock-square-2-remix" | "padlock-square-2-solid" | "panoramic-screen" | "panoramic-screen-remix" | "panoramic-screen-solid" | "pathfinder-minus-front-2" | "pathfinder-minus-front-2-remix" | "pathfinder-minus-front-2-solid" | "pdf-reader-application" | "pdf-reader-application-remix" | "pdf-reader-application-solid" | "pen-1" | "pen-1-remix" | "pen-1-solid" | "pencil-square-remix" | "pin-1" | "pin-1-remix" | "pin-1-solid" | "polygonal-lasso-tool" | "polygonal-lasso-tool-remix" | "polygonal-lasso-tool-solid" | "presentation-remix" | "projector-remix" | "projector-solid" | "rectangle-split-thirds" | "rectangle-split-thirds-remix" | "rectangle-split-thirds-solid" | "recycle-bin-3" | "recycle-bin-3-remix" | "recycle-bin-3-solid" | "recycle-bin-throw-1-remix" | "recycle-bin-throw-2" | "recycle-bin-throw-2-solid" | "rotate-left-solid" | "rotate-right-circle" | "rotate-right-circle-solid" | "round-anchor-point" | "round-anchor-point-remix" | "round-anchor-point-solid" | "scissors-remix" | "screenshot-remix" | "screenshot-solid" | "screwdriver-wrench-remix" | "screwdriver-wrench-solid" | "search-category" | "search-category-remix" | "search-category-solid" | "search-history-browser" | "search-history-browser-remix" | "search-history-browser-solid" | "show-layer" | "show-layer-remix" | "show-layer-solid" | "shuffle-line-arrow-remix" | "skull-2" | "skull-2-remix" | "skull-2-solid" | "small-caps" | "small-caps-remix" | "small-caps-solid" | "snooze-remix" | "snooze-solid" | "sound-recognition-search" | "sound-recognition-search-remix" | "sound-recognition-search-solid" | "star-circle-remix" | "star-circle-solid" | "stopwatch-remix" | "stopwatch-three-quarter" | "stopwatch-three-quarter-remix" | "stopwatch-three-quarter-solid" | "story-post" | "story-post-remix" | "story-post-solid" | "sun-remix" | "table-lamp-2" | "table-lamp-2-remix" | "table-lamp-2-solid" | "text-file" | "text-file-remix" | "text-file-solid" | "texture-remix" | "texture-solid" | "thread-post-tweet" | "thread-post-tweet-remix" | "thread-post-tweet-solid" | "timer-zero" | "timer-zero-remix" | "timer-zero-solid" | "track-select-right-tool" | "track-select-right-tool-remix" | "track-select-right-tool-solid" | "typewriter-remix" | "typewriter-solid" | "user-collaborate-group" | "user-collaborate-group-remix" | "user-collaborate-group-solid" | "user-feedback-heart" | "user-feedback-heart-remix" | "user-feedback-heart-solid" | "user-full-body" | "user-full-body-remix" | "user-full-body-solid" | "user-king-crown" | "user-king-crown-remix" | "user-king-crown-solid" | "user-queen-crown" | "user-queen-crown-remix" | "user-queen-crown-solid" | "video-close-captioning" | "video-close-captioning-remix" | "video-close-captioning-solid" | "voice-activation-check-validate" | "voice-activation-check-validate-remix" | "voice-activation-check-validate-solid" | "warning-diamond-remix" | "warning-diamond-solid" | "warranty-badge-highlight" | "warranty-badge-highlight-remix" | "warranty-badge-highlight-solid" | "wave-signal-circle" | "wave-signal-circle-remix" | "wave-signal-circle-solid" | "white-board-remix" | "white-board-solid" | "word-wrap-around-bounding-box" | "word-wrap-around-bounding-box-remix" | "word-wrap-around-bounding-box-solid" | "wrap-arc-upper" | "wrap-arc-upper-remix" | "wrap-arc-upper-solid" | "wrench-hand" | "wrench-hand-remix" | "wrench-hand-solid" | "zip-folder-remix" | "zip-folder-solid" | "zoom-in-remix" | "zoom-out-gesture" | "zoom-out-gesture-remix" | "zoom-out-gesture-solid" | "zoom-out-remix" | "chat-bubble-square-phone" | "chat-bubble-square-phone-remix" | "chat-bubble-square-phone-solid" | "inbox-open" | "inbox-open-remix" | "inbox-open-solid" | "inbox-remix" | "mail-reply-all-remix" | "mail-reply-all-solid" | "mail-send-email-message-circle" | "mail-send-email-message-circle-remix" | "mail-send-email-message-circle-solid" | "smiley-blessed" | "smiley-blessed-remix" | "smiley-blessed-solid" | "airship" | "airship-remix" | "airship-solid" | "bell-remix" | "campfire-remix" | "departure-time" | "departure-time-remix" | "departure-time-solid" | "elevator-remix" | "intersex-symbol" | "intersex-symbol-remix" | "intersex-symbol-solid" | "location-compass-2" | "location-compass-2-remix" | "location-compass-2-solid" | "location-heart-pin" | "location-heart-pin-remix" | "location-heart-pin-solid" | "location-pin-medical-hospital-2" | "location-pin-medical-hospital-2-remix" | "location-pin-medical-hospital-2-solid" | "location-target-2" | "location-target-2-remix" | "location-target-2-solid" | "map-location-remix" | "navigation-arrow-north" | "navigation-arrow-north-remix" | "navigation-arrow-north-solid" | "passport-globe" | "passport-globe-remix" | "passport-globe-solid" | "serving-dome-hand" | "serving-dome-hand-remix" | "serving-dome-hand-solid" | "signage-pedestrian-no-crossing" | "signage-pedestrian-no-crossing-remix" | "signage-pedestrian-no-crossing-solid" | "stairs-1" | "stairs-1-remix" | "stairs-1-solid" | "suitcase-rolling-remix" | "suitcase-rolling-solid" | "surveillance-camera-remix" | "surveillance-camera-solid" | "theater-mask" | "theater-mask-remix" | "theater-mask-solid" | "toilet-man-woman-1" | "toilet-man-woman-1-solid" | "toilet-sign-man" | "toilet-sign-man-remix" | "toilet-sign-man-solid" | "visual-blind-1" | "visual-blind-1-remix" | "visual-blind-1-solid" | "walker-remix" | "walker-solid" | "bag-suitcase-4" | "bag-suitcase-4-remix" | "bag-suitcase-4-solid" | "building-1" | "building-1-remix" | "building-1-solid" | "cashing-check" | "cashing-check-remix" | "cashing-check-solid" | "credit-card-4" | "credit-card-4-remix" | "credit-card-4-solid" | "credit-card-approved" | "credit-card-approved-remix" | "credit-card-approved-solid" | "credit-card-disable" | "credit-card-disable-remix" | "credit-card-disable-solid" | "critical-thinking-2" | "critical-thinking-2-remix" | "critical-thinking-2-solid" | "diamond-1" | "diamond-1-remix" | "diamond-1-solid" | "dollar-increase" | "dollar-increase-remix" | "dollar-increase-solid" | "graph-bar-increase-square" | "graph-bar-increase-square-remix" | "graph-bar-increase-square-solid" | "investing-and-banking" | "investing-and-banking-remix" | "investing-and-banking-solid" | "production-belt-time" | "production-belt-time-remix" | "production-belt-time-solid" | "search-arrow-increase" | "search-arrow-increase-remix" | "search-arrow-increase-solid" | "security-umbrella" | "security-umbrella-remix" | "security-umbrella-solid" | "shirt-remix" | "shopping-basket-add-remix" | "shopping-basket-add-solid" | "signage-1" | "signage-1-remix" | "signage-1-solid" | "sofa-remix" | "table-remix" | "target-dollar-remix" | "target-dollar-solid" | "treasure-chest-remix" | "treasure-chest-solid" | "cat-2-remix" | "cat-2-solid" | "dog-1-remix" | "dog-1-solid" | "pine-tree-remix" | "pine-tree-solid" | "recycle-bin-remix" | "recycle-bin-solid" | "rocket-remix" | "iphone-remix" | "iphone-solid" | "notification-alarm-snooze" | "notification-alarm-snooze-remix" | "notification-alarm-snooze-solid" | "phone-notification" | "phone-notification-remix" | "phone-notification-solid" | "phone-rotate-mobile" | "phone-rotate-mobile-remix" | "phone-rotate-mobile-solid" | "phone-shield" | "phone-shield-remix" | "phone-shield-solid" | "transfer-forwarding-call" | "transfer-forwarding-call-remix" | "transfer-forwarding-call-solid" | "browser-bookmark" | "browser-bookmark-remix" | "browser-bookmark-solid" | "browser-dashboard" | "browser-dashboard-remix" | "browser-dashboard-solid" | "cloud-download-remix" | "cloud-off-remix" | "module-puzzle-2" | "module-puzzle-2-remix" | "module-puzzle-2-solid" | "steps-2" | "steps-2-remix" | "steps-2-solid" | "threat-monitor" | "threat-monitor-remix" | "threat-monitor-solid" | "threat-phone" | "threat-phone-remix" | "threat-phone-solid" | "threat-usb" | "threat-usb-remix" | "threat-usb-solid" | "package-dimension" | "package-dimension-remix" | "package-dimension-solid" | "shipping-box-2-remix" | "shipping-box-2-solid" | "transfer-truck-time" | "transfer-truck-time-solid" | "group-meeting-approval" | "group-meeting-approval-remix" | "group-meeting-approval-solid" | "school-remix">): import("react").JSX.Element;
1512
1512
  displayName: string;
1513
1513
  };
1514
1514
  export {};
@@ -1008,7 +1008,7 @@ declare const streamline_flex_colorIconNames: {
1008
1008
  };
1009
1009
  export type StreamlineFlexColorIconName = keyof typeof streamline_flex_colorIconNames;
1010
1010
  export declare const StreamlineFlexColor: {
1011
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"anchor" | "table" | "alien" | "binoculars" | "bookmark" | "brightness-1" | "brightness-4" | "campfire" | "crown" | "flash-off" | "inbox" | "keyboard" | "network" | "presentation" | "school" | "tag" | "target" | "texture" | "typewriter" | "usb-port" | "carrot" | "flower" | "pine-tree" | "arrow-expand" | "rotate-left" | "shuffle" | "volume-mute" | "battery-charging" | "thermometer" | "piggy-bank" | "receipt" | "wallet" | "apple" | "youtube" | "phone" | "bow-tie" | "iron" | "cloud" | "cloud-download" | "cloud-off" | "database" | "laptop" | "projector" | "scanner" | "chess-king" | "dice-5" | "heart" | "shield-cross" | "treasure-chest" | "balloon" | "party-popper" | "bell" | "lightbulb" | "printer" | "record-player" | "sofa" | "toaster" | "webcam" | "sigma" | "tooth" | "wheelchair" | "film" | "printer-wireless" | "dna" | "rocket" | "cog" | "cube" | "star-circle" | "trophy" | "drone" | "elevator" | "archive-box" | "information-circle" | "magnifying-glass" | "pencil-square" | "qr-code" | "scissors" | "sun" | "bluetooth-searching" | "cake-slice" | "graduation-cap" | "hourglass" | "maximize-2" | "notepad-text" | "pen-tool" | "satellite-dish" | "shirt" | "tickets" | "zoom-in" | "zoom-out" | "check-square" | "pie-chart" | "color-picker" | "filter-2" | "hierarchy-2" | "home-2" | "ice-cream-2" | "moustache" | "screenshot" | "stopwatch" | "windmill" | "bag" | "camera-video" | "fork-knife" | "tiktok" | "floppy-disk" | "map-location" | "screwdriver-wrench" | "suitcase-rolling" | "fragile" | "vpn-connection" | "warning-diamond" | "snooze" | "tinder" | "bluetooth-disabled" | "landscape-2" | "photo-camera" | "left-click" | "bell-notification" | "text-square" | "iris-scan" | "triangle-flag" | "link-chain" | "gallery" | "ball" | "tag-alt" | "calculator-1" | "new-file" | "new-folder" | "iphone" | "increase-indent" | "lock-rotation" | "speaker-1" | "mail-reply-all" | "cocktail" | "contact-book" | "incoming-call" | "zip-folder" | "arrow-move" | "shopping-basket-add" | "camping-tent" | "charging" | "merge-vertical" | "walker" | "wheelchair-1" | "smoking-area" | "surveillance-camera" | "cursor-click" | "align-selection" | "camera-tripod" | "fahrenheit" | "file-bookmark" | "target-dollar" | "dribble" | "align-text-top" | "text-style" | "heart-rate" | "recycle-bin" | "eject-square" | "camera-1" | "hierarchy-1" | "layers-1" | "megaphone-1" | "paperclip-1" | "shield-2" | "dashboard-3" | "city-hall" | "shipping-box-2" | "white-board" | "cloud-warning" | "film-slate" | "missed-call" | "paintbrush-2" | "script-2" | "countdown-timer" | "tea-cup" | "ai-generate-portrait-image-spark" | "battery-medium-1" | "computer-chip-1" | "controller-wireless" | "cyborg-2" | "electric-cord-1" | "facebook-1" | "hand-held-tablet-writing" | "hard-drive-1" | "screen-curve" | "voice-mail" | "watch-2" | "watch-circle-charging" | "watch-circle-heartbeat-monitor-1" | "webcam-video-off" | "wifi-antenna" | "news-paper" | "politics-speech" | "politics-vote-2" | "button-power-1" | "earpods" | "esports" | "music-equalizer" | "play-list-4" | "recording-tape-bubble-circle" | "tape-cassette-record" | "volume-level-high" | "champagne-party-alcohol" | "blood-donate-drop" | "call-center-support-service" | "checkup-medical-report-clipboard" | "health-care-2" | "microscope-observation-sciene" | "nurse-assistant-emergency" | "online-medical-service-monitor" | "prescription-pills-drugs-healthcare" | "sos-help-emergency-sign" | "tablet-capsule" | "virus-antivirus" | "compsition-horizontal" | "flash-3" | "polaroid-four" | "align-back-1" | "arrow-cursor-2" | "arrow-roadmap" | "blank-calendar" | "color-swatches" | "dark-dislay-mode" | "disable-bell-notification" | "download-box-1" | "empty-clipboard" | "face-scan-1" | "fingerprint-1" | "hierarchy-13" | "humidity-none" | "input-box" | "invisible-1" | "layout-window-1" | "like-1" | "login-1" | "logout-1" | "magic-wand-2" | "new-sticky-note" | "one-finger-tap" | "open-umbrella" | "padlock-square-1" | "page-setting" | "pictures-folder-memories" | "projector-board" | "share-link" | "shield-1" | "spiral-shape" | "star-badge" | "trending-content" | "upload-box-1" | "user-circle-single" | "user-identifier-card" | "user-sync-online-in-person" | "voice-scan-2" | "chat-bubble-text-square" | "chat-bubble-typing-oval" | "discussion-converstion-reply" | "happy-face" | "inbox-favorite" | "inbox-tray-1" | "mail-send-envelope" | "sign-at" | "airport-plane" | "baggage" | "bicycle-bike" | "car-taxi-1" | "earth-1" | "fire-alarm-2" | "gas-station-fuel-petroleum" | "high-speed-train-front" | "location-compass-1" | "location-pin-3" | "pet-paw" | "school-bus-side" | "street-road" | "street-sign" | "toilet-man" | "bill-4" | "coin-share" | "discount-percent-coupon" | "gift-2" | "graph-dot" | "justice-scale-1" | "safe-vault" | "scanner-bar-code" | "shopping-bag-hand-bag-2" | "shopping-basket-2" | "shopping-cart-2" | "store-1" | "subscription-cashflow" | "tall-hat" | "decent-work-and-economic-growth" | "erlenmeyer-flask" | "galaxy-2" | "recycle-1" | "reduced-inequalities" | "tidal-wave" | "airplane-disabled" | "cellular-network-lte" | "contact-phonebook-2" | "notification-application-1" | "phone-qr" | "phone-ringing-1" | "signal-full" | "application-add" | "browser-multiple-window" | "bug-antivirus-shield" | "cloud-data-transfer" | "code-analysis" | "code-monitor-1" | "file-code-1" | "incognito-mode" | "screen-broadcast" | "warehouse-1" | "book-reading" | "definition-search-book" | "dictionary-language-book" | "office-building-1" | "workspace-desk" | "ai-generate-portrait-image-spark-flat" | "apple-flat" | "battery-charging-flat" | "battery-medium-1-flat" | "bluetooth-disabled-flat" | "bluetooth-searching-flat" | "computer-chip-1-flat" | "controller-wireless-flat" | "cursor-click-flat" | "cyborg-2-flat" | "database-flat" | "drone-flat" | "electric-cord-1-flat" | "facebook-1-flat" | "floppy-disk-flat" | "hand-held-tablet-writing-flat" | "hard-drive-1-flat" | "keyboard-flat" | "network-flat" | "printer-flat" | "screen-curve-flat" | "tiktok-flat" | "tinder-flat" | "voice-mail-flat" | "vpn-connection-flat" | "watch-2-flat" | "watch-circle-charging-flat" | "watch-circle-heartbeat-monitor-1-flat" | "webcam-flat" | "webcam-video-off-flat" | "wifi-antenna-flat" | "news-paper-flat" | "politics-speech-flat" | "politics-vote-2-flat" | "tickets-flat" | "balloon-flat" | "button-power-1-flat" | "camera-video-flat" | "chess-king-flat" | "dice-5-flat" | "earpods-flat" | "esports-flat" | "music-equalizer-flat" | "party-popper-flat" | "play-list-4-flat" | "recording-tape-bubble-circle-flat" | "speaker-1-flat" | "tape-cassette-record-flat" | "volume-level-high-flat" | "volume-mute-flat" | "cake-slice-flat" | "champagne-party-alcohol-flat" | "cocktail-flat" | "fork-knife-flat" | "ice-cream-2-flat" | "tea-cup-flat" | "blood-donate-drop-flat" | "call-center-support-service-flat" | "checkup-medical-report-clipboard-flat" | "health-care-2-flat" | "microscope-observation-sciene-flat" | "nurse-assistant-emergency-flat" | "online-medical-service-monitor-flat" | "prescription-pills-drugs-healthcare-flat" | "sos-help-emergency-sign-flat" | "tablet-capsule-flat" | "tooth-flat" | "virus-antivirus-flat" | "wheelchair-flat" | "camera-1-flat" | "compsition-horizontal-flat" | "film-slate-flat" | "flash-3-flat" | "flash-off-flat" | "landscape-2-flat" | "polaroid-four-flat" | "align-back-1-flat" | "archive-box-flat" | "arrow-cursor-2-flat" | "arrow-expand-flat" | "arrow-move-flat" | "arrow-roadmap-flat" | "blank-calendar-flat" | "bookmark-flat" | "brightness-1-flat" | "check-square-flat" | "cloud-flat" | "cog-flat" | "color-picker-flat" | "color-swatches-flat" | "crown-flat" | "dark-dislay-mode-flat" | "dashboard-3-flat" | "disable-bell-notification-flat" | "download-box-1-flat" | "empty-clipboard-flat" | "face-scan-1-flat" | "fahrenheit-flat" | "filter-2-flat" | "fingerprint-1-flat" | "heart-flat" | "hierarchy-13-flat" | "hierarchy-2-flat" | "humidity-none-flat" | "information-circle-flat" | "input-box-flat" | "invisible-1-flat" | "layers-1-flat" | "layout-window-1-flat" | "lightbulb-flat" | "like-1-flat" | "link-chain-flat" | "lock-rotation-flat" | "login-1-flat" | "logout-1-flat" | "magic-wand-2-flat" | "magnifying-glass-flat" | "new-file-flat" | "new-folder-flat" | "new-sticky-note-flat" | "one-finger-tap-flat" | "open-umbrella-flat" | "padlock-square-1-flat" | "page-setting-flat" | "paintbrush-2-flat" | "paperclip-1-flat" | "pen-tool-flat" | "pictures-folder-memories-flat" | "projector-board-flat" | "satellite-dish-flat" | "scanner-flat" | "share-link-flat" | "shield-1-flat" | "shield-2-flat" | "shield-cross-flat" | "shuffle-flat" | "sigma-flat" | "spiral-shape-flat" | "star-badge-flat" | "tag-flat" | "text-square-flat" | "text-style-flat" | "thermometer-flat" | "trending-content-flat" | "trophy-flat" | "upload-box-1-flat" | "user-circle-single-flat" | "user-identifier-card-flat" | "user-sync-online-in-person-flat" | "voice-scan-2-flat" | "chat-bubble-text-square-flat" | "chat-bubble-typing-oval-flat" | "discussion-converstion-reply-flat" | "happy-face-flat" | "inbox-favorite-flat" | "inbox-tray-1-flat" | "mail-send-envelope-flat" | "sign-at-flat" | "airport-plane-flat" | "anchor-flat" | "baggage-flat" | "bicycle-bike-flat" | "camping-tent-flat" | "car-taxi-1-flat" | "city-hall-flat" | "earth-1-flat" | "fire-alarm-2-flat" | "gas-station-fuel-petroleum-flat" | "high-speed-train-front-flat" | "iron-flat" | "location-compass-1-flat" | "location-pin-3-flat" | "pet-paw-flat" | "school-bus-side-flat" | "smoking-area-flat" | "street-road-flat" | "street-sign-flat" | "toilet-man-flat" | "triangle-flag-flat" | "wheelchair-1-flat" | "bag-flat" | "ball-flat" | "bill-4-flat" | "bow-tie-flat" | "calculator-1-flat" | "coin-share-flat" | "discount-percent-coupon-flat" | "gift-2-flat" | "graph-dot-flat" | "justice-scale-1-flat" | "moustache-flat" | "pie-chart-flat" | "piggy-bank-flat" | "qr-code-flat" | "receipt-flat" | "safe-vault-flat" | "scanner-bar-code-flat" | "shopping-bag-hand-bag-2-flat" | "shopping-basket-2-flat" | "shopping-cart-2-flat" | "store-1-flat" | "subscription-cashflow-flat" | "tag-alt-flat" | "tall-hat-flat" | "target-flat" | "wallet-flat" | "alien-flat" | "decent-work-and-economic-growth-flat" | "dna-flat" | "erlenmeyer-flask-flat" | "flower-flat" | "galaxy-2-flat" | "recycle-1-flat" | "reduced-inequalities-flat" | "tidal-wave-flat" | "windmill-flat" | "airplane-disabled-flat" | "cellular-network-lte-flat" | "contact-phonebook-2-flat" | "incoming-call-flat" | "missed-call-flat" | "notification-application-1-flat" | "phone-flat" | "phone-qr-flat" | "phone-ringing-1-flat" | "signal-full-flat" | "application-add-flat" | "browser-multiple-window-flat" | "bug-antivirus-shield-flat" | "cloud-data-transfer-flat" | "cloud-warning-flat" | "code-analysis-flat" | "code-monitor-1-flat" | "file-code-1-flat" | "incognito-mode-flat" | "screen-broadcast-flat" | "script-2-flat" | "fragile-flat" | "warehouse-1-flat" | "book-reading-flat" | "definition-search-book-flat" | "dictionary-language-book-flat" | "graduation-cap-flat" | "office-building-1-flat" | "workspace-desk-flat" | "cat-2" | "dog-1" | "ai-chip-robot" | "ai-scanner-robot" | "artificial-intelligence-brain-chip" | "deepfake-technology-1" | "controller-stick" | "desktop-lock" | "ios-ipados" | "keyboard-option-setting-gear" | "monitor-error" | "return-square-2" | "router-wifi-network" | "watch-square-menu" | "wifi-secure-connection" | "wireless-fast-charging" | "add-to-playlist" | "artist-song" | "button-move-circle" | "button-pause-circle" | "button-record-1" | "gambling" | "music-note-circle" | "play-list-6" | "repeat-single" | "tune-adjust-volume" | "watchtower-castle" | "allergens-fish" | "chef-toque-hat" | "fried-egg-breakfast" | "salad-vegetable-diet" | "soft-drink-can" | "ear-speciality" | "heart-cross" | "hospital-sign" | "insurance-hand-1" | "camera-setting-gear" | "flash-warning" | "focus-frame" | "image-location" | "landscape-lock" | "portrait-lock" | "time-lapse" | "_3d-coordinate-axis" | "_3d-rotate-1" | "_3d-rotate-y-axis" | "align-top-1" | "arrow-cursor-click-2" | "arrow-cursor-move" | "auto-correction-check" | "block-2" | "broken-link-1" | "calendar-mark" | "clean-broom-wipe" | "copy-2" | "curves-levels-graph" | "customer-support-5" | "customer-support-7" | "dashboard-gauge-1" | "delete-tag" | "desktop-screensaver-sleep" | "dial-pad-finger-2" | "dislike-circle" | "download-arrow" | "download-tray" | "end-point-diamond" | "expand-crop-resize" | "expand-window-1" | "feather-pen" | "finger-snapping" | "flip-horizontal-arrow-1" | "flip-horizontal-circle-2" | "full-screen-osx" | "give-star" | "help-chat-1" | "hierarchy-16" | "hierarchy-line-3" | "horizontal-slider-2" | "horizontal-toggle-button" | "incorrect-password" | "insert-center-left-1" | "japanese-alphabet" | "key-frame" | "label-folder-tag" | "layout-right-sidebar" | "less-than-sign-circle" | "magic-wand-1" | "merge-pdf" | "multiple-stars" | "new-badge-highlight" | "non-commercial-dollars" | "number-sign" | "padlock-square-2" | "panoramic-screen" | "pathfinder-minus-front-2" | "pdf-reader-application" | "pen-1" | "pin-1" | "polygonal-lasso-tool" | "rectangle-split-thirds" | "recycle-bin-3" | "recycle-bin-throw-2" | "rotate-right-circle" | "round-anchor-point" | "search-category" | "search-history-browser" | "show-layer" | "skull-2" | "small-caps" | "sound-recognition-search" | "stopwatch-three-quarter" | "story-post" | "table-lamp-2" | "text-file" | "thread-post-tweet" | "timer-zero" | "track-select-right-tool" | "user-collaborate-group" | "user-feedback-heart" | "user-full-body" | "user-king-crown" | "user-queen-crown" | "video-close-captioning" | "voice-activation-check-validate" | "warranty-badge-highlight" | "wave-signal-circle" | "word-wrap-around-bounding-box" | "wrap-arc-upper" | "wrench-hand" | "zoom-out-gesture" | "chat-bubble-square-phone" | "inbox-open" | "mail-send-email-message-circle" | "smiley-blessed" | "airship" | "departure-time" | "intersex-symbol" | "location-compass-2" | "location-heart-pin" | "location-pin-medical-hospital-2" | "location-target-2" | "navigation-arrow-north" | "passport-globe" | "serving-dome-hand" | "signage-pedestrian-no-crossing" | "stairs-1" | "theater-mask" | "toilet-man-woman-1" | "toilet-sign-man" | "visual-blind-1" | "bag-suitcase-4" | "building-1" | "cashing-check" | "credit-card-4" | "credit-card-approved" | "credit-card-disable" | "critical-thinking-2" | "diamond-1" | "dollar-increase" | "graph-bar-increase-square" | "investing-and-banking" | "production-belt-time" | "search-arrow-increase" | "security-umbrella" | "signage-1" | "notification-alarm-snooze" | "phone-notification" | "phone-rotate-mobile" | "phone-shield" | "transfer-forwarding-call" | "browser-bookmark" | "browser-dashboard" | "module-puzzle-2" | "steps-2" | "threat-monitor" | "threat-phone" | "threat-usb" | "package-dimension" | "transfer-truck-time" | "group-meeting-approval" | "ai-chip-robot-flat" | "ai-scanner-robot-flat" | "artificial-intelligence-brain-chip-flat" | "deepfake-technology-1-flat" | "charging-flat" | "controller-stick-flat" | "desktop-lock-flat" | "dribble-flat" | "eject-square-flat" | "ios-ipados-flat" | "keyboard-option-setting-gear-flat" | "laptop-flat" | "left-click-flat" | "monitor-error-flat" | "photo-camera-flat" | "printer-wireless-flat" | "return-square-2-flat" | "router-wifi-network-flat" | "usb-port-flat" | "watch-square-menu-flat" | "wifi-secure-connection-flat" | "wireless-fast-charging-flat" | "youtube-flat" | "add-to-playlist-flat" | "artist-song-flat" | "button-move-circle-flat" | "button-pause-circle-flat" | "button-record-1-flat" | "gambling-flat" | "music-note-circle-flat" | "play-list-6-flat" | "record-player-flat" | "repeat-single-flat" | "tune-adjust-volume-flat" | "watchtower-castle-flat" | "allergens-fish-flat" | "carrot-flat" | "chef-toque-hat-flat" | "fried-egg-breakfast-flat" | "salad-vegetable-diet-flat" | "soft-drink-can-flat" | "toaster-flat" | "ear-speciality-flat" | "heart-cross-flat" | "heart-rate-flat" | "hospital-sign-flat" | "insurance-hand-1-flat" | "camera-setting-gear-flat" | "camera-tripod-flat" | "film-flat" | "flash-warning-flat" | "focus-frame-flat" | "gallery-flat" | "image-location-flat" | "landscape-lock-flat" | "portrait-lock-flat" | "time-lapse-flat" | "_3d-coordinate-axis-flat" | "_3d-rotate-1-flat" | "_3d-rotate-y-axis-flat" | "align-selection-flat" | "align-text-top-flat" | "align-top-1-flat" | "arrow-cursor-click-2-flat" | "arrow-cursor-move-flat" | "auto-correction-check-flat" | "bell-notification-flat" | "binoculars-flat" | "block-2-flat" | "brightness-4-flat" | "broken-link-1-flat" | "calendar-mark-flat" | "clean-broom-wipe-flat" | "contact-book-flat" | "copy-2-flat" | "countdown-timer-flat" | "cube-flat" | "curves-levels-graph-flat" | "customer-support-5-flat" | "customer-support-7-flat" | "dashboard-gauge-1-flat" | "delete-tag-flat" | "desktop-screensaver-sleep-flat" | "dial-pad-finger-2-flat" | "dislike-circle-flat" | "download-arrow-flat" | "download-tray-flat" | "end-point-diamond-flat" | "expand-crop-resize-flat" | "expand-window-1-flat" | "feather-pen-flat" | "file-bookmark-flat" | "finger-snapping-flat" | "flip-horizontal-arrow-1-flat" | "flip-horizontal-circle-2-flat" | "full-screen-osx-flat" | "give-star-flat" | "help-chat-1-flat" | "hierarchy-1-flat" | "hierarchy-16-flat" | "hierarchy-line-3-flat" | "home-2-flat" | "horizontal-slider-2-flat" | "horizontal-toggle-button-flat" | "hourglass-flat" | "incorrect-password-flat" | "increase-indent-flat" | "insert-center-left-1-flat" | "iris-scan-flat" | "japanese-alphabet-flat" | "key-frame-flat" | "label-folder-tag-flat" | "layout-right-sidebar-flat" | "less-than-sign-circle-flat" | "magic-wand-1-flat" | "maximize-2-flat" | "megaphone-1-flat" | "merge-pdf-flat" | "merge-vertical-flat" | "multiple-stars-flat" | "new-badge-highlight-flat" | "non-commercial-dollars-flat" | "notepad-text-flat" | "number-sign-flat" | "padlock-square-2-flat" | "panoramic-screen-flat" | "pathfinder-minus-front-2-flat" | "pdf-reader-application-flat" | "pen-1-flat" | "pencil-square-flat" | "pin-1-flat" | "polygonal-lasso-tool-flat" | "presentation-flat" | "projector-flat" | "rectangle-split-thirds-flat" | "recycle-bin-3-flat" | "recycle-bin-throw-2-flat" | "rotate-left-flat" | "rotate-right-circle-flat" | "round-anchor-point-flat" | "scissors-flat" | "screenshot-flat" | "screwdriver-wrench-flat" | "search-category-flat" | "search-history-browser-flat" | "show-layer-flat" | "skull-2-flat" | "small-caps-flat" | "snooze-flat" | "sound-recognition-search-flat" | "star-circle-flat" | "stopwatch-flat" | "stopwatch-three-quarter-flat" | "story-post-flat" | "sun-flat" | "table-lamp-2-flat" | "text-file-flat" | "texture-flat" | "thread-post-tweet-flat" | "timer-zero-flat" | "track-select-right-tool-flat" | "typewriter-flat" | "user-collaborate-group-flat" | "user-feedback-heart-flat" | "user-full-body-flat" | "user-king-crown-flat" | "user-queen-crown-flat" | "video-close-captioning-flat" | "voice-activation-check-validate-flat" | "warning-diamond-flat" | "warranty-badge-highlight-flat" | "wave-signal-circle-flat" | "white-board-flat" | "word-wrap-around-bounding-box-flat" | "wrap-arc-upper-flat" | "wrench-hand-flat" | "zip-folder-flat" | "zoom-in-flat" | "zoom-out-flat" | "zoom-out-gesture-flat" | "chat-bubble-square-phone-flat" | "inbox-flat" | "inbox-open-flat" | "mail-reply-all-flat" | "mail-send-email-message-circle-flat" | "smiley-blessed-flat" | "airship-flat" | "bell-flat" | "campfire-flat" | "departure-time-flat" | "elevator-flat" | "intersex-symbol-flat" | "location-compass-2-flat" | "location-heart-pin-flat" | "location-pin-medical-hospital-2-flat" | "location-target-2-flat" | "map-location-flat" | "navigation-arrow-north-flat" | "passport-globe-flat" | "serving-dome-hand-flat" | "signage-pedestrian-no-crossing-flat" | "stairs-1-flat" | "suitcase-rolling-flat" | "surveillance-camera-flat" | "theater-mask-flat" | "toilet-man-woman-1-flat" | "toilet-sign-man-flat" | "visual-blind-1-flat" | "walker-flat" | "bag-suitcase-4-flat" | "building-1-flat" | "cashing-check-flat" | "credit-card-4-flat" | "credit-card-approved-flat" | "credit-card-disable-flat" | "critical-thinking-2-flat" | "diamond-1-flat" | "dollar-increase-flat" | "graph-bar-increase-square-flat" | "investing-and-banking-flat" | "production-belt-time-flat" | "search-arrow-increase-flat" | "security-umbrella-flat" | "shirt-flat" | "shopping-basket-add-flat" | "signage-1-flat" | "sofa-flat" | "table-flat" | "target-dollar-flat" | "treasure-chest-flat" | "cat-2-flat" | "dog-1-flat" | "pine-tree-flat" | "recycle-bin-flat" | "rocket-flat" | "iphone-flat" | "notification-alarm-snooze-flat" | "phone-notification-flat" | "phone-rotate-mobile-flat" | "phone-shield-flat" | "transfer-forwarding-call-flat" | "browser-bookmark-flat" | "browser-dashboard-flat" | "cloud-download-flat" | "cloud-off-flat" | "module-puzzle-2-flat" | "steps-2-flat" | "threat-monitor-flat" | "threat-phone-flat" | "threat-usb-flat" | "package-dimension-flat" | "shipping-box-2-flat" | "transfer-truck-time-flat" | "group-meeting-approval-flat" | "school-flat">): import("react").JSX.Element;
1011
+ ({ 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<"anchor" | "table" | "alien" | "binoculars" | "bookmark" | "brightness-1" | "brightness-4" | "campfire" | "crown" | "flash-off" | "inbox" | "keyboard" | "network" | "presentation" | "school" | "tag" | "target" | "texture" | "typewriter" | "usb-port" | "carrot" | "flower" | "pine-tree" | "arrow-expand" | "rotate-left" | "shuffle" | "volume-mute" | "battery-charging" | "thermometer" | "piggy-bank" | "receipt" | "wallet" | "apple" | "youtube" | "phone" | "bow-tie" | "iron" | "cloud" | "cloud-download" | "cloud-off" | "database" | "laptop" | "projector" | "scanner" | "chess-king" | "dice-5" | "heart" | "shield-cross" | "treasure-chest" | "balloon" | "party-popper" | "bell" | "lightbulb" | "printer" | "record-player" | "sofa" | "toaster" | "webcam" | "sigma" | "tooth" | "wheelchair" | "film" | "printer-wireless" | "dna" | "rocket" | "cog" | "cube" | "star-circle" | "trophy" | "drone" | "elevator" | "archive-box" | "information-circle" | "magnifying-glass" | "pencil-square" | "qr-code" | "scissors" | "sun" | "bluetooth-searching" | "cake-slice" | "graduation-cap" | "hourglass" | "maximize-2" | "notepad-text" | "pen-tool" | "satellite-dish" | "shirt" | "tickets" | "zoom-in" | "zoom-out" | "check-square" | "pie-chart" | "color-picker" | "filter-2" | "hierarchy-2" | "home-2" | "ice-cream-2" | "moustache" | "screenshot" | "stopwatch" | "windmill" | "bag" | "camera-video" | "fork-knife" | "tiktok" | "floppy-disk" | "map-location" | "screwdriver-wrench" | "suitcase-rolling" | "fragile" | "vpn-connection" | "warning-diamond" | "snooze" | "tinder" | "bluetooth-disabled" | "landscape-2" | "photo-camera" | "left-click" | "bell-notification" | "text-square" | "iris-scan" | "triangle-flag" | "link-chain" | "gallery" | "ball" | "tag-alt" | "calculator-1" | "new-file" | "new-folder" | "iphone" | "increase-indent" | "lock-rotation" | "speaker-1" | "mail-reply-all" | "cocktail" | "contact-book" | "incoming-call" | "zip-folder" | "arrow-move" | "shopping-basket-add" | "camping-tent" | "charging" | "merge-vertical" | "walker" | "wheelchair-1" | "smoking-area" | "surveillance-camera" | "cursor-click" | "align-selection" | "camera-tripod" | "fahrenheit" | "file-bookmark" | "target-dollar" | "dribble" | "align-text-top" | "text-style" | "heart-rate" | "recycle-bin" | "eject-square" | "camera-1" | "hierarchy-1" | "layers-1" | "megaphone-1" | "paperclip-1" | "shield-2" | "dashboard-3" | "city-hall" | "shipping-box-2" | "white-board" | "cloud-warning" | "film-slate" | "missed-call" | "paintbrush-2" | "script-2" | "countdown-timer" | "tea-cup" | "ai-generate-portrait-image-spark" | "battery-medium-1" | "computer-chip-1" | "controller-wireless" | "cyborg-2" | "electric-cord-1" | "facebook-1" | "hand-held-tablet-writing" | "hard-drive-1" | "screen-curve" | "voice-mail" | "watch-2" | "watch-circle-charging" | "watch-circle-heartbeat-monitor-1" | "webcam-video-off" | "wifi-antenna" | "news-paper" | "politics-speech" | "politics-vote-2" | "button-power-1" | "earpods" | "esports" | "music-equalizer" | "play-list-4" | "recording-tape-bubble-circle" | "tape-cassette-record" | "volume-level-high" | "champagne-party-alcohol" | "blood-donate-drop" | "call-center-support-service" | "checkup-medical-report-clipboard" | "health-care-2" | "microscope-observation-sciene" | "nurse-assistant-emergency" | "online-medical-service-monitor" | "prescription-pills-drugs-healthcare" | "sos-help-emergency-sign" | "tablet-capsule" | "virus-antivirus" | "compsition-horizontal" | "flash-3" | "polaroid-four" | "align-back-1" | "arrow-cursor-2" | "arrow-roadmap" | "blank-calendar" | "color-swatches" | "dark-dislay-mode" | "disable-bell-notification" | "download-box-1" | "empty-clipboard" | "face-scan-1" | "fingerprint-1" | "hierarchy-13" | "humidity-none" | "input-box" | "invisible-1" | "layout-window-1" | "like-1" | "login-1" | "logout-1" | "magic-wand-2" | "new-sticky-note" | "one-finger-tap" | "open-umbrella" | "padlock-square-1" | "page-setting" | "pictures-folder-memories" | "projector-board" | "share-link" | "shield-1" | "spiral-shape" | "star-badge" | "trending-content" | "upload-box-1" | "user-circle-single" | "user-identifier-card" | "user-sync-online-in-person" | "voice-scan-2" | "chat-bubble-text-square" | "chat-bubble-typing-oval" | "discussion-converstion-reply" | "happy-face" | "inbox-favorite" | "inbox-tray-1" | "mail-send-envelope" | "sign-at" | "airport-plane" | "baggage" | "bicycle-bike" | "car-taxi-1" | "earth-1" | "fire-alarm-2" | "gas-station-fuel-petroleum" | "high-speed-train-front" | "location-compass-1" | "location-pin-3" | "pet-paw" | "school-bus-side" | "street-road" | "street-sign" | "toilet-man" | "bill-4" | "coin-share" | "discount-percent-coupon" | "gift-2" | "graph-dot" | "justice-scale-1" | "safe-vault" | "scanner-bar-code" | "shopping-bag-hand-bag-2" | "shopping-basket-2" | "shopping-cart-2" | "store-1" | "subscription-cashflow" | "tall-hat" | "decent-work-and-economic-growth" | "erlenmeyer-flask" | "galaxy-2" | "recycle-1" | "reduced-inequalities" | "tidal-wave" | "airplane-disabled" | "cellular-network-lte" | "contact-phonebook-2" | "notification-application-1" | "phone-qr" | "phone-ringing-1" | "signal-full" | "application-add" | "browser-multiple-window" | "bug-antivirus-shield" | "cloud-data-transfer" | "code-analysis" | "code-monitor-1" | "file-code-1" | "incognito-mode" | "screen-broadcast" | "warehouse-1" | "book-reading" | "definition-search-book" | "dictionary-language-book" | "office-building-1" | "workspace-desk" | "ai-generate-portrait-image-spark-flat" | "apple-flat" | "battery-charging-flat" | "battery-medium-1-flat" | "bluetooth-disabled-flat" | "bluetooth-searching-flat" | "computer-chip-1-flat" | "controller-wireless-flat" | "cursor-click-flat" | "cyborg-2-flat" | "database-flat" | "drone-flat" | "electric-cord-1-flat" | "facebook-1-flat" | "floppy-disk-flat" | "hand-held-tablet-writing-flat" | "hard-drive-1-flat" | "keyboard-flat" | "network-flat" | "printer-flat" | "screen-curve-flat" | "tiktok-flat" | "tinder-flat" | "voice-mail-flat" | "vpn-connection-flat" | "watch-2-flat" | "watch-circle-charging-flat" | "watch-circle-heartbeat-monitor-1-flat" | "webcam-flat" | "webcam-video-off-flat" | "wifi-antenna-flat" | "news-paper-flat" | "politics-speech-flat" | "politics-vote-2-flat" | "tickets-flat" | "balloon-flat" | "button-power-1-flat" | "camera-video-flat" | "chess-king-flat" | "dice-5-flat" | "earpods-flat" | "esports-flat" | "music-equalizer-flat" | "party-popper-flat" | "play-list-4-flat" | "recording-tape-bubble-circle-flat" | "speaker-1-flat" | "tape-cassette-record-flat" | "volume-level-high-flat" | "volume-mute-flat" | "cake-slice-flat" | "champagne-party-alcohol-flat" | "cocktail-flat" | "fork-knife-flat" | "ice-cream-2-flat" | "tea-cup-flat" | "blood-donate-drop-flat" | "call-center-support-service-flat" | "checkup-medical-report-clipboard-flat" | "health-care-2-flat" | "microscope-observation-sciene-flat" | "nurse-assistant-emergency-flat" | "online-medical-service-monitor-flat" | "prescription-pills-drugs-healthcare-flat" | "sos-help-emergency-sign-flat" | "tablet-capsule-flat" | "tooth-flat" | "virus-antivirus-flat" | "wheelchair-flat" | "camera-1-flat" | "compsition-horizontal-flat" | "film-slate-flat" | "flash-3-flat" | "flash-off-flat" | "landscape-2-flat" | "polaroid-four-flat" | "align-back-1-flat" | "archive-box-flat" | "arrow-cursor-2-flat" | "arrow-expand-flat" | "arrow-move-flat" | "arrow-roadmap-flat" | "blank-calendar-flat" | "bookmark-flat" | "brightness-1-flat" | "check-square-flat" | "cloud-flat" | "cog-flat" | "color-picker-flat" | "color-swatches-flat" | "crown-flat" | "dark-dislay-mode-flat" | "dashboard-3-flat" | "disable-bell-notification-flat" | "download-box-1-flat" | "empty-clipboard-flat" | "face-scan-1-flat" | "fahrenheit-flat" | "filter-2-flat" | "fingerprint-1-flat" | "heart-flat" | "hierarchy-13-flat" | "hierarchy-2-flat" | "humidity-none-flat" | "information-circle-flat" | "input-box-flat" | "invisible-1-flat" | "layers-1-flat" | "layout-window-1-flat" | "lightbulb-flat" | "like-1-flat" | "link-chain-flat" | "lock-rotation-flat" | "login-1-flat" | "logout-1-flat" | "magic-wand-2-flat" | "magnifying-glass-flat" | "new-file-flat" | "new-folder-flat" | "new-sticky-note-flat" | "one-finger-tap-flat" | "open-umbrella-flat" | "padlock-square-1-flat" | "page-setting-flat" | "paintbrush-2-flat" | "paperclip-1-flat" | "pen-tool-flat" | "pictures-folder-memories-flat" | "projector-board-flat" | "satellite-dish-flat" | "scanner-flat" | "share-link-flat" | "shield-1-flat" | "shield-2-flat" | "shield-cross-flat" | "shuffle-flat" | "sigma-flat" | "spiral-shape-flat" | "star-badge-flat" | "tag-flat" | "text-square-flat" | "text-style-flat" | "thermometer-flat" | "trending-content-flat" | "trophy-flat" | "upload-box-1-flat" | "user-circle-single-flat" | "user-identifier-card-flat" | "user-sync-online-in-person-flat" | "voice-scan-2-flat" | "chat-bubble-text-square-flat" | "chat-bubble-typing-oval-flat" | "discussion-converstion-reply-flat" | "happy-face-flat" | "inbox-favorite-flat" | "inbox-tray-1-flat" | "mail-send-envelope-flat" | "sign-at-flat" | "airport-plane-flat" | "anchor-flat" | "baggage-flat" | "bicycle-bike-flat" | "camping-tent-flat" | "car-taxi-1-flat" | "city-hall-flat" | "earth-1-flat" | "fire-alarm-2-flat" | "gas-station-fuel-petroleum-flat" | "high-speed-train-front-flat" | "iron-flat" | "location-compass-1-flat" | "location-pin-3-flat" | "pet-paw-flat" | "school-bus-side-flat" | "smoking-area-flat" | "street-road-flat" | "street-sign-flat" | "toilet-man-flat" | "triangle-flag-flat" | "wheelchair-1-flat" | "bag-flat" | "ball-flat" | "bill-4-flat" | "bow-tie-flat" | "calculator-1-flat" | "coin-share-flat" | "discount-percent-coupon-flat" | "gift-2-flat" | "graph-dot-flat" | "justice-scale-1-flat" | "moustache-flat" | "pie-chart-flat" | "piggy-bank-flat" | "qr-code-flat" | "receipt-flat" | "safe-vault-flat" | "scanner-bar-code-flat" | "shopping-bag-hand-bag-2-flat" | "shopping-basket-2-flat" | "shopping-cart-2-flat" | "store-1-flat" | "subscription-cashflow-flat" | "tag-alt-flat" | "tall-hat-flat" | "target-flat" | "wallet-flat" | "alien-flat" | "decent-work-and-economic-growth-flat" | "dna-flat" | "erlenmeyer-flask-flat" | "flower-flat" | "galaxy-2-flat" | "recycle-1-flat" | "reduced-inequalities-flat" | "tidal-wave-flat" | "windmill-flat" | "airplane-disabled-flat" | "cellular-network-lte-flat" | "contact-phonebook-2-flat" | "incoming-call-flat" | "missed-call-flat" | "notification-application-1-flat" | "phone-flat" | "phone-qr-flat" | "phone-ringing-1-flat" | "signal-full-flat" | "application-add-flat" | "browser-multiple-window-flat" | "bug-antivirus-shield-flat" | "cloud-data-transfer-flat" | "cloud-warning-flat" | "code-analysis-flat" | "code-monitor-1-flat" | "file-code-1-flat" | "incognito-mode-flat" | "screen-broadcast-flat" | "script-2-flat" | "fragile-flat" | "warehouse-1-flat" | "book-reading-flat" | "definition-search-book-flat" | "dictionary-language-book-flat" | "graduation-cap-flat" | "office-building-1-flat" | "workspace-desk-flat" | "cat-2" | "dog-1" | "ai-chip-robot" | "ai-scanner-robot" | "artificial-intelligence-brain-chip" | "deepfake-technology-1" | "controller-stick" | "desktop-lock" | "ios-ipados" | "keyboard-option-setting-gear" | "monitor-error" | "return-square-2" | "router-wifi-network" | "watch-square-menu" | "wifi-secure-connection" | "wireless-fast-charging" | "add-to-playlist" | "artist-song" | "button-move-circle" | "button-pause-circle" | "button-record-1" | "gambling" | "music-note-circle" | "play-list-6" | "repeat-single" | "tune-adjust-volume" | "watchtower-castle" | "allergens-fish" | "chef-toque-hat" | "fried-egg-breakfast" | "salad-vegetable-diet" | "soft-drink-can" | "ear-speciality" | "heart-cross" | "hospital-sign" | "insurance-hand-1" | "camera-setting-gear" | "flash-warning" | "focus-frame" | "image-location" | "landscape-lock" | "portrait-lock" | "time-lapse" | "_3d-coordinate-axis" | "_3d-rotate-1" | "_3d-rotate-y-axis" | "align-top-1" | "arrow-cursor-click-2" | "arrow-cursor-move" | "auto-correction-check" | "block-2" | "broken-link-1" | "calendar-mark" | "clean-broom-wipe" | "copy-2" | "curves-levels-graph" | "customer-support-5" | "customer-support-7" | "dashboard-gauge-1" | "delete-tag" | "desktop-screensaver-sleep" | "dial-pad-finger-2" | "dislike-circle" | "download-arrow" | "download-tray" | "end-point-diamond" | "expand-crop-resize" | "expand-window-1" | "feather-pen" | "finger-snapping" | "flip-horizontal-arrow-1" | "flip-horizontal-circle-2" | "full-screen-osx" | "give-star" | "help-chat-1" | "hierarchy-16" | "hierarchy-line-3" | "horizontal-slider-2" | "horizontal-toggle-button" | "incorrect-password" | "insert-center-left-1" | "japanese-alphabet" | "key-frame" | "label-folder-tag" | "layout-right-sidebar" | "less-than-sign-circle" | "magic-wand-1" | "merge-pdf" | "multiple-stars" | "new-badge-highlight" | "non-commercial-dollars" | "number-sign" | "padlock-square-2" | "panoramic-screen" | "pathfinder-minus-front-2" | "pdf-reader-application" | "pen-1" | "pin-1" | "polygonal-lasso-tool" | "rectangle-split-thirds" | "recycle-bin-3" | "recycle-bin-throw-2" | "rotate-right-circle" | "round-anchor-point" | "search-category" | "search-history-browser" | "show-layer" | "skull-2" | "small-caps" | "sound-recognition-search" | "stopwatch-three-quarter" | "story-post" | "table-lamp-2" | "text-file" | "thread-post-tweet" | "timer-zero" | "track-select-right-tool" | "user-collaborate-group" | "user-feedback-heart" | "user-full-body" | "user-king-crown" | "user-queen-crown" | "video-close-captioning" | "voice-activation-check-validate" | "warranty-badge-highlight" | "wave-signal-circle" | "word-wrap-around-bounding-box" | "wrap-arc-upper" | "wrench-hand" | "zoom-out-gesture" | "chat-bubble-square-phone" | "inbox-open" | "mail-send-email-message-circle" | "smiley-blessed" | "airship" | "departure-time" | "intersex-symbol" | "location-compass-2" | "location-heart-pin" | "location-pin-medical-hospital-2" | "location-target-2" | "navigation-arrow-north" | "passport-globe" | "serving-dome-hand" | "signage-pedestrian-no-crossing" | "stairs-1" | "theater-mask" | "toilet-man-woman-1" | "toilet-sign-man" | "visual-blind-1" | "bag-suitcase-4" | "building-1" | "cashing-check" | "credit-card-4" | "credit-card-approved" | "credit-card-disable" | "critical-thinking-2" | "diamond-1" | "dollar-increase" | "graph-bar-increase-square" | "investing-and-banking" | "production-belt-time" | "search-arrow-increase" | "security-umbrella" | "signage-1" | "notification-alarm-snooze" | "phone-notification" | "phone-rotate-mobile" | "phone-shield" | "transfer-forwarding-call" | "browser-bookmark" | "browser-dashboard" | "module-puzzle-2" | "steps-2" | "threat-monitor" | "threat-phone" | "threat-usb" | "package-dimension" | "transfer-truck-time" | "group-meeting-approval" | "ai-chip-robot-flat" | "ai-scanner-robot-flat" | "artificial-intelligence-brain-chip-flat" | "deepfake-technology-1-flat" | "charging-flat" | "controller-stick-flat" | "desktop-lock-flat" | "dribble-flat" | "eject-square-flat" | "ios-ipados-flat" | "keyboard-option-setting-gear-flat" | "laptop-flat" | "left-click-flat" | "monitor-error-flat" | "photo-camera-flat" | "printer-wireless-flat" | "return-square-2-flat" | "router-wifi-network-flat" | "usb-port-flat" | "watch-square-menu-flat" | "wifi-secure-connection-flat" | "wireless-fast-charging-flat" | "youtube-flat" | "add-to-playlist-flat" | "artist-song-flat" | "button-move-circle-flat" | "button-pause-circle-flat" | "button-record-1-flat" | "gambling-flat" | "music-note-circle-flat" | "play-list-6-flat" | "record-player-flat" | "repeat-single-flat" | "tune-adjust-volume-flat" | "watchtower-castle-flat" | "allergens-fish-flat" | "carrot-flat" | "chef-toque-hat-flat" | "fried-egg-breakfast-flat" | "salad-vegetable-diet-flat" | "soft-drink-can-flat" | "toaster-flat" | "ear-speciality-flat" | "heart-cross-flat" | "heart-rate-flat" | "hospital-sign-flat" | "insurance-hand-1-flat" | "camera-setting-gear-flat" | "camera-tripod-flat" | "film-flat" | "flash-warning-flat" | "focus-frame-flat" | "gallery-flat" | "image-location-flat" | "landscape-lock-flat" | "portrait-lock-flat" | "time-lapse-flat" | "_3d-coordinate-axis-flat" | "_3d-rotate-1-flat" | "_3d-rotate-y-axis-flat" | "align-selection-flat" | "align-text-top-flat" | "align-top-1-flat" | "arrow-cursor-click-2-flat" | "arrow-cursor-move-flat" | "auto-correction-check-flat" | "bell-notification-flat" | "binoculars-flat" | "block-2-flat" | "brightness-4-flat" | "broken-link-1-flat" | "calendar-mark-flat" | "clean-broom-wipe-flat" | "contact-book-flat" | "copy-2-flat" | "countdown-timer-flat" | "cube-flat" | "curves-levels-graph-flat" | "customer-support-5-flat" | "customer-support-7-flat" | "dashboard-gauge-1-flat" | "delete-tag-flat" | "desktop-screensaver-sleep-flat" | "dial-pad-finger-2-flat" | "dislike-circle-flat" | "download-arrow-flat" | "download-tray-flat" | "end-point-diamond-flat" | "expand-crop-resize-flat" | "expand-window-1-flat" | "feather-pen-flat" | "file-bookmark-flat" | "finger-snapping-flat" | "flip-horizontal-arrow-1-flat" | "flip-horizontal-circle-2-flat" | "full-screen-osx-flat" | "give-star-flat" | "help-chat-1-flat" | "hierarchy-1-flat" | "hierarchy-16-flat" | "hierarchy-line-3-flat" | "home-2-flat" | "horizontal-slider-2-flat" | "horizontal-toggle-button-flat" | "hourglass-flat" | "incorrect-password-flat" | "increase-indent-flat" | "insert-center-left-1-flat" | "iris-scan-flat" | "japanese-alphabet-flat" | "key-frame-flat" | "label-folder-tag-flat" | "layout-right-sidebar-flat" | "less-than-sign-circle-flat" | "magic-wand-1-flat" | "maximize-2-flat" | "megaphone-1-flat" | "merge-pdf-flat" | "merge-vertical-flat" | "multiple-stars-flat" | "new-badge-highlight-flat" | "non-commercial-dollars-flat" | "notepad-text-flat" | "number-sign-flat" | "padlock-square-2-flat" | "panoramic-screen-flat" | "pathfinder-minus-front-2-flat" | "pdf-reader-application-flat" | "pen-1-flat" | "pencil-square-flat" | "pin-1-flat" | "polygonal-lasso-tool-flat" | "presentation-flat" | "projector-flat" | "rectangle-split-thirds-flat" | "recycle-bin-3-flat" | "recycle-bin-throw-2-flat" | "rotate-left-flat" | "rotate-right-circle-flat" | "round-anchor-point-flat" | "scissors-flat" | "screenshot-flat" | "screwdriver-wrench-flat" | "search-category-flat" | "search-history-browser-flat" | "show-layer-flat" | "skull-2-flat" | "small-caps-flat" | "snooze-flat" | "sound-recognition-search-flat" | "star-circle-flat" | "stopwatch-flat" | "stopwatch-three-quarter-flat" | "story-post-flat" | "sun-flat" | "table-lamp-2-flat" | "text-file-flat" | "texture-flat" | "thread-post-tweet-flat" | "timer-zero-flat" | "track-select-right-tool-flat" | "typewriter-flat" | "user-collaborate-group-flat" | "user-feedback-heart-flat" | "user-full-body-flat" | "user-king-crown-flat" | "user-queen-crown-flat" | "video-close-captioning-flat" | "voice-activation-check-validate-flat" | "warning-diamond-flat" | "warranty-badge-highlight-flat" | "wave-signal-circle-flat" | "white-board-flat" | "word-wrap-around-bounding-box-flat" | "wrap-arc-upper-flat" | "wrench-hand-flat" | "zip-folder-flat" | "zoom-in-flat" | "zoom-out-flat" | "zoom-out-gesture-flat" | "chat-bubble-square-phone-flat" | "inbox-flat" | "inbox-open-flat" | "mail-reply-all-flat" | "mail-send-email-message-circle-flat" | "smiley-blessed-flat" | "airship-flat" | "bell-flat" | "campfire-flat" | "departure-time-flat" | "elevator-flat" | "intersex-symbol-flat" | "location-compass-2-flat" | "location-heart-pin-flat" | "location-pin-medical-hospital-2-flat" | "location-target-2-flat" | "map-location-flat" | "navigation-arrow-north-flat" | "passport-globe-flat" | "serving-dome-hand-flat" | "signage-pedestrian-no-crossing-flat" | "stairs-1-flat" | "suitcase-rolling-flat" | "surveillance-camera-flat" | "theater-mask-flat" | "toilet-man-woman-1-flat" | "toilet-sign-man-flat" | "visual-blind-1-flat" | "walker-flat" | "bag-suitcase-4-flat" | "building-1-flat" | "cashing-check-flat" | "credit-card-4-flat" | "credit-card-approved-flat" | "credit-card-disable-flat" | "critical-thinking-2-flat" | "diamond-1-flat" | "dollar-increase-flat" | "graph-bar-increase-square-flat" | "investing-and-banking-flat" | "production-belt-time-flat" | "search-arrow-increase-flat" | "security-umbrella-flat" | "shirt-flat" | "shopping-basket-add-flat" | "signage-1-flat" | "sofa-flat" | "table-flat" | "target-dollar-flat" | "treasure-chest-flat" | "cat-2-flat" | "dog-1-flat" | "pine-tree-flat" | "recycle-bin-flat" | "rocket-flat" | "iphone-flat" | "notification-alarm-snooze-flat" | "phone-notification-flat" | "phone-rotate-mobile-flat" | "phone-shield-flat" | "transfer-forwarding-call-flat" | "browser-bookmark-flat" | "browser-dashboard-flat" | "cloud-download-flat" | "cloud-off-flat" | "module-puzzle-2-flat" | "steps-2-flat" | "threat-monitor-flat" | "threat-phone-flat" | "threat-usb-flat" | "package-dimension-flat" | "shipping-box-2-flat" | "transfer-truck-time-flat" | "group-meeting-approval-flat" | "school-flat">): import("react").JSX.Element;
1012
1012
  displayName: string;
1013
1013
  };
1014
1014
  export {};
@@ -1008,7 +1008,7 @@ declare const streamline_freehandIconNames: {
1008
1008
  };
1009
1009
  export type StreamlineFreehandIconName = keyof typeof streamline_freehandIconNames;
1010
1010
  export declare const StreamlineFreehand: {
1011
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"filter" | "bluetooth-transfer" | "gesture-double-tap" | "keyboard" | "mouse" | "network" | "speaker" | "receipt" | "phone-dial" | "phone-off" | "phone-ring" | "cloud-check" | "database" | "database-check" | "database-settings" | "file-code" | "scanner" | "layers-off" | "camera" | "home" | "webcam" | "microphone" | "microphone-off" | "archive-box" | "signal-low" | "terminal" | "database-share" | "file-code-2" | "hierarchy" | "presentation-analytics" | "server-2" | "settings-cog" | "toilet-paper" | "calendar-date" | "shop" | "book-bookmark" | "floppy-disk" | "sim-card" | "color-palette" | "money-bag" | "edit-pencil" | "credit-card-1" | "music-note-1" | "wifi-on" | "circus-tent" | "lock-circle" | "android-logo" | "power-button" | "camera-tripod" | "cloud-loading" | "coupon-percent" | "flip-right" | "pathfinder-merge" | "shop-sign" | "party-balloon" | "phone-booth" | "bluetooth-logo" | "smiley-wink" | "calendar-grid" | "keyboard-command" | "mouse-wireless-1" | "earpods" | "smiley-grumpy" | "smiley-happy" | "information-desk" | "shopping-basket-1" | "cellular-network-lte" | "cloud-data-transfer" | "money-wallet" | "content-write" | "programming-browser" | "cloud-disable" | "database-network-1" | "credit-card-visa" | "toilet-sign" | "smiley-blessed" | "advertising-ad-browser" | "advertising-money-idea" | "analytics-board-graph-line" | "analytics-graph-bar-horizontal" | "analytics-graph-line-triple" | "analytics-graph-pie" | "analytics-graph-stock" | "business-cash-eye" | "business-cash-idea" | "business-cash-scale-balance" | "business-cash-search" | "business-coaching-bait-1" | "business-coaching-idea-jigsaw" | "business-coaching-strategy-1" | "business-coaching-whistle" | "business-deal-handshake" | "business-deal-men-cash-conversation" | "business-metaphor-boat-success" | "business-metaphor-burn-money" | "business-metaphor-lucky-cat" | "business-metaphor-shark" | "business-product-supplier-1" | "business-product-supplier-2" | "business-workflow-compare" | "business-workflow-merge-1" | "business-workflow-merge-2" | "business-workflow-project-management" | "monetization-bill-magnet" | "monetization-mouse" | "optimization-configuration" | "optimization-graph-settings" | "performance-increase-clipboard" | "performance-presentation-graph" | "product-launch-go-sign" | "product-launch-laptop" | "seo-eye-network" | "seo-search-graph" | "strategy-business-success-peak" | "strategy-target-center-phone" | "trading-graph" | "arduino-plus-minus-1" | "cables-split" | "cables-usb-1" | "cables-usb-type-c" | "cd-rom-burn" | "cd-rom-disc-1" | "cd-rom-disc-broken" | "desktop-action-monitor-add" | "desktop-action-monitor-edit" | "desktop-action-monitor-question" | "desktop-action-monitor-remove" | "desktop-action-monitor-screen-sleep-2" | "desktop-computer-pc" | "desktop-monitor" | "hard-drive-exertnal-1" | "hard-drive-warning" | "keyboard-wireless" | "kindle-read-document-hold" | "laptop-action-flash" | "laptop-action-lock" | "laptop-action-search" | "laptop-action-warning" | "laptop-computer-1" | "laptop-computer-smiley" | "memory-computer-ram" | "memory-flash-drive" | "memory-sd-card" | "memory-sd-card-check" | "memory-sd-card-search" | "memory-sd-card-settings" | "memory-sd-card-sync" | "microprocessor-computer-chip-32-bit" | "microprocessor-computer-chip-64-bit" | "microprocessor-computer-chip-flash" | "microprocessor-computer-chip-overheat" | "microprocessor-computer-chip-processor" | "microprocessor-computer-chip-search" | "power-supply-battery-charge" | "power-supply-plug" | "power-supply-wall-socket-1" | "screen-curved" | "smart-watch-band-2" | "smart-watch-circle" | "smart-watch-circle-bluetooth" | "smart-watch-circle-graph-line" | "smart-watch-circle-location" | "smart-watch-square" | "smart-watch-square-bell-alternate" | "smart-watch-square-graph-alternate" | "smart-watch-square-microphone-alternate" | "smart-watch-square-navigation-alternate" | "smart-watch-wrist" | "tablet-application" | "webcam-off-1" | "archive-drawer-1" | "archive-drawer-2" | "book-flip-page" | "book-library-shelf-1" | "book-sound-audio" | "content-browser-edit" | "content-brush-pen" | "content-paper-edit" | "content-typewriter" | "newspaper-fold" | "newspaper-read-man" | "notes-add" | "notes-book" | "notes-book-1" | "notes-hand" | "notes-paper" | "notes-quill" | "color-brush-1" | "color-brush-2" | "color-crayon" | "color-drop-off" | "color-gradient" | "color-palette-sample-2" | "color-picker-drop" | "color-spray" | "color-triangle" | "crop-expand" | "crop-image" | "design-process-draw-pen" | "design-process-drawing-board" | "design-process-drawing-board-education" | "design-process-fibonacci" | "design-process-mouse-pen" | "design-process-pen-idea" | "design-tool-brush-ruler" | "design-tool-liquid-glue" | "design-tool-magic-wand" | "design-tool-pen-brush-cup" | "design-tool-pen-pencil-brush" | "design-tool-quill" | "design-tool-stamp" | "flip-rotate-clockwise" | "flip-up" | "graphic-tablet-draw-1" | "graphic-tablet-intous-draw" | "grid-corner-ruler" | "grid-monitor" | "grid-ruler" | "grid-snap-magnet" | "layers-bring-backward" | "layers-stacked-1" | "reorder-up" | "resize-expand-arrow" | "resize-shrink-1" | "ruler-t" | "shape-cube" | "shape-pyramid" | "transform-right" | "vectors-add-anchor" | "vectors-anchor-rectangle" | "vectors-path-flat" | "vectors-pen-add-1" | "vectors-pen-draw" | "conversation-chat" | "conversation-question-text-1" | "conversation-question-warning-3" | "drawer-download" | "drawer-envelope" | "drawer-image" | "email-action-delete-junk-1" | "email-action-download" | "email-action-image" | "email-action-remove" | "email-action-reply-1" | "email-action-search" | "email-action-sync-1" | "email-action-warning" | "emoji-hand-cheers" | "envelope-letter-front" | "envelope-paper-document" | "envelope-pigeon" | "mailbox-full-1" | "mailbox-post-1" | "messages-bubble-image" | "messages-bubble-menu" | "messages-bubble-settings" | "messages-bubble-smile" | "messages-bubble-sms-block-1" | "messages-bubble-square-graph" | "messages-bubble-square-lock" | "messages-bubble-square-search" | "messages-bubble-square-settings" | "messages-bubble-square-text" | "messages-people-person-bubble-square-2" | "messages-people-user-bubble" | "messages-people-woman-heart" | "read-email-at-symbol" | "read-email-target" | "send-email-fly" | "send-email-paper-plane-1" | "send-email-pop-up" | "smiley-blush" | "smiley-cheeky" | "smiley-crazy" | "smiley-crying-rainbow" | "smiley-dizzy" | "smiley-eyes-only" | "smiley-in-trouble" | "smiley-kiss-heart" | "smiley-lol" | "smiley-petrified" | "smiley-rich" | "smiley-shine-big-eyes" | "smiley-sick-contageous" | "smiley-smile-2" | "smiley-thrilled" | "smiley-thumbs-up" | "smiley-zipped" | "stamps-portrait" | "accessories-remote-shutter" | "accessories-retro-film-1" | "camera-double" | "camera-mode-photo" | "camera-settings-flip" | "camera-settings-hand-motion" | "camera-settings-wifi" | "composition-16-to-9" | "composition-man" | "composition-paronama-horizontal" | "focus-camera-auto" | "focus-cross" | "focus-frame-target-1" | "focus-motion" | "image-file-dollar" | "image-file-edit" | "image-file-favorite-heart" | "image-file-search" | "lens-horizontal" | "lens-shutter-1" | "light-mode-brightness-half" | "light-mode-dark-light" | "light-mode-flash-auto" | "light-mode-hdr" | "light-mode-night-architecture" | "light-spotlight-1" | "light-umbrella-reflect" | "mask-diamond" | "modern-camera-go-pro" | "photo-frame-hang" | "photo-frame-landscape" | "picture-double-landscape" | "picture-polaroid-four" | "picture-polaroid-hide" | "picture-stack-landscape" | "retouch-contrast" | "retouch-cut-edit" | "retouch-face" | "retouch-magic-wand" | "retouch-saturation" | "retouch-sticker" | "taking-pictures-circle" | "taking-pictures-man" | "timer-countdown-ten" | "transfer-pictures-laptop-smartphone" | "transfer-pictures-sent" | "transfer-pictures-smartphone" | "vintage-camera-polaroid" | "add-sign-bold" | "alert-alarm-bell" | "alert-alarm-clock" | "alerts-radioactive-circle" | "alerts-stop-sign" | "alerts-warning-triangle" | "bookmarks-document" | "cell-formating-border-horizontal-vertical" | "connect-flash" | "controls-slider-toggle-left" | "controls-slider-toggle-right" | "controls-sliders-vertical" | "controls-volume-knob" | "copy-paste-clipboard" | "copy-paste-cut-scissors" | "cursor-highlight-click-1" | "cursor-speed-1" | "dashboard-browser-gauge" | "dashboard-layout" | "delete-bin-2" | "delete-bin-5" | "delete-disable-block-1" | "delete-skull" | "edit-pen-write-paper" | "edit-quill-feather-1" | "face-id-male-1" | "face-id-square" | "face-id-user" | "flip-reflect-up" | "form-edition-clipboard" | "form-edition-clipboard-check" | "form-edition-clipboard-write" | "form-edition-file-attach" | "form-edition-image-attach" | "form-edition-number-1" | "form-edition-text-2" | "form-validation-check-double" | "form-validation-check-square-1" | "form-validation-cursor-choose" | "form-validation-remove-square" | "gesture-swipe-two-fingers-horizontal" | "gesture-zoom-in" | "help-headphones-customer-support" | "help-headphones-customer-support-human" | "help-question-circle" | "hierarchy-web" | "home-chimney-2" | "iris-scan-target" | "keyboard-arrow-return" | "keyboard-asterisk-1" | "keyboard-asterisk-2" | "keyboard-delete-button" | "keyboard-eject-button" | "keyboard-id-dial-finger" | "keyboard-keypad-pull-down" | "layouts-array-1" | "layouts-content" | "layouts-right" | "layouts-top-three-columns" | "link-paperclip" | "lists-bullets" | "lists-numbers" | "loading-browser-bar" | "loading-spinning-star" | "loading-star-1" | "lock-cancel-slash" | "lock-key-1" | "lock-network" | "login-logout-key" | "login-rectangle" | "menu-navigation-2" | "menu-navigation-horizontal" | "move-cross-over" | "move-rectangle-left" | "move-scroll-omnidirection-button" | "multimedia-controls-button-next" | "multimedia-controls-loop-arrow" | "multimedia-controls-loop-arrow-1" | "multimedia-controls-single-track" | "navigation-page-right" | "organization-files" | "paginate-filter-mail" | "paginate-filter-music" | "paragraphs-bullets" | "paragraphs-image-right" | "paragraphs-indent" | "paragraphs-indent-last-line" | "paragraphs-indent-left" | "paragraphs-insert-image-top" | "paragraphs-symbol" | "password-approved" | "password-desktop-lock-approved" | "password-type" | "print-text" | "remove-delete-sign-bold" | "remove-subtract-sign-bold" | "resize-arrow-expand-vertical-1" | "resize-arrow-retract-horizontal" | "retract-shrink-arrow" | "search-magnifier" | "select-target-crosshair-1" | "settings-cog-double-1" | "settings-hammer" | "settings-screwdriver" | "settings-wrench-double" | "share-circles" | "share-forward" | "share-megaphone" | "share-radar" | "share-user-signal-1" | "stats-line-graph-circle" | "synchronize-arrows" | "synchronize-arrows-warning" | "tags-double" | "text-formating-align-bottom" | "text-formating-arrange-spacing" | "text-formating-eraser-2" | "text-formating-font-size" | "text-formating-hash" | "text-formating-input" | "text-formating-open-quote" | "text-formating-rotate-angle" | "text-formating-rotate-vertical" | "text-formating-square" | "text-formating-subscript" | "time-clock-24-hrs-2" | "time-clock-circle" | "time-clock-nine-twenty-five-1" | "time-clock-share-1" | "time-clock-square" | "time-hourglass-triangle" | "time-stopwatch" | "time-wrist-watch-1" | "touch-id-fingerprint-lock-1" | "touch-id-fingerprint-square" | "unlink-broken-chain-1" | "unlock-circle" | "view-binocular" | "view-eye-1" | "view-eye-off" | "voice-id-approved" | "voice-id-smartphone" | "voice-id-user" | "wireless-signal-rss-feed" | "wireless-wifi-signal-antenna" | "wireless-wifi-signal-pole" | "workflow-collaborate" | "zoom-in-magnifier-1" | "zoom-out-magnifier-1" | "cloud-error-404" | "cloud-lock-1" | "cloud-network-1" | "cloud-phone-exchange" | "cloud-storage-drive" | "data-transfer-diagonal" | "data-transfer-document-module" | "data-transfer-edi-reload" | "data-transfer-ftp" | "data-transfer-horizontal" | "data-transfer-sync" | "data-transfer-vertical" | "download-brackets" | "download-harddrive-1" | "home-to-cloud-sync" | "network-connection-locked" | "network-connector" | "network-laptop-1" | "network-monitor-hierarchy" | "network-monitor-team-1" | "network-monitor-transfer-arrow-1" | "network-router-signal-1" | "network-router-signal-double" | "server-api-cloud" | "server-edit" | "server-hand" | "server-lock" | "server-sftp-folder" | "upload-brackets" | "upload-menu" | "wifi-laptop" | "wifi-monitor-1" | "wireless-house-signal" | "wireless-tower-building" | "worldwide-web-browser" | "worldwide-web-disable" | "worldwide-web-location-pin" | "worldwide-web-network-www" | "worldwide-web-phone" | "worldwide-web-sync" | "worldwide-web-users" | "accounting-abacus" | "accounting-calculator" | "accounting-invoice" | "accounting-invoice-mail" | "begging-giving" | "calculator-calculator-app" | "cash-payment-bag-1" | "cash-payment-bill" | "cash-payment-coin-1" | "cash-payment-pen-signature" | "cash-payment-sign-2" | "check-payment-sign" | "credit-card-amex" | "credit-card-dollar" | "credit-card-mastercard" | "credit-card-payment" | "credit-card-phone-call" | "credit-card-smartphone" | "crypto-close-up-group-chat-users-conversation" | "crypto-currency-bitcoin-chip" | "crypto-currency-bitcoin-code" | "crypto-currency-bitcoin-give" | "crypto-currency-bitcoin-graph-increase" | "crypto-currency-bitcoin-monitor-shield" | "crypto-currency-bitcoin-network-globe" | "crypto-currency-litecoin" | "crypto-currency-namecoin" | "crypto-currency-tether" | "crypto-currency-usd-coin" | "crypto-mining" | "currency-bag-bath" | "currency-bath-increase" | "currency-dollar-bubble" | "currency-dollar-chip" | "currency-dollar-decrease" | "currency-dollar-euro-chat-bubble" | "currency-euro-bubble" | "currency-euro-dollar-exchange" | "currency-international-currency" | "currency-pound-bubble" | "currency-yen-bubble" | "donation-charity-donate-bag-2" | "donation-charity-donate-box" | "donation-charity-donate-heart-flower" | "modern-payment-contactless" | "modern-payment-desktop-transaction" | "modern-payment-e-wallet" | "modern-payment-qr-basket" | "modern-payment-self-checkout-touch" | "modern-payment-wireless-smartphone" | "money-atm-withdraw" | "money-bag-dollar" | "money-bag-euro" | "money-bill-fly" | "money-cash-bill" | "money-cash-bill-stack" | "money-coin-cash" | "money-coin-purse" | "money-coin-stack" | "saving-bag-increase" | "saving-bank" | "saving-bank-cash" | "saving-bank-international" | "saving-bear-market" | "saving-bear-market-graph-bars" | "saving-bull-market" | "saving-bull-market-graph-bars" | "saving-money-seedling" | "saving-piggy-bank" | "saving-safe" | "saving-wallet-international" | "wealth-crystal-shine" | "wealth-gold-bars" | "wealth-pearl-ring" | "wealth-time-money" | "wealth-treasure-chest-open" | "amusement-park-castle" | "amusement-park-ferris-wheel" | "amusement-park-strength-meter" | "board-game-chess-figures" | "board-game-dice-pawn" | "camera-stabilizer" | "camera-studio" | "card-game-card-spade" | "card-game-symbols" | "casino-777-slot-machine" | "cd-disc" | "cd-player-disc" | "circus-clown-1" | "cloud-gaming-service" | "concert-couple-duet" | "controls-camera-off" | "digital-player-phone-speaker-1" | "earpods-attention" | "earpods-charge" | "earpods-true-wireless" | "equalizer-bar-graph" | "equalizer-phone-application-2" | "equalizer-stereo-play" | "equalizer-volume-graph" | "famous-character-pokemon" | "famous-character-starwars-r2d2" | "fireworks-2" | "headphones-1" | "headphones-cable" | "headphones-human" | "instrument-accordian" | "instrument-electronic-keyboard" | "instrument-saxophone" | "ipod-player" | "ipod-player-2" | "media-protection-shield" | "microphone-karaoke-1" | "modern-music-bass-guitar" | "modern-music-dj" | "modern-music-drums" | "modern-music-mix-touch" | "movies-clapboard" | "movies-hot-trending" | "movies-reel-rating" | "music-basket" | "music-clef" | "music-genre-romantic-cd" | "music-metronom" | "music-note-circle-block-1" | "night-club-disco-ball-1" | "party-alchoholic-drink" | "party-decoration-banner-1" | "playlist-album-1" | "playlist-cloud" | "playlist-menu" | "playlist-square-sync" | "podcast-microphone-international-1" | "radio-antenna-handle" | "radio-stereo" | "role-playing-games-icon-weapon-equipment-crate-chest" | "show-hat-magician" | "show-theater-drama" | "speaker-stand" | "tape-cassette-1" | "vide-document-avi" | "vide-document-mov" | "video-edit-effects" | "video-edit-play" | "video-edit-slow-motion" | "video-edit-split" | "video-file-camera" | "video-game-360-vr" | "video-game-breakout" | "video-game-control-gear" | "video-game-controller" | "video-game-controller-team" | "video-game-controller-wifi" | "video-game-hatchi" | "video-game-mario-mushroom-1" | "video-game-nintendo" | "video-game-pacman" | "video-game-tetris" | "video-games-device-switch-joy-controller" | "video-player-movie" | "video-player-slider" | "video-player-smartphone-horizontal" | "vintage-tv-1" | "vinyl-record-gramophone" | "vinyl-record-player-2" | "volume-control-down-1" | "volume-control-medium-1" | "volume-control-up-1" | "walkman-player" | "airplane-mode-rectangle" | "answer-machine-voice-mail" | "broken-smartphone-1" | "cellular-network-wifi-3g" | "cellular-network-wifi-4g" | "cellular-network-wifi-5g" | "charging-battery-eco" | "charging-battery-empty" | "charging-battery-flash-connected" | "charging-battery-high-1" | "charging-battery-low-2" | "charging-flash-wave" | "charging-flash-wireless" | "connect-device-cancel" | "connect-device-exchange" | "expand-smartphone" | "fax-machine-paper-print" | "gps-location-rectangle" | "mobile-phone-blackberry-2" | "mobile-phone-hand-hold" | "mobile-phone-smartphone" | "mobile-phone-write" | "mobilephone-action-blutooth" | "mobilephone-action-camera" | "mobilephone-action-cash" | "mobilephone-action-location-lock" | "mobilephone-action-lock" | "mobilephone-action-navigation-map" | "mobilephone-action-notification-allowed" | "mobilephone-action-otp-message" | "mobilephone-action-settings" | "mobilephone-action-voice-approved" | "phone-actions-24-hours-call" | "phone-actions-bluetooth" | "phone-actions-merge" | "phone-actions-off" | "phone-actions-ringing" | "phone-actions-wait-hold" | "phone-book" | "phone-camera-rear-quardruple" | "phone-retro-1" | "phone-selfie-front" | "push-notification-2" | "push-notification-alert-1" | "qr-code-scan-1" | "rotate-lock-smartphone" | "rotate-smartphone" | "scroll-vertical-smartphone" | "smartphone-app-widget-add" | "smartphone-app-widget-remove" | "smartphone-app-widget-stock" | "smartphone-app-widget-translator" | "vibrate-smartphone" | "android-settings" | "app-window-bookmark" | "app-window-expand" | "app-window-graph" | "app-window-layout" | "app-window-link" | "app-window-search-text" | "app-window-source-code" | "app-window-two" | "app-window-user" | "app-window-wireless-problem" | "apps-laptop-shield" | "apps-monitor-graph-line" | "apps-monitor-user" | "bug-alert-message" | "bug-browser-warning" | "bug-cloud-error" | "bug-service-chat" | "coding-file-exe-tag" | "coding-file-iso-tag" | "coding-files-network-folder" | "computer-bug-1" | "database-connection" | "database-hand" | "database-hierarchy" | "file-code-apk" | "file-code-c-plus-plus" | "file-code-css" | "file-code-html" | "file-code-java" | "file-code-js-javascript" | "file-code-share-1" | "file-code-warning-1" | "learning-programming-book" | "learning-programming-flag" | "module-building-blocks" | "module-three-boxes" | "plugin-hands-puzzle" | "plugin-jigsaw-puzzle" | "programming-code-idea" | "programming-flowchart" | "programming-hold-code" | "programming-keyboard-type" | "programming-language-bookmark-javascript" | "programming-language-browser-css" | "programming-language-browser-html" | "programming-language-css-3" | "programming-language-html-5" | "programming-language-script-lock" | "programming-monitor" | "programming-search" | "programming-team-chat" | "programming-user-code" | "programming-user-head-matrix" | "responsive-design-expand" | "responsive-design-hand" | "responsive-design-monitor-phone" | "security-computer-shield" | "security-gdpr-browser" | "security-it-service" | "security-network-chain" | "security-phone-protection-approved" | "security-shield-network" | "security-shield-settings" | "security-shield-wall" | "security-user-lock" | "server-error-404-not-found" | "ui-browser-slider" | "ui-page-scroll" | "ui-phone-slider-vertical" | "ui-step-indicator-2" | "ui-webpage-bullets" | "ui-webpage-slider-cursor" | "website-development-browser-com-web" | "website-development-browser-hand" | "website-development-browser-page-layout" | "website-development-browser-source-code" | "website-development-build" | "website-development-code-flowchart-1" | "website-development-monitor-www-web" | "barcode-view-price" | "code-barcode-scan" | "code-qr" | "coupon-cut" | "customer-action-complaint" | "customer-action-product-message" | "discount-50-percent" | "discount-circle-dash" | "discount-percent-bubble" | "discount-percent-increase-arrow" | "discount-percent-thin" | "discount-point-coin" | "discount-sale-sign" | "e-commerce-add-basket-cloud" | "e-commerce-basket-monitor" | "e-commerce-cart-laptop" | "e-commerce-cart-vr" | "e-commerce-click-buy" | "e-commerce-online-shop" | "e-commerce-target-shopping-bag" | "mobile-shopping-cart" | "mobile-shopping-shop-basket" | "products-purse" | "products-purse-2" | "products-shopping-bags" | "receipt-cash-register-print" | "receipt-view-pricing" | "shop-cart" | "shop-cashier" | "shop-close" | "shop-like" | "shop-open" | "shop-street-sign" | "shopping-bag-barcode" | "shopping-bag-biodegradable-1" | "shopping-bag-duty-free" | "shopping-bag-no-plastic" | "shopping-bag-sad" | "shopping-bag-side" | "shopping-bag-target" | "shopping-basket-arrow-in" | "shopping-basket-arrow-out" | "shopping-basket-favorite-star" | "shopping-basket-like" | "shopping-basket-rating" | "shopping-basket-search" | "shopping-basket-smile-1" | "shopping-cart-trolley" | "shopping-cart-trolley-check" | "shopping-cart-trolley-download" | "shopping-cart-trolley-full" | "shopping-cart-trolley-upload" | "tag-hot-price" | "tag-new-circle" | "tag-sale-price" | "allowances-no-bicycles-sign" | "allowances-no-food-sign" | "allowances-no-photos-sign" | "allowances-no-smoking" | "allowances-silence" | "allowances-smoking" | "cleaning-man" | "cleaning-robot-vacuum" | "cleaning-sign" | "disability-ad" | "disability-blind-read" | "disability-braille" | "disability-cane-1" | "disability-down-syndrome-ribbon" | "disability-hands-language" | "disability-hearing-t" | "disability-partially-blind" | "disability-qcc-line" | "disability-service-dog" | "disability-sit-pregnancy" | "disability-walking-help-1" | "disability-wheelchair-3" | "disability-wheelchair-way" | "escalator-ascend-person" | "escalator-descend-person" | "family-baby-change-diaper" | "family-child-play-ball-sign" | "garbage-throw" | "information-desk-question-help" | "laundry-hand-wash" | "laundry-washing-machine" | "lift-two-people-elevator" | "locker-room-hanger-woman" | "locker-room-suitcase-umbrella" | "locker-room-wash-hands" | "moving-walkway-luggage-1" | "safety-911-call" | "safety-call-firefighters-1" | "safety-danger-mudslide" | "safety-drown-hand" | "safety-exit-door" | "safety-exit-sign" | "safety-fire-exit" | "safety-fire-extinguisher" | "safety-sign-danger-slippery" | "safety-sign-electricity" | "safety-warning-radioactive" | "seat-vip" | "stairs-ascend" | "stairs-descend" | "swimming-pool-person" | "toilet-hand-dryer" | "toilet-no-trash-throw" | "waiting-room-clock" | "walking-symbol" | "water-fountain-drink" | "water-fountain-sink" | "business-management-agreement" | "business-management-team-up" | "business-management-teamwork-clap" | "collaboration-meeting-team-file" | "collaboration-team-chat" | "creativity-idea-bulb" | "creativity-idea-strategy" | "crm-lead-distribution" | "desk-computer-base-work-standing-user-1" | "human-resources-businessman" | "human-resources-employee-crown-woman" | "human-resources-hierarchy" | "human-resources-rating-man" | "job-briefcase-document" | "job-candidate-target-1" | "job-choose-candidate" | "job-profile-search" | "job-seach-man" | "job-search-magnifier-briefcase" | "meeting-co-working-2" | "meeting-presentation" | "meeting-user-man-stress" | "office-building-glass-window" | "office-building-outdoors" | "office-business-card" | "office-desk-1" | "office-desk-lamp" | "office-file-sheet" | "office-file-text" | "office-file-text-graph" | "office-folder" | "office-paper-binder" | "office-photocopy-machine-2" | "office-shredder-1" | "office-stamp-document" | "office-stapler-1" | "office-tape-2" | "office-water-dispenser" | "office-work-wireless" | "presentation-audience" | "presentation-board-graph" | "presentation-podium-notes" | "presentation-projector" | "presentation-projector-screen-bars" | "presentation-projector-screen-budget-analytics" | "presentation-screen" | "task-clipboard-check" | "task-list-clipboard-check" | "task-list-clipboard-clock" | "task-list-clipboard-favorite-star" | "task-list-clipboard-share" | "task-list-pen" | "task-list-pin-1" | "video-meeting-camera-browser" | "video-meeting-monitor-webcam" | "video-meeting-team-monitor-man" | "work-from-home-travel-office" | "work-from-home-user-pet-cat" | "worker-lay-off-fired-user-finger-1">): import("react").JSX.Element;
1011
+ ({ 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" | "bluetooth-transfer" | "gesture-double-tap" | "keyboard" | "mouse" | "network" | "speaker" | "receipt" | "phone-dial" | "phone-off" | "phone-ring" | "cloud-check" | "database" | "database-check" | "database-settings" | "file-code" | "scanner" | "layers-off" | "camera" | "home" | "webcam" | "microphone" | "microphone-off" | "archive-box" | "signal-low" | "terminal" | "database-share" | "file-code-2" | "hierarchy" | "presentation-analytics" | "server-2" | "settings-cog" | "toilet-paper" | "calendar-date" | "shop" | "book-bookmark" | "floppy-disk" | "sim-card" | "color-palette" | "money-bag" | "edit-pencil" | "credit-card-1" | "music-note-1" | "wifi-on" | "circus-tent" | "lock-circle" | "android-logo" | "power-button" | "camera-tripod" | "cloud-loading" | "coupon-percent" | "flip-right" | "pathfinder-merge" | "shop-sign" | "party-balloon" | "phone-booth" | "bluetooth-logo" | "smiley-wink" | "calendar-grid" | "keyboard-command" | "mouse-wireless-1" | "earpods" | "smiley-grumpy" | "smiley-happy" | "information-desk" | "shopping-basket-1" | "cellular-network-lte" | "cloud-data-transfer" | "money-wallet" | "content-write" | "programming-browser" | "cloud-disable" | "database-network-1" | "credit-card-visa" | "toilet-sign" | "smiley-blessed" | "advertising-ad-browser" | "advertising-money-idea" | "analytics-board-graph-line" | "analytics-graph-bar-horizontal" | "analytics-graph-line-triple" | "analytics-graph-pie" | "analytics-graph-stock" | "business-cash-eye" | "business-cash-idea" | "business-cash-scale-balance" | "business-cash-search" | "business-coaching-bait-1" | "business-coaching-idea-jigsaw" | "business-coaching-strategy-1" | "business-coaching-whistle" | "business-deal-handshake" | "business-deal-men-cash-conversation" | "business-metaphor-boat-success" | "business-metaphor-burn-money" | "business-metaphor-lucky-cat" | "business-metaphor-shark" | "business-product-supplier-1" | "business-product-supplier-2" | "business-workflow-compare" | "business-workflow-merge-1" | "business-workflow-merge-2" | "business-workflow-project-management" | "monetization-bill-magnet" | "monetization-mouse" | "optimization-configuration" | "optimization-graph-settings" | "performance-increase-clipboard" | "performance-presentation-graph" | "product-launch-go-sign" | "product-launch-laptop" | "seo-eye-network" | "seo-search-graph" | "strategy-business-success-peak" | "strategy-target-center-phone" | "trading-graph" | "arduino-plus-minus-1" | "cables-split" | "cables-usb-1" | "cables-usb-type-c" | "cd-rom-burn" | "cd-rom-disc-1" | "cd-rom-disc-broken" | "desktop-action-monitor-add" | "desktop-action-monitor-edit" | "desktop-action-monitor-question" | "desktop-action-monitor-remove" | "desktop-action-monitor-screen-sleep-2" | "desktop-computer-pc" | "desktop-monitor" | "hard-drive-exertnal-1" | "hard-drive-warning" | "keyboard-wireless" | "kindle-read-document-hold" | "laptop-action-flash" | "laptop-action-lock" | "laptop-action-search" | "laptop-action-warning" | "laptop-computer-1" | "laptop-computer-smiley" | "memory-computer-ram" | "memory-flash-drive" | "memory-sd-card" | "memory-sd-card-check" | "memory-sd-card-search" | "memory-sd-card-settings" | "memory-sd-card-sync" | "microprocessor-computer-chip-32-bit" | "microprocessor-computer-chip-64-bit" | "microprocessor-computer-chip-flash" | "microprocessor-computer-chip-overheat" | "microprocessor-computer-chip-processor" | "microprocessor-computer-chip-search" | "power-supply-battery-charge" | "power-supply-plug" | "power-supply-wall-socket-1" | "screen-curved" | "smart-watch-band-2" | "smart-watch-circle" | "smart-watch-circle-bluetooth" | "smart-watch-circle-graph-line" | "smart-watch-circle-location" | "smart-watch-square" | "smart-watch-square-bell-alternate" | "smart-watch-square-graph-alternate" | "smart-watch-square-microphone-alternate" | "smart-watch-square-navigation-alternate" | "smart-watch-wrist" | "tablet-application" | "webcam-off-1" | "archive-drawer-1" | "archive-drawer-2" | "book-flip-page" | "book-library-shelf-1" | "book-sound-audio" | "content-browser-edit" | "content-brush-pen" | "content-paper-edit" | "content-typewriter" | "newspaper-fold" | "newspaper-read-man" | "notes-add" | "notes-book" | "notes-book-1" | "notes-hand" | "notes-paper" | "notes-quill" | "color-brush-1" | "color-brush-2" | "color-crayon" | "color-drop-off" | "color-gradient" | "color-palette-sample-2" | "color-picker-drop" | "color-spray" | "color-triangle" | "crop-expand" | "crop-image" | "design-process-draw-pen" | "design-process-drawing-board" | "design-process-drawing-board-education" | "design-process-fibonacci" | "design-process-mouse-pen" | "design-process-pen-idea" | "design-tool-brush-ruler" | "design-tool-liquid-glue" | "design-tool-magic-wand" | "design-tool-pen-brush-cup" | "design-tool-pen-pencil-brush" | "design-tool-quill" | "design-tool-stamp" | "flip-rotate-clockwise" | "flip-up" | "graphic-tablet-draw-1" | "graphic-tablet-intous-draw" | "grid-corner-ruler" | "grid-monitor" | "grid-ruler" | "grid-snap-magnet" | "layers-bring-backward" | "layers-stacked-1" | "reorder-up" | "resize-expand-arrow" | "resize-shrink-1" | "ruler-t" | "shape-cube" | "shape-pyramid" | "transform-right" | "vectors-add-anchor" | "vectors-anchor-rectangle" | "vectors-path-flat" | "vectors-pen-add-1" | "vectors-pen-draw" | "conversation-chat" | "conversation-question-text-1" | "conversation-question-warning-3" | "drawer-download" | "drawer-envelope" | "drawer-image" | "email-action-delete-junk-1" | "email-action-download" | "email-action-image" | "email-action-remove" | "email-action-reply-1" | "email-action-search" | "email-action-sync-1" | "email-action-warning" | "emoji-hand-cheers" | "envelope-letter-front" | "envelope-paper-document" | "envelope-pigeon" | "mailbox-full-1" | "mailbox-post-1" | "messages-bubble-image" | "messages-bubble-menu" | "messages-bubble-settings" | "messages-bubble-smile" | "messages-bubble-sms-block-1" | "messages-bubble-square-graph" | "messages-bubble-square-lock" | "messages-bubble-square-search" | "messages-bubble-square-settings" | "messages-bubble-square-text" | "messages-people-person-bubble-square-2" | "messages-people-user-bubble" | "messages-people-woman-heart" | "read-email-at-symbol" | "read-email-target" | "send-email-fly" | "send-email-paper-plane-1" | "send-email-pop-up" | "smiley-blush" | "smiley-cheeky" | "smiley-crazy" | "smiley-crying-rainbow" | "smiley-dizzy" | "smiley-eyes-only" | "smiley-in-trouble" | "smiley-kiss-heart" | "smiley-lol" | "smiley-petrified" | "smiley-rich" | "smiley-shine-big-eyes" | "smiley-sick-contageous" | "smiley-smile-2" | "smiley-thrilled" | "smiley-thumbs-up" | "smiley-zipped" | "stamps-portrait" | "accessories-remote-shutter" | "accessories-retro-film-1" | "camera-double" | "camera-mode-photo" | "camera-settings-flip" | "camera-settings-hand-motion" | "camera-settings-wifi" | "composition-16-to-9" | "composition-man" | "composition-paronama-horizontal" | "focus-camera-auto" | "focus-cross" | "focus-frame-target-1" | "focus-motion" | "image-file-dollar" | "image-file-edit" | "image-file-favorite-heart" | "image-file-search" | "lens-horizontal" | "lens-shutter-1" | "light-mode-brightness-half" | "light-mode-dark-light" | "light-mode-flash-auto" | "light-mode-hdr" | "light-mode-night-architecture" | "light-spotlight-1" | "light-umbrella-reflect" | "mask-diamond" | "modern-camera-go-pro" | "photo-frame-hang" | "photo-frame-landscape" | "picture-double-landscape" | "picture-polaroid-four" | "picture-polaroid-hide" | "picture-stack-landscape" | "retouch-contrast" | "retouch-cut-edit" | "retouch-face" | "retouch-magic-wand" | "retouch-saturation" | "retouch-sticker" | "taking-pictures-circle" | "taking-pictures-man" | "timer-countdown-ten" | "transfer-pictures-laptop-smartphone" | "transfer-pictures-sent" | "transfer-pictures-smartphone" | "vintage-camera-polaroid" | "add-sign-bold" | "alert-alarm-bell" | "alert-alarm-clock" | "alerts-radioactive-circle" | "alerts-stop-sign" | "alerts-warning-triangle" | "bookmarks-document" | "cell-formating-border-horizontal-vertical" | "connect-flash" | "controls-slider-toggle-left" | "controls-slider-toggle-right" | "controls-sliders-vertical" | "controls-volume-knob" | "copy-paste-clipboard" | "copy-paste-cut-scissors" | "cursor-highlight-click-1" | "cursor-speed-1" | "dashboard-browser-gauge" | "dashboard-layout" | "delete-bin-2" | "delete-bin-5" | "delete-disable-block-1" | "delete-skull" | "edit-pen-write-paper" | "edit-quill-feather-1" | "face-id-male-1" | "face-id-square" | "face-id-user" | "flip-reflect-up" | "form-edition-clipboard" | "form-edition-clipboard-check" | "form-edition-clipboard-write" | "form-edition-file-attach" | "form-edition-image-attach" | "form-edition-number-1" | "form-edition-text-2" | "form-validation-check-double" | "form-validation-check-square-1" | "form-validation-cursor-choose" | "form-validation-remove-square" | "gesture-swipe-two-fingers-horizontal" | "gesture-zoom-in" | "help-headphones-customer-support" | "help-headphones-customer-support-human" | "help-question-circle" | "hierarchy-web" | "home-chimney-2" | "iris-scan-target" | "keyboard-arrow-return" | "keyboard-asterisk-1" | "keyboard-asterisk-2" | "keyboard-delete-button" | "keyboard-eject-button" | "keyboard-id-dial-finger" | "keyboard-keypad-pull-down" | "layouts-array-1" | "layouts-content" | "layouts-right" | "layouts-top-three-columns" | "link-paperclip" | "lists-bullets" | "lists-numbers" | "loading-browser-bar" | "loading-spinning-star" | "loading-star-1" | "lock-cancel-slash" | "lock-key-1" | "lock-network" | "login-logout-key" | "login-rectangle" | "menu-navigation-2" | "menu-navigation-horizontal" | "move-cross-over" | "move-rectangle-left" | "move-scroll-omnidirection-button" | "multimedia-controls-button-next" | "multimedia-controls-loop-arrow" | "multimedia-controls-loop-arrow-1" | "multimedia-controls-single-track" | "navigation-page-right" | "organization-files" | "paginate-filter-mail" | "paginate-filter-music" | "paragraphs-bullets" | "paragraphs-image-right" | "paragraphs-indent" | "paragraphs-indent-last-line" | "paragraphs-indent-left" | "paragraphs-insert-image-top" | "paragraphs-symbol" | "password-approved" | "password-desktop-lock-approved" | "password-type" | "print-text" | "remove-delete-sign-bold" | "remove-subtract-sign-bold" | "resize-arrow-expand-vertical-1" | "resize-arrow-retract-horizontal" | "retract-shrink-arrow" | "search-magnifier" | "select-target-crosshair-1" | "settings-cog-double-1" | "settings-hammer" | "settings-screwdriver" | "settings-wrench-double" | "share-circles" | "share-forward" | "share-megaphone" | "share-radar" | "share-user-signal-1" | "stats-line-graph-circle" | "synchronize-arrows" | "synchronize-arrows-warning" | "tags-double" | "text-formating-align-bottom" | "text-formating-arrange-spacing" | "text-formating-eraser-2" | "text-formating-font-size" | "text-formating-hash" | "text-formating-input" | "text-formating-open-quote" | "text-formating-rotate-angle" | "text-formating-rotate-vertical" | "text-formating-square" | "text-formating-subscript" | "time-clock-24-hrs-2" | "time-clock-circle" | "time-clock-nine-twenty-five-1" | "time-clock-share-1" | "time-clock-square" | "time-hourglass-triangle" | "time-stopwatch" | "time-wrist-watch-1" | "touch-id-fingerprint-lock-1" | "touch-id-fingerprint-square" | "unlink-broken-chain-1" | "unlock-circle" | "view-binocular" | "view-eye-1" | "view-eye-off" | "voice-id-approved" | "voice-id-smartphone" | "voice-id-user" | "wireless-signal-rss-feed" | "wireless-wifi-signal-antenna" | "wireless-wifi-signal-pole" | "workflow-collaborate" | "zoom-in-magnifier-1" | "zoom-out-magnifier-1" | "cloud-error-404" | "cloud-lock-1" | "cloud-network-1" | "cloud-phone-exchange" | "cloud-storage-drive" | "data-transfer-diagonal" | "data-transfer-document-module" | "data-transfer-edi-reload" | "data-transfer-ftp" | "data-transfer-horizontal" | "data-transfer-sync" | "data-transfer-vertical" | "download-brackets" | "download-harddrive-1" | "home-to-cloud-sync" | "network-connection-locked" | "network-connector" | "network-laptop-1" | "network-monitor-hierarchy" | "network-monitor-team-1" | "network-monitor-transfer-arrow-1" | "network-router-signal-1" | "network-router-signal-double" | "server-api-cloud" | "server-edit" | "server-hand" | "server-lock" | "server-sftp-folder" | "upload-brackets" | "upload-menu" | "wifi-laptop" | "wifi-monitor-1" | "wireless-house-signal" | "wireless-tower-building" | "worldwide-web-browser" | "worldwide-web-disable" | "worldwide-web-location-pin" | "worldwide-web-network-www" | "worldwide-web-phone" | "worldwide-web-sync" | "worldwide-web-users" | "accounting-abacus" | "accounting-calculator" | "accounting-invoice" | "accounting-invoice-mail" | "begging-giving" | "calculator-calculator-app" | "cash-payment-bag-1" | "cash-payment-bill" | "cash-payment-coin-1" | "cash-payment-pen-signature" | "cash-payment-sign-2" | "check-payment-sign" | "credit-card-amex" | "credit-card-dollar" | "credit-card-mastercard" | "credit-card-payment" | "credit-card-phone-call" | "credit-card-smartphone" | "crypto-close-up-group-chat-users-conversation" | "crypto-currency-bitcoin-chip" | "crypto-currency-bitcoin-code" | "crypto-currency-bitcoin-give" | "crypto-currency-bitcoin-graph-increase" | "crypto-currency-bitcoin-monitor-shield" | "crypto-currency-bitcoin-network-globe" | "crypto-currency-litecoin" | "crypto-currency-namecoin" | "crypto-currency-tether" | "crypto-currency-usd-coin" | "crypto-mining" | "currency-bag-bath" | "currency-bath-increase" | "currency-dollar-bubble" | "currency-dollar-chip" | "currency-dollar-decrease" | "currency-dollar-euro-chat-bubble" | "currency-euro-bubble" | "currency-euro-dollar-exchange" | "currency-international-currency" | "currency-pound-bubble" | "currency-yen-bubble" | "donation-charity-donate-bag-2" | "donation-charity-donate-box" | "donation-charity-donate-heart-flower" | "modern-payment-contactless" | "modern-payment-desktop-transaction" | "modern-payment-e-wallet" | "modern-payment-qr-basket" | "modern-payment-self-checkout-touch" | "modern-payment-wireless-smartphone" | "money-atm-withdraw" | "money-bag-dollar" | "money-bag-euro" | "money-bill-fly" | "money-cash-bill" | "money-cash-bill-stack" | "money-coin-cash" | "money-coin-purse" | "money-coin-stack" | "saving-bag-increase" | "saving-bank" | "saving-bank-cash" | "saving-bank-international" | "saving-bear-market" | "saving-bear-market-graph-bars" | "saving-bull-market" | "saving-bull-market-graph-bars" | "saving-money-seedling" | "saving-piggy-bank" | "saving-safe" | "saving-wallet-international" | "wealth-crystal-shine" | "wealth-gold-bars" | "wealth-pearl-ring" | "wealth-time-money" | "wealth-treasure-chest-open" | "amusement-park-castle" | "amusement-park-ferris-wheel" | "amusement-park-strength-meter" | "board-game-chess-figures" | "board-game-dice-pawn" | "camera-stabilizer" | "camera-studio" | "card-game-card-spade" | "card-game-symbols" | "casino-777-slot-machine" | "cd-disc" | "cd-player-disc" | "circus-clown-1" | "cloud-gaming-service" | "concert-couple-duet" | "controls-camera-off" | "digital-player-phone-speaker-1" | "earpods-attention" | "earpods-charge" | "earpods-true-wireless" | "equalizer-bar-graph" | "equalizer-phone-application-2" | "equalizer-stereo-play" | "equalizer-volume-graph" | "famous-character-pokemon" | "famous-character-starwars-r2d2" | "fireworks-2" | "headphones-1" | "headphones-cable" | "headphones-human" | "instrument-accordian" | "instrument-electronic-keyboard" | "instrument-saxophone" | "ipod-player" | "ipod-player-2" | "media-protection-shield" | "microphone-karaoke-1" | "modern-music-bass-guitar" | "modern-music-dj" | "modern-music-drums" | "modern-music-mix-touch" | "movies-clapboard" | "movies-hot-trending" | "movies-reel-rating" | "music-basket" | "music-clef" | "music-genre-romantic-cd" | "music-metronom" | "music-note-circle-block-1" | "night-club-disco-ball-1" | "party-alchoholic-drink" | "party-decoration-banner-1" | "playlist-album-1" | "playlist-cloud" | "playlist-menu" | "playlist-square-sync" | "podcast-microphone-international-1" | "radio-antenna-handle" | "radio-stereo" | "role-playing-games-icon-weapon-equipment-crate-chest" | "show-hat-magician" | "show-theater-drama" | "speaker-stand" | "tape-cassette-1" | "vide-document-avi" | "vide-document-mov" | "video-edit-effects" | "video-edit-play" | "video-edit-slow-motion" | "video-edit-split" | "video-file-camera" | "video-game-360-vr" | "video-game-breakout" | "video-game-control-gear" | "video-game-controller" | "video-game-controller-team" | "video-game-controller-wifi" | "video-game-hatchi" | "video-game-mario-mushroom-1" | "video-game-nintendo" | "video-game-pacman" | "video-game-tetris" | "video-games-device-switch-joy-controller" | "video-player-movie" | "video-player-slider" | "video-player-smartphone-horizontal" | "vintage-tv-1" | "vinyl-record-gramophone" | "vinyl-record-player-2" | "volume-control-down-1" | "volume-control-medium-1" | "volume-control-up-1" | "walkman-player" | "airplane-mode-rectangle" | "answer-machine-voice-mail" | "broken-smartphone-1" | "cellular-network-wifi-3g" | "cellular-network-wifi-4g" | "cellular-network-wifi-5g" | "charging-battery-eco" | "charging-battery-empty" | "charging-battery-flash-connected" | "charging-battery-high-1" | "charging-battery-low-2" | "charging-flash-wave" | "charging-flash-wireless" | "connect-device-cancel" | "connect-device-exchange" | "expand-smartphone" | "fax-machine-paper-print" | "gps-location-rectangle" | "mobile-phone-blackberry-2" | "mobile-phone-hand-hold" | "mobile-phone-smartphone" | "mobile-phone-write" | "mobilephone-action-blutooth" | "mobilephone-action-camera" | "mobilephone-action-cash" | "mobilephone-action-location-lock" | "mobilephone-action-lock" | "mobilephone-action-navigation-map" | "mobilephone-action-notification-allowed" | "mobilephone-action-otp-message" | "mobilephone-action-settings" | "mobilephone-action-voice-approved" | "phone-actions-24-hours-call" | "phone-actions-bluetooth" | "phone-actions-merge" | "phone-actions-off" | "phone-actions-ringing" | "phone-actions-wait-hold" | "phone-book" | "phone-camera-rear-quardruple" | "phone-retro-1" | "phone-selfie-front" | "push-notification-2" | "push-notification-alert-1" | "qr-code-scan-1" | "rotate-lock-smartphone" | "rotate-smartphone" | "scroll-vertical-smartphone" | "smartphone-app-widget-add" | "smartphone-app-widget-remove" | "smartphone-app-widget-stock" | "smartphone-app-widget-translator" | "vibrate-smartphone" | "android-settings" | "app-window-bookmark" | "app-window-expand" | "app-window-graph" | "app-window-layout" | "app-window-link" | "app-window-search-text" | "app-window-source-code" | "app-window-two" | "app-window-user" | "app-window-wireless-problem" | "apps-laptop-shield" | "apps-monitor-graph-line" | "apps-monitor-user" | "bug-alert-message" | "bug-browser-warning" | "bug-cloud-error" | "bug-service-chat" | "coding-file-exe-tag" | "coding-file-iso-tag" | "coding-files-network-folder" | "computer-bug-1" | "database-connection" | "database-hand" | "database-hierarchy" | "file-code-apk" | "file-code-c-plus-plus" | "file-code-css" | "file-code-html" | "file-code-java" | "file-code-js-javascript" | "file-code-share-1" | "file-code-warning-1" | "learning-programming-book" | "learning-programming-flag" | "module-building-blocks" | "module-three-boxes" | "plugin-hands-puzzle" | "plugin-jigsaw-puzzle" | "programming-code-idea" | "programming-flowchart" | "programming-hold-code" | "programming-keyboard-type" | "programming-language-bookmark-javascript" | "programming-language-browser-css" | "programming-language-browser-html" | "programming-language-css-3" | "programming-language-html-5" | "programming-language-script-lock" | "programming-monitor" | "programming-search" | "programming-team-chat" | "programming-user-code" | "programming-user-head-matrix" | "responsive-design-expand" | "responsive-design-hand" | "responsive-design-monitor-phone" | "security-computer-shield" | "security-gdpr-browser" | "security-it-service" | "security-network-chain" | "security-phone-protection-approved" | "security-shield-network" | "security-shield-settings" | "security-shield-wall" | "security-user-lock" | "server-error-404-not-found" | "ui-browser-slider" | "ui-page-scroll" | "ui-phone-slider-vertical" | "ui-step-indicator-2" | "ui-webpage-bullets" | "ui-webpage-slider-cursor" | "website-development-browser-com-web" | "website-development-browser-hand" | "website-development-browser-page-layout" | "website-development-browser-source-code" | "website-development-build" | "website-development-code-flowchart-1" | "website-development-monitor-www-web" | "barcode-view-price" | "code-barcode-scan" | "code-qr" | "coupon-cut" | "customer-action-complaint" | "customer-action-product-message" | "discount-50-percent" | "discount-circle-dash" | "discount-percent-bubble" | "discount-percent-increase-arrow" | "discount-percent-thin" | "discount-point-coin" | "discount-sale-sign" | "e-commerce-add-basket-cloud" | "e-commerce-basket-monitor" | "e-commerce-cart-laptop" | "e-commerce-cart-vr" | "e-commerce-click-buy" | "e-commerce-online-shop" | "e-commerce-target-shopping-bag" | "mobile-shopping-cart" | "mobile-shopping-shop-basket" | "products-purse" | "products-purse-2" | "products-shopping-bags" | "receipt-cash-register-print" | "receipt-view-pricing" | "shop-cart" | "shop-cashier" | "shop-close" | "shop-like" | "shop-open" | "shop-street-sign" | "shopping-bag-barcode" | "shopping-bag-biodegradable-1" | "shopping-bag-duty-free" | "shopping-bag-no-plastic" | "shopping-bag-sad" | "shopping-bag-side" | "shopping-bag-target" | "shopping-basket-arrow-in" | "shopping-basket-arrow-out" | "shopping-basket-favorite-star" | "shopping-basket-like" | "shopping-basket-rating" | "shopping-basket-search" | "shopping-basket-smile-1" | "shopping-cart-trolley" | "shopping-cart-trolley-check" | "shopping-cart-trolley-download" | "shopping-cart-trolley-full" | "shopping-cart-trolley-upload" | "tag-hot-price" | "tag-new-circle" | "tag-sale-price" | "allowances-no-bicycles-sign" | "allowances-no-food-sign" | "allowances-no-photos-sign" | "allowances-no-smoking" | "allowances-silence" | "allowances-smoking" | "cleaning-man" | "cleaning-robot-vacuum" | "cleaning-sign" | "disability-ad" | "disability-blind-read" | "disability-braille" | "disability-cane-1" | "disability-down-syndrome-ribbon" | "disability-hands-language" | "disability-hearing-t" | "disability-partially-blind" | "disability-qcc-line" | "disability-service-dog" | "disability-sit-pregnancy" | "disability-walking-help-1" | "disability-wheelchair-3" | "disability-wheelchair-way" | "escalator-ascend-person" | "escalator-descend-person" | "family-baby-change-diaper" | "family-child-play-ball-sign" | "garbage-throw" | "information-desk-question-help" | "laundry-hand-wash" | "laundry-washing-machine" | "lift-two-people-elevator" | "locker-room-hanger-woman" | "locker-room-suitcase-umbrella" | "locker-room-wash-hands" | "moving-walkway-luggage-1" | "safety-911-call" | "safety-call-firefighters-1" | "safety-danger-mudslide" | "safety-drown-hand" | "safety-exit-door" | "safety-exit-sign" | "safety-fire-exit" | "safety-fire-extinguisher" | "safety-sign-danger-slippery" | "safety-sign-electricity" | "safety-warning-radioactive" | "seat-vip" | "stairs-ascend" | "stairs-descend" | "swimming-pool-person" | "toilet-hand-dryer" | "toilet-no-trash-throw" | "waiting-room-clock" | "walking-symbol" | "water-fountain-drink" | "water-fountain-sink" | "business-management-agreement" | "business-management-team-up" | "business-management-teamwork-clap" | "collaboration-meeting-team-file" | "collaboration-team-chat" | "creativity-idea-bulb" | "creativity-idea-strategy" | "crm-lead-distribution" | "desk-computer-base-work-standing-user-1" | "human-resources-businessman" | "human-resources-employee-crown-woman" | "human-resources-hierarchy" | "human-resources-rating-man" | "job-briefcase-document" | "job-candidate-target-1" | "job-choose-candidate" | "job-profile-search" | "job-seach-man" | "job-search-magnifier-briefcase" | "meeting-co-working-2" | "meeting-presentation" | "meeting-user-man-stress" | "office-building-glass-window" | "office-building-outdoors" | "office-business-card" | "office-desk-1" | "office-desk-lamp" | "office-file-sheet" | "office-file-text" | "office-file-text-graph" | "office-folder" | "office-paper-binder" | "office-photocopy-machine-2" | "office-shredder-1" | "office-stamp-document" | "office-stapler-1" | "office-tape-2" | "office-water-dispenser" | "office-work-wireless" | "presentation-audience" | "presentation-board-graph" | "presentation-podium-notes" | "presentation-projector" | "presentation-projector-screen-bars" | "presentation-projector-screen-budget-analytics" | "presentation-screen" | "task-clipboard-check" | "task-list-clipboard-check" | "task-list-clipboard-clock" | "task-list-clipboard-favorite-star" | "task-list-clipboard-share" | "task-list-pen" | "task-list-pin-1" | "video-meeting-camera-browser" | "video-meeting-monitor-webcam" | "video-meeting-team-monitor-man" | "work-from-home-travel-office" | "work-from-home-user-pet-cat" | "worker-lay-off-fired-user-finger-1">): import("react").JSX.Element;
1012
1012
  displayName: string;
1013
1013
  };
1014
1014
  export {};