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
@@ -4567,7 +4567,7 @@ declare const hugeiconsIconNames: {
4567
4567
  };
4568
4568
  export type HugeiconsIconName = keyof typeof hugeiconsIconNames;
4569
4569
  export declare const Hugeicons: {
4570
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"function" | "id" | "filter" | "android" | "signal" | "scroll" | "absolute" | "perspective" | "matrix" | "text" | "radio" | "repeat" | "anchor" | "canvas" | "code" | "label" | "meta" | "option" | "progress" | "table" | "circle" | "line" | "mask" | "path" | "polygon" | "stop" | "view" | "align-horizontal-center" | "align-vertical-center" | "archive" | "aspect-ratio" | "asterisk" | "at" | "attachment" | "bandage" | "binoculars" | "bluetooth" | "blur" | "bullet" | "campfire" | "charity" | "chat" | "chat-question" | "chip" | "clipboard" | "closed-caption" | "console" | "copyright" | "crane" | "crop" | "crown" | "cursor-text" | "desk" | "diamond" | "distribute-horizontal-center" | "distribute-horizontal-left" | "distribute-horizontal-right" | "distribute-vertical-bottom" | "distribute-vertical-center" | "distribute-vertical-top" | "eraser" | "eye" | "ferris-wheel" | "filter-remove" | "fit-to-screen" | "flash-off" | "flashlight" | "gold" | "grid" | "grid-off" | "handcuffs" | "heart-remove" | "help-circle" | "inbox" | "incognito" | "ipod" | "keyboard" | "license" | "lighthouse" | "link-circle" | "locker" | "magnet" | "mailbox" | "message-question" | "more" | "note" | "note-remove" | "notebook" | "package" | "passport" | "pause-circle" | "pin" | "pin-off" | "play-circle" | "podcast" | "police-badge" | "pound" | "purse" | "quora" | "redo" | "reminder" | "repeat-off" | "replay" | "router" | "rss" | "satellite" | "school" | "screen-rotation" | "seal" | "security" | "seesaw" | "segment" | "shield-key" | "slide" | "star-off" | "stop-circle" | "submarine" | "thumbs-up-down" | "trademark" | "translate" | "ufo" | "undo" | "usb" | "webhook" | "yurt" | "carrot" | "corn" | "flower" | "horse" | "hydro-power" | "mushroom" | "pine-tree" | "tire" | "tractor" | "water-pump" | "alert-circle" | "alpha" | "alphabet-greek" | "beta" | "snail" | "flip-horizontal" | "flip-vertical" | "arrow-expand" | "arrow-left-right" | "arrow-up-down" | "call-received" | "refresh" | "reload" | "rotate-360" | "shuffle" | "headphones" | "headset" | "headset-off" | "speaker" | "volume-high" | "volume-low" | "volume-minus" | "volume-off" | "caravan" | "fuel" | "lock" | "steering" | "thermometer" | "bank" | "bitcoin" | "credit-card" | "invoice" | "litecoin" | "piggy-bank" | "safe" | "battery-low" | "apple" | "apple-finder" | "bootstrap" | "deviantart" | "dropbox" | "ethereum" | "github" | "gitlab" | "gnome" | "google" | "google-drive" | "google-lens" | "google-maps" | "instagram" | "mastodon" | "microsoft" | "nintendo-switch" | "npm" | "pinterest" | "react" | "reddit" | "skype" | "slack" | "snapchat" | "soundcloud" | "spotify" | "teamviewer" | "trello" | "twitch" | "twitter" | "vimeo" | "waze" | "wechat" | "whatsapp" | "wikipedia" | "wordpress" | "youtube" | "phone-check" | "phone-lock" | "bow-tie" | "chef-hat" | "glasses" | "hanger" | "necklace" | "sunglasses" | "tie" | "cloud" | "cloud-download" | "cloud-upload" | "file-cloud" | "database" | "database-export" | "database-import" | "database-sync" | "api" | "bash" | "variable" | "laptop" | "projector" | "artboard" | "brush" | "pencil" | "ruler" | "book-edit" | "file-edit" | "folder-edit" | "note-edit" | "file-download" | "file-export" | "file-import" | "file-link" | "file-minus" | "file-music" | "file-remove" | "file-search" | "file-star" | "file-sync" | "file-upload" | "file-video" | "folder-check" | "folder-download" | "folder-minus" | "folder-music" | "folder-off" | "folder-open" | "folder-remove" | "folder-search" | "folder-sync" | "folder-upload" | "folder-zip" | "blender" | "cheese" | "cookie" | "kettle" | "microwave" | "noodles" | "popcorn" | "sausage" | "square-circle" | "tea" | "signature" | "bomb" | "chess-pawn" | "pokeball" | "puzzle" | "skull" | "star-face" | "compass" | "earth" | "latitude" | "longitude" | "factory" | "nut" | "tape-measure" | "tools" | "hair-dryer" | "bed" | "bed-double" | "gift" | "pumpkin" | "curtains" | "door" | "fire" | "floor-plan" | "fridge" | "garage" | "lamp" | "mirror" | "pause" | "play" | "pool" | "printer" | "printer-3d" | "record" | "sofa-single" | "solar-power" | "video-off" | "wind-power" | "wind-turbine" | "wifi-lock" | "abacus" | "approximately-equal" | "calculator" | "chart-histogram" | "diameter" | "greater-than" | "less-than" | "percent" | "percent-circle" | "pi" | "plus-minus" | "radius" | "ambulance" | "bacteria" | "blood-bag" | "brain" | "lungs" | "prescription" | "stethoscope" | "wheelchair" | "cactus" | "feather" | "tsunami" | "taxi" | "tram" | "baby-bottle" | "ski" | "airport" | "beach" | "bridge" | "castle" | "church" | "eiffel-tower" | "island" | "library" | "police-station" | "warehouse" | "printer-off" | "dna" | "microscope" | "rocket" | "test-tube" | "cube" | "hexagon" | "octagon" | "pentagon" | "pyramid" | "rhombus" | "sphere" | "square" | "star" | "star-circle" | "star-half" | "triangle" | "badminton" | "baseball" | "baseball-bat" | "basketball-hoop" | "bicycle" | "bowling" | "boxing-glove" | "curling" | "fencing" | "football" | "golf-cart" | "kettlebell" | "kite" | "paragliding" | "podium" | "roller-skate" | "strategy" | "tennis-ball" | "volleyball" | "water-polo" | "whistle" | "border-horizontal" | "border-vertical" | "drone" | "helicopter" | "scooter-electric" | "road" | "tanker-truck" | "tow-truck" | "traffic-light" | "truck" | "truck-delivery" | "lifebuoy" | "wave" | "flash" | "umbrella" | "command-line" | "finger-print" | "identification" | "information-circle" | "map-pin" | "moon" | "qr-code" | "sparkles" | "swatch" | "user" | "user-circle" | "user-group" | "alarm-clock" | "angry" | "banana" | "battery-full" | "blend" | "bot" | "cable-car" | "chart-column" | "chart-scatter" | "cherry" | "cloud-snow" | "codesandbox" | "command" | "computer" | "contact" | "cpu" | "croissant" | "dribbble" | "droplet" | "ear" | "euro" | "figma" | "folders" | "framer" | "gem" | "git-branch" | "git-compare" | "git-fork" | "git-merge" | "git-pull-request" | "git-pull-request-closed" | "git-pull-request-draft" | "globe" | "gpu" | "hard-drive" | "heading" | "highlighter" | "hourglass" | "kanban" | "kayak" | "layout-grid" | "lollipop" | "mail-open" | "meh" | "mountain" | "move" | "move-left" | "move-right" | "package-open" | "package-search" | "paint-bucket" | "plane" | "rainbow" | "refrigerator" | "rocking-chair" | "shapes" | "shield-user" | "sliders-horizontal" | "sliders-vertical" | "smile" | "square-arrow-down-left" | "square-arrow-down-right" | "square-arrow-up-left" | "square-arrow-up-right" | "square-square" | "stamp" | "sunrise" | "sunset" | "tags" | "text-align-center" | "text-wrap" | "thumbs-down" | "thumbs-up" | "university" | "zap" | "align-left" | "align-right" | "bar-chart" | "chrome" | "git-commit" | "more-horizontal" | "more-vertical" | "pie-chart" | "address-book" | "affiliate" | "alert-square" | "align-box-bottom-center" | "align-box-bottom-left" | "align-box-bottom-right" | "align-box-top-center" | "align-box-top-left" | "align-box-top-right" | "alphabet-arabic" | "alphabet-bangla" | "alphabet-hebrew" | "alphabet-korean" | "alphabet-thai" | "angle" | "avocado" | "background" | "book-download" | "book-upload" | "border-inner" | "bounce-left" | "bounce-right" | "browser" | "bulb" | "calendar-user" | "camera-ai" | "camper" | "cap-projecting" | "cap-straight" | "carousel-horizontal" | "carousel-vertical" | "chart-radar" | "circle-arrow-down-left" | "circle-arrow-down-right" | "circle-arrow-up-left" | "circle-arrow-up-right" | "code-circle" | "color-picker" | "congruent-to" | "diaper" | "dice" | "discount" | "drag-drop" | "ease-in" | "ease-in-control-point" | "ease-in-out" | "ease-out" | "ease-out-control-point" | "edit-off" | "eggs" | "face-id" | "file-bitcoin" | "file-dollar" | "file-euro" | "file-shredder" | "file-unknown" | "file-zip" | "filter-edit" | "fingerprint-scan" | "first-aid-kit" | "folder-pin" | "galaxy" | "gift-card" | "hand-sanitizer" | "heart-check" | "help-square" | "hierarchy" | "hourglass-off" | "ice-skating" | "join-bevel" | "join-round" | "join-straight" | "joker" | "keyframe" | "keyframe-align-center" | "keyframe-align-horizontal" | "keyframe-align-vertical" | "label-important" | "letter-spacing" | "lock-password" | "man" | "math" | "medicine-syrup" | "news" | "oval" | "perfume" | "picture-in-picture-on" | "prism" | "prison" | "quotes" | "receipt-dollar" | "registered" | "ripple" | "rotate-clockwise" | "seo" | "shopping-bag-check" | "source-code" | "sql" | "stars" | "step-into" | "step-out" | "swimming" | "temperature" | "text-color" | "transition-bottom" | "transition-left" | "transition-right" | "transition-top" | "truck-return" | "user-square" | "vaccine" | "vacuum-cleaner" | "wave-square" | "woman" | "zeppelin" | "zoom" | "zoom-in-area" | "zoom-out-area" | "zzz" | "align-bottom" | "align-top" | "amazon" | "apple-music" | "bing" | "bluesky" | "bounding-box" | "camera-video" | "claude" | "code-square" | "database-add" | "discord" | "hdd" | "heartbreak" | "medium" | "messenger" | "paragraph" | "paypal" | "question" | "sd-card" | "snow" | "stripe" | "telegram" | "telephone" | "threads" | "tiktok" | "toggle-off" | "toggle-on" | "transparency" | "tropical-storm" | "universal-access" | "universal-access-circle" | "volume-up" | "vr" | "yelp" | "arrow-turn-down" | "arrow-turn-up" | "floppy-disk" | "gears" | "gun" | "jar" | "spoon" | "weight-scale" | "horse-head" | "file-audio" | "truck-monster" | "socks" | "battery-empty" | "poop" | "hotdog" | "vest" | "x-ray" | "bowling-ball" | "child" | "airplay-line" | "delete-column" | "delete-row" | "insert-column-left" | "insert-column-right" | "list-view" | "align-box-middle-center" | "align-box-middle-left" | "align-box-middle-right" | "arrange" | "border-full" | "clean" | "column-delete" | "column-insert" | "connect" | "filter-reset" | "fork" | "locked" | "radio-button" | "row-delete" | "row-insert" | "select-01" | "select-02" | "text-align-left" | "text-align-right" | "text-all-caps" | "text-bold" | "text-creation" | "text-font" | "text-footnote" | "text-indent" | "text-indent-less" | "text-indent-more" | "text-italic" | "text-kerning" | "text-selection" | "text-strikethrough" | "text-subscript" | "text-superscript" | "text-tracking" | "text-underline" | "text-vertical-alignment" | "view-off" | "monster" | "_4k" | "chart-average" | "chart-evaluation" | "chart-high-low" | "chart-maximum" | "chart-minimum" | "chart-relationship" | "chart-ring" | "chart-rose" | "closed-caption-alt" | "copy-link" | "course" | "covariate" | "document-attachment" | "firewall" | "flow" | "flow-connection" | "folder-add" | "folder-details" | "folder-details-reference" | "folder-move-to" | "information-square" | "license-draft" | "license-maintenance" | "license-third-party" | "policy" | "qq-plot" | "share-knowledge" | "customer-service" | "idea" | "user-multiple" | "cafe" | "direction-right-01" | "direction-right-02" | "humidity" | "moonset" | "rain" | "rain-drop" | "restaurant" | "sailboat-coastal" | "sailboat-offshore" | "soil-moisture-field" | "soil-moisture-global" | "soil-temperature-field" | "soil-temperature-global" | "traffic-incident" | "van" | "chat-bot" | "add-circle" | "american-football" | "boat" | "call" | "happy" | "remove-circle" | "search-circle" | "airbnb" | "blogger" | "brandfetch" | "castbox" | "chef" | "chrysler" | "coinbase" | "dart" | "datev" | "digg" | "envato" | "fiverr" | "flickr" | "foursquare" | "gitbook" | "hackerrank" | "honor" | "iconjar" | "klarna" | "leetcode" | "loom" | "lottiefiles" | "maze" | "metro" | "nike" | "orange" | "payoneer" | "pexels" | "php" | "python" | "replit" | "safari" | "saturn" | "scribd" | "shopify" | "shutterstock" | "sketch" | "slideshare" | "smart" | "spaceship" | "swarm" | "tailwindcss" | "tinder" | "transmission" | "tumblr" | "uber" | "unsplash" | "upwork" | "viber" | "vk" | "wattpad" | "webflow" | "wise" | "xing" | "zsh" | "adobe-illustrator" | "adobe-indesign" | "adobe-photoshop" | "adobe-xd" | "broccoli" | "css-3" | "google-gemini" | "google-home" | "google-photos" | "html-5" | "java" | "visual-studio-code" | "collections-bookmark" | "dark-mode" | "speech-to-text" | "calculate" | "energy" | "meeting-room" | "no-meeting-room" | "savings" | "work" | "work-alert" | "work-history" | "work-update" | "co-present" | "computer-arrow-up" | "cleaning-bucket" | "wall-lamp" | "oven" | "edit-road" | "blood-pressure" | "conversation" | "labs" | "medical-mask" | "oil-barrel" | "colors" | "grid-view" | "note-add" | "cottage" | "acute" | "stack-star" | "step-over" | "unfold-less" | "unfold-more" | "birthday-cake" | "ease-curve-control-points" | "hat" | "sandals" | "internet" | "database-restore" | "developer" | "laptop-charging" | "modern-tv" | "pen-connect-bluetooth" | "pen-connect-wifi" | "tv-fix" | "scissor" | "text-square" | "bitcoin-circle" | "coins-swap" | "dollar-circle" | "euro-square" | "yen" | "yen-square" | "chocolate" | "potion" | "spades" | "repository" | "iris-scan" | "voice" | "layout-left" | "layout-right" | "organic-food" | "file-not-found" | "app-store" | "hot-air-balloon" | "chat-add" | "chat-edit" | "full-screen" | "health" | "parallelogram" | "sidebar-left" | "sidebar-right" | "access" | "aids" | "auction" | "boxer" | "capcut" | "cells" | "deepseek" | "digital-clock" | "domino" | "drive" | "folder-cloud" | "folder-favourite" | "give-blood" | "imo" | "jupiter" | "maps" | "next" | "nintendo" | "octopus" | "office" | "qwen" | "silence" | "skool" | "status" | "tan" | "tetris" | "tic-tac-toe" | "tips" | "wanted" | "whatsapp-business" | "whisk" | "wink" | "service" | "transaction" | "picasa" | "chart" | "clinic" | "confused" | "customize" | "drink" | "game" | "injection" | "layer" | "no-signal" | "party" | "shocked" | "medium-square" | "periscope" | "play-store" | "t-shirt" | "user-account" | "mute" | "cpp" | "folder-audio" | "folder-security" | "folder-video" | "scheme" | "ev-charging" | "wellness" | "file-add" | "shopping-bag-01" | "shopping-bag-02" | "shopping-cart-01" | "shopping-cart-02" | "image-01" | "image-02" | "building-01" | "building-02" | "building-03" | "building-04" | "house-01" | "house-02" | "house-03" | "user-02" | "user-03" | "ko-fi" | "last-fm" | "mixer" | "stumbleupon" | "vine" | "cd" | "airplane-mode" | "airplane-mode-off" | "balance-scale" | "center-focus" | "re" | "copilot" | "folder-library" | "sin" | "usdt" | "image-crop" | "image-flip-horizontal" | "image-flip-vertical" | "translation" | "reflex" | "crab" | "grapes" | "watermelon" | "wireless" | "minus-sign" | "plus-sign" | "fireworks" | "ice-hockey" | "doughnut" | "spaghetti" | "camel" | "tulip" | "nose" | "tongue" | "trade-mark" | "desert" | "police-car" | "wedding" | "add-to-list" | "molecules" | "neural-network" | "pipeline" | "software" | "promotion" | "global" | "skew" | "search-minus" | "twitter-square" | "flushed" | "surprise" | "search-dollar" | "golf-ball" | "contact-book" | "apron" | "chopsticks" | "hut" | "judge" | "pie" | "student" | "teacher" | "thread" | "balloons" | "bar-chart-horizontal" | "blocked" | "check-list" | "date-time" | "inbox-check" | "open-source" | "previous" | "repair" | "right-triangle" | "crown-minus" | "crown-plus" | "hangout" | "laughing" | "neutral" | "blood" | "play-list" | "female-symbol" | "male-symbol" | "brochure" | "file-script" | "archer" | "belt" | "broken-bone" | "caduceus" | "cargo-ship" | "cctv-camera" | "chimney" | "clothes" | "coffee-beans" | "cricket-bat" | "diploma" | "expander" | "falling-star" | "flower-pot" | "frisbee" | "gas-stove" | "hand-grip" | "hockey" | "hoodie" | "ice-cubes" | "india-gate" | "kidneys" | "lantern" | "liver" | "mayan-pyramid" | "milk-carton" | "mortar" | "office-chair" | "pisa-tower" | "pizza-cutter" | "prisoner" | "profit" | "punch" | "rub-el-hizb" | "skipping-rope" | "soda-can" | "solar-system" | "spartan-helmet" | "steak" | "suspicious" | "tank-top" | "tennis-racket" | "thermometer-cold" | "vomiting" | "cap" | "danger" | "play-list-add" | "play-list-remove" | "pokemon" | "profile" | "unavailable" | "user-list" | "layer-add" | "spam" | "radial" | "terrace" | "patio" | "waste" | "sperm" | "breast-pump" | "crying" | "_1st-bracket" | "_1st-bracket-circle" | "_1st-bracket-square" | "_2nd-bracket" | "_2nd-bracket-circle" | "_2nd-bracket-square" | "_3-d-view" | "_3d-move" | "_3d-printer" | "_3d-rotate" | "_3d-scale" | "_3rd-bracket" | "_3rd-bracket-circle" | "_3rd-bracket-square" | "_7z-01" | "_7z-02" | "acceleration" | "accident" | "account-recovery" | "account-setting-01" | "account-setting-02" | "account-setting-03" | "activity-01" | "activity-02" | "activity-03" | "activity-04" | "add-01" | "add-02" | "add-circle-half-dot" | "add-female" | "add-invoice" | "add-male" | "add-money-circle" | "add-square" | "add-team" | "add-team-02" | "adobe-after-effect" | "adobe-premier" | "adventure" | "advertisiment" | "adzan" | "agreement-01" | "agreement-02" | "agreement-03" | "ai-audio" | "ai-beautify" | "ai-book" | "ai-brain-01" | "ai-brain-02" | "ai-brain-03" | "ai-brain-04" | "ai-brain-05" | "ai-browser" | "ai-chat-01" | "ai-chat-02" | "ai-chemistry-01" | "ai-chemistry-02" | "ai-chemistry-03" | "ai-chip" | "ai-cloud" | "ai-cloud-01" | "ai-cloud-02" | "ai-computer" | "ai-content-generator-01" | "ai-content-generator-02" | "ai-dna" | "ai-editing" | "ai-eraser" | "ai-file" | "ai-folder-01" | "ai-folder-02" | "ai-game" | "ai-generative" | "ai-idea" | "ai-image" | "ai-innovation-01" | "ai-innovation-02" | "ai-innovation-03" | "ai-laptop" | "ai-learning" | "ai-lock" | "ai-magic" | "ai-mail" | "ai-mail-01" | "ai-mail-02" | "ai-mic" | "ai-network" | "ai-phone-01" | "ai-phone-02" | "ai-programming" | "ai-scan" | "ai-scheduling" | "ai-search" | "ai-search-02" | "ai-security-01" | "ai-security-02" | "ai-security-03" | "ai-setting" | "ai-sheets" | "ai-smartwatch" | "ai-user" | "ai-video" | "ai-view" | "ai-vision-recognition" | "ai-voice" | "ai-voice-generator" | "ai-web-browsing" | "aircraft-game" | "airdrop" | "airplane-01" | "airplane-02" | "airplane-landing-01" | "airplane-landing-02" | "airplane-seat" | "airplane-seat-02" | "airplane-take-off-01" | "airplane-take-off-02" | "airpod-01" | "airpod-02" | "airpod-03" | "al-aqsa-mosque" | "album-01" | "album-02" | "album-not-found-01" | "album-not-found-02" | "alert-01" | "alert-02" | "alert-diamond" | "algorithm" | "alien-01" | "alien-02" | "align-key-object" | "align-selection" | "all-bookmark" | "allah" | "alms" | "alpha-circle" | "alpha-square" | "alphabet-chinese" | "alphabet-hindi" | "alphabet-japanese" | "amie" | "ammo" | "ampoule" | "analysis-text-link" | "analytics-01" | "analytics-02" | "analytics-03" | "analytics-down" | "analytics-up" | "anchor-point" | "angel" | "angle-01" | "angry-bird" | "anonymous" | "apple-01" | "apple-intelligence" | "apple-news" | "apple-pie" | "apple-reminder" | "apple-stocks" | "apple-vision-pro" | "appointment-01" | "appointment-02" | "approximately-equal-circle" | "approximately-equal-square" | "apricot" | "arc-browser" | "archive-01" | "archive-02" | "archive-03" | "armored-boot" | "arrange-by-letters-a-z" | "arrange-by-letters-z-a" | "arrange-by-numbers-1-9" | "arrange-by-numbers-9-1" | "arrow-all-direction" | "arrow-data-transfer-diagonal" | "arrow-data-transfer-horizontal" | "arrow-data-transfer-vertical" | "arrow-diagonal" | "arrow-down-01" | "arrow-down-02" | "arrow-down-03" | "arrow-down-04" | "arrow-down-05" | "arrow-down-double" | "arrow-down-left-01" | "arrow-down-left-02" | "arrow-down-right-01" | "arrow-down-right-02" | "arrow-expand-01" | "arrow-expand-02" | "arrow-expand-diagonal-01" | "arrow-expand-diagonal-02" | "arrow-horizontal" | "arrow-left-01" | "arrow-left-02" | "arrow-left-03" | "arrow-left-04" | "arrow-left-05" | "arrow-left-double" | "arrow-move-down-left" | "arrow-move-down-right" | "arrow-move-left-down" | "arrow-move-right-down" | "arrow-move-up-left" | "arrow-move-up-right" | "arrow-reload-horizontal" | "arrow-reload-vertical" | "arrow-right-01" | "arrow-right-02" | "arrow-right-03" | "arrow-right-04" | "arrow-right-05" | "arrow-right-double" | "arrow-shrink" | "arrow-shrink-01" | "arrow-shrink-02" | "arrow-turn-backward" | "arrow-turn-forward" | "arrow-up-01" | "arrow-up-02" | "arrow-up-03" | "arrow-up-04" | "arrow-up-05" | "arrow-up-double" | "arrow-up-left-01" | "arrow-up-left-02" | "arrow-up-right-01" | "arrow-up-right-02" | "arrow-up-right-03" | "arrow-vertical" | "artboard-tool" | "artificial-intelligence-01" | "artificial-intelligence-02" | "artificial-intelligence-03" | "artificial-intelligence-04" | "artificial-intelligence-05" | "artificial-intelligence-06" | "artificial-intelligence-07" | "artificial-intelligence-08" | "assignments" | "asterisk-02" | "asteroid-01" | "asteroid-02" | "astronaut-01" | "astronaut-02" | "atm-01" | "atm-02" | "atom-01" | "atom-02" | "atomic-power" | "attachment-01" | "attachment-02" | "attachment-circle" | "attachment-square" | "audio-book-01" | "audio-book-02" | "audio-book-03" | "audio-book-04" | "audio-wave-01" | "audio-wave-02" | "audit-01" | "audit-02" | "augmented-reality-ar" | "authorized" | "auto-conversations" | "automotive-battery-01" | "automotive-battery-02" | "avalanche" | "award-01" | "award-02" | "award-03" | "award-04" | "award-05" | "baby-01" | "baby-02" | "baby-bed-01" | "baby-bed-02" | "baby-boy-dress" | "baby-girl-dress" | "back-muscle-body" | "backpack-01" | "backpack-02" | "backpack-03" | "backward-01" | "backward-02" | "badminton-shuttle" | "bar-code-01" | "bar-code-02" | "barns" | "baseball-helmet" | "basketball-01" | "basketball-02" | "bathtub-01" | "bathtub-02" | "batteries-energy" | "battery-charging-01" | "battery-charging-02" | "battery-eco-charging" | "battery-medium-01" | "battery-medium-02" | "bbq-grill" | "beach-02" | "beater" | "bebo" | "bed-bunk" | "bed-single-01" | "bed-single-02" | "bedug-01" | "bedug-02" | "behance-01" | "behance-02" | "bend-tool" | "berlin" | "berlin-tower" | "bicycle-01" | "billiard-01" | "billiard-02" | "binary-code" | "bio-energy" | "biomass-energy" | "biometric-access" | "biometric-device" | "biscuit" | "bitcoin-01" | "bitcoin-02" | "bitcoin-03" | "bitcoin-04" | "bitcoin-bag" | "bitcoin-cloud" | "bitcoin-cpu" | "bitcoin-credit-card" | "bitcoin-database" | "bitcoin-down-01" | "bitcoin-down-02" | "bitcoin-ellipse" | "bitcoin-eye" | "bitcoin-filter" | "bitcoin-flashdisk" | "bitcoin-graph" | "bitcoin-invoice" | "bitcoin-key" | "bitcoin-location" | "bitcoin-lock" | "bitcoin-mail" | "bitcoin-mind" | "bitcoin-money-01" | "bitcoin-money-02" | "bitcoin-pie-chart" | "bitcoin-piggy-bank" | "bitcoin-presentation" | "bitcoin-receipt" | "bitcoin-receive" | "bitcoin-rectangle" | "bitcoin-safe" | "bitcoin-search" | "bitcoin-send" | "bitcoin-setting" | "bitcoin-shield" | "bitcoin-shopping" | "bitcoin-smartphone-01" | "bitcoin-smartphone-02" | "bitcoin-square" | "bitcoin-store" | "bitcoin-tag" | "bitcoin-target" | "bitcoin-transaction" | "bitcoin-up-01" | "bitcoin-up-02" | "bitcoin-wallet" | "bitcoin-withdraw" | "black-hole" | "black-hole-01" | "block-game" | "blockchain-01" | "blockchain-02" | "blockchain-03" | "blockchain-04" | "blockchain-05" | "blockchain-06" | "blockchain-07" | "blood-bottle" | "blood-type" | "bluetooth-circle" | "bluetooth-not-connected" | "bluetooth-search" | "bluetooth-square" | "blush-brush-01" | "blush-brush-02" | "board-math" | "body-armor" | "body-part-leg" | "body-part-muscle" | "body-part-six-pack" | "body-soap" | "body-weight" | "bone-01" | "bone-02" | "book-01" | "book-02" | "book-03" | "book-04" | "book-bookmark-01" | "book-bookmark-02" | "book-open-01" | "book-open-02" | "bookmark-01" | "bookmark-02" | "bookmark-03" | "bookmark-add-01" | "bookmark-add-02" | "bookmark-block-01" | "bookmark-block-02" | "bookmark-check-01" | "bookmark-check-02" | "bookmark-minus-01" | "bookmark-minus-02" | "bookmark-off-01" | "bookmark-off-02" | "bookmark-remove-01" | "bookmark-remove-02" | "books-01" | "books-02" | "bookshelf-01" | "bookshelf-02" | "bookshelf-03" | "border-all-01" | "border-all-02" | "border-bottom-01" | "border-bottom-02" | "border-left-01" | "border-left-02" | "border-none-01" | "border-none-02" | "border-right-01" | "border-right-02" | "border-top-01" | "border-top-02" | "borobudur" | "bowling-pins" | "boxing-bag" | "boxing-glove-01" | "brain-01" | "brain-02" | "brain-03" | "bread-01" | "bread-02" | "bread-03" | "bread-04" | "briefcase-01" | "briefcase-02" | "briefcase-03" | "briefcase-04" | "briefcase-05" | "briefcase-06" | "briefcase-07" | "briefcase-08" | "briefcase-09" | "briefcase-dollar" | "bubble-chat" | "bubble-chat-add" | "bubble-chat-blocked" | "bubble-chat-cancel" | "bubble-chat-delay" | "bubble-chat-done" | "bubble-chat-download-01" | "bubble-chat-download-02" | "bubble-chat-edit" | "bubble-chat-favourite" | "bubble-chat-income" | "bubble-chat-lock" | "bubble-chat-notification" | "bubble-chat-outcome" | "bubble-chat-preview" | "bubble-chat-question" | "bubble-chat-search" | "bubble-chat-secure" | "bubble-chat-spark" | "bubble-chat-spark-01" | "bubble-chat-translate" | "bubble-chat-unlock" | "bubble-chat-upload" | "bubble-chat-user" | "bubble-tea-01" | "bubble-tea-02" | "bug-01" | "bug-02" | "building-05" | "building-06" | "bulb-charging" | "bulletproof-vest" | "burj-al-arab" | "burning-cd" | "bus-01" | "bus-02" | "bus-03" | "c-programming" | "cabinet-01" | "cabinet-02" | "cabinet-03" | "cabinet-04" | "calculator-01" | "calendar-01" | "calendar-02" | "calendar-03" | "calendar-04" | "calendar-add-01" | "calendar-add-02" | "calendar-block-01" | "calendar-block-02" | "calendar-check-in-01" | "calendar-check-in-02" | "calendar-check-out-01" | "calendar-check-out-02" | "calendar-download-01" | "calendar-download-02" | "calendar-favorite-01" | "calendar-favorite-02" | "calendar-lock-01" | "calendar-lock-02" | "calendar-love-01" | "calendar-love-02" | "calendar-minus-01" | "calendar-minus-02" | "calendar-remove-01" | "calendar-remove-02" | "calendar-setting-01" | "calendar-setting-02" | "calendar-upload-01" | "calendar-upload-02" | "call-02" | "call-add" | "call-add-02" | "call-blocked" | "call-blocked-02" | "call-disabled" | "call-disabled-02" | "call-done" | "call-done-02" | "call-end-01" | "call-end-02" | "call-end-03" | "call-end-04" | "call-incoming-01" | "call-incoming-02" | "call-incoming-03" | "call-incoming-04" | "call-internal" | "call-internal-02" | "call-locked" | "call-locked-02" | "call-minus" | "call-minus-02" | "call-missed-01" | "call-missed-02" | "call-missed-03" | "call-missed-04" | "call-outgoing-01" | "call-outgoing-02" | "call-outgoing-03" | "call-outgoing-04" | "call-paused" | "call-paused-02" | "call-received-02" | "call-ringing-01" | "call-ringing-02" | "call-ringing-03" | "call-ringing-04" | "call-unlocked" | "call-unlocked-02" | "calling" | "calling-02" | "camera-01" | "camera-02" | "camera-add-01" | "camera-add-02" | "camera-add-03" | "camera-automatically-01" | "camera-automatically-02" | "camera-lens" | "camera-microphone-01" | "camera-microphone-02" | "camera-night-mode-01" | "camera-night-mode-02" | "camera-off-01" | "camera-off-02" | "camera-rotated-01" | "camera-rotated-02" | "camera-smile-01" | "camera-smile-02" | "camera-tripod" | "cancel-01" | "cancel-02" | "cancel-circle" | "cancel-circle-half-dot" | "cancel-square" | "candelier-01" | "candelier-02" | "cap-round" | "capcut-rectangle" | "car-01" | "car-02" | "car-03" | "car-04" | "car-05" | "car-alert" | "car-parking-01" | "car-parking-02" | "car-signal" | "car-time" | "card-exchange-01" | "card-exchange-02" | "cardigan" | "cardiogram-01" | "cardiogram-02" | "cards-01" | "cards-02" | "carousel-horizontal-02" | "cash-01" | "cash-02" | "cashback" | "cashback-bitcoin" | "cashback-euro" | "cashback-pound" | "cashback-yen" | "cashier" | "cashier-02" | "castle-01" | "castle-02" | "catalogue" | "cayan-tower" | "cellular-network" | "cellular-network-offline" | "celsius" | "central-shaheed-minar" | "centralized" | "certificate-01" | "certificate-02" | "chair-01" | "chair-02" | "chair-03" | "chair-04" | "chair-05" | "chair-barber" | "champion" | "change-screen-mode" | "character-phonetic" | "chart-01" | "chart-02" | "chart-03" | "chart-bar-line" | "chart-breakout-circle" | "chart-breakout-square" | "chart-bubble-01" | "chart-bubble-02" | "chart-decrease" | "chart-down" | "chart-increase" | "chart-line-data-01" | "chart-line-data-02" | "chart-line-data-03" | "chart-medium" | "chart-up" | "chat-01" | "chat-add-01" | "chat-blocked" | "chat-blocked-01" | "chat-cancel" | "chat-cancel-01" | "chat-delay" | "chat-delay-01" | "chat-done" | "chat-done-01" | "chat-download" | "chat-download-01" | "chat-edit-01" | "chat-favourite" | "chat-favourite-01" | "chat-feedback" | "chat-feedback-01" | "chat-gpt" | "chat-income" | "chat-income-01" | "chat-lock" | "chat-lock-01" | "chat-notification" | "chat-notification-01" | "chat-outcome" | "chat-outcome-01" | "chat-preview" | "chat-preview-01" | "chat-question-01" | "chat-search" | "chat-search-01" | "chat-secure" | "chat-secure-01" | "chat-spark" | "chat-spark-01" | "chat-translate" | "chat-translate-01" | "chat-unlock" | "chat-unlock-01" | "chat-upload" | "chat-upload-01" | "chat-user" | "chat-user-01" | "chatting-01" | "check-unread-01" | "check-unread-02" | "check-unread-03" | "check-unread-04" | "checkmark-badge-01" | "checkmark-badge-02" | "checkmark-badge-03" | "checkmark-badge-04" | "checkmark-circle-01" | "checkmark-circle-02" | "checkmark-circle-03" | "checkmark-circle-04" | "checkmark-square-01" | "checkmark-square-02" | "checkmark-square-03" | "checkmark-square-04" | "cheese-cake-01" | "cheese-cake-02" | "chemistry-01" | "chemistry-02" | "chemistry-03" | "chess-01" | "chess-02" | "chicken-thighs" | "china-temple" | "chip-02" | "cinnamon-roll" | "circle-arrow-data-transfer-diagonal" | "circle-arrow-data-transfer-horizontal" | "circle-arrow-data-transfer-vertical" | "circle-arrow-diagonal-01" | "circle-arrow-diagonal-02" | "circle-arrow-down-01" | "circle-arrow-down-02" | "circle-arrow-down-03" | "circle-arrow-down-double" | "circle-arrow-expand-01" | "circle-arrow-expand-02" | "circle-arrow-horizontal" | "circle-arrow-left-01" | "circle-arrow-left-02" | "circle-arrow-left-03" | "circle-arrow-left-double" | "circle-arrow-left-right" | "circle-arrow-move-down-left" | "circle-arrow-move-down-right" | "circle-arrow-move-left-down" | "circle-arrow-move-right-down" | "circle-arrow-move-up-left" | "circle-arrow-move-up-right" | "circle-arrow-reload-01" | "circle-arrow-reload-02" | "circle-arrow-right-01" | "circle-arrow-right-02" | "circle-arrow-right-03" | "circle-arrow-right-double" | "circle-arrow-shrink-01" | "circle-arrow-shrink-02" | "circle-arrow-up-01" | "circle-arrow-up-02" | "circle-arrow-up-03" | "circle-arrow-up-double" | "circle-arrow-up-down" | "circle-arrow-up-right-02" | "circle-arrow-vertical" | "circle-lock-01" | "circle-lock-02" | "circle-lock-add-01" | "circle-lock-add-02" | "circle-lock-check-01" | "circle-lock-check-02" | "circle-lock-minus-01" | "circle-lock-minus-02" | "circle-lock-remove-01" | "circle-lock-remove-02" | "circle-password" | "circle-unlock-01" | "circle-unlock-02" | "city-01" | "city-02" | "city-03" | "clapping-01" | "clapping-02" | "clip" | "cliparts" | "clock-01" | "clock-02" | "clock-03" | "clock-04" | "clock-05" | "cloud-angled-rain" | "cloud-angled-rain-zap" | "cloud-angled-zap" | "cloud-big-rain" | "cloud-fast-wind" | "cloud-hailstone" | "cloud-little-rain" | "cloud-little-snow" | "cloud-loading" | "cloud-mid-rain" | "cloud-mid-snow" | "cloud-saving-done-01" | "cloud-saving-done-02" | "cloud-server" | "cloud-slow-wind" | "clubs-01" | "clubs-02" | "code-folder" | "coffee-01" | "coffee-02" | "coins-01" | "coins-02" | "coins-bitcoin" | "coins-dollar" | "coins-euro" | "coins-pound" | "coins-yen" | "colosseum" | "comet-01" | "comet-02" | "coming-soon-01" | "coming-soon-02" | "comment-01" | "comment-02" | "comment-03" | "comment-add-01" | "comment-add-02" | "comment-add-03" | "comment-block-01" | "comment-block-02" | "comment-block-03" | "comment-remove-01" | "comment-remove-02" | "comment-remove-03" | "compass-01" | "complaint" | "computer-activity" | "computer-add" | "computer-arrow-down" | "computer-chart-down" | "computer-chart-up" | "computer-check" | "computer-cloud" | "computer-desk-01" | "computer-desk-02" | "computer-desk-03" | "computer-dollar" | "computer-ethernet" | "computer-phone-sync" | "computer-programming-01" | "computer-programming-02" | "computer-protection" | "computer-remove" | "computer-screen-share" | "computer-settings" | "computer-terminal-01" | "computer-terminal-02" | "computer-user" | "computer-video" | "computer-video-call" | "cone-01" | "cone-02" | "conference" | "configuration-01" | "configuration-02" | "congruent-to-circle" | "congruent-to-square" | "constellation" | "contact-01" | "contact-02" | "container-truck" | "container-truck-01" | "container-truck-02" | "content-writing" | "contracts" | "cook-book" | "coordinate-01" | "coordinate-02" | "copy-01" | "copy-02" | "corporate" | "cos" | "cosine-01" | "cosine-02" | "cotton-candy" | "coupon-01" | "coupon-02" | "coupon-03" | "coupon-percent" | "court-house" | "court-law" | "covid-info" | "cowboy-hat" | "cpu-charge" | "cpu-settings" | "crazy" | "creative-market" | "credit-card-accept" | "credit-card-add" | "credit-card-change" | "credit-card-defrost" | "credit-card-freeze" | "credit-card-not-accept" | "credit-card-not-found" | "credit-card-pos" | "credit-card-validation" | "cricket-helmet" | "crowdfunding" | "crown-02" | "crown-03" | "css-file-01" | "css-file-02" | "csv-01" | "csv-02" | "cupcake-01" | "cupcake-02" | "cupcake-03" | "cursor-01" | "cursor-02" | "cursor-add-selection-01" | "cursor-add-selection-02" | "cursor-circle-selection-01" | "cursor-circle-selection-02" | "cursor-disabled-01" | "cursor-disabled-02" | "cursor-edit-01" | "cursor-edit-02" | "cursor-hold-01" | "cursor-hold-02" | "cursor-in-window" | "cursor-info-01" | "cursor-info-02" | "cursor-loading-01" | "cursor-loading-02" | "cursor-magic-selection-01" | "cursor-magic-selection-02" | "cursor-magic-selection-03" | "cursor-magic-selection-04" | "cursor-move-01" | "cursor-move-02" | "cursor-pointer-01" | "cursor-pointer-02" | "cursor-progress-01" | "cursor-progress-02" | "cursor-progress-03" | "cursor-progress-04" | "cursor-rectangle-selection-01" | "cursor-rectangle-selection-02" | "cursor-remove-selection-01" | "cursor-remove-selection-02" | "curvy-left-direction" | "curvy-left-right-direction" | "curvy-right-direction" | "curvy-up-down-direction" | "custom-field" | "customer-service-01" | "customer-service-02" | "customer-support" | "cylinder-01" | "cylinder-02" | "cylinder-03" | "cylinder-04" | "dashboard-browsing" | "dashboard-circle" | "dashboard-circle-add" | "dashboard-circle-edit" | "dashboard-circle-remove" | "dashboard-circle-settings" | "dashboard-speed-01" | "dashboard-speed-02" | "dashboard-square-01" | "dashboard-square-02" | "dashboard-square-03" | "dashboard-square-add" | "dashboard-square-edit" | "dashboard-square-remove" | "dashboard-square-setting" | "dashed-line-01" | "dashed-line-02" | "dashed-line-circle" | "data-recovery" | "database-01" | "database-02" | "database-locked" | "database-setting" | "database-sync-01" | "dates" | "dead" | "delete-01" | "delete-02" | "delete-03" | "delete-04" | "delete-put-back" | "delete-throw" | "delivered-sent" | "delivery-box-01" | "delivery-box-02" | "delivery-delay-01" | "delivery-delay-02" | "delivery-return-01" | "delivery-return-02" | "delivery-secure-01" | "delivery-secure-02" | "delivery-sent-01" | "delivery-sent-02" | "delivery-tracking-01" | "delivery-tracking-02" | "delivery-truck-01" | "delivery-truck-02" | "delivery-view-01" | "delivery-view-02" | "dental-braces" | "dental-broken-tooth" | "dental-care" | "dental-tooth" | "departement" | "desk-01" | "desk-02" | "detergent" | "device-access" | "diagonal-scroll-point-01" | "diagonal-scroll-point-02" | "dialpad-circle-01" | "dialpad-circle-02" | "dialpad-square-01" | "dialpad-square-02" | "diamond-01" | "diamond-02" | "dice-faces-01" | "dice-faces-02" | "dice-faces-03" | "dice-faces-04" | "dice-faces-05" | "dice-faces-06" | "digestion" | "dim-sum-01" | "dim-sum-02" | "dining-table" | "direction-left-01" | "direction-left-02" | "directions-01" | "directions-02" | "dirham" | "disability-01" | "disability-02" | "discount-01" | "discount-tag-01" | "discount-tag-02" | "discover-circle" | "discover-square" | "dish-01" | "dish-02" | "dish-washer" | "displeased" | "distribution" | "divide-sign" | "divide-sign-circle" | "divide-sign-square" | "dna-01" | "do-not-touch-01" | "do-not-touch-02" | "doc-01" | "doc-02" | "doctor-01" | "doctor-02" | "doctor-03" | "document-code" | "document-validation" | "dollar-01" | "dollar-02" | "dollar-receive-01" | "dollar-receive-02" | "dollar-send-01" | "dollar-send-02" | "dollar-square" | "dome" | "door-01" | "door-02" | "door-lock" | "download-01" | "download-02" | "download-03" | "download-04" | "download-05" | "download-circle-01" | "download-circle-02" | "download-square-01" | "download-square-02" | "drag-01" | "drag-02" | "drag-03" | "drag-04" | "drag-drop-horizontal" | "drag-drop-vertical" | "drag-left-01" | "drag-left-02" | "drag-left-03" | "drag-left-04" | "drag-right-01" | "drag-right-02" | "drag-right-03" | "drag-right-04" | "drawing-compass" | "drawing-mode" | "dress-01" | "dress-02" | "dress-03" | "dress-04" | "dress-05" | "dress-06" | "dress-07" | "dressing-table-01" | "dressing-table-02" | "dressing-table-03" | "drooling" | "dropper" | "ds3-tool" | "dua" | "dumbbell-01" | "dumbbell-02" | "dumbbell-03" | "ear-rings-01" | "ear-rings-02" | "ear-rings-03" | "eco-energy" | "eco-lab" | "eco-lab-01" | "eco-lab-02" | "eco-power" | "edge-style" | "edit-01" | "edit-02" | "edit-03" | "edit-04" | "edit-off-03" | "edit-off-04" | "edit-table" | "edit-user-02" | "eid-mubarak" | "eight-circle" | "eight-square" | "elearning-exchange" | "electric-home-01" | "electric-home-02" | "electric-plugs" | "electric-tower-01" | "electric-tower-02" | "electric-wire" | "ellipse-selection" | "encrypt" | "energy-ellipse" | "energy-rectangle" | "entering-geo-fence" | "entrance-stairs" | "equal-sign" | "equal-sign-circle" | "equal-sign-square" | "equipment-bench-press" | "equipment-chest-press" | "equipment-gym-01" | "equipment-gym-02" | "equipment-gym-03" | "equipment-weightlifting" | "eraser-01" | "eraser-add" | "eraser-auto" | "estimate-01" | "estimate-02" | "ethereum-ellipse" | "ethereum-rectangle" | "euro-circle" | "euro-receive" | "euro-send" | "evil" | "exchange-01" | "exchange-02" | "exchange-03" | "external-drive" | "facebook-01" | "facebook-02" | "factory-01" | "factory-02" | "fahrenheit" | "fan-01" | "fan-02" | "fast-wind" | "favourite" | "favourite-circle" | "favourite-square" | "female-02" | "fencing-mask" | "ferry-boat" | "file-01" | "file-02" | "file-attachment" | "file-block" | "file-bookmark" | "file-corrupt" | "file-empty-01" | "file-empty-02" | "file-favourite" | "file-locked" | "file-management" | "file-paste" | "file-pin" | "file-pound" | "file-security" | "file-unlocked" | "file-validation" | "file-verified" | "file-view" | "file-yen" | "files-01" | "files-02" | "film-01" | "film-02" | "film-roll-01" | "film-roll-02" | "filter-add" | "filter-horizontal" | "filter-mail-circle" | "filter-mail-square" | "filter-vertical" | "finger-access" | "finger-print-add" | "finger-print-check" | "finger-print-minus" | "finger-print-remove" | "finger-print-scan" | "fins" | "fire-02" | "fire-03" | "fire-pit" | "fire-security" | "fish-food" | "five-circle" | "five-square" | "flag-01" | "flag-02" | "flag-03" | "flaticon" | "flim-slate" | "flip-bottom" | "flip-left" | "flip-phone" | "flip-right" | "flip-top" | "flow-circle" | "flow-square" | "flowchart-01" | "flowchart-02" | "flying-human" | "focus-point" | "folder-01" | "folder-02" | "folder-03" | "folder-attachment" | "folder-block" | "folder-export" | "folder-file-storage" | "folder-import" | "folder-links" | "folder-locked" | "folder-management" | "folder-move-in" | "folder-shared-01" | "folder-shared-02" | "folder-shared-03" | "folder-transfer" | "folder-unknown" | "folder-unlocked" | "folder-view" | "football-pitch" | "forgot-password" | "forrst" | "fortress" | "forward-01" | "forward-02" | "four-circle" | "four-finger-02" | "four-finger-03" | "four-square" | "frameworks" | "french-fries-01" | "french-fries-02" | "fry" | "fuel-01" | "fuel-02" | "fuel-station" | "full-signal" | "function-circle" | "function-of-x" | "function-square" | "game-controller-01" | "game-controller-02" | "game-controller-03" | "gameboy" | "garbage-truck" | "garlands" | "gas-pipe" | "geology-crust" | "geometric-shapes-01" | "geometric-shapes-02" | "gibbous-moon" | "gif-01" | "gif-02" | "gift-card-02" | "github-01" | "give-pill" | "global-editing" | "global-education" | "global-refresh" | "global-search" | "globe-02" | "glove" | "go-backward-10-sec" | "go-backward-15-sec" | "go-backward-30-sec" | "go-backward-5-sec" | "go-backward-60-sec" | "go-forward-10-sec" | "go-forward-15-sec" | "go-forward-30-sec" | "go-forward-5-sec" | "go-forward-60-sec" | "gold-ingots" | "golf-bat" | "golf-hole" | "google-doc" | "google-sheet" | "gps-01" | "gps-02" | "gps-disconnected" | "gps-off-01" | "gps-off-02" | "gps-signal-01" | "gps-signal-02" | "graduate-female" | "graduate-male" | "graduation-scroll" | "gravity" | "greater-than-circle" | "greater-than-square" | "greek-helmet" | "green-house" | "grid-02" | "grid-table" | "grimacing" | "grinning" | "grok" | "grok-02" | "group-01" | "group-items" | "group-layers" | "guest-house" | "gymnastic" | "gymnastic-rings" | "hair-clips" | "haji" | "halal" | "halal-lab" | "hamburger-01" | "hamburger-02" | "hand-bag-01" | "hand-bag-02" | "hand-beater" | "hand-pointing-down-01" | "hand-pointing-down-02" | "hand-pointing-down-03" | "hand-pointing-down-04" | "hand-pointing-left-01" | "hand-pointing-left-02" | "hand-pointing-left-03" | "hand-pointing-left-04" | "hand-pointing-right-01" | "hand-pointing-right-02" | "hand-pointing-right-03" | "hand-pointing-right-04" | "hand-prayer" | "hanging-clock" | "happy-01" | "hdr-01" | "hdr-02" | "heading-01" | "heading-02" | "heading-03" | "heading-04" | "heading-05" | "heading-06" | "headphone-mute" | "headset-connected" | "healtcare" | "heart-add" | "hexagon-01" | "hierarchy-circle-01" | "hierarchy-circle-02" | "hierarchy-circle-03" | "hierarchy-files" | "hierarchy-square-01" | "hierarchy-square-02" | "hierarchy-square-03" | "hierarchy-square-04" | "hierarchy-square-05" | "hierarchy-square-06" | "hierarchy-square-07" | "hierarchy-square-08" | "hierarchy-square-10" | "high-heels-01" | "high-heels-02" | "hijab" | "hold-01" | "hold-02" | "hold-03" | "hold-04" | "hold-05" | "hold-locked-01" | "hold-locked-02" | "hold-phone" | "hologram" | "home-01" | "home-02" | "home-03" | "home-04" | "home-05" | "home-06" | "home-07" | "home-08" | "home-09" | "home-10" | "home-11" | "home-12" | "home-13" | "home-wifi" | "honey-01" | "honey-02" | "honour-star" | "horizonal-scroll-point" | "horizontal-resize" | "horse-saddle" | "hospital-01" | "hospital-02" | "hospital-bed-01" | "hospital-bed-02" | "hospital-location" | "hot-price" | "hot-tube" | "hotel-01" | "hotel-02" | "hotel-bell" | "hotspot" | "hotspot-offline" | "house-04" | "house-05" | "house-solar-panel" | "html-file-01" | "html-file-02" | "hugeicons" | "hyperbole" | "ice-cream-01" | "ice-cream-02" | "ice-cream-03" | "ice-cream-04" | "ico" | "id-not-verified" | "id-verified" | "idea-01" | "identity-card" | "image-03" | "image-actual-size" | "image-add-01" | "image-add-02" | "image-composition" | "image-composition-oval" | "image-counter-clockwise" | "image-delete-01" | "image-delete-02" | "image-done-01" | "image-done-02" | "image-download" | "image-download-02" | "image-not-found-01" | "image-not-found-02" | "image-remove-01" | "image-remove-02" | "image-rotation-clockwise" | "image-upload" | "image-upload-01" | "important-book" | "in-love" | "inbox-download" | "inbox-unread" | "inbox-upload" | "inequality-01" | "inequality-02" | "inequality-circle-01" | "inequality-circle-02" | "inequality-square-01" | "inequality-square-02" | "infant" | "infinity-01" | "infinity-02" | "infinity-circle" | "infinity-square" | "information-diamond" | "insert-bottom-image" | "insert-center-image" | "insert-column" | "insert-pi" | "insert-row" | "insert-row-down" | "insert-row-up" | "insert-top-image" | "inspect-code" | "installing-updates-01" | "installing-updates-02" | "internet-antenna-01" | "internet-antenna-02" | "internet-antenna-03" | "internet-antenna-04" | "investigation" | "invoice-01" | "invoice-02" | "invoice-03" | "invoice-04" | "java-script" | "job-link" | "job-search" | "job-share" | "jogger-pants" | "joystick-01" | "joystick-02" | "joystick-03" | "joystick-04" | "joystick-05" | "jpg-01" | "jpg-02" | "jsx-01" | "jsx-02" | "jsx-03" | "jumpers" | "justice-scale-01" | "justice-scale-02" | "kaaba-01" | "kaaba-02" | "keffiyeh" | "kettle-01" | "ketupat" | "key-01" | "key-02" | "key-generator-fob" | "keyframe-add" | "keyframe-bottom" | "keyframe-left" | "keyframe-remove" | "keyframe-right" | "keyframe-top" | "keyframes-double" | "keyframes-double-add" | "keyframes-double-remove" | "keyframes-multiple" | "keyframes-multiple-add" | "keyframes-multiple-remove" | "kickstarter-01" | "kickstarter-02" | "kid" | "kimi-ai" | "kissing" | "kitchen-utensils" | "knife-01" | "knife-02" | "knife-bread" | "knight-shield" | "knives" | "knowledge-01" | "knowledge-02" | "kurta" | "kurta-01" | "labor" | "lake" | "lamp-01" | "lamp-02" | "lamp-03" | "lamp-04" | "lamp-05" | "language-circle" | "language-skill" | "language-square" | "laptop-add" | "laptop-check" | "laptop-cloud" | "laptop-issue" | "laptop-performance" | "laptop-phone-sync" | "laptop-programming" | "laptop-remove" | "laptop-settings" | "laptop-video" | "lasso-tool-01" | "lasso-tool-02" | "laurel-wreath-01" | "laurel-wreath-02" | "laurel-wreath-first-01" | "laurel-wreath-first-02" | "laurel-wreath-left-01" | "laurel-wreath-left-02" | "laurel-wreath-left-03" | "laurel-wreath-right-01" | "laurel-wreath-right-02" | "laurel-wreath-right-03" | "layer-bring-forward" | "layer-bring-to-front" | "layer-mask-01" | "layer-mask-02" | "layer-send-backward" | "layer-send-to-back" | "layers-01" | "layers-02" | "layers-logo" | "layout-01" | "layout-02" | "layout-03" | "layout-04" | "layout-05" | "layout-06" | "layout-07" | "layout-2-column" | "layout-2-row" | "layout-3-column" | "layout-3-row" | "layout-bottom" | "layout-table-01" | "layout-table-02" | "layout-top" | "leaf-01" | "leaf-02" | "leaf-03" | "leaf-04" | "leaving-geo-fence" | "left-angle" | "left-to-right-block-quote" | "left-to-right-list-bullet" | "left-to-right-list-dash" | "left-to-right-list-number" | "left-to-right-list-star" | "left-to-right-list-star-01" | "left-to-right-list-triangle" | "left-triangle" | "legal-01" | "legal-02" | "legal-document-01" | "legal-document-02" | "legal-hammer" | "less-than-circle" | "less-than-square" | "libraries" | "license-no" | "license-pin" | "lift-truck" | "limit-order" | "limitation" | "liner" | "link-01" | "link-02" | "link-03" | "link-04" | "link-05" | "link-06" | "link-backward" | "link-circle-02" | "link-forward" | "link-square-01" | "link-square-02" | "linkedin-01" | "linkedin-02" | "list-setting" | "live-streaming-01" | "live-streaming-02" | "live-streaming-03" | "loading-01" | "loading-02" | "loading-03" | "loading-04" | "location-01" | "location-02" | "location-03" | "location-04" | "location-05" | "location-06" | "location-07" | "location-08" | "location-09" | "location-10" | "location-add-01" | "location-add-02" | "location-check-01" | "location-check-02" | "location-favourite-01" | "location-favourite-02" | "location-offline-01" | "location-offline-02" | "location-offline-03" | "location-offline-04" | "location-remove-01" | "location-remove-02" | "location-share-01" | "location-share-02" | "location-star-01" | "location-star-02" | "location-update-01" | "location-update-02" | "location-user-01" | "location-user-02" | "location-user-03" | "location-user-04" | "lock-computer" | "lock-key" | "lock-sync-01" | "lock-sync-02" | "locker-01" | "login-01" | "login-02" | "login-03" | "login-circle-01" | "login-circle-02" | "login-method" | "login-square-01" | "login-square-02" | "logout-01" | "logout-02" | "logout-03" | "logout-04" | "logout-05" | "logout-circle-01" | "logout-circle-02" | "logout-square-01" | "logout-square-02" | "long-sleeve-shirt" | "look-bottom" | "look-left" | "look-right" | "look-top" | "love-korean-finger" | "low-signal" | "loyalty-card" | "luggage-01" | "luggage-02" | "machine-robot" | "magic-wand-01" | "magic-wand-02" | "magic-wand-03" | "magic-wand-04" | "magic-wand-05" | "magnet-01" | "magnet-02" | "mail-01" | "mail-02" | "mail-account-01" | "mail-account-02" | "mail-add-01" | "mail-add-02" | "mail-at-sign-01" | "mail-at-sign-02" | "mail-block-01" | "mail-block-02" | "mail-download-01" | "mail-download-02" | "mail-edit-01" | "mail-edit-02" | "mail-lock-01" | "mail-lock-02" | "mail-love-01" | "mail-love-02" | "mail-minus-01" | "mail-minus-02" | "mail-open-01" | "mail-open-02" | "mail-open-love" | "mail-receive-01" | "mail-receive-02" | "mail-remove-01" | "mail-remove-02" | "mail-reply-01" | "mail-reply-02" | "mail-reply-all-01" | "mail-reply-all-02" | "mail-search-01" | "mail-search-02" | "mail-secure-01" | "mail-secure-02" | "mail-send-01" | "mail-send-02" | "mail-setting-01" | "mail-setting-02" | "mail-unlock-01" | "mail-unlock-02" | "mail-upload-01" | "mail-upload-02" | "mail-validation-01" | "mail-validation-02" | "mail-voice-01" | "mail-voice-02" | "mailbox-01" | "male-02" | "man-woman" | "manager" | "map-pinpoint-01" | "map-pinpoint-02" | "maping" | "maps-circle-01" | "maps-circle-02" | "maps-editing" | "maps-global-01" | "maps-global-02" | "maps-location-01" | "maps-location-02" | "maps-off" | "maps-refresh" | "maps-search" | "maps-square-01" | "maps-square-02" | "market-analysis" | "market-order" | "marketing" | "mask-love" | "mask-theater-01" | "mask-theater-02" | "master-card" | "matches" | "material-and-texture" | "maximize-01" | "maximize-02" | "maximize-03" | "maximize-04" | "maximize-screen" | "mcp-server" | "medal-01" | "medal-02" | "medal-03" | "medal-04" | "medal-05" | "medal-06" | "medal-07" | "medal-first-place" | "medal-second-place" | "medal-third-place" | "medical-file" | "medicine-01" | "medicine-02" | "medicine-bottle-01" | "medicine-bottle-02" | "medium-signal" | "megaphone-01" | "megaphone-02" | "megaphone-03" | "mentor" | "mentoring" | "menu-01" | "menu-02" | "menu-03" | "menu-04" | "menu-05" | "menu-06" | "menu-07" | "menu-08" | "menu-09" | "menu-10" | "menu-11" | "menu-circle" | "menu-collapse" | "menu-restaurant" | "menu-square" | "menu-two-line" | "message-01" | "message-02" | "message-add-01" | "message-add-02" | "message-blocked" | "message-cancel-01" | "message-cancel-02" | "message-delay-01" | "message-delay-02" | "message-done-01" | "message-done-02" | "message-download-01" | "message-download-02" | "message-edit-01" | "message-edit-02" | "message-favourite-01" | "message-favourite-02" | "message-incoming-01" | "message-incoming-02" | "message-lock-01" | "message-lock-02" | "message-multiple-01" | "message-multiple-02" | "message-notification-01" | "message-notification-02" | "message-outgoing-01" | "message-outgoing-02" | "message-preview-01" | "message-preview-02" | "message-programming" | "message-search-01" | "message-search-02" | "message-secure-01" | "message-secure-02" | "message-translate" | "message-unlock-01" | "message-unlock-02" | "message-upload-01" | "message-upload-02" | "message-user-01" | "message-user-02" | "mic-01" | "mic-02" | "mic-off-01" | "mic-off-02" | "microsoft-admin" | "milk-bottle" | "milk-coconut" | "milk-oat" | "minimize-01" | "minimize-02" | "minimize-03" | "minimize-04" | "minimize-screen" | "mining-01" | "mining-02" | "mining-03" | "minus-plus-01" | "minus-plus-02" | "minus-plus-circle-01" | "minus-plus-circle-02" | "minus-plus-square-01" | "minus-plus-square-02" | "minus-sign-circle" | "minus-sign-square" | "mirroring-screen" | "mistral" | "mobile-navigator-01" | "mobile-navigator-02" | "mobile-programming-01" | "mobile-programming-02" | "mobile-protection" | "mobile-security" | "mochi" | "modern-tv-4-k" | "modern-tv-issue" | "mollie" | "monas" | "money-01" | "money-02" | "money-03" | "money-04" | "money-add-01" | "money-add-02" | "money-bag-01" | "money-bag-02" | "money-exchange-01" | "money-exchange-02" | "money-exchange-03" | "money-not-found-01" | "money-not-found-02" | "money-not-found-03" | "money-not-found-04" | "money-receive-01" | "money-receive-02" | "money-receive-circle" | "money-receive-flow-01" | "money-receive-flow-02" | "money-receive-square" | "money-remove-01" | "money-remove-02" | "money-safe" | "money-saving-jar" | "money-security" | "money-send-01" | "money-send-02" | "money-send-circle" | "money-send-flow-01" | "money-send-flow-02" | "money-send-square" | "monocle" | "monocle-01" | "moon-01" | "moon-02" | "moon-angled-rain-zap" | "moon-cloud" | "moon-cloud-angled-rain" | "moon-cloud-angled-zap" | "moon-cloud-big-rain" | "moon-cloud-fast-wind" | "moon-cloud-hailstone" | "moon-cloud-little-rain" | "moon-cloud-little-snow" | "moon-cloud-mid-rain" | "moon-cloud-mid-snow" | "moon-cloud-slow-wind" | "moon-cloud-snow" | "moon-eclipse" | "moon-fast-wind" | "moon-landing" | "moon-slow-wind" | "more-01" | "more-02" | "more-03" | "more-horizontal-circle-01" | "more-horizontal-circle-02" | "more-horizontal-square-01" | "more-horizontal-square-02" | "more-or-less" | "more-or-less-circle" | "more-or-less-square" | "more-vertical-circle-01" | "more-vertical-circle-02" | "more-vertical-square-01" | "more-vertical-square-02" | "mortarboard-01" | "mortarboard-02" | "mosque-01" | "mosque-02" | "mosque-03" | "mosque-04" | "mosque-05" | "mosque-location" | "motion-01" | "motion-02" | "motorbike-01" | "motorbike-02" | "mouse-01" | "mouse-02" | "mouse-03" | "mouse-04" | "mouse-05" | "mouse-06" | "mouse-07" | "mouse-08" | "mouse-09" | "mouse-10" | "mouse-11" | "mouse-12" | "mouse-13" | "mouse-14" | "mouse-15" | "mouse-16" | "mouse-17" | "mouse-18" | "mouse-19" | "mouse-20" | "mouse-21" | "mouse-22" | "mouse-23" | "mouse-left-click-01" | "mouse-left-click-02" | "mouse-left-click-03" | "mouse-left-click-04" | "mouse-left-click-05" | "mouse-left-click-06" | "mouse-right-click-01" | "mouse-right-click-02" | "mouse-right-click-03" | "mouse-right-click-04" | "mouse-right-click-05" | "mouse-right-click-06" | "mouse-scroll-01" | "mouse-scroll-02" | "move-01" | "move-02" | "move-bottom" | "move-to" | "move-top" | "mp-3-02" | "mp-4-01" | "mp-4-02" | "mp3-01" | "muhammad" | "multiplication-sign" | "multiplication-sign-circle" | "multiplication-sign-square" | "mushroom-01" | "music-note-01" | "music-note-02" | "music-note-03" | "music-note-04" | "music-note-square-01" | "music-note-square-02" | "muslim" | "mymind" | "n-th-root" | "n-th-root-circle" | "n-th-root-square" | "nano-technology" | "napkins-01" | "napkins-02" | "natural-food" | "navigation-01" | "navigation-02" | "navigation-03" | "navigation-04" | "navigation-05" | "navigation-06" | "navigator-01" | "navigator-02" | "nerd" | "new-job" | "new-office" | "new-releases" | "new-twitter" | "new-twitter-ellipse" | "new-twitter-rectangle" | "news-01" | "nine-circle" | "nine-square" | "niqab" | "no-internet" | "node-add" | "node-edit" | "node-move-down" | "node-move-up" | "node-remove" | "not-equal-sign" | "not-equal-sign-circle" | "not-equal-sign-square" | "note-01" | "note-02" | "note-03" | "note-04" | "note-05" | "note-done" | "notebook-01" | "notebook-02" | "notification-01" | "notification-02" | "notification-03" | "notification-block-01" | "notification-block-02" | "notification-block-03" | "notification-bubble" | "notification-circle" | "notification-off-01" | "notification-off-02" | "notification-off-03" | "notification-snooze-01" | "notification-snooze-02" | "notification-snooze-03" | "notification-square" | "notion-01" | "notion-02" | "nuclear-power" | "obtuse" | "office-365" | "ok-finger" | "olympic-torch" | "one-circle" | "one-square" | "online-learning-01" | "online-learning-02" | "online-learning-03" | "online-learning-04" | "open-caption" | "orbit-01" | "orbit-02" | "orthogonal-edge" | "package-01" | "package-02" | "package-03" | "package-add" | "package-delivered" | "package-dimensions-01" | "package-dimensions-02" | "package-moving" | "package-moving-01" | "package-out-of-stock" | "package-process" | "package-process-01" | "package-receive" | "package-receive-01" | "package-remove" | "package-search-01" | "package-sent" | "package-sent-01" | "packaging" | "pacman-01" | "pacman-02" | "paella" | "paint-board" | "paint-brush-01" | "paint-brush-02" | "paint-brush-03" | "paint-brush-04" | "pan-01" | "pan-02" | "pan-03" | "parabola-01" | "parabola-02" | "parabola-03" | "paragraph-bullets-point-01" | "paragraph-bullets-point-02" | "paragraph-spacing" | "parking-area-circle" | "parking-area-square" | "passport-01" | "passport-expired" | "passport-valid" | "password-validation" | "pathfinder-crop" | "pathfinder-divide" | "pathfinder-exclude" | "pathfinder-intersect" | "pathfinder-merge" | "pathfinder-minus-back" | "pathfinder-minus-front" | "pathfinder-outline" | "pathfinder-trim" | "pathfinder-unite" | "patient" | "pavilon" | "pay-by-check" | "payment-01" | "payment-02" | "payment-success-01" | "payment-success-02" | "pdf-01" | "pdf-02" | "peer-to-peer-01" | "peer-to-peer-02" | "peer-to-peer-03" | "pen-01" | "pen-02" | "pen-connect-usb" | "pen-tool-01" | "pen-tool-02" | "pen-tool-03" | "pen-tool-add" | "pen-tool-minus" | "pencil-edit-01" | "pencil-edit-02" | "pendulum" | "pensive" | "pentagon-01" | "percent-square" | "permanent-job" | "perplexity-ai" | "petrol-pump" | "phone-arrow-down" | "phone-arrow-up" | "phone-developer-mode" | "phone-erase" | "phone-off-01" | "phone-off-02" | "physics" | "pi-circle" | "pi-square" | "pickup-01" | "pickup-02" | "picture-in-picture-exit" | "pie-chart-01" | "pie-chart-02" | "pie-chart-03" | "pie-chart-04" | "pie-chart-05" | "pie-chart-06" | "pie-chart-07" | "pie-chart-08" | "pie-chart-09" | "pie-chart-square" | "pin-02" | "pin-code" | "pin-location-01" | "pin-location-02" | "pin-location-03" | "pivot" | "pizza-01" | "pizza-02" | "pizza-03" | "pizza-04" | "plant-01" | "plant-02" | "plant-03" | "plant-04" | "plate" | "plaxo" | "play-circle-02" | "play-list-favourite-01" | "play-list-favourite-02" | "play-list-minus" | "play-square" | "playlist-01" | "playlist-02" | "playlist-03" | "plaza" | "plug-01" | "plug-02" | "plug-socket" | "plus-minus-01" | "plus-minus-02" | "plus-minus-circle-01" | "plus-minus-circle-02" | "plus-minus-square-01" | "plus-minus-square-02" | "plus-sign-circle" | "plus-sign-square" | "png-01" | "png-02" | "pointing-left-01" | "pointing-left-02" | "pointing-left-03" | "pointing-left-04" | "pointing-left-05" | "pointing-left-06" | "pointing-left-07" | "pointing-left-08" | "pointing-right-01" | "pointing-right-02" | "pointing-right-03" | "pointing-right-04" | "pointing-right-05" | "pointing-right-06" | "pointing-right-07" | "pointing-right-08" | "police-cap" | "poly-tank" | "pool-table" | "pot-01" | "pot-02" | "pound-circle" | "pound-receive" | "pound-send" | "pound-square" | "power-service" | "power-socket-01" | "power-socket-02" | "ppt-01" | "ppt-02" | "prawn" | "prayer-rug-01" | "prayer-rug-02" | "preference-horizontal" | "preference-vertical" | "presentation-01" | "presentation-02" | "presentation-03" | "presentation-04" | "presentation-05" | "presentation-06" | "presentation-07" | "presentation-bar-chart-01" | "presentation-bar-chart-02" | "presentation-line-chart-01" | "presentation-line-chart-02" | "presentation-online" | "presentation-podium" | "prism-01" | "prison-guard" | "product-loading" | "profile-02" | "programming-flag" | "progress-01" | "progress-02" | "progress-03" | "progress-04" | "projector-01" | "property-add" | "property-delete" | "property-edit" | "property-new" | "property-search" | "property-view" | "protection-mask" | "pulley" | "pulse-01" | "pulse-02" | "pulse-rectangle-01" | "pulse-rectangle-02" | "punching-ball-01" | "punching-ball-02" | "purse-01" | "push-up-bar" | "pyramid-maslowo" | "pyramid-structure-01" | "pyramid-structure-02" | "qr-code-01" | "queue-01" | "queue-02" | "quill-write-01" | "quill-write-02" | "quiz-01" | "quiz-02" | "quiz-03" | "quiz-04" | "quiz-05" | "quote-down" | "quote-down-circle" | "quote-down-square" | "quote-up" | "quote-up-circle" | "quote-up-square" | "quran-01" | "quran-02" | "quran-03" | "racing-flag" | "radar-01" | "radar-02" | "radio-01" | "radio-02" | "radioactive-alert" | "rain-double-drop" | "ramadhan-01" | "ramadhan-02" | "ramadhan-month" | "ranking" | "rar-01" | "rar-02" | "raw-01" | "raw-02" | "real-estate-01" | "real-estate-02" | "recovery-mail" | "rectangular" | "rectangular-01" | "recycle-01" | "recycle-02" | "recycle-03" | "redo-02" | "redo-03" | "register" | "relieved-01" | "relieved-02" | "remote-control" | "remove-01" | "remove-02" | "remove-circle-half-dot" | "remove-female" | "remove-male" | "remove-pi" | "remove-square" | "renewable-energy" | "renewable-energy-01" | "repeat-one-01" | "repeat-one-02" | "reset-password" | "resize-01" | "resize-02" | "resize-field" | "resize-field-rectangle" | "resources-add" | "resources-remove" | "restaurant-01" | "restaurant-02" | "restaurant-03" | "restaurant-table" | "restore-bin" | "return-request" | "reverse-withdrawal-01" | "reverse-withdrawal-02" | "rhombus-01" | "rice-bowl-01" | "rice-bowl-02" | "right-angle" | "right-to-left-block-quote" | "right-to-left-list-bullet" | "right-to-left-list-dash" | "right-to-left-list-number" | "right-to-left-list-triangle" | "riyal" | "riyal-rectangle" | "road-01" | "road-02" | "road-location-01" | "road-location-02" | "road-wayside" | "robot-01" | "robot-02" | "robotic" | "rocket-01" | "rocket-02" | "rocking-horse" | "rolling-pin" | "root-01" | "root-02" | "root-1st-bracket" | "root-2nd-bracket" | "root-3rd-bracket" | "root-circle" | "rotate-01" | "rotate-02" | "rotate-bottom-left" | "rotate-bottom-right" | "rotate-crop" | "rotate-left-01" | "rotate-left-02" | "rotate-left-03" | "rotate-left-04" | "rotate-left-05" | "rotate-left-06" | "rotate-right-01" | "rotate-right-02" | "rotate-right-03" | "rotate-right-04" | "rotate-right-05" | "rotate-right-06" | "rotate-square" | "rotate-top-left" | "rotate-top-right" | "route-01" | "route-02" | "route-03" | "route-block" | "router-01" | "router-02" | "rss-connected-01" | "rss-connected-02" | "rss-error" | "rss-locked" | "rss-unlocked" | "rubber-duck" | "rubiks-cube" | "ruku" | "running-shoes" | "sad-01" | "sad-02" | "sad-dizzy" | "safe-delivery-01" | "safe-delivery-02" | "safety-pin-01" | "safety-pin-02" | "sakura" | "salah" | "salah-time" | "sale-tag-01" | "sale-tag-02" | "satellite-01" | "satellite-02" | "satellite-03" | "saturn-01" | "saturn-02" | "save-energy-01" | "save-energy-02" | "save-money-dollar" | "save-money-euro" | "save-money-pound" | "save-money-yen" | "scan-image" | "school-01" | "school-bell-01" | "school-bell-02" | "school-bus" | "school-report-card" | "school-tie" | "scissor-01" | "scissor-rectangle" | "scooter-01" | "scooter-02" | "scooter-03" | "scooter-04" | "scratch-card" | "screen-add-to-home" | "screen-add-to-home-02" | "screen-lock-rotation" | "scroll-horizontal" | "scroll-vertical" | "search-01" | "search-02" | "search-add" | "search-area" | "search-focus" | "search-list-01" | "search-list-02" | "search-remove" | "search-replace" | "search-square" | "search-visual" | "searching" | "seat-selector" | "secured-network" | "security-block" | "security-check" | "security-key-usb" | "security-lock" | "security-password" | "security-validation" | "security-wifi" | "self-transfer" | "semi-truck" | "send-to-mobile" | "send-to-mobile-02" | "sending-order" | "senseless" | "sent" | "sent-02" | "server-stack-01" | "server-stack-02" | "server-stack-03" | "serving-food" | "setting-06" | "setting-07" | "setting-done-01" | "setting-done-02" | "setting-done-03" | "setting-done-04" | "setting-error-03" | "setting-error-04" | "settings-01" | "settings-02" | "settings-03" | "settings-04" | "settings-05" | "settings-error-01" | "settings-error-02" | "setup-01" | "setup-02" | "seven-circle" | "seven-square" | "shaka-01" | "shaka-02" | "shaka-03" | "shaka-04" | "shampoo" | "shape-collection" | "share-01" | "share-02" | "share-03" | "share-04" | "share-05" | "share-06" | "share-07" | "share-08" | "share-location-01" | "share-location-02" | "shared-drive" | "shared-wifi" | "sharing" | "shellfish" | "sheriff-01" | "sheriff-02" | "shield-01" | "shield-02" | "shield-blockchain" | "shield-energy" | "shipment-tracking" | "shipping-center" | "shipping-loading" | "shipping-truck-01" | "shipping-truck-02" | "shirt-01" | "shop-sign" | "shopping-bag-03" | "shopping-bag-add" | "shopping-bag-favorite" | "shopping-bag-remove" | "shopping-basket-01" | "shopping-basket-02" | "shopping-basket-03" | "shopping-basket-add-01" | "shopping-basket-add-02" | "shopping-basket-add-03" | "shopping-basket-check-in-01" | "shopping-basket-check-in-02" | "shopping-basket-check-in-03" | "shopping-basket-check-out-01" | "shopping-basket-check-out-02" | "shopping-basket-check-out-03" | "shopping-basket-done-01" | "shopping-basket-done-02" | "shopping-basket-done-03" | "shopping-basket-favorite-01" | "shopping-basket-favorite-02" | "shopping-basket-favorite-03" | "shopping-basket-remove-01" | "shopping-basket-remove-02" | "shopping-basket-remove-03" | "shopping-basket-secure-01" | "shopping-basket-secure-02" | "shopping-basket-secure-03" | "shopping-cart-add-01" | "shopping-cart-add-02" | "shopping-cart-check-01" | "shopping-cart-check-02" | "shopping-cart-check-in-01" | "shopping-cart-check-in-02" | "shopping-cart-check-out-01" | "shopping-cart-check-out-02" | "shopping-cart-favorite-01" | "shopping-cart-favorite-02" | "shopping-cart-remove-01" | "shopping-cart-remove-02" | "shorts-pants" | "shoulder" | "shuffle-square" | "shut-down" | "sidebar-bottom" | "sidebar-left-01" | "sidebar-right-01" | "sidebar-top" | "sign-language-c" | "signal-full-01" | "signal-full-02" | "signal-low-01" | "signal-low-02" | "signal-low-medium" | "signal-medium-01" | "signal-medium-02" | "signal-no-01" | "signal-no-02" | "simcard-01" | "simcard-02" | "simcard-dual" | "sine-01" | "sine-02" | "sing-left" | "sing-right" | "sink-01" | "sink-02" | "siri" | "siri-new" | "six-circle" | "six-square" | "sleeping" | "sleeveless" | "slow-winds" | "smart-ac" | "smart-phone-01" | "smart-phone-02" | "smart-phone-03" | "smart-phone-04" | "smart-phone-landscape" | "smart-phone-landscape-02" | "smart-watch-01" | "smart-watch-02" | "smart-watch-03" | "smart-watch-04" | "smartphone-lost-wifi" | "smartphone-wifi" | "smile-dizzy" | "sms-code" | "sofa-01" | "sofa-02" | "sofa-03" | "soft-drink-01" | "soft-drink-02" | "software-license" | "software-uninstall" | "solar-energy" | "solar-panel-01" | "solar-panel-02" | "solar-panel-03" | "solar-panel-04" | "solar-panel-05" | "solar-system-01" | "solid-line-01" | "solid-line-02" | "sort-by-down-01" | "sort-by-down-02" | "sort-by-up-01" | "sort-by-up-02" | "sorting-01" | "sorting-02" | "sorting-03" | "sorting-04" | "sorting-05" | "sorting-1-9" | "sorting-9-1" | "sorting-a-z-01" | "sorting-a-z-02" | "sorting-down" | "sorting-up" | "sorting-z-a-01" | "source-code-circle" | "source-code-square" | "spatula" | "speaker-01" | "speed-train-01" | "speed-train-02" | "spirals" | "spoon-and-fork" | "spoon-and-knife" | "square-01" | "square-arrow-data-transfer-diagonal" | "square-arrow-data-transfer-horizontal" | "square-arrow-data-transfer-vertical" | "square-arrow-diagonal-01" | "square-arrow-diagonal-02" | "square-arrow-down-01" | "square-arrow-down-02" | "square-arrow-down-03" | "square-arrow-down-double" | "square-arrow-expand-01" | "square-arrow-expand-02" | "square-arrow-horizontal" | "square-arrow-left-01" | "square-arrow-left-02" | "square-arrow-left-03" | "square-arrow-left-double" | "square-arrow-left-right" | "square-arrow-move-down-left" | "square-arrow-move-down-right" | "square-arrow-move-left-down" | "square-arrow-move-left-up" | "square-arrow-move-right-down" | "square-arrow-move-right-up" | "square-arrow-reload-01" | "square-arrow-reload-02" | "square-arrow-right-01" | "square-arrow-right-02" | "square-arrow-right-03" | "square-arrow-right-double" | "square-arrow-shrink-01" | "square-arrow-shrink-02" | "square-arrow-up-01" | "square-arrow-up-02" | "square-arrow-up-03" | "square-arrow-up-double" | "square-arrow-up-down" | "square-arrow-up-right-02" | "square-arrow-vertical" | "square-lock-01" | "square-lock-02" | "square-lock-add-01" | "square-lock-add-02" | "square-lock-check-01" | "square-lock-check-02" | "square-lock-minus-01" | "square-lock-minus-02" | "square-lock-password" | "square-lock-remove-01" | "square-lock-remove-02" | "square-root-square" | "square-unlock-01" | "square-unlock-02" | "stairs-01" | "stairs-02" | "stairs-03" | "stairs-04" | "stake" | "stamp-01" | "stamp-02" | "star-award-01" | "star-award-02" | "star-square" | "start-up-01" | "start-up-02" | "stationery" | "stethoscope-02" | "sticky-note-01" | "sticky-note-02" | "sticky-note-03" | "stop-loss-order" | "stop-watch" | "store-01" | "store-02" | "store-03" | "store-04" | "store-add-01" | "store-add-02" | "store-location-01" | "store-location-02" | "store-management-01" | "store-management-02" | "store-remove-01" | "store-remove-02" | "store-verified-01" | "store-verified-02" | "straight-edge" | "streering-wheel" | "street-food" | "stroke-bottom" | "stroke-center" | "stroke-inside" | "stroke-left" | "stroke-outside" | "stroke-right" | "stroke-top" | "structure-01" | "structure-02" | "structure-03" | "structure-04" | "structure-05" | "structure-add" | "structure-check" | "structure-fail" | "structure-folder" | "structure-folder-circle" | "student-card" | "students" | "study-desk" | "study-lamp" | "submerge" | "subnode-add" | "subnode-delete" | "subpoena" | "subtitle" | "suit-01" | "suit-02" | "sujood" | "summation-01" | "summation-02" | "summation-circle" | "summation-square" | "sun-01" | "sun-02" | "sun-03" | "sun-cloud-01" | "sun-cloud-02" | "sun-cloud-angled-rain-01" | "sun-cloud-angled-rain-02" | "sun-cloud-angled-rain-zap-01" | "sun-cloud-angled-rain-zap-02" | "sun-cloud-angled-zap-01" | "sun-cloud-angled-zap-02" | "sun-cloud-big-rain-01" | "sun-cloud-big-rain-02" | "sun-cloud-fast-wind-01" | "sun-cloud-fast-wind-02" | "sun-cloud-hailstone-01" | "sun-cloud-hailstone-02" | "sun-cloud-little-rain-01" | "sun-cloud-little-rain-02" | "sun-cloud-little-snow-01" | "sun-cloud-little-snow-02" | "sun-cloud-mid-rain-01" | "sun-cloud-mid-rain-02" | "sun-cloud-mid-snow-01" | "sun-cloud-mid-snow-02" | "sun-cloud-slow-wind-01" | "sun-cloud-slow-wind-02" | "sun-cloud-snow-01" | "sun-cloud-snow-02" | "super-mario" | "super-mario-toad" | "surfboard" | "sushi-01" | "sushi-02" | "sushi-03" | "sustainable-energy" | "svg-01" | "svg-02" | "swimming-cap" | "swipe-down-01" | "swipe-down-02" | "swipe-down-03" | "swipe-down-04" | "swipe-down-05" | "swipe-down-06" | "swipe-down-07" | "swipe-down-08" | "swipe-left-01" | "swipe-left-02" | "swipe-left-03" | "swipe-left-04" | "swipe-left-05" | "swipe-left-06" | "swipe-left-07" | "swipe-left-08" | "swipe-left-09" | "swipe-right-01" | "swipe-right-02" | "swipe-right-03" | "swipe-right-04" | "swipe-right-05" | "swipe-right-06" | "swipe-right-07" | "swipe-right-08" | "swipe-right-09" | "swipe-up-01" | "swipe-up-02" | "swipe-up-03" | "swipe-up-04" | "swipe-up-05" | "swipe-up-06" | "swipe-up-07" | "swipe-up-08" | "sword-01" | "sword-02" | "sword-03" | "system-update-01" | "system-update-02" | "table-01" | "table-02" | "table-03" | "table-lamp-01" | "table-lamp-02" | "table-round" | "table-tennis-bat" | "tablet-01" | "tablet-02" | "tablet-connected-bluetooth" | "tablet-connected-usb" | "tablet-connected-wifi" | "tablet-pen" | "taco-01" | "taco-02" | "tag-01" | "tag-02" | "taj-mahal" | "tap-01" | "tap-02" | "tap-03" | "tap-04" | "tap-05" | "tap-06" | "tap-07" | "tap-08" | "target-01" | "target-02" | "target-03" | "target-dollar" | "tasbih" | "task-01" | "task-02" | "task-add-01" | "task-add-02" | "task-daily-01" | "task-daily-02" | "task-done-01" | "task-done-02" | "task-edit-01" | "task-edit-02" | "task-remove-01" | "task-remove-02" | "taxes" | "taxi-02" | "tea-pod" | "teaching" | "telescope-01" | "telescope-02" | "television-table" | "test-tube-01" | "test-tube-02" | "test-tube-03" | "text-align-justify-center" | "text-align-justify-left" | "text-align-justify-right" | "text-align-left-01" | "text-align-right-01" | "text-centerline-center-top" | "text-centerline-left" | "text-centerline-middle" | "text-centerline-right" | "text-check" | "text-circle" | "text-clear" | "text-firstline-left" | "text-firstline-right" | "text-indent-01" | "text-italic-slash" | "text-number-sign" | "text-smallcaps" | "text-variable-front" | "the-prophets-mosque" | "thermometer-warm" | "threads-ellipse" | "threads-rectangle" | "three-circle" | "three-finger-01" | "three-finger-02" | "three-finger-03" | "three-finger-04" | "three-finger-05" | "three-square" | "thumbs-down-ellipse" | "thumbs-down-rectangle" | "thumbs-up-ellipse" | "thumbs-up-rectangle" | "tick-01" | "tick-02" | "tick-03" | "tick-04" | "tick-double-01" | "tick-double-02" | "tick-double-03" | "tick-double-04" | "ticket-01" | "ticket-02" | "ticket-03" | "ticket-star" | "tiff-01" | "tiff-02" | "tiltify" | "time-01" | "time-02" | "time-03" | "time-04" | "time-half-pass" | "time-management" | "time-management-circle" | "time-quarter" | "time-quarter-02" | "time-quarter-pass" | "time-schedule" | "time-setting-01" | "time-setting-02" | "time-setting-03" | "timer-01" | "timer-02" | "tinder-square" | "tired-01" | "tired-02" | "tissue-paper" | "toilet-01" | "toilet-02" | "token-circle" | "token-square" | "tongue-01" | "tongue-wink-left" | "tongue-wink-right" | "tornado-01" | "tornado-02" | "torri-gate" | "touch-01" | "touch-02" | "touch-03" | "touch-04" | "touch-05" | "touch-06" | "touch-07" | "touch-08" | "touch-09" | "touch-10" | "touch-interaction-01" | "touch-interaction-02" | "touch-interaction-03" | "touch-interaction-04" | "touch-locked-01" | "touch-locked-02" | "touch-locked-03" | "touch-locked-04" | "touchpad-01" | "touchpad-02" | "touchpad-03" | "touchpad-04" | "towels" | "toy-train" | "trade-down" | "trade-up" | "traffic-jam-01" | "traffic-jam-02" | "train-01" | "train-02" | "trampoline" | "transaction-history" | "trapezoid-line-horizontal" | "trapezoid-line-vertical" | "travel-bag" | "treadmill-01" | "treadmill-02" | "treatment" | "tree-01" | "tree-02" | "tree-03" | "tree-04" | "tree-05" | "tree-06" | "tree-07" | "triangle-01" | "triangle-02" | "triangle-03" | "trolley-01" | "trolley-02" | "tropical-storm-tracks-01" | "tropical-storm-tracks-02" | "trulli" | "turtle-neck" | "tv-01" | "tv-02" | "tv-issue" | "tv-smart" | "twin-tower" | "two-circle" | "two-factor-access" | "two-finger-01" | "two-finger-02" | "two-finger-03" | "two-finger-04" | "two-finger-05" | "two-square" | "txt-01" | "txt-02" | "type-cursor" | "typescript-01" | "typescript-02" | "typescript-03" | "ufo-01" | "umbrella-dollar" | "unamused" | "unarchive-03" | "underpants-01" | "underpants-02" | "underpants-03" | "undo-02" | "undo-03" | "ungroup-items" | "ungroup-layers" | "unhappy" | "unlink-01" | "unlink-02" | "unlink-03" | "unlink-04" | "unlink-05" | "unlink-06" | "upload-01" | "upload-02" | "upload-03" | "upload-04" | "upload-05" | "upload-circle-01" | "upload-circle-02" | "upload-square-01" | "upload-square-02" | "usb-bugs" | "usb-connected-01" | "usb-connected-02" | "usb-connected-03" | "usb-error" | "usb-memory-01" | "usb-memory-02" | "usb-not-connected-01" | "usb-not-connected-02" | "user-add-01" | "user-add-02" | "user-ai" | "user-arrow-left-right" | "user-block-01" | "user-block-02" | "user-check-01" | "user-check-02" | "user-circle-02" | "user-edit-01" | "user-full-view" | "user-group-02" | "user-group-03" | "user-id-verification" | "user-lock-01" | "user-lock-02" | "user-love-01" | "user-love-02" | "user-minus-01" | "user-minus-02" | "user-multiple-02" | "user-multiple-03" | "user-question-01" | "user-question-02" | "user-remove-01" | "user-remove-02" | "user-roadside" | "user-search-01" | "user-search-02" | "user-settings-01" | "user-settings-02" | "user-sharing" | "user-shield-01" | "user-shield-02" | "user-star-01" | "user-star-02" | "user-status" | "user-story" | "user-switch" | "user-time-01" | "user-time-02" | "user-time-03" | "user-unlock-01" | "user-unlock-02" | "user-warning-01" | "user-warning-02" | "user-warning-03" | "uv-01" | "uv-02" | "uv-03" | "validation" | "validation-approval" | "vegetarian-food" | "versus" | "vertical-resize" | "vertical-scroll-point" | "victory-finger-01" | "victory-finger-02" | "victory-finger-03" | "video-01" | "video-02" | "video-ai" | "video-camera-ai" | "video-console" | "video-replay" | "view-off-slash" | "vine-square" | "vintage-clock" | "virtual-reality-vr-01" | "virtual-reality-vr-02" | "vision" | "vk-square" | "voice-id" | "volume-mute-01" | "volume-mute-02" | "voucher" | "vr-glasses" | "vynil-01" | "vynil-02" | "vynil-03" | "w-3-schools" | "waiter" | "waiters" | "wallet-01" | "wallet-02" | "wallet-03" | "wallet-04" | "wallet-05" | "wallet-add-01" | "wallet-add-02" | "wallet-done-01" | "wallet-done-02" | "wallet-not-found-01" | "wallet-not-found-02" | "wallet-remove-01" | "wallet-remove-02" | "wardrobe-01" | "wardrobe-02" | "wardrobe-03" | "wardrobe-04" | "washington-monument" | "waste-restore" | "watch-01" | "watch-02" | "water-energy" | "waterfall-down-01" | "waterfall-down-03" | "waterfall-up-01" | "waterfall-up-02" | "wattpad-square" | "wav-01" | "wav-02" | "wave-triangle" | "waving-hand-01" | "waving-hand-02" | "web-design-01" | "web-design-02" | "web-programming" | "web-protection" | "web-security" | "web-validation" | "webflow-ellipse" | "webflow-rectangle" | "weight-scale-01" | "whiteboard" | "wifi-01" | "wifi-02" | "wifi-circle" | "wifi-connected-01" | "wifi-connected-02" | "wifi-connected-03" | "wifi-disconnected-01" | "wifi-disconnected-02" | "wifi-disconnected-03" | "wifi-disconnected-04" | "wifi-error-01" | "wifi-error-02" | "wifi-full-signal" | "wifi-location" | "wifi-low-signal" | "wifi-medium-signal" | "wifi-no-signal" | "wifi-off-01" | "wifi-off-02" | "wifi-square" | "wifi-unlock" | "wind-power-01" | "wind-power-02" | "wind-power-03" | "wind-surf" | "windows-new" | "windows-old" | "winking" | "wireless-cloud-access" | "workflow-circle-01" | "workflow-circle-02" | "workflow-circle-03" | "workflow-circle-04" | "workflow-circle-05" | "workflow-circle-06" | "workflow-square-01" | "workflow-square-02" | "workflow-square-03" | "workflow-square-04" | "workflow-square-05" | "workflow-square-06" | "workflow-square-07" | "workflow-square-08" | "workflow-square-09" | "workflow-square-10" | "workout-battle-ropes" | "workout-gymnastics" | "workout-kicking" | "workout-run" | "workout-sport" | "workout-squats" | "workout-stretching" | "workout-warm-up" | "worry" | "wps-office" | "wps-office-rectangle" | "wrench-01" | "wrench-02" | "wudu" | "x-variable" | "x-variable-circle" | "x-variable-square" | "xls-01" | "xls-02" | "xml-01" | "xml-02" | "xsl-01" | "xsl-02" | "yen-circle" | "yen-receive" | "yen-send" | "yoga-01" | "yoga-02" | "yoga-03" | "yoga-ball" | "yoga-mat" | "yogurt" | "zakat" | "zero-circle" | "zero-square" | "zip-01" | "zip-02" | "zoom-circle" | "zoom-square">): import("react").JSX.Element;
4570
+ ({ 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<"function" | "id" | "filter" | "android" | "ease-in" | "ease-out" | "ease-in-out" | "translate" | "repeat" | "anchor" | "signal" | "scroll" | "text" | "radio" | "absolute" | "perspective" | "matrix" | "canvas" | "code" | "label" | "meta" | "option" | "progress" | "table" | "circle" | "line" | "mask" | "path" | "polygon" | "stop" | "view" | "call" | "align-horizontal-center" | "align-vertical-center" | "archive" | "aspect-ratio" | "asterisk" | "at" | "attachment" | "bandage" | "binoculars" | "bluetooth" | "blur" | "bullet" | "campfire" | "charity" | "chat" | "chat-question" | "chip" | "clipboard" | "closed-caption" | "console" | "copyright" | "crane" | "crop" | "crown" | "cursor-text" | "desk" | "diamond" | "distribute-horizontal-center" | "distribute-horizontal-left" | "distribute-horizontal-right" | "distribute-vertical-bottom" | "distribute-vertical-center" | "distribute-vertical-top" | "eraser" | "eye" | "ferris-wheel" | "filter-remove" | "fit-to-screen" | "flash-off" | "flashlight" | "gold" | "grid" | "grid-off" | "handcuffs" | "heart-remove" | "help-circle" | "inbox" | "incognito" | "ipod" | "keyboard" | "license" | "lighthouse" | "link-circle" | "locker" | "magnet" | "mailbox" | "message-question" | "more" | "note" | "note-remove" | "notebook" | "package" | "passport" | "pause-circle" | "pin" | "pin-off" | "play-circle" | "podcast" | "police-badge" | "pound" | "purse" | "quora" | "redo" | "reminder" | "repeat-off" | "replay" | "router" | "rss" | "satellite" | "school" | "screen-rotation" | "seal" | "security" | "seesaw" | "segment" | "shield-key" | "slide" | "star-off" | "stop-circle" | "submarine" | "thumbs-up-down" | "trademark" | "ufo" | "undo" | "usb" | "webhook" | "yurt" | "carrot" | "corn" | "flower" | "horse" | "hydro-power" | "mushroom" | "pine-tree" | "tire" | "tractor" | "water-pump" | "alert-circle" | "alpha" | "alphabet-greek" | "beta" | "snail" | "flip-horizontal" | "flip-vertical" | "arrow-expand" | "arrow-left-right" | "arrow-up-down" | "call-received" | "refresh" | "reload" | "rotate-360" | "shuffle" | "headphones" | "headset" | "headset-off" | "speaker" | "volume-high" | "volume-low" | "volume-minus" | "volume-off" | "caravan" | "fuel" | "lock" | "steering" | "thermometer" | "bank" | "bitcoin" | "credit-card" | "invoice" | "litecoin" | "piggy-bank" | "safe" | "battery-low" | "apple" | "apple-finder" | "bootstrap" | "deviantart" | "dropbox" | "ethereum" | "github" | "gitlab" | "gnome" | "google" | "google-drive" | "google-lens" | "google-maps" | "instagram" | "mastodon" | "microsoft" | "nintendo-switch" | "npm" | "pinterest" | "react" | "reddit" | "skype" | "slack" | "snapchat" | "soundcloud" | "spotify" | "teamviewer" | "trello" | "twitch" | "twitter" | "vimeo" | "waze" | "wechat" | "whatsapp" | "wikipedia" | "wordpress" | "youtube" | "phone-check" | "phone-lock" | "bow-tie" | "chef-hat" | "glasses" | "hanger" | "necklace" | "sunglasses" | "tie" | "cloud" | "cloud-download" | "cloud-upload" | "file-cloud" | "database" | "database-export" | "database-import" | "database-sync" | "api" | "bash" | "variable" | "laptop" | "projector" | "artboard" | "brush" | "pencil" | "ruler" | "book-edit" | "file-edit" | "folder-edit" | "note-edit" | "file-download" | "file-export" | "file-import" | "file-link" | "file-minus" | "file-music" | "file-remove" | "file-search" | "file-star" | "file-sync" | "file-upload" | "file-video" | "folder-check" | "folder-download" | "folder-minus" | "folder-music" | "folder-off" | "folder-open" | "folder-remove" | "folder-search" | "folder-sync" | "folder-upload" | "folder-zip" | "blender" | "cheese" | "cookie" | "kettle" | "microwave" | "noodles" | "popcorn" | "sausage" | "square-circle" | "tea" | "signature" | "bomb" | "chess-pawn" | "pokeball" | "puzzle" | "skull" | "star-face" | "compass" | "earth" | "latitude" | "longitude" | "factory" | "nut" | "tape-measure" | "tools" | "hair-dryer" | "bed" | "bed-double" | "gift" | "pumpkin" | "curtains" | "door" | "fire" | "floor-plan" | "fridge" | "garage" | "lamp" | "mirror" | "pause" | "play" | "pool" | "printer" | "printer-3d" | "record" | "sofa-single" | "solar-power" | "video-off" | "wind-power" | "wind-turbine" | "wifi-lock" | "abacus" | "approximately-equal" | "calculator" | "chart-histogram" | "diameter" | "greater-than" | "less-than" | "percent" | "percent-circle" | "pi" | "plus-minus" | "radius" | "ambulance" | "bacteria" | "blood-bag" | "brain" | "lungs" | "prescription" | "stethoscope" | "wheelchair" | "cactus" | "feather" | "tsunami" | "taxi" | "tram" | "baby-bottle" | "ski" | "airport" | "beach" | "bridge" | "castle" | "church" | "eiffel-tower" | "island" | "library" | "police-station" | "warehouse" | "printer-off" | "dna" | "microscope" | "rocket" | "test-tube" | "cube" | "hexagon" | "octagon" | "pentagon" | "pyramid" | "rhombus" | "sphere" | "square" | "star" | "star-circle" | "star-half" | "triangle" | "badminton" | "baseball" | "baseball-bat" | "basketball-hoop" | "bicycle" | "bowling" | "boxing-glove" | "curling" | "fencing" | "football" | "golf-cart" | "kettlebell" | "kite" | "paragliding" | "podium" | "roller-skate" | "strategy" | "tennis-ball" | "volleyball" | "water-polo" | "whistle" | "border-horizontal" | "border-vertical" | "drone" | "helicopter" | "scooter-electric" | "road" | "tanker-truck" | "tow-truck" | "traffic-light" | "truck" | "truck-delivery" | "lifebuoy" | "wave" | "flash" | "umbrella" | "command-line" | "finger-print" | "identification" | "information-circle" | "map-pin" | "moon" | "qr-code" | "sparkles" | "swatch" | "user" | "user-circle" | "user-group" | "alarm-clock" | "angry" | "banana" | "battery-full" | "blend" | "bot" | "cable-car" | "chart-column" | "chart-scatter" | "cherry" | "cloud-snow" | "codesandbox" | "command" | "computer" | "contact" | "cpu" | "croissant" | "dribbble" | "droplet" | "ear" | "euro" | "figma" | "folders" | "framer" | "gem" | "git-branch" | "git-compare" | "git-fork" | "git-merge" | "git-pull-request" | "git-pull-request-closed" | "git-pull-request-draft" | "globe" | "gpu" | "hard-drive" | "heading" | "highlighter" | "hourglass" | "kanban" | "kayak" | "layout-grid" | "lollipop" | "mail-open" | "meh" | "mountain" | "move" | "move-left" | "move-right" | "package-open" | "package-search" | "paint-bucket" | "plane" | "rainbow" | "refrigerator" | "rocking-chair" | "shapes" | "shield-user" | "sliders-horizontal" | "sliders-vertical" | "smile" | "square-arrow-down-left" | "square-arrow-down-right" | "square-arrow-up-left" | "square-arrow-up-right" | "square-square" | "stamp" | "sunrise" | "sunset" | "tags" | "text-align-center" | "text-wrap" | "thumbs-down" | "thumbs-up" | "university" | "zap" | "align-left" | "align-right" | "bar-chart" | "chrome" | "git-commit" | "more-horizontal" | "more-vertical" | "pie-chart" | "address-book" | "affiliate" | "alert-square" | "align-box-bottom-center" | "align-box-bottom-left" | "align-box-bottom-right" | "align-box-top-center" | "align-box-top-left" | "align-box-top-right" | "alphabet-arabic" | "alphabet-bangla" | "alphabet-hebrew" | "alphabet-korean" | "alphabet-thai" | "angle" | "avocado" | "background" | "book-download" | "book-upload" | "border-inner" | "bounce-left" | "bounce-right" | "browser" | "bulb" | "calendar-user" | "camera-ai" | "camper" | "cap-projecting" | "cap-straight" | "carousel-horizontal" | "carousel-vertical" | "chart-radar" | "circle-arrow-down-left" | "circle-arrow-down-right" | "circle-arrow-up-left" | "circle-arrow-up-right" | "code-circle" | "color-picker" | "congruent-to" | "diaper" | "dice" | "discount" | "drag-drop" | "ease-in-control-point" | "ease-out-control-point" | "edit-off" | "eggs" | "face-id" | "file-bitcoin" | "file-dollar" | "file-euro" | "file-shredder" | "file-unknown" | "file-zip" | "filter-edit" | "fingerprint-scan" | "first-aid-kit" | "folder-pin" | "galaxy" | "gift-card" | "hand-sanitizer" | "heart-check" | "help-square" | "hierarchy" | "hourglass-off" | "ice-skating" | "join-bevel" | "join-round" | "join-straight" | "joker" | "keyframe" | "keyframe-align-center" | "keyframe-align-horizontal" | "keyframe-align-vertical" | "label-important" | "letter-spacing" | "lock-password" | "man" | "math" | "medicine-syrup" | "news" | "oval" | "perfume" | "picture-in-picture-on" | "prism" | "prison" | "quotes" | "receipt-dollar" | "registered" | "ripple" | "rotate-clockwise" | "seo" | "shopping-bag-check" | "source-code" | "sql" | "stars" | "step-into" | "step-out" | "swimming" | "temperature" | "text-color" | "transition-bottom" | "transition-left" | "transition-right" | "transition-top" | "truck-return" | "user-square" | "vaccine" | "vacuum-cleaner" | "wave-square" | "woman" | "zeppelin" | "zoom" | "zoom-in-area" | "zoom-out-area" | "zzz" | "align-bottom" | "align-top" | "amazon" | "apple-music" | "bing" | "bluesky" | "bounding-box" | "camera-video" | "claude" | "code-square" | "database-add" | "discord" | "hdd" | "heartbreak" | "medium" | "messenger" | "paragraph" | "paypal" | "question" | "sd-card" | "snow" | "stripe" | "telegram" | "telephone" | "threads" | "tiktok" | "toggle-off" | "toggle-on" | "transparency" | "tropical-storm" | "universal-access" | "universal-access-circle" | "volume-up" | "vr" | "yelp" | "arrow-turn-down" | "arrow-turn-up" | "floppy-disk" | "gears" | "gun" | "jar" | "spoon" | "weight-scale" | "horse-head" | "file-audio" | "truck-monster" | "socks" | "battery-empty" | "poop" | "hotdog" | "vest" | "x-ray" | "bowling-ball" | "child" | "airplay-line" | "delete-column" | "delete-row" | "insert-column-left" | "insert-column-right" | "list-view" | "align-box-middle-center" | "align-box-middle-left" | "align-box-middle-right" | "arrange" | "border-full" | "clean" | "column-delete" | "column-insert" | "connect" | "filter-reset" | "fork" | "locked" | "radio-button" | "row-delete" | "row-insert" | "select-01" | "select-02" | "text-align-left" | "text-align-right" | "text-all-caps" | "text-bold" | "text-creation" | "text-font" | "text-footnote" | "text-indent" | "text-indent-less" | "text-indent-more" | "text-italic" | "text-kerning" | "text-selection" | "text-strikethrough" | "text-subscript" | "text-superscript" | "text-tracking" | "text-underline" | "text-vertical-alignment" | "view-off" | "monster" | "_4k" | "chart-average" | "chart-evaluation" | "chart-high-low" | "chart-maximum" | "chart-minimum" | "chart-relationship" | "chart-ring" | "chart-rose" | "closed-caption-alt" | "copy-link" | "course" | "covariate" | "document-attachment" | "firewall" | "flow" | "flow-connection" | "folder-add" | "folder-details" | "folder-details-reference" | "folder-move-to" | "information-square" | "license-draft" | "license-maintenance" | "license-third-party" | "policy" | "qq-plot" | "share-knowledge" | "customer-service" | "idea" | "user-multiple" | "cafe" | "direction-right-01" | "direction-right-02" | "humidity" | "moonset" | "rain" | "rain-drop" | "restaurant" | "sailboat-coastal" | "sailboat-offshore" | "soil-moisture-field" | "soil-moisture-global" | "soil-temperature-field" | "soil-temperature-global" | "traffic-incident" | "van" | "chat-bot" | "add-circle" | "american-football" | "boat" | "happy" | "remove-circle" | "search-circle" | "airbnb" | "blogger" | "brandfetch" | "castbox" | "chef" | "chrysler" | "coinbase" | "dart" | "datev" | "digg" | "envato" | "fiverr" | "flickr" | "foursquare" | "gitbook" | "hackerrank" | "honor" | "iconjar" | "klarna" | "leetcode" | "loom" | "lottiefiles" | "maze" | "metro" | "nike" | "orange" | "payoneer" | "pexels" | "php" | "python" | "replit" | "safari" | "saturn" | "scribd" | "shopify" | "shutterstock" | "sketch" | "slideshare" | "smart" | "spaceship" | "swarm" | "tailwindcss" | "tinder" | "transmission" | "tumblr" | "uber" | "unsplash" | "upwork" | "viber" | "vk" | "wattpad" | "webflow" | "wise" | "xing" | "zsh" | "adobe-illustrator" | "adobe-indesign" | "adobe-photoshop" | "adobe-xd" | "broccoli" | "css-3" | "google-gemini" | "google-home" | "google-photos" | "html-5" | "java" | "visual-studio-code" | "collections-bookmark" | "dark-mode" | "speech-to-text" | "calculate" | "energy" | "meeting-room" | "no-meeting-room" | "savings" | "work" | "work-alert" | "work-history" | "work-update" | "co-present" | "computer-arrow-up" | "cleaning-bucket" | "wall-lamp" | "oven" | "edit-road" | "blood-pressure" | "conversation" | "labs" | "medical-mask" | "oil-barrel" | "colors" | "grid-view" | "note-add" | "cottage" | "acute" | "stack-star" | "step-over" | "unfold-less" | "unfold-more" | "birthday-cake" | "ease-curve-control-points" | "hat" | "sandals" | "internet" | "database-restore" | "developer" | "laptop-charging" | "modern-tv" | "pen-connect-bluetooth" | "pen-connect-wifi" | "tv-fix" | "scissor" | "text-square" | "bitcoin-circle" | "coins-swap" | "dollar-circle" | "euro-square" | "yen" | "yen-square" | "chocolate" | "potion" | "spades" | "repository" | "iris-scan" | "voice" | "layout-left" | "layout-right" | "organic-food" | "file-not-found" | "app-store" | "hot-air-balloon" | "chat-add" | "chat-edit" | "full-screen" | "health" | "parallelogram" | "sidebar-left" | "sidebar-right" | "access" | "aids" | "auction" | "boxer" | "capcut" | "cells" | "deepseek" | "digital-clock" | "domino" | "drive" | "folder-cloud" | "folder-favourite" | "give-blood" | "imo" | "jupiter" | "maps" | "next" | "nintendo" | "octopus" | "office" | "qwen" | "silence" | "skool" | "status" | "tan" | "tetris" | "tic-tac-toe" | "tips" | "wanted" | "whatsapp-business" | "whisk" | "wink" | "service" | "transaction" | "picasa" | "chart" | "clinic" | "confused" | "customize" | "drink" | "game" | "injection" | "layer" | "no-signal" | "party" | "shocked" | "medium-square" | "periscope" | "play-store" | "t-shirt" | "user-account" | "mute" | "cpp" | "folder-audio" | "folder-security" | "folder-video" | "scheme" | "ev-charging" | "wellness" | "file-add" | "shopping-bag-01" | "shopping-bag-02" | "shopping-cart-01" | "shopping-cart-02" | "image-01" | "image-02" | "building-01" | "building-02" | "building-03" | "building-04" | "house-01" | "house-02" | "house-03" | "user-02" | "user-03" | "ko-fi" | "last-fm" | "mixer" | "stumbleupon" | "vine" | "cd" | "airplane-mode" | "airplane-mode-off" | "balance-scale" | "center-focus" | "re" | "copilot" | "folder-library" | "sin" | "usdt" | "image-crop" | "image-flip-horizontal" | "image-flip-vertical" | "translation" | "reflex" | "crab" | "grapes" | "watermelon" | "wireless" | "minus-sign" | "plus-sign" | "fireworks" | "ice-hockey" | "doughnut" | "spaghetti" | "camel" | "tulip" | "nose" | "tongue" | "trade-mark" | "desert" | "police-car" | "wedding" | "add-to-list" | "molecules" | "neural-network" | "pipeline" | "software" | "promotion" | "global" | "skew" | "search-minus" | "twitter-square" | "flushed" | "surprise" | "search-dollar" | "golf-ball" | "contact-book" | "apron" | "chopsticks" | "hut" | "judge" | "pie" | "student" | "teacher" | "thread" | "balloons" | "bar-chart-horizontal" | "blocked" | "check-list" | "date-time" | "inbox-check" | "open-source" | "previous" | "repair" | "right-triangle" | "crown-minus" | "crown-plus" | "hangout" | "laughing" | "neutral" | "blood" | "play-list" | "female-symbol" | "male-symbol" | "brochure" | "file-script" | "archer" | "belt" | "broken-bone" | "caduceus" | "cargo-ship" | "cctv-camera" | "chimney" | "clothes" | "coffee-beans" | "cricket-bat" | "diploma" | "expander" | "falling-star" | "flower-pot" | "frisbee" | "gas-stove" | "hand-grip" | "hockey" | "hoodie" | "ice-cubes" | "india-gate" | "kidneys" | "lantern" | "liver" | "mayan-pyramid" | "milk-carton" | "mortar" | "office-chair" | "pisa-tower" | "pizza-cutter" | "prisoner" | "profit" | "punch" | "rub-el-hizb" | "skipping-rope" | "soda-can" | "solar-system" | "spartan-helmet" | "steak" | "suspicious" | "tank-top" | "tennis-racket" | "thermometer-cold" | "vomiting" | "cap" | "danger" | "play-list-add" | "play-list-remove" | "pokemon" | "profile" | "unavailable" | "user-list" | "layer-add" | "spam" | "radial" | "terrace" | "patio" | "waste" | "sperm" | "breast-pump" | "crying" | "_1st-bracket" | "_1st-bracket-circle" | "_1st-bracket-square" | "_2nd-bracket" | "_2nd-bracket-circle" | "_2nd-bracket-square" | "_3-d-view" | "_3d-move" | "_3d-printer" | "_3d-rotate" | "_3d-scale" | "_3rd-bracket" | "_3rd-bracket-circle" | "_3rd-bracket-square" | "_7z-01" | "_7z-02" | "acceleration" | "accident" | "account-recovery" | "account-setting-01" | "account-setting-02" | "account-setting-03" | "activity-01" | "activity-02" | "activity-03" | "activity-04" | "add-01" | "add-02" | "add-circle-half-dot" | "add-female" | "add-invoice" | "add-male" | "add-money-circle" | "add-square" | "add-team" | "add-team-02" | "adobe-after-effect" | "adobe-premier" | "adventure" | "advertisiment" | "adzan" | "agreement-01" | "agreement-02" | "agreement-03" | "ai-audio" | "ai-beautify" | "ai-book" | "ai-brain-01" | "ai-brain-02" | "ai-brain-03" | "ai-brain-04" | "ai-brain-05" | "ai-browser" | "ai-chat-01" | "ai-chat-02" | "ai-chemistry-01" | "ai-chemistry-02" | "ai-chemistry-03" | "ai-chip" | "ai-cloud" | "ai-cloud-01" | "ai-cloud-02" | "ai-computer" | "ai-content-generator-01" | "ai-content-generator-02" | "ai-dna" | "ai-editing" | "ai-eraser" | "ai-file" | "ai-folder-01" | "ai-folder-02" | "ai-game" | "ai-generative" | "ai-idea" | "ai-image" | "ai-innovation-01" | "ai-innovation-02" | "ai-innovation-03" | "ai-laptop" | "ai-learning" | "ai-lock" | "ai-magic" | "ai-mail" | "ai-mail-01" | "ai-mail-02" | "ai-mic" | "ai-network" | "ai-phone-01" | "ai-phone-02" | "ai-programming" | "ai-scan" | "ai-scheduling" | "ai-search" | "ai-search-02" | "ai-security-01" | "ai-security-02" | "ai-security-03" | "ai-setting" | "ai-sheets" | "ai-smartwatch" | "ai-user" | "ai-video" | "ai-view" | "ai-vision-recognition" | "ai-voice" | "ai-voice-generator" | "ai-web-browsing" | "aircraft-game" | "airdrop" | "airplane-01" | "airplane-02" | "airplane-landing-01" | "airplane-landing-02" | "airplane-seat" | "airplane-seat-02" | "airplane-take-off-01" | "airplane-take-off-02" | "airpod-01" | "airpod-02" | "airpod-03" | "al-aqsa-mosque" | "album-01" | "album-02" | "album-not-found-01" | "album-not-found-02" | "alert-01" | "alert-02" | "alert-diamond" | "algorithm" | "alien-01" | "alien-02" | "align-key-object" | "align-selection" | "all-bookmark" | "allah" | "alms" | "alpha-circle" | "alpha-square" | "alphabet-chinese" | "alphabet-hindi" | "alphabet-japanese" | "amie" | "ammo" | "ampoule" | "analysis-text-link" | "analytics-01" | "analytics-02" | "analytics-03" | "analytics-down" | "analytics-up" | "anchor-point" | "angel" | "angle-01" | "angry-bird" | "anonymous" | "apple-01" | "apple-intelligence" | "apple-news" | "apple-pie" | "apple-reminder" | "apple-stocks" | "apple-vision-pro" | "appointment-01" | "appointment-02" | "approximately-equal-circle" | "approximately-equal-square" | "apricot" | "arc-browser" | "archive-01" | "archive-02" | "archive-03" | "armored-boot" | "arrange-by-letters-a-z" | "arrange-by-letters-z-a" | "arrange-by-numbers-1-9" | "arrange-by-numbers-9-1" | "arrow-all-direction" | "arrow-data-transfer-diagonal" | "arrow-data-transfer-horizontal" | "arrow-data-transfer-vertical" | "arrow-diagonal" | "arrow-down-01" | "arrow-down-02" | "arrow-down-03" | "arrow-down-04" | "arrow-down-05" | "arrow-down-double" | "arrow-down-left-01" | "arrow-down-left-02" | "arrow-down-right-01" | "arrow-down-right-02" | "arrow-expand-01" | "arrow-expand-02" | "arrow-expand-diagonal-01" | "arrow-expand-diagonal-02" | "arrow-horizontal" | "arrow-left-01" | "arrow-left-02" | "arrow-left-03" | "arrow-left-04" | "arrow-left-05" | "arrow-left-double" | "arrow-move-down-left" | "arrow-move-down-right" | "arrow-move-left-down" | "arrow-move-right-down" | "arrow-move-up-left" | "arrow-move-up-right" | "arrow-reload-horizontal" | "arrow-reload-vertical" | "arrow-right-01" | "arrow-right-02" | "arrow-right-03" | "arrow-right-04" | "arrow-right-05" | "arrow-right-double" | "arrow-shrink" | "arrow-shrink-01" | "arrow-shrink-02" | "arrow-turn-backward" | "arrow-turn-forward" | "arrow-up-01" | "arrow-up-02" | "arrow-up-03" | "arrow-up-04" | "arrow-up-05" | "arrow-up-double" | "arrow-up-left-01" | "arrow-up-left-02" | "arrow-up-right-01" | "arrow-up-right-02" | "arrow-up-right-03" | "arrow-vertical" | "artboard-tool" | "artificial-intelligence-01" | "artificial-intelligence-02" | "artificial-intelligence-03" | "artificial-intelligence-04" | "artificial-intelligence-05" | "artificial-intelligence-06" | "artificial-intelligence-07" | "artificial-intelligence-08" | "assignments" | "asterisk-02" | "asteroid-01" | "asteroid-02" | "astronaut-01" | "astronaut-02" | "atm-01" | "atm-02" | "atom-01" | "atom-02" | "atomic-power" | "attachment-01" | "attachment-02" | "attachment-circle" | "attachment-square" | "audio-book-01" | "audio-book-02" | "audio-book-03" | "audio-book-04" | "audio-wave-01" | "audio-wave-02" | "audit-01" | "audit-02" | "augmented-reality-ar" | "authorized" | "auto-conversations" | "automotive-battery-01" | "automotive-battery-02" | "avalanche" | "award-01" | "award-02" | "award-03" | "award-04" | "award-05" | "baby-01" | "baby-02" | "baby-bed-01" | "baby-bed-02" | "baby-boy-dress" | "baby-girl-dress" | "back-muscle-body" | "backpack-01" | "backpack-02" | "backpack-03" | "backward-01" | "backward-02" | "badminton-shuttle" | "bar-code-01" | "bar-code-02" | "barns" | "baseball-helmet" | "basketball-01" | "basketball-02" | "bathtub-01" | "bathtub-02" | "batteries-energy" | "battery-charging-01" | "battery-charging-02" | "battery-eco-charging" | "battery-medium-01" | "battery-medium-02" | "bbq-grill" | "beach-02" | "beater" | "bebo" | "bed-bunk" | "bed-single-01" | "bed-single-02" | "bedug-01" | "bedug-02" | "behance-01" | "behance-02" | "bend-tool" | "berlin" | "berlin-tower" | "bicycle-01" | "billiard-01" | "billiard-02" | "binary-code" | "bio-energy" | "biomass-energy" | "biometric-access" | "biometric-device" | "biscuit" | "bitcoin-01" | "bitcoin-02" | "bitcoin-03" | "bitcoin-04" | "bitcoin-bag" | "bitcoin-cloud" | "bitcoin-cpu" | "bitcoin-credit-card" | "bitcoin-database" | "bitcoin-down-01" | "bitcoin-down-02" | "bitcoin-ellipse" | "bitcoin-eye" | "bitcoin-filter" | "bitcoin-flashdisk" | "bitcoin-graph" | "bitcoin-invoice" | "bitcoin-key" | "bitcoin-location" | "bitcoin-lock" | "bitcoin-mail" | "bitcoin-mind" | "bitcoin-money-01" | "bitcoin-money-02" | "bitcoin-pie-chart" | "bitcoin-piggy-bank" | "bitcoin-presentation" | "bitcoin-receipt" | "bitcoin-receive" | "bitcoin-rectangle" | "bitcoin-safe" | "bitcoin-search" | "bitcoin-send" | "bitcoin-setting" | "bitcoin-shield" | "bitcoin-shopping" | "bitcoin-smartphone-01" | "bitcoin-smartphone-02" | "bitcoin-square" | "bitcoin-store" | "bitcoin-tag" | "bitcoin-target" | "bitcoin-transaction" | "bitcoin-up-01" | "bitcoin-up-02" | "bitcoin-wallet" | "bitcoin-withdraw" | "black-hole" | "black-hole-01" | "block-game" | "blockchain-01" | "blockchain-02" | "blockchain-03" | "blockchain-04" | "blockchain-05" | "blockchain-06" | "blockchain-07" | "blood-bottle" | "blood-type" | "bluetooth-circle" | "bluetooth-not-connected" | "bluetooth-search" | "bluetooth-square" | "blush-brush-01" | "blush-brush-02" | "board-math" | "body-armor" | "body-part-leg" | "body-part-muscle" | "body-part-six-pack" | "body-soap" | "body-weight" | "bone-01" | "bone-02" | "book-01" | "book-02" | "book-03" | "book-04" | "book-bookmark-01" | "book-bookmark-02" | "book-open-01" | "book-open-02" | "bookmark-01" | "bookmark-02" | "bookmark-03" | "bookmark-add-01" | "bookmark-add-02" | "bookmark-block-01" | "bookmark-block-02" | "bookmark-check-01" | "bookmark-check-02" | "bookmark-minus-01" | "bookmark-minus-02" | "bookmark-off-01" | "bookmark-off-02" | "bookmark-remove-01" | "bookmark-remove-02" | "books-01" | "books-02" | "bookshelf-01" | "bookshelf-02" | "bookshelf-03" | "border-all-01" | "border-all-02" | "border-bottom-01" | "border-bottom-02" | "border-left-01" | "border-left-02" | "border-none-01" | "border-none-02" | "border-right-01" | "border-right-02" | "border-top-01" | "border-top-02" | "borobudur" | "bowling-pins" | "boxing-bag" | "boxing-glove-01" | "brain-01" | "brain-02" | "brain-03" | "bread-01" | "bread-02" | "bread-03" | "bread-04" | "briefcase-01" | "briefcase-02" | "briefcase-03" | "briefcase-04" | "briefcase-05" | "briefcase-06" | "briefcase-07" | "briefcase-08" | "briefcase-09" | "briefcase-dollar" | "bubble-chat" | "bubble-chat-add" | "bubble-chat-blocked" | "bubble-chat-cancel" | "bubble-chat-delay" | "bubble-chat-done" | "bubble-chat-download-01" | "bubble-chat-download-02" | "bubble-chat-edit" | "bubble-chat-favourite" | "bubble-chat-income" | "bubble-chat-lock" | "bubble-chat-notification" | "bubble-chat-outcome" | "bubble-chat-preview" | "bubble-chat-question" | "bubble-chat-search" | "bubble-chat-secure" | "bubble-chat-spark" | "bubble-chat-spark-01" | "bubble-chat-translate" | "bubble-chat-unlock" | "bubble-chat-upload" | "bubble-chat-user" | "bubble-tea-01" | "bubble-tea-02" | "bug-01" | "bug-02" | "building-05" | "building-06" | "bulb-charging" | "bulletproof-vest" | "burj-al-arab" | "burning-cd" | "bus-01" | "bus-02" | "bus-03" | "c-programming" | "cabinet-01" | "cabinet-02" | "cabinet-03" | "cabinet-04" | "calculator-01" | "calendar-01" | "calendar-02" | "calendar-03" | "calendar-04" | "calendar-add-01" | "calendar-add-02" | "calendar-block-01" | "calendar-block-02" | "calendar-check-in-01" | "calendar-check-in-02" | "calendar-check-out-01" | "calendar-check-out-02" | "calendar-download-01" | "calendar-download-02" | "calendar-favorite-01" | "calendar-favorite-02" | "calendar-lock-01" | "calendar-lock-02" | "calendar-love-01" | "calendar-love-02" | "calendar-minus-01" | "calendar-minus-02" | "calendar-remove-01" | "calendar-remove-02" | "calendar-setting-01" | "calendar-setting-02" | "calendar-upload-01" | "calendar-upload-02" | "call-02" | "call-add" | "call-add-02" | "call-blocked" | "call-blocked-02" | "call-disabled" | "call-disabled-02" | "call-done" | "call-done-02" | "call-end-01" | "call-end-02" | "call-end-03" | "call-end-04" | "call-incoming-01" | "call-incoming-02" | "call-incoming-03" | "call-incoming-04" | "call-internal" | "call-internal-02" | "call-locked" | "call-locked-02" | "call-minus" | "call-minus-02" | "call-missed-01" | "call-missed-02" | "call-missed-03" | "call-missed-04" | "call-outgoing-01" | "call-outgoing-02" | "call-outgoing-03" | "call-outgoing-04" | "call-paused" | "call-paused-02" | "call-received-02" | "call-ringing-01" | "call-ringing-02" | "call-ringing-03" | "call-ringing-04" | "call-unlocked" | "call-unlocked-02" | "calling" | "calling-02" | "camera-01" | "camera-02" | "camera-add-01" | "camera-add-02" | "camera-add-03" | "camera-automatically-01" | "camera-automatically-02" | "camera-lens" | "camera-microphone-01" | "camera-microphone-02" | "camera-night-mode-01" | "camera-night-mode-02" | "camera-off-01" | "camera-off-02" | "camera-rotated-01" | "camera-rotated-02" | "camera-smile-01" | "camera-smile-02" | "camera-tripod" | "cancel-01" | "cancel-02" | "cancel-circle" | "cancel-circle-half-dot" | "cancel-square" | "candelier-01" | "candelier-02" | "cap-round" | "capcut-rectangle" | "car-01" | "car-02" | "car-03" | "car-04" | "car-05" | "car-alert" | "car-parking-01" | "car-parking-02" | "car-signal" | "car-time" | "card-exchange-01" | "card-exchange-02" | "cardigan" | "cardiogram-01" | "cardiogram-02" | "cards-01" | "cards-02" | "carousel-horizontal-02" | "cash-01" | "cash-02" | "cashback" | "cashback-bitcoin" | "cashback-euro" | "cashback-pound" | "cashback-yen" | "cashier" | "cashier-02" | "castle-01" | "castle-02" | "catalogue" | "cayan-tower" | "cellular-network" | "cellular-network-offline" | "celsius" | "central-shaheed-minar" | "centralized" | "certificate-01" | "certificate-02" | "chair-01" | "chair-02" | "chair-03" | "chair-04" | "chair-05" | "chair-barber" | "champion" | "change-screen-mode" | "character-phonetic" | "chart-01" | "chart-02" | "chart-03" | "chart-bar-line" | "chart-breakout-circle" | "chart-breakout-square" | "chart-bubble-01" | "chart-bubble-02" | "chart-decrease" | "chart-down" | "chart-increase" | "chart-line-data-01" | "chart-line-data-02" | "chart-line-data-03" | "chart-medium" | "chart-up" | "chat-01" | "chat-add-01" | "chat-blocked" | "chat-blocked-01" | "chat-cancel" | "chat-cancel-01" | "chat-delay" | "chat-delay-01" | "chat-done" | "chat-done-01" | "chat-download" | "chat-download-01" | "chat-edit-01" | "chat-favourite" | "chat-favourite-01" | "chat-feedback" | "chat-feedback-01" | "chat-gpt" | "chat-income" | "chat-income-01" | "chat-lock" | "chat-lock-01" | "chat-notification" | "chat-notification-01" | "chat-outcome" | "chat-outcome-01" | "chat-preview" | "chat-preview-01" | "chat-question-01" | "chat-search" | "chat-search-01" | "chat-secure" | "chat-secure-01" | "chat-spark" | "chat-spark-01" | "chat-translate" | "chat-translate-01" | "chat-unlock" | "chat-unlock-01" | "chat-upload" | "chat-upload-01" | "chat-user" | "chat-user-01" | "chatting-01" | "check-unread-01" | "check-unread-02" | "check-unread-03" | "check-unread-04" | "checkmark-badge-01" | "checkmark-badge-02" | "checkmark-badge-03" | "checkmark-badge-04" | "checkmark-circle-01" | "checkmark-circle-02" | "checkmark-circle-03" | "checkmark-circle-04" | "checkmark-square-01" | "checkmark-square-02" | "checkmark-square-03" | "checkmark-square-04" | "cheese-cake-01" | "cheese-cake-02" | "chemistry-01" | "chemistry-02" | "chemistry-03" | "chess-01" | "chess-02" | "chicken-thighs" | "china-temple" | "chip-02" | "cinnamon-roll" | "circle-arrow-data-transfer-diagonal" | "circle-arrow-data-transfer-horizontal" | "circle-arrow-data-transfer-vertical" | "circle-arrow-diagonal-01" | "circle-arrow-diagonal-02" | "circle-arrow-down-01" | "circle-arrow-down-02" | "circle-arrow-down-03" | "circle-arrow-down-double" | "circle-arrow-expand-01" | "circle-arrow-expand-02" | "circle-arrow-horizontal" | "circle-arrow-left-01" | "circle-arrow-left-02" | "circle-arrow-left-03" | "circle-arrow-left-double" | "circle-arrow-left-right" | "circle-arrow-move-down-left" | "circle-arrow-move-down-right" | "circle-arrow-move-left-down" | "circle-arrow-move-right-down" | "circle-arrow-move-up-left" | "circle-arrow-move-up-right" | "circle-arrow-reload-01" | "circle-arrow-reload-02" | "circle-arrow-right-01" | "circle-arrow-right-02" | "circle-arrow-right-03" | "circle-arrow-right-double" | "circle-arrow-shrink-01" | "circle-arrow-shrink-02" | "circle-arrow-up-01" | "circle-arrow-up-02" | "circle-arrow-up-03" | "circle-arrow-up-double" | "circle-arrow-up-down" | "circle-arrow-up-right-02" | "circle-arrow-vertical" | "circle-lock-01" | "circle-lock-02" | "circle-lock-add-01" | "circle-lock-add-02" | "circle-lock-check-01" | "circle-lock-check-02" | "circle-lock-minus-01" | "circle-lock-minus-02" | "circle-lock-remove-01" | "circle-lock-remove-02" | "circle-password" | "circle-unlock-01" | "circle-unlock-02" | "city-01" | "city-02" | "city-03" | "clapping-01" | "clapping-02" | "clip" | "cliparts" | "clock-01" | "clock-02" | "clock-03" | "clock-04" | "clock-05" | "cloud-angled-rain" | "cloud-angled-rain-zap" | "cloud-angled-zap" | "cloud-big-rain" | "cloud-fast-wind" | "cloud-hailstone" | "cloud-little-rain" | "cloud-little-snow" | "cloud-loading" | "cloud-mid-rain" | "cloud-mid-snow" | "cloud-saving-done-01" | "cloud-saving-done-02" | "cloud-server" | "cloud-slow-wind" | "clubs-01" | "clubs-02" | "code-folder" | "coffee-01" | "coffee-02" | "coins-01" | "coins-02" | "coins-bitcoin" | "coins-dollar" | "coins-euro" | "coins-pound" | "coins-yen" | "colosseum" | "comet-01" | "comet-02" | "coming-soon-01" | "coming-soon-02" | "comment-01" | "comment-02" | "comment-03" | "comment-add-01" | "comment-add-02" | "comment-add-03" | "comment-block-01" | "comment-block-02" | "comment-block-03" | "comment-remove-01" | "comment-remove-02" | "comment-remove-03" | "compass-01" | "complaint" | "computer-activity" | "computer-add" | "computer-arrow-down" | "computer-chart-down" | "computer-chart-up" | "computer-check" | "computer-cloud" | "computer-desk-01" | "computer-desk-02" | "computer-desk-03" | "computer-dollar" | "computer-ethernet" | "computer-phone-sync" | "computer-programming-01" | "computer-programming-02" | "computer-protection" | "computer-remove" | "computer-screen-share" | "computer-settings" | "computer-terminal-01" | "computer-terminal-02" | "computer-user" | "computer-video" | "computer-video-call" | "cone-01" | "cone-02" | "conference" | "configuration-01" | "configuration-02" | "congruent-to-circle" | "congruent-to-square" | "constellation" | "contact-01" | "contact-02" | "container-truck" | "container-truck-01" | "container-truck-02" | "content-writing" | "contracts" | "cook-book" | "coordinate-01" | "coordinate-02" | "copy-01" | "copy-02" | "corporate" | "cos" | "cosine-01" | "cosine-02" | "cotton-candy" | "coupon-01" | "coupon-02" | "coupon-03" | "coupon-percent" | "court-house" | "court-law" | "covid-info" | "cowboy-hat" | "cpu-charge" | "cpu-settings" | "crazy" | "creative-market" | "credit-card-accept" | "credit-card-add" | "credit-card-change" | "credit-card-defrost" | "credit-card-freeze" | "credit-card-not-accept" | "credit-card-not-found" | "credit-card-pos" | "credit-card-validation" | "cricket-helmet" | "crowdfunding" | "crown-02" | "crown-03" | "css-file-01" | "css-file-02" | "csv-01" | "csv-02" | "cupcake-01" | "cupcake-02" | "cupcake-03" | "cursor-01" | "cursor-02" | "cursor-add-selection-01" | "cursor-add-selection-02" | "cursor-circle-selection-01" | "cursor-circle-selection-02" | "cursor-disabled-01" | "cursor-disabled-02" | "cursor-edit-01" | "cursor-edit-02" | "cursor-hold-01" | "cursor-hold-02" | "cursor-in-window" | "cursor-info-01" | "cursor-info-02" | "cursor-loading-01" | "cursor-loading-02" | "cursor-magic-selection-01" | "cursor-magic-selection-02" | "cursor-magic-selection-03" | "cursor-magic-selection-04" | "cursor-move-01" | "cursor-move-02" | "cursor-pointer-01" | "cursor-pointer-02" | "cursor-progress-01" | "cursor-progress-02" | "cursor-progress-03" | "cursor-progress-04" | "cursor-rectangle-selection-01" | "cursor-rectangle-selection-02" | "cursor-remove-selection-01" | "cursor-remove-selection-02" | "curvy-left-direction" | "curvy-left-right-direction" | "curvy-right-direction" | "curvy-up-down-direction" | "custom-field" | "customer-service-01" | "customer-service-02" | "customer-support" | "cylinder-01" | "cylinder-02" | "cylinder-03" | "cylinder-04" | "dashboard-browsing" | "dashboard-circle" | "dashboard-circle-add" | "dashboard-circle-edit" | "dashboard-circle-remove" | "dashboard-circle-settings" | "dashboard-speed-01" | "dashboard-speed-02" | "dashboard-square-01" | "dashboard-square-02" | "dashboard-square-03" | "dashboard-square-add" | "dashboard-square-edit" | "dashboard-square-remove" | "dashboard-square-setting" | "dashed-line-01" | "dashed-line-02" | "dashed-line-circle" | "data-recovery" | "database-01" | "database-02" | "database-locked" | "database-setting" | "database-sync-01" | "dates" | "dead" | "delete-01" | "delete-02" | "delete-03" | "delete-04" | "delete-put-back" | "delete-throw" | "delivered-sent" | "delivery-box-01" | "delivery-box-02" | "delivery-delay-01" | "delivery-delay-02" | "delivery-return-01" | "delivery-return-02" | "delivery-secure-01" | "delivery-secure-02" | "delivery-sent-01" | "delivery-sent-02" | "delivery-tracking-01" | "delivery-tracking-02" | "delivery-truck-01" | "delivery-truck-02" | "delivery-view-01" | "delivery-view-02" | "dental-braces" | "dental-broken-tooth" | "dental-care" | "dental-tooth" | "departement" | "desk-01" | "desk-02" | "detergent" | "device-access" | "diagonal-scroll-point-01" | "diagonal-scroll-point-02" | "dialpad-circle-01" | "dialpad-circle-02" | "dialpad-square-01" | "dialpad-square-02" | "diamond-01" | "diamond-02" | "dice-faces-01" | "dice-faces-02" | "dice-faces-03" | "dice-faces-04" | "dice-faces-05" | "dice-faces-06" | "digestion" | "dim-sum-01" | "dim-sum-02" | "dining-table" | "direction-left-01" | "direction-left-02" | "directions-01" | "directions-02" | "dirham" | "disability-01" | "disability-02" | "discount-01" | "discount-tag-01" | "discount-tag-02" | "discover-circle" | "discover-square" | "dish-01" | "dish-02" | "dish-washer" | "displeased" | "distribution" | "divide-sign" | "divide-sign-circle" | "divide-sign-square" | "dna-01" | "do-not-touch-01" | "do-not-touch-02" | "doc-01" | "doc-02" | "doctor-01" | "doctor-02" | "doctor-03" | "document-code" | "document-validation" | "dollar-01" | "dollar-02" | "dollar-receive-01" | "dollar-receive-02" | "dollar-send-01" | "dollar-send-02" | "dollar-square" | "dome" | "door-01" | "door-02" | "door-lock" | "download-01" | "download-02" | "download-03" | "download-04" | "download-05" | "download-circle-01" | "download-circle-02" | "download-square-01" | "download-square-02" | "drag-01" | "drag-02" | "drag-03" | "drag-04" | "drag-drop-horizontal" | "drag-drop-vertical" | "drag-left-01" | "drag-left-02" | "drag-left-03" | "drag-left-04" | "drag-right-01" | "drag-right-02" | "drag-right-03" | "drag-right-04" | "drawing-compass" | "drawing-mode" | "dress-01" | "dress-02" | "dress-03" | "dress-04" | "dress-05" | "dress-06" | "dress-07" | "dressing-table-01" | "dressing-table-02" | "dressing-table-03" | "drooling" | "dropper" | "ds3-tool" | "dua" | "dumbbell-01" | "dumbbell-02" | "dumbbell-03" | "ear-rings-01" | "ear-rings-02" | "ear-rings-03" | "eco-energy" | "eco-lab" | "eco-lab-01" | "eco-lab-02" | "eco-power" | "edge-style" | "edit-01" | "edit-02" | "edit-03" | "edit-04" | "edit-off-03" | "edit-off-04" | "edit-table" | "edit-user-02" | "eid-mubarak" | "eight-circle" | "eight-square" | "elearning-exchange" | "electric-home-01" | "electric-home-02" | "electric-plugs" | "electric-tower-01" | "electric-tower-02" | "electric-wire" | "ellipse-selection" | "encrypt" | "energy-ellipse" | "energy-rectangle" | "entering-geo-fence" | "entrance-stairs" | "equal-sign" | "equal-sign-circle" | "equal-sign-square" | "equipment-bench-press" | "equipment-chest-press" | "equipment-gym-01" | "equipment-gym-02" | "equipment-gym-03" | "equipment-weightlifting" | "eraser-01" | "eraser-add" | "eraser-auto" | "estimate-01" | "estimate-02" | "ethereum-ellipse" | "ethereum-rectangle" | "euro-circle" | "euro-receive" | "euro-send" | "evil" | "exchange-01" | "exchange-02" | "exchange-03" | "external-drive" | "facebook-01" | "facebook-02" | "factory-01" | "factory-02" | "fahrenheit" | "fan-01" | "fan-02" | "fast-wind" | "favourite" | "favourite-circle" | "favourite-square" | "female-02" | "fencing-mask" | "ferry-boat" | "file-01" | "file-02" | "file-attachment" | "file-block" | "file-bookmark" | "file-corrupt" | "file-empty-01" | "file-empty-02" | "file-favourite" | "file-locked" | "file-management" | "file-paste" | "file-pin" | "file-pound" | "file-security" | "file-unlocked" | "file-validation" | "file-verified" | "file-view" | "file-yen" | "files-01" | "files-02" | "film-01" | "film-02" | "film-roll-01" | "film-roll-02" | "filter-add" | "filter-horizontal" | "filter-mail-circle" | "filter-mail-square" | "filter-vertical" | "finger-access" | "finger-print-add" | "finger-print-check" | "finger-print-minus" | "finger-print-remove" | "finger-print-scan" | "fins" | "fire-02" | "fire-03" | "fire-pit" | "fire-security" | "fish-food" | "five-circle" | "five-square" | "flag-01" | "flag-02" | "flag-03" | "flaticon" | "flim-slate" | "flip-bottom" | "flip-left" | "flip-phone" | "flip-right" | "flip-top" | "flow-circle" | "flow-square" | "flowchart-01" | "flowchart-02" | "flying-human" | "focus-point" | "folder-01" | "folder-02" | "folder-03" | "folder-attachment" | "folder-block" | "folder-export" | "folder-file-storage" | "folder-import" | "folder-links" | "folder-locked" | "folder-management" | "folder-move-in" | "folder-shared-01" | "folder-shared-02" | "folder-shared-03" | "folder-transfer" | "folder-unknown" | "folder-unlocked" | "folder-view" | "football-pitch" | "forgot-password" | "forrst" | "fortress" | "forward-01" | "forward-02" | "four-circle" | "four-finger-02" | "four-finger-03" | "four-square" | "frameworks" | "french-fries-01" | "french-fries-02" | "fry" | "fuel-01" | "fuel-02" | "fuel-station" | "full-signal" | "function-circle" | "function-of-x" | "function-square" | "game-controller-01" | "game-controller-02" | "game-controller-03" | "gameboy" | "garbage-truck" | "garlands" | "gas-pipe" | "geology-crust" | "geometric-shapes-01" | "geometric-shapes-02" | "gibbous-moon" | "gif-01" | "gif-02" | "gift-card-02" | "github-01" | "give-pill" | "global-editing" | "global-education" | "global-refresh" | "global-search" | "globe-02" | "glove" | "go-backward-10-sec" | "go-backward-15-sec" | "go-backward-30-sec" | "go-backward-5-sec" | "go-backward-60-sec" | "go-forward-10-sec" | "go-forward-15-sec" | "go-forward-30-sec" | "go-forward-5-sec" | "go-forward-60-sec" | "gold-ingots" | "golf-bat" | "golf-hole" | "google-doc" | "google-sheet" | "gps-01" | "gps-02" | "gps-disconnected" | "gps-off-01" | "gps-off-02" | "gps-signal-01" | "gps-signal-02" | "graduate-female" | "graduate-male" | "graduation-scroll" | "gravity" | "greater-than-circle" | "greater-than-square" | "greek-helmet" | "green-house" | "grid-02" | "grid-table" | "grimacing" | "grinning" | "grok" | "grok-02" | "group-01" | "group-items" | "group-layers" | "guest-house" | "gymnastic" | "gymnastic-rings" | "hair-clips" | "haji" | "halal" | "halal-lab" | "hamburger-01" | "hamburger-02" | "hand-bag-01" | "hand-bag-02" | "hand-beater" | "hand-pointing-down-01" | "hand-pointing-down-02" | "hand-pointing-down-03" | "hand-pointing-down-04" | "hand-pointing-left-01" | "hand-pointing-left-02" | "hand-pointing-left-03" | "hand-pointing-left-04" | "hand-pointing-right-01" | "hand-pointing-right-02" | "hand-pointing-right-03" | "hand-pointing-right-04" | "hand-prayer" | "hanging-clock" | "happy-01" | "hdr-01" | "hdr-02" | "heading-01" | "heading-02" | "heading-03" | "heading-04" | "heading-05" | "heading-06" | "headphone-mute" | "headset-connected" | "healtcare" | "heart-add" | "hexagon-01" | "hierarchy-circle-01" | "hierarchy-circle-02" | "hierarchy-circle-03" | "hierarchy-files" | "hierarchy-square-01" | "hierarchy-square-02" | "hierarchy-square-03" | "hierarchy-square-04" | "hierarchy-square-05" | "hierarchy-square-06" | "hierarchy-square-07" | "hierarchy-square-08" | "hierarchy-square-10" | "high-heels-01" | "high-heels-02" | "hijab" | "hold-01" | "hold-02" | "hold-03" | "hold-04" | "hold-05" | "hold-locked-01" | "hold-locked-02" | "hold-phone" | "hologram" | "home-01" | "home-02" | "home-03" | "home-04" | "home-05" | "home-06" | "home-07" | "home-08" | "home-09" | "home-10" | "home-11" | "home-12" | "home-13" | "home-wifi" | "honey-01" | "honey-02" | "honour-star" | "horizonal-scroll-point" | "horizontal-resize" | "horse-saddle" | "hospital-01" | "hospital-02" | "hospital-bed-01" | "hospital-bed-02" | "hospital-location" | "hot-price" | "hot-tube" | "hotel-01" | "hotel-02" | "hotel-bell" | "hotspot" | "hotspot-offline" | "house-04" | "house-05" | "house-solar-panel" | "html-file-01" | "html-file-02" | "hugeicons" | "hyperbole" | "ice-cream-01" | "ice-cream-02" | "ice-cream-03" | "ice-cream-04" | "ico" | "id-not-verified" | "id-verified" | "idea-01" | "identity-card" | "image-03" | "image-actual-size" | "image-add-01" | "image-add-02" | "image-composition" | "image-composition-oval" | "image-counter-clockwise" | "image-delete-01" | "image-delete-02" | "image-done-01" | "image-done-02" | "image-download" | "image-download-02" | "image-not-found-01" | "image-not-found-02" | "image-remove-01" | "image-remove-02" | "image-rotation-clockwise" | "image-upload" | "image-upload-01" | "important-book" | "in-love" | "inbox-download" | "inbox-unread" | "inbox-upload" | "inequality-01" | "inequality-02" | "inequality-circle-01" | "inequality-circle-02" | "inequality-square-01" | "inequality-square-02" | "infant" | "infinity-01" | "infinity-02" | "infinity-circle" | "infinity-square" | "information-diamond" | "insert-bottom-image" | "insert-center-image" | "insert-column" | "insert-pi" | "insert-row" | "insert-row-down" | "insert-row-up" | "insert-top-image" | "inspect-code" | "installing-updates-01" | "installing-updates-02" | "internet-antenna-01" | "internet-antenna-02" | "internet-antenna-03" | "internet-antenna-04" | "investigation" | "invoice-01" | "invoice-02" | "invoice-03" | "invoice-04" | "java-script" | "job-link" | "job-search" | "job-share" | "jogger-pants" | "joystick-01" | "joystick-02" | "joystick-03" | "joystick-04" | "joystick-05" | "jpg-01" | "jpg-02" | "jsx-01" | "jsx-02" | "jsx-03" | "jumpers" | "justice-scale-01" | "justice-scale-02" | "kaaba-01" | "kaaba-02" | "keffiyeh" | "kettle-01" | "ketupat" | "key-01" | "key-02" | "key-generator-fob" | "keyframe-add" | "keyframe-bottom" | "keyframe-left" | "keyframe-remove" | "keyframe-right" | "keyframe-top" | "keyframes-double" | "keyframes-double-add" | "keyframes-double-remove" | "keyframes-multiple" | "keyframes-multiple-add" | "keyframes-multiple-remove" | "kickstarter-01" | "kickstarter-02" | "kid" | "kimi-ai" | "kissing" | "kitchen-utensils" | "knife-01" | "knife-02" | "knife-bread" | "knight-shield" | "knives" | "knowledge-01" | "knowledge-02" | "kurta" | "kurta-01" | "labor" | "lake" | "lamp-01" | "lamp-02" | "lamp-03" | "lamp-04" | "lamp-05" | "language-circle" | "language-skill" | "language-square" | "laptop-add" | "laptop-check" | "laptop-cloud" | "laptop-issue" | "laptop-performance" | "laptop-phone-sync" | "laptop-programming" | "laptop-remove" | "laptop-settings" | "laptop-video" | "lasso-tool-01" | "lasso-tool-02" | "laurel-wreath-01" | "laurel-wreath-02" | "laurel-wreath-first-01" | "laurel-wreath-first-02" | "laurel-wreath-left-01" | "laurel-wreath-left-02" | "laurel-wreath-left-03" | "laurel-wreath-right-01" | "laurel-wreath-right-02" | "laurel-wreath-right-03" | "layer-bring-forward" | "layer-bring-to-front" | "layer-mask-01" | "layer-mask-02" | "layer-send-backward" | "layer-send-to-back" | "layers-01" | "layers-02" | "layers-logo" | "layout-01" | "layout-02" | "layout-03" | "layout-04" | "layout-05" | "layout-06" | "layout-07" | "layout-2-column" | "layout-2-row" | "layout-3-column" | "layout-3-row" | "layout-bottom" | "layout-table-01" | "layout-table-02" | "layout-top" | "leaf-01" | "leaf-02" | "leaf-03" | "leaf-04" | "leaving-geo-fence" | "left-angle" | "left-to-right-block-quote" | "left-to-right-list-bullet" | "left-to-right-list-dash" | "left-to-right-list-number" | "left-to-right-list-star" | "left-to-right-list-star-01" | "left-to-right-list-triangle" | "left-triangle" | "legal-01" | "legal-02" | "legal-document-01" | "legal-document-02" | "legal-hammer" | "less-than-circle" | "less-than-square" | "libraries" | "license-no" | "license-pin" | "lift-truck" | "limit-order" | "limitation" | "liner" | "link-01" | "link-02" | "link-03" | "link-04" | "link-05" | "link-06" | "link-backward" | "link-circle-02" | "link-forward" | "link-square-01" | "link-square-02" | "linkedin-01" | "linkedin-02" | "list-setting" | "live-streaming-01" | "live-streaming-02" | "live-streaming-03" | "loading-01" | "loading-02" | "loading-03" | "loading-04" | "location-01" | "location-02" | "location-03" | "location-04" | "location-05" | "location-06" | "location-07" | "location-08" | "location-09" | "location-10" | "location-add-01" | "location-add-02" | "location-check-01" | "location-check-02" | "location-favourite-01" | "location-favourite-02" | "location-offline-01" | "location-offline-02" | "location-offline-03" | "location-offline-04" | "location-remove-01" | "location-remove-02" | "location-share-01" | "location-share-02" | "location-star-01" | "location-star-02" | "location-update-01" | "location-update-02" | "location-user-01" | "location-user-02" | "location-user-03" | "location-user-04" | "lock-computer" | "lock-key" | "lock-sync-01" | "lock-sync-02" | "locker-01" | "login-01" | "login-02" | "login-03" | "login-circle-01" | "login-circle-02" | "login-method" | "login-square-01" | "login-square-02" | "logout-01" | "logout-02" | "logout-03" | "logout-04" | "logout-05" | "logout-circle-01" | "logout-circle-02" | "logout-square-01" | "logout-square-02" | "long-sleeve-shirt" | "look-bottom" | "look-left" | "look-right" | "look-top" | "love-korean-finger" | "low-signal" | "loyalty-card" | "luggage-01" | "luggage-02" | "machine-robot" | "magic-wand-01" | "magic-wand-02" | "magic-wand-03" | "magic-wand-04" | "magic-wand-05" | "magnet-01" | "magnet-02" | "mail-01" | "mail-02" | "mail-account-01" | "mail-account-02" | "mail-add-01" | "mail-add-02" | "mail-at-sign-01" | "mail-at-sign-02" | "mail-block-01" | "mail-block-02" | "mail-download-01" | "mail-download-02" | "mail-edit-01" | "mail-edit-02" | "mail-lock-01" | "mail-lock-02" | "mail-love-01" | "mail-love-02" | "mail-minus-01" | "mail-minus-02" | "mail-open-01" | "mail-open-02" | "mail-open-love" | "mail-receive-01" | "mail-receive-02" | "mail-remove-01" | "mail-remove-02" | "mail-reply-01" | "mail-reply-02" | "mail-reply-all-01" | "mail-reply-all-02" | "mail-search-01" | "mail-search-02" | "mail-secure-01" | "mail-secure-02" | "mail-send-01" | "mail-send-02" | "mail-setting-01" | "mail-setting-02" | "mail-unlock-01" | "mail-unlock-02" | "mail-upload-01" | "mail-upload-02" | "mail-validation-01" | "mail-validation-02" | "mail-voice-01" | "mail-voice-02" | "mailbox-01" | "male-02" | "man-woman" | "manager" | "map-pinpoint-01" | "map-pinpoint-02" | "maping" | "maps-circle-01" | "maps-circle-02" | "maps-editing" | "maps-global-01" | "maps-global-02" | "maps-location-01" | "maps-location-02" | "maps-off" | "maps-refresh" | "maps-search" | "maps-square-01" | "maps-square-02" | "market-analysis" | "market-order" | "marketing" | "mask-love" | "mask-theater-01" | "mask-theater-02" | "master-card" | "matches" | "material-and-texture" | "maximize-01" | "maximize-02" | "maximize-03" | "maximize-04" | "maximize-screen" | "mcp-server" | "medal-01" | "medal-02" | "medal-03" | "medal-04" | "medal-05" | "medal-06" | "medal-07" | "medal-first-place" | "medal-second-place" | "medal-third-place" | "medical-file" | "medicine-01" | "medicine-02" | "medicine-bottle-01" | "medicine-bottle-02" | "medium-signal" | "megaphone-01" | "megaphone-02" | "megaphone-03" | "mentor" | "mentoring" | "menu-01" | "menu-02" | "menu-03" | "menu-04" | "menu-05" | "menu-06" | "menu-07" | "menu-08" | "menu-09" | "menu-10" | "menu-11" | "menu-circle" | "menu-collapse" | "menu-restaurant" | "menu-square" | "menu-two-line" | "message-01" | "message-02" | "message-add-01" | "message-add-02" | "message-blocked" | "message-cancel-01" | "message-cancel-02" | "message-delay-01" | "message-delay-02" | "message-done-01" | "message-done-02" | "message-download-01" | "message-download-02" | "message-edit-01" | "message-edit-02" | "message-favourite-01" | "message-favourite-02" | "message-incoming-01" | "message-incoming-02" | "message-lock-01" | "message-lock-02" | "message-multiple-01" | "message-multiple-02" | "message-notification-01" | "message-notification-02" | "message-outgoing-01" | "message-outgoing-02" | "message-preview-01" | "message-preview-02" | "message-programming" | "message-search-01" | "message-search-02" | "message-secure-01" | "message-secure-02" | "message-translate" | "message-unlock-01" | "message-unlock-02" | "message-upload-01" | "message-upload-02" | "message-user-01" | "message-user-02" | "mic-01" | "mic-02" | "mic-off-01" | "mic-off-02" | "microsoft-admin" | "milk-bottle" | "milk-coconut" | "milk-oat" | "minimize-01" | "minimize-02" | "minimize-03" | "minimize-04" | "minimize-screen" | "mining-01" | "mining-02" | "mining-03" | "minus-plus-01" | "minus-plus-02" | "minus-plus-circle-01" | "minus-plus-circle-02" | "minus-plus-square-01" | "minus-plus-square-02" | "minus-sign-circle" | "minus-sign-square" | "mirroring-screen" | "mistral" | "mobile-navigator-01" | "mobile-navigator-02" | "mobile-programming-01" | "mobile-programming-02" | "mobile-protection" | "mobile-security" | "mochi" | "modern-tv-4-k" | "modern-tv-issue" | "mollie" | "monas" | "money-01" | "money-02" | "money-03" | "money-04" | "money-add-01" | "money-add-02" | "money-bag-01" | "money-bag-02" | "money-exchange-01" | "money-exchange-02" | "money-exchange-03" | "money-not-found-01" | "money-not-found-02" | "money-not-found-03" | "money-not-found-04" | "money-receive-01" | "money-receive-02" | "money-receive-circle" | "money-receive-flow-01" | "money-receive-flow-02" | "money-receive-square" | "money-remove-01" | "money-remove-02" | "money-safe" | "money-saving-jar" | "money-security" | "money-send-01" | "money-send-02" | "money-send-circle" | "money-send-flow-01" | "money-send-flow-02" | "money-send-square" | "monocle" | "monocle-01" | "moon-01" | "moon-02" | "moon-angled-rain-zap" | "moon-cloud" | "moon-cloud-angled-rain" | "moon-cloud-angled-zap" | "moon-cloud-big-rain" | "moon-cloud-fast-wind" | "moon-cloud-hailstone" | "moon-cloud-little-rain" | "moon-cloud-little-snow" | "moon-cloud-mid-rain" | "moon-cloud-mid-snow" | "moon-cloud-slow-wind" | "moon-cloud-snow" | "moon-eclipse" | "moon-fast-wind" | "moon-landing" | "moon-slow-wind" | "more-01" | "more-02" | "more-03" | "more-horizontal-circle-01" | "more-horizontal-circle-02" | "more-horizontal-square-01" | "more-horizontal-square-02" | "more-or-less" | "more-or-less-circle" | "more-or-less-square" | "more-vertical-circle-01" | "more-vertical-circle-02" | "more-vertical-square-01" | "more-vertical-square-02" | "mortarboard-01" | "mortarboard-02" | "mosque-01" | "mosque-02" | "mosque-03" | "mosque-04" | "mosque-05" | "mosque-location" | "motion-01" | "motion-02" | "motorbike-01" | "motorbike-02" | "mouse-01" | "mouse-02" | "mouse-03" | "mouse-04" | "mouse-05" | "mouse-06" | "mouse-07" | "mouse-08" | "mouse-09" | "mouse-10" | "mouse-11" | "mouse-12" | "mouse-13" | "mouse-14" | "mouse-15" | "mouse-16" | "mouse-17" | "mouse-18" | "mouse-19" | "mouse-20" | "mouse-21" | "mouse-22" | "mouse-23" | "mouse-left-click-01" | "mouse-left-click-02" | "mouse-left-click-03" | "mouse-left-click-04" | "mouse-left-click-05" | "mouse-left-click-06" | "mouse-right-click-01" | "mouse-right-click-02" | "mouse-right-click-03" | "mouse-right-click-04" | "mouse-right-click-05" | "mouse-right-click-06" | "mouse-scroll-01" | "mouse-scroll-02" | "move-01" | "move-02" | "move-bottom" | "move-to" | "move-top" | "mp-3-02" | "mp-4-01" | "mp-4-02" | "mp3-01" | "muhammad" | "multiplication-sign" | "multiplication-sign-circle" | "multiplication-sign-square" | "mushroom-01" | "music-note-01" | "music-note-02" | "music-note-03" | "music-note-04" | "music-note-square-01" | "music-note-square-02" | "muslim" | "mymind" | "n-th-root" | "n-th-root-circle" | "n-th-root-square" | "nano-technology" | "napkins-01" | "napkins-02" | "natural-food" | "navigation-01" | "navigation-02" | "navigation-03" | "navigation-04" | "navigation-05" | "navigation-06" | "navigator-01" | "navigator-02" | "nerd" | "new-job" | "new-office" | "new-releases" | "new-twitter" | "new-twitter-ellipse" | "new-twitter-rectangle" | "news-01" | "nine-circle" | "nine-square" | "niqab" | "no-internet" | "node-add" | "node-edit" | "node-move-down" | "node-move-up" | "node-remove" | "not-equal-sign" | "not-equal-sign-circle" | "not-equal-sign-square" | "note-01" | "note-02" | "note-03" | "note-04" | "note-05" | "note-done" | "notebook-01" | "notebook-02" | "notification-01" | "notification-02" | "notification-03" | "notification-block-01" | "notification-block-02" | "notification-block-03" | "notification-bubble" | "notification-circle" | "notification-off-01" | "notification-off-02" | "notification-off-03" | "notification-snooze-01" | "notification-snooze-02" | "notification-snooze-03" | "notification-square" | "notion-01" | "notion-02" | "nuclear-power" | "obtuse" | "office-365" | "ok-finger" | "olympic-torch" | "one-circle" | "one-square" | "online-learning-01" | "online-learning-02" | "online-learning-03" | "online-learning-04" | "open-caption" | "orbit-01" | "orbit-02" | "orthogonal-edge" | "package-01" | "package-02" | "package-03" | "package-add" | "package-delivered" | "package-dimensions-01" | "package-dimensions-02" | "package-moving" | "package-moving-01" | "package-out-of-stock" | "package-process" | "package-process-01" | "package-receive" | "package-receive-01" | "package-remove" | "package-search-01" | "package-sent" | "package-sent-01" | "packaging" | "pacman-01" | "pacman-02" | "paella" | "paint-board" | "paint-brush-01" | "paint-brush-02" | "paint-brush-03" | "paint-brush-04" | "pan-01" | "pan-02" | "pan-03" | "parabola-01" | "parabola-02" | "parabola-03" | "paragraph-bullets-point-01" | "paragraph-bullets-point-02" | "paragraph-spacing" | "parking-area-circle" | "parking-area-square" | "passport-01" | "passport-expired" | "passport-valid" | "password-validation" | "pathfinder-crop" | "pathfinder-divide" | "pathfinder-exclude" | "pathfinder-intersect" | "pathfinder-merge" | "pathfinder-minus-back" | "pathfinder-minus-front" | "pathfinder-outline" | "pathfinder-trim" | "pathfinder-unite" | "patient" | "pavilon" | "pay-by-check" | "payment-01" | "payment-02" | "payment-success-01" | "payment-success-02" | "pdf-01" | "pdf-02" | "peer-to-peer-01" | "peer-to-peer-02" | "peer-to-peer-03" | "pen-01" | "pen-02" | "pen-connect-usb" | "pen-tool-01" | "pen-tool-02" | "pen-tool-03" | "pen-tool-add" | "pen-tool-minus" | "pencil-edit-01" | "pencil-edit-02" | "pendulum" | "pensive" | "pentagon-01" | "percent-square" | "permanent-job" | "perplexity-ai" | "petrol-pump" | "phone-arrow-down" | "phone-arrow-up" | "phone-developer-mode" | "phone-erase" | "phone-off-01" | "phone-off-02" | "physics" | "pi-circle" | "pi-square" | "pickup-01" | "pickup-02" | "picture-in-picture-exit" | "pie-chart-01" | "pie-chart-02" | "pie-chart-03" | "pie-chart-04" | "pie-chart-05" | "pie-chart-06" | "pie-chart-07" | "pie-chart-08" | "pie-chart-09" | "pie-chart-square" | "pin-02" | "pin-code" | "pin-location-01" | "pin-location-02" | "pin-location-03" | "pivot" | "pizza-01" | "pizza-02" | "pizza-03" | "pizza-04" | "plant-01" | "plant-02" | "plant-03" | "plant-04" | "plate" | "plaxo" | "play-circle-02" | "play-list-favourite-01" | "play-list-favourite-02" | "play-list-minus" | "play-square" | "playlist-01" | "playlist-02" | "playlist-03" | "plaza" | "plug-01" | "plug-02" | "plug-socket" | "plus-minus-01" | "plus-minus-02" | "plus-minus-circle-01" | "plus-minus-circle-02" | "plus-minus-square-01" | "plus-minus-square-02" | "plus-sign-circle" | "plus-sign-square" | "png-01" | "png-02" | "pointing-left-01" | "pointing-left-02" | "pointing-left-03" | "pointing-left-04" | "pointing-left-05" | "pointing-left-06" | "pointing-left-07" | "pointing-left-08" | "pointing-right-01" | "pointing-right-02" | "pointing-right-03" | "pointing-right-04" | "pointing-right-05" | "pointing-right-06" | "pointing-right-07" | "pointing-right-08" | "police-cap" | "poly-tank" | "pool-table" | "pot-01" | "pot-02" | "pound-circle" | "pound-receive" | "pound-send" | "pound-square" | "power-service" | "power-socket-01" | "power-socket-02" | "ppt-01" | "ppt-02" | "prawn" | "prayer-rug-01" | "prayer-rug-02" | "preference-horizontal" | "preference-vertical" | "presentation-01" | "presentation-02" | "presentation-03" | "presentation-04" | "presentation-05" | "presentation-06" | "presentation-07" | "presentation-bar-chart-01" | "presentation-bar-chart-02" | "presentation-line-chart-01" | "presentation-line-chart-02" | "presentation-online" | "presentation-podium" | "prism-01" | "prison-guard" | "product-loading" | "profile-02" | "programming-flag" | "progress-01" | "progress-02" | "progress-03" | "progress-04" | "projector-01" | "property-add" | "property-delete" | "property-edit" | "property-new" | "property-search" | "property-view" | "protection-mask" | "pulley" | "pulse-01" | "pulse-02" | "pulse-rectangle-01" | "pulse-rectangle-02" | "punching-ball-01" | "punching-ball-02" | "purse-01" | "push-up-bar" | "pyramid-maslowo" | "pyramid-structure-01" | "pyramid-structure-02" | "qr-code-01" | "queue-01" | "queue-02" | "quill-write-01" | "quill-write-02" | "quiz-01" | "quiz-02" | "quiz-03" | "quiz-04" | "quiz-05" | "quote-down" | "quote-down-circle" | "quote-down-square" | "quote-up" | "quote-up-circle" | "quote-up-square" | "quran-01" | "quran-02" | "quran-03" | "racing-flag" | "radar-01" | "radar-02" | "radio-01" | "radio-02" | "radioactive-alert" | "rain-double-drop" | "ramadhan-01" | "ramadhan-02" | "ramadhan-month" | "ranking" | "rar-01" | "rar-02" | "raw-01" | "raw-02" | "real-estate-01" | "real-estate-02" | "recovery-mail" | "rectangular" | "rectangular-01" | "recycle-01" | "recycle-02" | "recycle-03" | "redo-02" | "redo-03" | "register" | "relieved-01" | "relieved-02" | "remote-control" | "remove-01" | "remove-02" | "remove-circle-half-dot" | "remove-female" | "remove-male" | "remove-pi" | "remove-square" | "renewable-energy" | "renewable-energy-01" | "repeat-one-01" | "repeat-one-02" | "reset-password" | "resize-01" | "resize-02" | "resize-field" | "resize-field-rectangle" | "resources-add" | "resources-remove" | "restaurant-01" | "restaurant-02" | "restaurant-03" | "restaurant-table" | "restore-bin" | "return-request" | "reverse-withdrawal-01" | "reverse-withdrawal-02" | "rhombus-01" | "rice-bowl-01" | "rice-bowl-02" | "right-angle" | "right-to-left-block-quote" | "right-to-left-list-bullet" | "right-to-left-list-dash" | "right-to-left-list-number" | "right-to-left-list-triangle" | "riyal" | "riyal-rectangle" | "road-01" | "road-02" | "road-location-01" | "road-location-02" | "road-wayside" | "robot-01" | "robot-02" | "robotic" | "rocket-01" | "rocket-02" | "rocking-horse" | "rolling-pin" | "root-01" | "root-02" | "root-1st-bracket" | "root-2nd-bracket" | "root-3rd-bracket" | "root-circle" | "rotate-01" | "rotate-02" | "rotate-bottom-left" | "rotate-bottom-right" | "rotate-crop" | "rotate-left-01" | "rotate-left-02" | "rotate-left-03" | "rotate-left-04" | "rotate-left-05" | "rotate-left-06" | "rotate-right-01" | "rotate-right-02" | "rotate-right-03" | "rotate-right-04" | "rotate-right-05" | "rotate-right-06" | "rotate-square" | "rotate-top-left" | "rotate-top-right" | "route-01" | "route-02" | "route-03" | "route-block" | "router-01" | "router-02" | "rss-connected-01" | "rss-connected-02" | "rss-error" | "rss-locked" | "rss-unlocked" | "rubber-duck" | "rubiks-cube" | "ruku" | "running-shoes" | "sad-01" | "sad-02" | "sad-dizzy" | "safe-delivery-01" | "safe-delivery-02" | "safety-pin-01" | "safety-pin-02" | "sakura" | "salah" | "salah-time" | "sale-tag-01" | "sale-tag-02" | "satellite-01" | "satellite-02" | "satellite-03" | "saturn-01" | "saturn-02" | "save-energy-01" | "save-energy-02" | "save-money-dollar" | "save-money-euro" | "save-money-pound" | "save-money-yen" | "scan-image" | "school-01" | "school-bell-01" | "school-bell-02" | "school-bus" | "school-report-card" | "school-tie" | "scissor-01" | "scissor-rectangle" | "scooter-01" | "scooter-02" | "scooter-03" | "scooter-04" | "scratch-card" | "screen-add-to-home" | "screen-add-to-home-02" | "screen-lock-rotation" | "scroll-horizontal" | "scroll-vertical" | "search-01" | "search-02" | "search-add" | "search-area" | "search-focus" | "search-list-01" | "search-list-02" | "search-remove" | "search-replace" | "search-square" | "search-visual" | "searching" | "seat-selector" | "secured-network" | "security-block" | "security-check" | "security-key-usb" | "security-lock" | "security-password" | "security-validation" | "security-wifi" | "self-transfer" | "semi-truck" | "send-to-mobile" | "send-to-mobile-02" | "sending-order" | "senseless" | "sent" | "sent-02" | "server-stack-01" | "server-stack-02" | "server-stack-03" | "serving-food" | "setting-06" | "setting-07" | "setting-done-01" | "setting-done-02" | "setting-done-03" | "setting-done-04" | "setting-error-03" | "setting-error-04" | "settings-01" | "settings-02" | "settings-03" | "settings-04" | "settings-05" | "settings-error-01" | "settings-error-02" | "setup-01" | "setup-02" | "seven-circle" | "seven-square" | "shaka-01" | "shaka-02" | "shaka-03" | "shaka-04" | "shampoo" | "shape-collection" | "share-01" | "share-02" | "share-03" | "share-04" | "share-05" | "share-06" | "share-07" | "share-08" | "share-location-01" | "share-location-02" | "shared-drive" | "shared-wifi" | "sharing" | "shellfish" | "sheriff-01" | "sheriff-02" | "shield-01" | "shield-02" | "shield-blockchain" | "shield-energy" | "shipment-tracking" | "shipping-center" | "shipping-loading" | "shipping-truck-01" | "shipping-truck-02" | "shirt-01" | "shop-sign" | "shopping-bag-03" | "shopping-bag-add" | "shopping-bag-favorite" | "shopping-bag-remove" | "shopping-basket-01" | "shopping-basket-02" | "shopping-basket-03" | "shopping-basket-add-01" | "shopping-basket-add-02" | "shopping-basket-add-03" | "shopping-basket-check-in-01" | "shopping-basket-check-in-02" | "shopping-basket-check-in-03" | "shopping-basket-check-out-01" | "shopping-basket-check-out-02" | "shopping-basket-check-out-03" | "shopping-basket-done-01" | "shopping-basket-done-02" | "shopping-basket-done-03" | "shopping-basket-favorite-01" | "shopping-basket-favorite-02" | "shopping-basket-favorite-03" | "shopping-basket-remove-01" | "shopping-basket-remove-02" | "shopping-basket-remove-03" | "shopping-basket-secure-01" | "shopping-basket-secure-02" | "shopping-basket-secure-03" | "shopping-cart-add-01" | "shopping-cart-add-02" | "shopping-cart-check-01" | "shopping-cart-check-02" | "shopping-cart-check-in-01" | "shopping-cart-check-in-02" | "shopping-cart-check-out-01" | "shopping-cart-check-out-02" | "shopping-cart-favorite-01" | "shopping-cart-favorite-02" | "shopping-cart-remove-01" | "shopping-cart-remove-02" | "shorts-pants" | "shoulder" | "shuffle-square" | "shut-down" | "sidebar-bottom" | "sidebar-left-01" | "sidebar-right-01" | "sidebar-top" | "sign-language-c" | "signal-full-01" | "signal-full-02" | "signal-low-01" | "signal-low-02" | "signal-low-medium" | "signal-medium-01" | "signal-medium-02" | "signal-no-01" | "signal-no-02" | "simcard-01" | "simcard-02" | "simcard-dual" | "sine-01" | "sine-02" | "sing-left" | "sing-right" | "sink-01" | "sink-02" | "siri" | "siri-new" | "six-circle" | "six-square" | "sleeping" | "sleeveless" | "slow-winds" | "smart-ac" | "smart-phone-01" | "smart-phone-02" | "smart-phone-03" | "smart-phone-04" | "smart-phone-landscape" | "smart-phone-landscape-02" | "smart-watch-01" | "smart-watch-02" | "smart-watch-03" | "smart-watch-04" | "smartphone-lost-wifi" | "smartphone-wifi" | "smile-dizzy" | "sms-code" | "sofa-01" | "sofa-02" | "sofa-03" | "soft-drink-01" | "soft-drink-02" | "software-license" | "software-uninstall" | "solar-energy" | "solar-panel-01" | "solar-panel-02" | "solar-panel-03" | "solar-panel-04" | "solar-panel-05" | "solar-system-01" | "solid-line-01" | "solid-line-02" | "sort-by-down-01" | "sort-by-down-02" | "sort-by-up-01" | "sort-by-up-02" | "sorting-01" | "sorting-02" | "sorting-03" | "sorting-04" | "sorting-05" | "sorting-1-9" | "sorting-9-1" | "sorting-a-z-01" | "sorting-a-z-02" | "sorting-down" | "sorting-up" | "sorting-z-a-01" | "source-code-circle" | "source-code-square" | "spatula" | "speaker-01" | "speed-train-01" | "speed-train-02" | "spirals" | "spoon-and-fork" | "spoon-and-knife" | "square-01" | "square-arrow-data-transfer-diagonal" | "square-arrow-data-transfer-horizontal" | "square-arrow-data-transfer-vertical" | "square-arrow-diagonal-01" | "square-arrow-diagonal-02" | "square-arrow-down-01" | "square-arrow-down-02" | "square-arrow-down-03" | "square-arrow-down-double" | "square-arrow-expand-01" | "square-arrow-expand-02" | "square-arrow-horizontal" | "square-arrow-left-01" | "square-arrow-left-02" | "square-arrow-left-03" | "square-arrow-left-double" | "square-arrow-left-right" | "square-arrow-move-down-left" | "square-arrow-move-down-right" | "square-arrow-move-left-down" | "square-arrow-move-left-up" | "square-arrow-move-right-down" | "square-arrow-move-right-up" | "square-arrow-reload-01" | "square-arrow-reload-02" | "square-arrow-right-01" | "square-arrow-right-02" | "square-arrow-right-03" | "square-arrow-right-double" | "square-arrow-shrink-01" | "square-arrow-shrink-02" | "square-arrow-up-01" | "square-arrow-up-02" | "square-arrow-up-03" | "square-arrow-up-double" | "square-arrow-up-down" | "square-arrow-up-right-02" | "square-arrow-vertical" | "square-lock-01" | "square-lock-02" | "square-lock-add-01" | "square-lock-add-02" | "square-lock-check-01" | "square-lock-check-02" | "square-lock-minus-01" | "square-lock-minus-02" | "square-lock-password" | "square-lock-remove-01" | "square-lock-remove-02" | "square-root-square" | "square-unlock-01" | "square-unlock-02" | "stairs-01" | "stairs-02" | "stairs-03" | "stairs-04" | "stake" | "stamp-01" | "stamp-02" | "star-award-01" | "star-award-02" | "star-square" | "start-up-01" | "start-up-02" | "stationery" | "stethoscope-02" | "sticky-note-01" | "sticky-note-02" | "sticky-note-03" | "stop-loss-order" | "stop-watch" | "store-01" | "store-02" | "store-03" | "store-04" | "store-add-01" | "store-add-02" | "store-location-01" | "store-location-02" | "store-management-01" | "store-management-02" | "store-remove-01" | "store-remove-02" | "store-verified-01" | "store-verified-02" | "straight-edge" | "streering-wheel" | "street-food" | "stroke-bottom" | "stroke-center" | "stroke-inside" | "stroke-left" | "stroke-outside" | "stroke-right" | "stroke-top" | "structure-01" | "structure-02" | "structure-03" | "structure-04" | "structure-05" | "structure-add" | "structure-check" | "structure-fail" | "structure-folder" | "structure-folder-circle" | "student-card" | "students" | "study-desk" | "study-lamp" | "submerge" | "subnode-add" | "subnode-delete" | "subpoena" | "subtitle" | "suit-01" | "suit-02" | "sujood" | "summation-01" | "summation-02" | "summation-circle" | "summation-square" | "sun-01" | "sun-02" | "sun-03" | "sun-cloud-01" | "sun-cloud-02" | "sun-cloud-angled-rain-01" | "sun-cloud-angled-rain-02" | "sun-cloud-angled-rain-zap-01" | "sun-cloud-angled-rain-zap-02" | "sun-cloud-angled-zap-01" | "sun-cloud-angled-zap-02" | "sun-cloud-big-rain-01" | "sun-cloud-big-rain-02" | "sun-cloud-fast-wind-01" | "sun-cloud-fast-wind-02" | "sun-cloud-hailstone-01" | "sun-cloud-hailstone-02" | "sun-cloud-little-rain-01" | "sun-cloud-little-rain-02" | "sun-cloud-little-snow-01" | "sun-cloud-little-snow-02" | "sun-cloud-mid-rain-01" | "sun-cloud-mid-rain-02" | "sun-cloud-mid-snow-01" | "sun-cloud-mid-snow-02" | "sun-cloud-slow-wind-01" | "sun-cloud-slow-wind-02" | "sun-cloud-snow-01" | "sun-cloud-snow-02" | "super-mario" | "super-mario-toad" | "surfboard" | "sushi-01" | "sushi-02" | "sushi-03" | "sustainable-energy" | "svg-01" | "svg-02" | "swimming-cap" | "swipe-down-01" | "swipe-down-02" | "swipe-down-03" | "swipe-down-04" | "swipe-down-05" | "swipe-down-06" | "swipe-down-07" | "swipe-down-08" | "swipe-left-01" | "swipe-left-02" | "swipe-left-03" | "swipe-left-04" | "swipe-left-05" | "swipe-left-06" | "swipe-left-07" | "swipe-left-08" | "swipe-left-09" | "swipe-right-01" | "swipe-right-02" | "swipe-right-03" | "swipe-right-04" | "swipe-right-05" | "swipe-right-06" | "swipe-right-07" | "swipe-right-08" | "swipe-right-09" | "swipe-up-01" | "swipe-up-02" | "swipe-up-03" | "swipe-up-04" | "swipe-up-05" | "swipe-up-06" | "swipe-up-07" | "swipe-up-08" | "sword-01" | "sword-02" | "sword-03" | "system-update-01" | "system-update-02" | "table-01" | "table-02" | "table-03" | "table-lamp-01" | "table-lamp-02" | "table-round" | "table-tennis-bat" | "tablet-01" | "tablet-02" | "tablet-connected-bluetooth" | "tablet-connected-usb" | "tablet-connected-wifi" | "tablet-pen" | "taco-01" | "taco-02" | "tag-01" | "tag-02" | "taj-mahal" | "tap-01" | "tap-02" | "tap-03" | "tap-04" | "tap-05" | "tap-06" | "tap-07" | "tap-08" | "target-01" | "target-02" | "target-03" | "target-dollar" | "tasbih" | "task-01" | "task-02" | "task-add-01" | "task-add-02" | "task-daily-01" | "task-daily-02" | "task-done-01" | "task-done-02" | "task-edit-01" | "task-edit-02" | "task-remove-01" | "task-remove-02" | "taxes" | "taxi-02" | "tea-pod" | "teaching" | "telescope-01" | "telescope-02" | "television-table" | "test-tube-01" | "test-tube-02" | "test-tube-03" | "text-align-justify-center" | "text-align-justify-left" | "text-align-justify-right" | "text-align-left-01" | "text-align-right-01" | "text-centerline-center-top" | "text-centerline-left" | "text-centerline-middle" | "text-centerline-right" | "text-check" | "text-circle" | "text-clear" | "text-firstline-left" | "text-firstline-right" | "text-indent-01" | "text-italic-slash" | "text-number-sign" | "text-smallcaps" | "text-variable-front" | "the-prophets-mosque" | "thermometer-warm" | "threads-ellipse" | "threads-rectangle" | "three-circle" | "three-finger-01" | "three-finger-02" | "three-finger-03" | "three-finger-04" | "three-finger-05" | "three-square" | "thumbs-down-ellipse" | "thumbs-down-rectangle" | "thumbs-up-ellipse" | "thumbs-up-rectangle" | "tick-01" | "tick-02" | "tick-03" | "tick-04" | "tick-double-01" | "tick-double-02" | "tick-double-03" | "tick-double-04" | "ticket-01" | "ticket-02" | "ticket-03" | "ticket-star" | "tiff-01" | "tiff-02" | "tiltify" | "time-01" | "time-02" | "time-03" | "time-04" | "time-half-pass" | "time-management" | "time-management-circle" | "time-quarter" | "time-quarter-02" | "time-quarter-pass" | "time-schedule" | "time-setting-01" | "time-setting-02" | "time-setting-03" | "timer-01" | "timer-02" | "tinder-square" | "tired-01" | "tired-02" | "tissue-paper" | "toilet-01" | "toilet-02" | "token-circle" | "token-square" | "tongue-01" | "tongue-wink-left" | "tongue-wink-right" | "tornado-01" | "tornado-02" | "torri-gate" | "touch-01" | "touch-02" | "touch-03" | "touch-04" | "touch-05" | "touch-06" | "touch-07" | "touch-08" | "touch-09" | "touch-10" | "touch-interaction-01" | "touch-interaction-02" | "touch-interaction-03" | "touch-interaction-04" | "touch-locked-01" | "touch-locked-02" | "touch-locked-03" | "touch-locked-04" | "touchpad-01" | "touchpad-02" | "touchpad-03" | "touchpad-04" | "towels" | "toy-train" | "trade-down" | "trade-up" | "traffic-jam-01" | "traffic-jam-02" | "train-01" | "train-02" | "trampoline" | "transaction-history" | "trapezoid-line-horizontal" | "trapezoid-line-vertical" | "travel-bag" | "treadmill-01" | "treadmill-02" | "treatment" | "tree-01" | "tree-02" | "tree-03" | "tree-04" | "tree-05" | "tree-06" | "tree-07" | "triangle-01" | "triangle-02" | "triangle-03" | "trolley-01" | "trolley-02" | "tropical-storm-tracks-01" | "tropical-storm-tracks-02" | "trulli" | "turtle-neck" | "tv-01" | "tv-02" | "tv-issue" | "tv-smart" | "twin-tower" | "two-circle" | "two-factor-access" | "two-finger-01" | "two-finger-02" | "two-finger-03" | "two-finger-04" | "two-finger-05" | "two-square" | "txt-01" | "txt-02" | "type-cursor" | "typescript-01" | "typescript-02" | "typescript-03" | "ufo-01" | "umbrella-dollar" | "unamused" | "unarchive-03" | "underpants-01" | "underpants-02" | "underpants-03" | "undo-02" | "undo-03" | "ungroup-items" | "ungroup-layers" | "unhappy" | "unlink-01" | "unlink-02" | "unlink-03" | "unlink-04" | "unlink-05" | "unlink-06" | "upload-01" | "upload-02" | "upload-03" | "upload-04" | "upload-05" | "upload-circle-01" | "upload-circle-02" | "upload-square-01" | "upload-square-02" | "usb-bugs" | "usb-connected-01" | "usb-connected-02" | "usb-connected-03" | "usb-error" | "usb-memory-01" | "usb-memory-02" | "usb-not-connected-01" | "usb-not-connected-02" | "user-add-01" | "user-add-02" | "user-ai" | "user-arrow-left-right" | "user-block-01" | "user-block-02" | "user-check-01" | "user-check-02" | "user-circle-02" | "user-edit-01" | "user-full-view" | "user-group-02" | "user-group-03" | "user-id-verification" | "user-lock-01" | "user-lock-02" | "user-love-01" | "user-love-02" | "user-minus-01" | "user-minus-02" | "user-multiple-02" | "user-multiple-03" | "user-question-01" | "user-question-02" | "user-remove-01" | "user-remove-02" | "user-roadside" | "user-search-01" | "user-search-02" | "user-settings-01" | "user-settings-02" | "user-sharing" | "user-shield-01" | "user-shield-02" | "user-star-01" | "user-star-02" | "user-status" | "user-story" | "user-switch" | "user-time-01" | "user-time-02" | "user-time-03" | "user-unlock-01" | "user-unlock-02" | "user-warning-01" | "user-warning-02" | "user-warning-03" | "uv-01" | "uv-02" | "uv-03" | "validation" | "validation-approval" | "vegetarian-food" | "versus" | "vertical-resize" | "vertical-scroll-point" | "victory-finger-01" | "victory-finger-02" | "victory-finger-03" | "video-01" | "video-02" | "video-ai" | "video-camera-ai" | "video-console" | "video-replay" | "view-off-slash" | "vine-square" | "vintage-clock" | "virtual-reality-vr-01" | "virtual-reality-vr-02" | "vision" | "vk-square" | "voice-id" | "volume-mute-01" | "volume-mute-02" | "voucher" | "vr-glasses" | "vynil-01" | "vynil-02" | "vynil-03" | "w-3-schools" | "waiter" | "waiters" | "wallet-01" | "wallet-02" | "wallet-03" | "wallet-04" | "wallet-05" | "wallet-add-01" | "wallet-add-02" | "wallet-done-01" | "wallet-done-02" | "wallet-not-found-01" | "wallet-not-found-02" | "wallet-remove-01" | "wallet-remove-02" | "wardrobe-01" | "wardrobe-02" | "wardrobe-03" | "wardrobe-04" | "washington-monument" | "waste-restore" | "watch-01" | "watch-02" | "water-energy" | "waterfall-down-01" | "waterfall-down-03" | "waterfall-up-01" | "waterfall-up-02" | "wattpad-square" | "wav-01" | "wav-02" | "wave-triangle" | "waving-hand-01" | "waving-hand-02" | "web-design-01" | "web-design-02" | "web-programming" | "web-protection" | "web-security" | "web-validation" | "webflow-ellipse" | "webflow-rectangle" | "weight-scale-01" | "whiteboard" | "wifi-01" | "wifi-02" | "wifi-circle" | "wifi-connected-01" | "wifi-connected-02" | "wifi-connected-03" | "wifi-disconnected-01" | "wifi-disconnected-02" | "wifi-disconnected-03" | "wifi-disconnected-04" | "wifi-error-01" | "wifi-error-02" | "wifi-full-signal" | "wifi-location" | "wifi-low-signal" | "wifi-medium-signal" | "wifi-no-signal" | "wifi-off-01" | "wifi-off-02" | "wifi-square" | "wifi-unlock" | "wind-power-01" | "wind-power-02" | "wind-power-03" | "wind-surf" | "windows-new" | "windows-old" | "winking" | "wireless-cloud-access" | "workflow-circle-01" | "workflow-circle-02" | "workflow-circle-03" | "workflow-circle-04" | "workflow-circle-05" | "workflow-circle-06" | "workflow-square-01" | "workflow-square-02" | "workflow-square-03" | "workflow-square-04" | "workflow-square-05" | "workflow-square-06" | "workflow-square-07" | "workflow-square-08" | "workflow-square-09" | "workflow-square-10" | "workout-battle-ropes" | "workout-gymnastics" | "workout-kicking" | "workout-run" | "workout-sport" | "workout-squats" | "workout-stretching" | "workout-warm-up" | "worry" | "wps-office" | "wps-office-rectangle" | "wrench-01" | "wrench-02" | "wudu" | "x-variable" | "x-variable-circle" | "x-variable-square" | "xls-01" | "xls-02" | "xml-01" | "xml-02" | "xsl-01" | "xsl-02" | "yen-circle" | "yen-receive" | "yen-send" | "yoga-01" | "yoga-02" | "yoga-03" | "yoga-ball" | "yoga-mat" | "yogurt" | "zakat" | "zero-circle" | "zero-square" | "zip-01" | "zip-02" | "zoom-circle" | "zoom-square">): import("react").JSX.Element;
4571
4571
  displayName: string;
4572
4572
  };
4573
4573
  export {};