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
@@ -673,7 +673,7 @@ declare const bxsIconNames: {
673
673
  };
674
674
  export type BxsIconName = keyof typeof bxsIconNames;
675
675
  export declare const Bxs: {
676
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"map" | "error" | "color" | "pointer" | "image" | "search" | "checkbox" | "radio" | "timer" | "key" | "area" | "data" | "label" | "time" | "video" | "circle" | "mask" | "polygon" | "adjust" | "archive" | "barcode" | "binoculars" | "book" | "book-heart" | "book-open" | "bookmark" | "bookmark-minus" | "bookmark-plus" | "briefcase" | "chat" | "chip" | "comment" | "comment-check" | "comment-minus" | "copyright" | "crop" | "crown" | "diamond" | "directions" | "dock-bottom" | "dock-left" | "dock-right" | "dock-top" | "download" | "eject" | "eraser" | "flag" | "grid" | "group" | "heart-circle" | "help-circle" | "id-card" | "inbox" | "keyboard" | "magnet" | "message" | "message-check" | "message-minus" | "mouse" | "note" | "offer" | "package" | "pin" | "plus-circle" | "school" | "select-multiple" | "send" | "server" | "shield-plus" | "skip-next-circle" | "skip-previous-circle" | "square-rounded" | "sticker" | "tag" | "yin-yang" | "leaf" | "tree" | "bone" | "bug" | "cat" | "dog" | "chevron-down" | "chevron-down-circle" | "chevron-left" | "chevron-left-circle" | "chevron-right" | "chevron-right-circle" | "chevron-up" | "chevron-up-circle" | "share" | "album" | "music" | "speaker" | "volume-low" | "volume-mute" | "battery" | "battery-charging" | "car" | "car-battery" | "car-wash" | "ev-station" | "lock" | "lock-open" | "thermometer" | "bank" | "credit-card" | "receipt" | "wallet" | "battery-low" | "arch" | "box" | "meteor" | "devices" | "phone" | "phone-incoming" | "phone-off" | "phone-outgoing" | "face-mask" | "hard-hat" | "cloud" | "cloud-download" | "cloud-upload" | "eyedropper" | "palette" | "alarm" | "alarm-off" | "alarm-snooze" | "calendar" | "calendar-check" | "calendar-edit" | "calendar-heart" | "calendar-minus" | "calendar-plus" | "calendar-star" | "calendar-week" | "watch" | "brush" | "pen" | "pencil" | "ruler" | "comment-edit" | "rename" | "file" | "file-export" | "file-find" | "file-image" | "file-import" | "file-plus" | "folder" | "folder-minus" | "folder-open" | "folder-plus" | "baguette" | "beer" | "cake" | "cheese" | "coffee" | "cookie" | "pizza" | "card" | "check-circle" | "minus-circle" | "bomb" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "flask" | "ghost" | "heart" | "medal" | "shield" | "skull" | "compass" | "bolt" | "factory" | "wrench" | "balloon" | "bed" | "gift" | "bell" | "camera" | "cctv" | "door-open" | "fridge" | "home" | "home-circle" | "home-heart" | "printer" | "shower" | "video-off" | "webcam" | "calculator" | "ambulance" | "brain" | "virus" | "disc" | "microphone" | "microphone-off" | "piano" | "spa" | "bus" | "navigation" | "taxi" | "train" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "baby-carriage" | "camera-off" | "camera-plus" | "film" | "castle" | "church" | "city" | "parking" | "store" | "rocket" | "cog" | "circle-half" | "cube" | "cylinder" | "pyramid" | "rectangle" | "square" | "star" | "star-half" | "basket" | "cart" | "baseball" | "basketball" | "bullseye" | "flag-checkered" | "tennis-ball" | "torch" | "trophy" | "bus-school" | "traffic-cone" | "truck" | "movie" | "movie-play" | "video-plus" | "envelope" | "envelope-open" | "map-pin" | "megaphone" | "moon" | "shopping-bag" | "sun" | "trash" | "tv" | "user" | "user-circle" | "user-minus" | "user-plus" | "x-circle" | "angry" | "award" | "backpack" | "badge" | "badge-check" | "bath" | "battery-full" | "bot" | "building" | "cable-car" | "calendar-x" | "captions" | "chevrons-down" | "chevrons-left" | "chevrons-right" | "chevrons-up" | "cloud-lightning" | "cloud-rain" | "component" | "contact" | "copy" | "cuboid" | "droplet" | "file-archive" | "flame" | "hand" | "hotel" | "hourglass" | "joystick" | "landmark" | "laugh" | "log-in" | "log-out" | "meh" | "message-square" | "message-square-x" | "microchip" | "phone-call" | "plane" | "plug" | "popsicle" | "radiation" | "save" | "shapes" | "shield-minus" | "shield-x" | "ship" | "smile" | "spray-can" | "terminal" | "toggle-left" | "toggle-right" | "user-check" | "user-x" | "volume" | "wine" | "zap" | "zoom-in" | "zoom-out" | "check-square" | "edit" | "layout" | "minus-square" | "pie-chart" | "plus-square" | "x-square" | "bible" | "bong" | "bookmarks" | "brightness" | "brightness-half" | "buildings" | "bulb" | "calendar-event" | "calendar-exclamation" | "capsule" | "car-crash" | "car-garage" | "category" | "chalkboard" | "chess" | "coin" | "dashboard" | "discount" | "droplet-half" | "info-circle" | "info-square" | "lemon" | "location-plus" | "message-dots" | "message-x" | "news" | "notification" | "notification-off" | "paint" | "planet" | "playlist" | "registered" | "report" | "slideshow" | "stopwatch" | "user-pin" | "vector" | "bookmark-heart" | "bookmark-star" | "caret-down-square" | "caret-left-square" | "caret-right-square" | "caret-up-square" | "collection" | "fast-forward-circle" | "file-pdf" | "hdd" | "hourglass-bottom" | "hourglass-top" | "image-alt" | "rewind-circle" | "universal-access" | "book-bookmark" | "bowl-rice" | "gas-pump" | "paste" | "comment-dots" | "quote-left" | "quote-right" | "mobile" | "paper-plane" | "vial" | "bowling-ball" | "checkbox-checked" | "exit" | "magic-wand" | "alarm-add" | "buoy" | "business" | "caret-down-circle" | "caret-up-circle" | "color-fill" | "duplicate" | "hand-left" | "hand-right" | "happy" | "sad" | "extension" | "add-to-queue" | "blanket" | "file-png" | "landscape" | "photo-album" | "edit-location" | "traffic" | "conversation" | "face" | "file-json" | "filter-alt" | "hide" | "dollar-circle" | "cart-alt" | "comment-add" | "book-alt" | "cabinet" | "first-aid" | "notepad" | "sushi" | "tachometer" | "widget" | "alarm-exclamation" | "analyse" | "archive-in" | "archive-out" | "arrow-from-bottom" | "arrow-from-left" | "arrow-from-right" | "arrow-from-top" | "arrow-to-bottom" | "arrow-to-left" | "arrow-to-right" | "arrow-to-top" | "ball" | "band-aid" | "bar-chart-alt-2" | "bar-chart-square" | "been-here" | "bolt-circle" | "book-add" | "book-content" | "book-reader" | "bookmark-alt" | "bookmark-alt-minus" | "bookmark-alt-plus" | "bowl-hot" | "briefcase-alt" | "briefcase-alt-2" | "brush-alt" | "bug-alt" | "building-house" | "calendar-alt" | "camera-home" | "camera-movie" | "caret-left-circle" | "caret-right-circle" | "carousel" | "cart-add" | "cart-download" | "category-alt" | "certification" | "chart" | "check-shield" | "checkbox-minus" | "chevron-down-square" | "chevron-left-square" | "chevron-right-square" | "chevron-up-square" | "circle-quarter" | "circle-three-quarter" | "clinic" | "coffee-togo" | "coin-stack" | "comment-detail" | "comment-error" | "comment-x" | "confused" | "cool" | "copy-alt" | "credit-card-alt" | "credit-card-front" | "cricket-ball" | "cube-alt" | "customize" | "detail" | "dish" | "dislike" | "dizzy" | "donate-blood" | "donate-heart" | "doughnut-chart" | "down-arrow" | "down-arrow-alt" | "down-arrow-circle" | "downvote" | "drink" | "edit-alt" | "error-alt" | "error-circle" | "file-blank" | "food-menu" | "game" | "grid-alt" | "happy-alt" | "happy-beaming" | "happy-heart-eyes" | "heart-square" | "home-alt-2" | "home-smile" | "image-add" | "injection" | "joystick-alt" | "joystick-button" | "layer" | "layer-minus" | "layer-plus" | "left-arrow" | "left-arrow-alt" | "left-arrow-circle" | "left-down-arrow-circle" | "left-top-arrow-circle" | "like" | "lock-alt" | "lock-open-alt" | "log-in-circle" | "log-out-circle" | "low-vision" | "map-alt" | "meh-alt" | "meh-blank" | "memory-card" | "message-add" | "message-alt" | "message-alt-add" | "message-alt-check" | "message-alt-detail" | "message-alt-dots" | "message-alt-edit" | "message-alt-error" | "message-alt-minus" | "message-alt-x" | "message-detail" | "message-edit" | "message-error" | "message-rounded" | "message-rounded-add" | "message-rounded-check" | "message-rounded-detail" | "message-rounded-dots" | "message-rounded-edit" | "message-rounded-error" | "message-rounded-minus" | "message-rounded-x" | "message-square-add" | "message-square-check" | "message-square-detail" | "message-square-dots" | "message-square-edit" | "message-square-error" | "message-square-minus" | "mobile-vibration" | "mouse-alt" | "network-chart" | "no-entry" | "objects-horizontal-center" | "objects-horizontal-left" | "objects-horizontal-right" | "objects-vertical-bottom" | "objects-vertical-center" | "objects-vertical-top" | "paint-roll" | "party" | "pie-chart-alt" | "pie-chart-alt-2" | "purchase-tag" | "purchase-tag-alt" | "right-arrow" | "right-arrow-alt" | "right-arrow-circle" | "right-down-arrow-circle" | "right-top-arrow-circle" | "search-alt-2" | "share-alt" | "shield-alt-2" | "shocked" | "show" | "sleepy" | "spreadsheet" | "store-alt" | "tag-alt" | "time-five" | "tired" | "tone" | "trash-alt" | "up-arrow" | "up-arrow-alt" | "up-arrow-circle" | "upside-down" | "upvote" | "user-voice" | "video-recording" | "volume-full" | "wallet-alt" | "window-alt" | "wink-smile" | "wink-tongue" | "adjust-alt" | "badge-dollar" | "car-mechanic" | "coffee-alt" | "coffee-bean" | "coupon" | "direction-left" | "direction-right" | "down-arrow-square" | "dryer" | "file-css" | "file-doc" | "file-gif" | "file-html" | "file-jpg" | "file-js" | "file-md" | "file-txt" | "flag-alt" | "florist" | "graduation" | "guitar-amp" | "hand-down" | "hand-up" | "hot" | "institution" | "invader" | "left-arrow-square" | "microphone-alt" | "pear" | "plane-alt" | "plane-land" | "plane-take-off" | "quote-alt-left" | "quote-alt-right" | "quote-single-left" | "quote-single-right" | "right-arrow-square" | "shopping-bag-alt" | "shopping-bags" | "sort-alt" | "t-shirt" | "tag-x" | "to-top" | "traffic-barrier" | "tree-alt" | "up-arrow-square" | "user-account" | "user-badge" | "user-detail" | "user-rectangle" | "videos" | "virus-block" | "washer" | "watch-alt">): import("react").JSX.Element;
676
+ ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"map" | "data" | "color" | "error" | "search" | "pointer" | "image" | "checkbox" | "radio" | "timer" | "key" | "area" | "label" | "time" | "video" | "circle" | "mask" | "polygon" | "adjust" | "archive" | "barcode" | "binoculars" | "book" | "book-heart" | "book-open" | "bookmark" | "bookmark-minus" | "bookmark-plus" | "briefcase" | "chat" | "chip" | "comment" | "comment-check" | "comment-minus" | "copyright" | "crop" | "crown" | "diamond" | "directions" | "dock-bottom" | "dock-left" | "dock-right" | "dock-top" | "download" | "eject" | "eraser" | "flag" | "grid" | "group" | "heart-circle" | "help-circle" | "id-card" | "inbox" | "keyboard" | "magnet" | "message" | "message-check" | "message-minus" | "mouse" | "note" | "offer" | "package" | "pin" | "plus-circle" | "school" | "select-multiple" | "send" | "server" | "shield-plus" | "skip-next-circle" | "skip-previous-circle" | "square-rounded" | "sticker" | "tag" | "yin-yang" | "leaf" | "tree" | "bone" | "bug" | "cat" | "dog" | "chevron-down" | "chevron-down-circle" | "chevron-left" | "chevron-left-circle" | "chevron-right" | "chevron-right-circle" | "chevron-up" | "chevron-up-circle" | "share" | "album" | "music" | "speaker" | "volume-low" | "volume-mute" | "battery" | "battery-charging" | "car" | "car-battery" | "car-wash" | "ev-station" | "lock" | "lock-open" | "thermometer" | "bank" | "credit-card" | "receipt" | "wallet" | "battery-low" | "arch" | "box" | "meteor" | "devices" | "phone" | "phone-incoming" | "phone-off" | "phone-outgoing" | "face-mask" | "hard-hat" | "cloud" | "cloud-download" | "cloud-upload" | "eyedropper" | "palette" | "alarm" | "alarm-off" | "alarm-snooze" | "calendar" | "calendar-check" | "calendar-edit" | "calendar-heart" | "calendar-minus" | "calendar-plus" | "calendar-star" | "calendar-week" | "watch" | "brush" | "pen" | "pencil" | "ruler" | "comment-edit" | "rename" | "file" | "file-export" | "file-find" | "file-image" | "file-import" | "file-plus" | "folder" | "folder-minus" | "folder-open" | "folder-plus" | "baguette" | "beer" | "cake" | "cheese" | "coffee" | "cookie" | "pizza" | "card" | "check-circle" | "minus-circle" | "bomb" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "flask" | "ghost" | "heart" | "medal" | "shield" | "skull" | "compass" | "bolt" | "factory" | "wrench" | "balloon" | "bed" | "gift" | "bell" | "camera" | "cctv" | "door-open" | "fridge" | "home" | "home-circle" | "home-heart" | "printer" | "shower" | "video-off" | "webcam" | "calculator" | "ambulance" | "brain" | "virus" | "disc" | "microphone" | "microphone-off" | "piano" | "spa" | "bus" | "navigation" | "taxi" | "train" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "baby-carriage" | "camera-off" | "camera-plus" | "film" | "castle" | "church" | "city" | "parking" | "store" | "rocket" | "cog" | "circle-half" | "cube" | "cylinder" | "pyramid" | "rectangle" | "square" | "star" | "star-half" | "basket" | "cart" | "baseball" | "basketball" | "bullseye" | "flag-checkered" | "tennis-ball" | "torch" | "trophy" | "bus-school" | "traffic-cone" | "truck" | "movie" | "movie-play" | "video-plus" | "envelope" | "envelope-open" | "map-pin" | "megaphone" | "moon" | "shopping-bag" | "sun" | "trash" | "tv" | "user" | "user-circle" | "user-minus" | "user-plus" | "x-circle" | "angry" | "award" | "backpack" | "badge" | "badge-check" | "bath" | "battery-full" | "bot" | "building" | "cable-car" | "calendar-x" | "captions" | "chevrons-down" | "chevrons-left" | "chevrons-right" | "chevrons-up" | "cloud-lightning" | "cloud-rain" | "component" | "contact" | "copy" | "cuboid" | "droplet" | "file-archive" | "flame" | "hand" | "hotel" | "hourglass" | "joystick" | "landmark" | "laugh" | "log-in" | "log-out" | "meh" | "message-square" | "message-square-x" | "microchip" | "phone-call" | "plane" | "plug" | "popsicle" | "radiation" | "save" | "shapes" | "shield-minus" | "shield-x" | "ship" | "smile" | "spray-can" | "terminal" | "toggle-left" | "toggle-right" | "user-check" | "user-x" | "volume" | "wine" | "zap" | "zoom-in" | "zoom-out" | "check-square" | "edit" | "layout" | "minus-square" | "pie-chart" | "plus-square" | "x-square" | "bible" | "bong" | "bookmarks" | "brightness" | "brightness-half" | "buildings" | "bulb" | "calendar-event" | "calendar-exclamation" | "capsule" | "car-crash" | "car-garage" | "category" | "chalkboard" | "chess" | "coin" | "dashboard" | "discount" | "droplet-half" | "info-circle" | "info-square" | "lemon" | "location-plus" | "message-dots" | "message-x" | "news" | "notification" | "notification-off" | "paint" | "planet" | "playlist" | "registered" | "report" | "slideshow" | "stopwatch" | "user-pin" | "vector" | "bookmark-heart" | "bookmark-star" | "caret-down-square" | "caret-left-square" | "caret-right-square" | "caret-up-square" | "collection" | "fast-forward-circle" | "file-pdf" | "hdd" | "hourglass-bottom" | "hourglass-top" | "image-alt" | "rewind-circle" | "universal-access" | "book-bookmark" | "bowl-rice" | "gas-pump" | "paste" | "comment-dots" | "quote-left" | "quote-right" | "mobile" | "paper-plane" | "vial" | "bowling-ball" | "checkbox-checked" | "exit" | "magic-wand" | "alarm-add" | "buoy" | "business" | "caret-down-circle" | "caret-up-circle" | "color-fill" | "duplicate" | "hand-left" | "hand-right" | "happy" | "sad" | "extension" | "add-to-queue" | "blanket" | "file-png" | "landscape" | "photo-album" | "edit-location" | "traffic" | "conversation" | "face" | "file-json" | "filter-alt" | "hide" | "dollar-circle" | "cart-alt" | "comment-add" | "book-alt" | "cabinet" | "first-aid" | "notepad" | "sushi" | "tachometer" | "widget" | "alarm-exclamation" | "analyse" | "archive-in" | "archive-out" | "arrow-from-bottom" | "arrow-from-left" | "arrow-from-right" | "arrow-from-top" | "arrow-to-bottom" | "arrow-to-left" | "arrow-to-right" | "arrow-to-top" | "ball" | "band-aid" | "bar-chart-alt-2" | "bar-chart-square" | "been-here" | "bolt-circle" | "book-add" | "book-content" | "book-reader" | "bookmark-alt" | "bookmark-alt-minus" | "bookmark-alt-plus" | "bowl-hot" | "briefcase-alt" | "briefcase-alt-2" | "brush-alt" | "bug-alt" | "building-house" | "calendar-alt" | "camera-home" | "camera-movie" | "caret-left-circle" | "caret-right-circle" | "carousel" | "cart-add" | "cart-download" | "category-alt" | "certification" | "chart" | "check-shield" | "checkbox-minus" | "chevron-down-square" | "chevron-left-square" | "chevron-right-square" | "chevron-up-square" | "circle-quarter" | "circle-three-quarter" | "clinic" | "coffee-togo" | "coin-stack" | "comment-detail" | "comment-error" | "comment-x" | "confused" | "cool" | "copy-alt" | "credit-card-alt" | "credit-card-front" | "cricket-ball" | "cube-alt" | "customize" | "detail" | "dish" | "dislike" | "dizzy" | "donate-blood" | "donate-heart" | "doughnut-chart" | "down-arrow" | "down-arrow-alt" | "down-arrow-circle" | "downvote" | "drink" | "edit-alt" | "error-alt" | "error-circle" | "file-blank" | "food-menu" | "game" | "grid-alt" | "happy-alt" | "happy-beaming" | "happy-heart-eyes" | "heart-square" | "home-alt-2" | "home-smile" | "image-add" | "injection" | "joystick-alt" | "joystick-button" | "layer" | "layer-minus" | "layer-plus" | "left-arrow" | "left-arrow-alt" | "left-arrow-circle" | "left-down-arrow-circle" | "left-top-arrow-circle" | "like" | "lock-alt" | "lock-open-alt" | "log-in-circle" | "log-out-circle" | "low-vision" | "map-alt" | "meh-alt" | "meh-blank" | "memory-card" | "message-add" | "message-alt" | "message-alt-add" | "message-alt-check" | "message-alt-detail" | "message-alt-dots" | "message-alt-edit" | "message-alt-error" | "message-alt-minus" | "message-alt-x" | "message-detail" | "message-edit" | "message-error" | "message-rounded" | "message-rounded-add" | "message-rounded-check" | "message-rounded-detail" | "message-rounded-dots" | "message-rounded-edit" | "message-rounded-error" | "message-rounded-minus" | "message-rounded-x" | "message-square-add" | "message-square-check" | "message-square-detail" | "message-square-dots" | "message-square-edit" | "message-square-error" | "message-square-minus" | "mobile-vibration" | "mouse-alt" | "network-chart" | "no-entry" | "objects-horizontal-center" | "objects-horizontal-left" | "objects-horizontal-right" | "objects-vertical-bottom" | "objects-vertical-center" | "objects-vertical-top" | "paint-roll" | "party" | "pie-chart-alt" | "pie-chart-alt-2" | "purchase-tag" | "purchase-tag-alt" | "right-arrow" | "right-arrow-alt" | "right-arrow-circle" | "right-down-arrow-circle" | "right-top-arrow-circle" | "search-alt-2" | "share-alt" | "shield-alt-2" | "shocked" | "show" | "sleepy" | "spreadsheet" | "store-alt" | "tag-alt" | "time-five" | "tired" | "tone" | "trash-alt" | "up-arrow" | "up-arrow-alt" | "up-arrow-circle" | "upside-down" | "upvote" | "user-voice" | "video-recording" | "volume-full" | "wallet-alt" | "window-alt" | "wink-smile" | "wink-tongue" | "adjust-alt" | "badge-dollar" | "car-mechanic" | "coffee-alt" | "coffee-bean" | "coupon" | "direction-left" | "direction-right" | "down-arrow-square" | "dryer" | "file-css" | "file-doc" | "file-gif" | "file-html" | "file-jpg" | "file-js" | "file-md" | "file-txt" | "flag-alt" | "florist" | "graduation" | "guitar-amp" | "hand-down" | "hand-up" | "hot" | "institution" | "invader" | "left-arrow-square" | "microphone-alt" | "pear" | "plane-alt" | "plane-land" | "plane-take-off" | "quote-alt-left" | "quote-alt-right" | "quote-single-left" | "quote-single-right" | "right-arrow-square" | "shopping-bag-alt" | "shopping-bags" | "sort-alt" | "t-shirt" | "tag-x" | "to-top" | "traffic-barrier" | "tree-alt" | "up-arrow-square" | "user-account" | "user-badge" | "user-detail" | "user-rectangle" | "videos" | "virus-block" | "washer" | "watch-alt">): import("react").JSX.Element;
677
677
  displayName: string;
678
678
  };
679
679
  export {};
@@ -109,7 +109,7 @@ declare const bytesizeIconNames: {
109
109
  };
110
110
  export type BytesizeIconName = keyof typeof bytesizeIconNames;
111
111
  export declare const Bytesize: {
112
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"filter" | "link" | "search" | "alert" | "menu" | "code" | "video" | "archive" | "book" | "bookmark" | "clipboard" | "download" | "eject" | "export" | "eye" | "flag" | "fullscreen" | "fullscreen-exit" | "import" | "inbox" | "mail" | "message" | "paperclip" | "send" | "tag" | "upload" | "arrow-left" | "arrow-right" | "chevron-left" | "chevron-right" | "reload" | "reply" | "music" | "lock" | "github" | "twitter" | "calendar" | "clock" | "file" | "folder" | "folder-open" | "close" | "heart" | "gift" | "bell" | "camera" | "home" | "pause" | "play" | "minus" | "plus" | "microphone" | "star" | "cart" | "ellipsis-horizontal" | "ellipsis-vertical" | "moon" | "photo" | "trash" | "user" | "activity" | "ban" | "info" | "move" | "settings" | "volume" | "zoom-in" | "zoom-out" | "edit" | "unlock" | "caret-left" | "caret-right" | "location" | "zoom-reset" | "bag" | "lightning" | "telephone" | "print" | "mobile" | "desktop" | "checkmark" | "portfolio" | "options" | "compose" | "work" | "start" | "sign-out" | "arrow-bottom" | "arrow-top" | "backwards" | "caret-bottom" | "caret-top" | "chevron-bottom" | "chevron-top" | "creditcard" | "end" | "external" | "feed" | "forwards" | "mute" | "sign-in">): import("react").JSX.Element;
112
+ ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"filter" | "search" | "link" | "alert" | "menu" | "end" | "start" | "code" | "video" | "archive" | "book" | "bookmark" | "clipboard" | "download" | "eject" | "export" | "eye" | "flag" | "fullscreen" | "fullscreen-exit" | "import" | "inbox" | "mail" | "message" | "paperclip" | "send" | "tag" | "upload" | "arrow-left" | "arrow-right" | "chevron-left" | "chevron-right" | "reload" | "reply" | "music" | "lock" | "github" | "twitter" | "calendar" | "clock" | "file" | "folder" | "folder-open" | "close" | "heart" | "gift" | "bell" | "camera" | "home" | "pause" | "play" | "minus" | "plus" | "microphone" | "star" | "cart" | "ellipsis-horizontal" | "ellipsis-vertical" | "moon" | "photo" | "trash" | "user" | "activity" | "ban" | "info" | "move" | "settings" | "volume" | "zoom-in" | "zoom-out" | "edit" | "unlock" | "caret-left" | "caret-right" | "location" | "zoom-reset" | "bag" | "lightning" | "telephone" | "print" | "mobile" | "desktop" | "checkmark" | "portfolio" | "options" | "compose" | "work" | "sign-out" | "arrow-bottom" | "arrow-top" | "backwards" | "caret-bottom" | "caret-top" | "chevron-bottom" | "chevron-top" | "creditcard" | "external" | "feed" | "forwards" | "mute" | "sign-in">): import("react").JSX.Element;
113
113
  displayName: string;
114
114
  };
115
115
  export {};
@@ -2400,7 +2400,7 @@ declare const carbonIconNames: {
2400
2400
  };
2401
2401
  export type CarbonIconName = keyof typeof carbonIconNames;
2402
2402
  export declare const Carbon: {
2403
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"boolean" | "undefined" | "object" | "function" | "map" | "filter" | "error" | "rotate" | "svg" | "row" | "column" | "scale" | "image" | "link" | "search" | "checkbox" | "menu" | "radio" | "timer" | "list" | "key" | "split" | "repeat" | "anchor" | "area" | "code" | "html" | "label" | "legend" | "meter" | "script" | "table" | "template" | "time" | "video" | "stop" | "view" | "xml" | "align-horizontal-center" | "align-horizontal-left" | "align-horizontal-right" | "align-vertical-bottom" | "align-vertical-center" | "align-vertical-top" | "application" | "archive" | "arrow-up-left" | "arrow-up-right" | "asterisk" | "at" | "attachment" | "augmented-reality" | "barcode" | "binoculars" | "bluetooth" | "bluetooth-off" | "book" | "bookmark" | "bullhorn" | "certificate" | "chat" | "chip" | "close-outline" | "closed-caption" | "collapse-all" | "compare" | "contrast" | "crop" | "delete" | "diamond-outline" | "distribute-horizontal-center" | "distribute-horizontal-left" | "distribute-horizontal-right" | "distribute-vertical-bottom" | "distribute-vertical-center" | "distribute-vertical-top" | "download" | "drag-horizontal" | "drag-vertical" | "email" | "expand-all" | "export" | "filter-remove" | "fit-to-screen" | "flag" | "flash-off" | "forum" | "gender-female" | "gender-male" | "grid" | "group" | "hdr" | "help" | "image-search" | "ip" | "keyboard" | "keyboard-off" | "lasso" | "launch" | "license" | "login" | "logout" | "merge" | "notebook" | "omega" | "opacity" | "package" | "page-first" | "page-last" | "pan-horizontal" | "pan-vertical" | "pin" | "play-outline" | "radar" | "recycle" | "redo" | "reflect-horizontal" | "reflect-vertical" | "reminder" | "restart" | "rewind-10" | "rewind-30" | "rewind-5" | "router" | "rss" | "satellite" | "security" | "send" | "skip-forward-outline" | "smoke" | "table-of-contents" | "tag" | "tag-edit" | "tank" | "ticket" | "translate" | "trash-can" | "two-factor-authentication" | "undo" | "upload" | "usb" | "voicemail" | "vpn" | "webhook" | "wifi" | "wifi-off" | "account" | "bee" | "corn" | "sprout" | "tree" | "beta" | "bat" | "fish" | "linux" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-right" | "arrow-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "reply" | "reply-all" | "share" | "shuffle" | "equalizer" | "headphones" | "headset" | "music" | "volume-mute" | "waveform" | "battery-charging" | "car" | "gas-station" | "snowflake" | "currency-rupee" | "finance" | "piggy-bank" | "receipt" | "wallet" | "battery-low" | "apple" | "box" | "kubernetes" | "devices" | "phone" | "phone-incoming" | "phone-off" | "phone-outgoing" | "phone-settings" | "face-mask" | "cloud" | "cloud-download" | "cloud-upload" | "eyedropper" | "alarm" | "calendar" | "api" | "laptop" | "tablet" | "watch" | "draw" | "pen" | "ruler" | "folder" | "folder-off" | "folder-open" | "cookie" | "close" | "compass" | "earth" | "layers" | "tools" | "medication" | "gift" | "camera" | "fire" | "home" | "pause" | "play" | "power" | "printer" | "skip-forward" | "solar-panel" | "theater" | "video-off" | "wind-power" | "calculator" | "chart-bar" | "chart-bar-stacked" | "chart-bubble" | "chart-histogram" | "chart-line" | "chart-pie" | "chart-waterfall" | "sigma" | "hospital" | "stethoscope" | "microphone" | "microphone-off" | "palm-tree" | "tsunami" | "bus" | "hail" | "taxi" | "train" | "tram" | "run" | "raw" | "store" | "microscope" | "rocket" | "information" | "circle-outline" | "cube" | "hexagon-outline" | "pentagon-outline" | "square-outline" | "star" | "star-half" | "triangle-down-outline" | "triangle-outline" | "basketball" | "bicycle" | "soccer" | "swim" | "tennis" | "tennis-ball" | "trophy" | "border-bottom" | "border-left" | "border-none" | "border-right" | "border-top" | "sort-ascending" | "sort-descending" | "drone" | "helicopter" | "scooter" | "road" | "traffic-cone" | "apps" | "flash" | "temperature-celsius" | "temperature-fahrenheit" | "umbrella" | "currency-dollar" | "currency-euro" | "currency-pound" | "currency-yen" | "document" | "gif" | "hashtag" | "identification" | "language" | "moon" | "paint-brush" | "qr-code" | "shopping-bag" | "shopping-cart" | "sun" | "user" | "accessibility" | "activity" | "airplay" | "aperture" | "badge" | "baggage-claim" | "battery-full" | "battery-warning" | "bot" | "bring-to-front" | "building" | "car-front" | "chart-area" | "chart-candlestick" | "chart-column" | "chart-network" | "chart-scatter" | "cloudy" | "construction" | "copy" | "currency" | "equal-approximately" | "folders" | "gem" | "globe" | "haze" | "heading" | "hotel" | "hourglass" | "maximize" | "milestone" | "minimize" | "mountain" | "move" | "plane" | "plug" | "save" | "scan" | "send-to-back" | "settings" | "shapes" | "skip-back" | "spell-check" | "stamp" | "sunrise" | "sunset" | "terminal" | "text-align-center" | "text-align-justify" | "text-wrap" | "thumbs-down" | "thumbs-up" | "tornado" | "transgender" | "unlink" | "wheat" | "zoom-in" | "zoom-out" | "edit" | "ai" | "align-box-bottom-center" | "align-box-bottom-left" | "align-box-bottom-right" | "align-box-top-center" | "align-box-top-left" | "align-box-top-right" | "arrows-horizontal" | "arrows-vertical" | "assembly" | "asset" | "bookmark-filled" | "caret-down" | "caret-left" | "caret-right" | "caret-up" | "carousel-horizontal" | "carousel-vertical" | "category" | "chart-radar" | "chart-treemap" | "circle-filled" | "csv" | "currency-baht" | "currency-lira" | "currency-shekel" | "currency-won" | "cut" | "dashboard" | "edit-off" | "filter-edit" | "flag-filled" | "gas-station-filled" | "growth" | "jpg" | "json" | "lasso-polygon" | "location" | "location-filled" | "location-heart" | "location-star" | "microphone-filled" | "notification" | "notification-off" | "number-0" | "number-1" | "number-2" | "number-3" | "number-4" | "number-5" | "number-6" | "number-7" | "number-8" | "number-9" | "page-break" | "password" | "pdf" | "percentage" | "phone-filled" | "pills" | "pin-filled" | "playlist" | "png" | "quotes" | "report" | "rotate-clockwise" | "sdk" | "settings-check" | "shopping-cart-minus" | "shopping-cart-plus" | "sql" | "star-filled" | "table-alias" | "table-shortcut" | "temperature" | "text-color" | "trophy-filled" | "txt" | "user-filled" | "uv-index" | "video-filled" | "zip" | "zoom-in-area" | "zoom-out-area" | "zoom-reset" | "app" | "battery-half" | "hurricane" | "intersect" | "lightning" | "paragraph" | "person" | "snow" | "stickies" | "subtract" | "tablet-landscape" | "tropical-storm" | "volume-down" | "volume-up" | "earth-americas" | "face-dizzy" | "gears" | "charging-station" | "industry" | "monument" | "paste" | "comments" | "mobile" | "sim-card" | "battery-empty" | "battery-quarter" | "blog" | "ai-generate" | "bring-forward" | "code-block" | "draggable" | "send-backward" | "fire-fill" | "add" | "add-alt" | "add-comment" | "add-filled" | "add-large" | "align-box-middle-center" | "align-box-middle-left" | "align-box-middle-right" | "area-custom" | "arithmetic-mean" | "arithmetic-median" | "arrange" | "arrange-horizontal" | "arrange-vertical" | "arrow-shift-down" | "asleep" | "asleep-filled" | "automatic" | "awake" | "bookmark-add" | "border-full" | "bottom-panel-close" | "bottom-panel-close-filled" | "bottom-panel-open" | "bottom-panel-open-filled" | "branch" | "brightness-contrast" | "build-tool" | "button-centered" | "button-flush-left" | "calls" | "calls-all" | "calls-incoming" | "caret-sort" | "caret-sort-down" | "caret-sort-up" | "catalog-publish" | "center-circle" | "center-square" | "center-to-fit" | "change-catalog" | "chat-launch" | "chat-off" | "checkbox-checked" | "checkbox-checked-filled" | "checkbox-indeterminate" | "checkbox-indeterminate-filled" | "chevron-down-outline" | "chevron-mini" | "chevron-sort" | "chevron-sort-down" | "chevron-sort-up" | "chevron-up-outline" | "choices" | "choose-item" | "circle-dash" | "circle-solid" | "clean" | "close-filled" | "close-large" | "collapse-categories" | "color-palette" | "color-switch" | "column-delete" | "column-insert" | "commit" | "connect" | "connect-recursive" | "connect-reference" | "connect-source" | "connect-target" | "continue" | "continue-filled" | "continuous-deployment" | "continuous-integration" | "convert-to-cloud" | "corner" | "cut-out" | "dashboard-reference" | "data-set-encryption" | "demo" | "deploy" | "deploy-rules" | "diamond-solid" | "document-horizontal" | "document-vertical" | "dot-mark" | "down-to-bottom" | "drill-back" | "drill-down" | "drill-through" | "drop-photo" | "drop-photo-filled" | "erase" | "exit" | "expand-categories" | "explore" | "fade" | "favorite" | "favorite-filled" | "favorite-half" | "filter-reset" | "fit-to-height" | "fit-to-width" | "flash-filled" | "flash-off-filled" | "follow-up-work-order" | "fork" | "forward-10" | "forward-30" | "forward-5" | "fragments" | "function-math" | "funnel-sequence" | "funnel-sort" | "global-filters" | "gradient" | "graph-aggregator" | "group-objects" | "group-objects-new" | "group-objects-save" | "hexagon-solid" | "hexagon-vertical-outline" | "hexagon-vertical-solid" | "horizontal-view" | "image-copy" | "image-reference" | "image-search-alt" | "infinity-symbol" | "insert" | "insert-page" | "insert-syntax" | "inspection" | "jump-link" | "layers-external" | "light" | "light-filled" | "list-boxes" | "list-bulleted" | "list-checked" | "list-checked-mirror" | "list-numbered" | "list-numbered-mirror" | "locked" | "loop" | "mac-command" | "mac-option" | "mac-shift" | "magic-wand" | "magic-wand-filled" | "manage-protection" | "microphone-off-filled" | "migrate" | "migrate-alt" | "modified-newest" | "modified-oldest" | "new-tab" | "next-filled" | "next-outline" | "no-image" | "not-sent" | "not-sent-filled" | "notification-counter" | "notification-filled" | "notification-new" | "notification-off-filled" | "open-panel-bottom" | "open-panel-filled-bottom" | "open-panel-filled-left" | "open-panel-filled-right" | "open-panel-filled-top" | "open-panel-left" | "open-panel-right" | "open-panel-top" | "operations-field" | "operations-record" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "overlay" | "page-number" | "paint-brush-alt" | "pause-filled" | "pause-future" | "pause-outline" | "pause-outline-filled" | "pause-past" | "pen-fountain" | "pentagon-down-outline" | "pentagon-down-solid" | "pentagon-left-outline" | "pentagon-left-solid" | "pentagon-right-outline" | "pentagon-right-solid" | "pentagon-solid" | "percentage-filled" | "phone-application" | "phone-block" | "phone-block-filled" | "phone-incoming-filled" | "phone-off-filled" | "phone-outgoing-filled" | "phone-voice" | "phone-voice-filled" | "pipelines" | "pivot-horizontal" | "pivot-vertical" | "play-filled" | "play-filled-alt" | "play-outline-filled" | "pop-in" | "previous-filled" | "previous-outline" | "process" | "process-automate" | "promote" | "pull-request" | "punctuation-check" | "query" | "radio-button" | "radio-button-checked" | "read-me" | "recently-viewed" | "recommend" | "recording" | "recording-filled" | "recording-filled-alt" | "renew" | "repeat-one" | "replicate" | "request-quote" | "reset" | "reset-alt" | "retry-failed" | "return" | "review" | "right-panel-close" | "right-panel-close-filled" | "right-panel-open" | "right-panel-open-filled" | "rotate-clockwise-alt" | "rotate-clockwise-alt-filled" | "rotate-clockwise-filled" | "rotate-counterclockwise" | "rotate-counterclockwise-alt" | "rotate-counterclockwise-alt-filled" | "rotate-counterclockwise-filled" | "row-delete" | "row-insert" | "run-mirror" | "save-model" | "scan-alt" | "scan-disabled" | "screen" | "screen-off" | "search-advanced" | "search-locate" | "search-locate-mirror" | "select-01" | "select-02" | "select-window" | "send-alt" | "send-alt-filled" | "send-filled" | "settings-adjust" | "settings-edit" | "settings-services" | "settings-view" | "shape-except" | "shape-exclude" | "shape-intersect" | "shape-join" | "shape-unite" | "shrink-screen" | "shrink-screen-filled" | "side-panel-close" | "side-panel-close-filled" | "side-panel-open" | "side-panel-open-filled" | "skip-back-filled" | "skip-back-outline" | "skip-back-outline-filled" | "skip-back-outline-solid" | "skip-back-solid-filled" | "skip-forward-filled" | "skip-forward-outline-filled" | "skip-forward-outline-solid" | "skip-forward-solid-filled" | "sort-remove" | "sorting-a-to-z" | "sorting-highest-to-lowest-number" | "sorting-lowest-to-highest-number" | "sorting-z-to-a" | "split-screen" | "spray-paint" | "stop-filled" | "stop-filled-alt" | "stop-outline" | "stop-outline-filled" | "strategy-play" | "subtract-alt" | "subtract-filled" | "subtract-large" | "switcher" | "sync-settings" | "tag-export" | "tag-group" | "tag-import" | "tag-none" | "test-tool" | "text-align-left" | "text-align-mixed" | "text-align-right" | "text-all-caps" | "text-bold" | "text-clear-format" | "text-creation" | "text-fill" | "text-font" | "text-footnote" | "text-highlight" | "text-indent" | "text-indent-less" | "text-indent-more" | "text-italic" | "text-kerning" | "text-leading" | "text-line-spacing" | "text-long-paragraph" | "text-new-line" | "text-scale" | "text-selection" | "text-short-paragraph" | "text-small-caps" | "text-strikethrough" | "text-subscript" | "text-superscript" | "text-tracking" | "text-underline" | "text-vertical-alignment" | "thumbnail-1" | "thumbnail-2" | "thumbs-down-filled" | "thumbs-up-double" | "thumbs-up-double-filled" | "thumbs-up-filled" | "timing-belt" | "tour" | "transpose" | "triangle-down-solid" | "triangle-left-outline" | "triangle-left-solid" | "triangle-right-outline" | "triangle-right-solid" | "triangle-solid" | "ungroup-objects" | "unlocked" | "unsaved" | "up-to-top" | "update-complete" | "update-now" | "upgrade" | "vertical-view" | "video-add" | "video-chat" | "video-off-filled" | "video-player" | "view-filled" | "view-mode-1" | "view-mode-2" | "view-next" | "view-off" | "view-off-filled" | "volume-down-alt" | "volume-down-filled" | "volume-down-filled-alt" | "volume-mute-filled" | "volume-up-alt" | "volume-up-filled" | "volume-up-filled-alt" | "workspace-import" | "x-axis" | "y-axis" | "z-axis" | "zoom-area" | "zoom-fit" | "carbon" | "carbon-for-aem" | "carbon-for-ibm-dotcom" | "carbon-for-ibm-product" | "carbon-for-mobile" | "carbon-for-salesforce" | "carbon-ui-builder" | "cloud-app" | "edt-loop" | "ibm-cloud" | "ibm-security" | "logo-angular" | "logo-ansible-community" | "logo-bluesky" | "logo-digg" | "logo-discord" | "logo-facebook" | "logo-figma" | "logo-flickr" | "logo-git" | "logo-github" | "logo-gitlab" | "logo-glassdoor" | "logo-instagram" | "logo-invision" | "logo-jupyter" | "logo-keybase" | "logo-kubernetes" | "logo-linkedin" | "logo-livestream" | "logo-mastodon" | "logo-medium" | "logo-npm" | "logo-openshift" | "logo-pinterest" | "logo-python" | "logo-quora" | "logo-r-script" | "logo-react" | "logo-red-hat-ai-instructlab-on-ibm-cloud" | "logo-red-hat-ansible" | "logo-sketch" | "logo-skype" | "logo-slack" | "logo-snapchat" | "logo-svelte" | "logo-tumblr" | "logo-twitter" | "logo-vmware" | "logo-vmware-alt" | "logo-vue" | "logo-wechat" | "logo-x" | "logo-xing" | "logo-yelp" | "logo-youtube" | "sap" | "watson" | "watson-machine-learning" | "ai-business-impact-assessment" | "ai-financial-sustainability-check" | "ai-governance-lifecycle" | "ai-governance-tracked" | "ai-governance-untracked" | "ai-label" | "ai-launch" | "ai-recommend" | "apple-dash" | "autoscaling" | "bee-bat" | "block-storage" | "bottles-01" | "bottles-01-dash" | "bottles-02" | "bottles-02-dash" | "bottles-container" | "business-metrics" | "chemistry" | "chemistry-reference" | "cics-explorer" | "cics-transaction-server-zos" | "cloud-auditing" | "cloud-foundry-1" | "cloud-foundry-2" | "cloud-logging" | "cloud-monitoring" | "cloud-registry" | "cloud-satellite" | "cloud-satellite-config" | "cloud-satellite-link" | "cloud-satellite-services" | "content-delivery-network" | "coronavirus" | "currency-ruble" | "database-datastax" | "database-elastic" | "database-enterprise-db2" | "database-enterprisedb" | "database-etcd" | "database-mongodb" | "database-postgresql" | "database-rabbit" | "database-redis" | "delivery" | "delivery-add" | "delivery-parcel" | "direct-link" | "dns-services" | "drink-01" | "drink-02" | "enterprise" | "exam-mode" | "financial-assets" | "fish-multiple" | "flow-logs-vpc" | "fragile" | "fruit-bowl" | "health-cross" | "ibm-ai-on-z" | "ibm-aiops-insights" | "ibm-api-connect" | "ibm-app-connect-enterprise" | "ibm-application-and-discovery-delivery-intelligence" | "ibm-aspera" | "ibm-bluepay" | "ibm-cloud-app-id" | "ibm-cloud-backup-and-recovery" | "ibm-cloud-backup-service-vpc" | "ibm-cloud-bare-metal-server" | "ibm-cloud-bare-metal-servers-vpc" | "ibm-cloud-citrix-daas" | "ibm-cloud-code-engine" | "ibm-cloud-continuous-delivery" | "ibm-cloud-databases" | "ibm-cloud-dedicated-host" | "ibm-cloud-direct-link-1-connect" | "ibm-cloud-direct-link-1-dedicated" | "ibm-cloud-direct-link-1-dedicated-hosting" | "ibm-cloud-direct-link-1-exchange" | "ibm-cloud-direct-link-2-connect" | "ibm-cloud-direct-link-2-dedicated" | "ibm-cloud-direct-link-2-dedicated-hosting" | "ibm-cloud-essential-security-and-observability-services" | "ibm-cloud-event-notification" | "ibm-cloud-event-streams" | "ibm-cloud-for-education" | "ibm-cloud-gate-keeper" | "ibm-cloud-hpc" | "ibm-cloud-hsm" | "ibm-cloud-hyper-protect-crypto-services" | "ibm-cloud-hyper-protect-dbaas" | "ibm-cloud-hyper-protect-vs" | "ibm-cloud-internet-services" | "ibm-cloud-ipsec-vpn" | "ibm-cloud-key-protect" | "ibm-cloud-kubernetes-service" | "ibm-cloud-logging" | "ibm-cloud-mass-data-migration" | "ibm-cloud-observability" | "ibm-cloud-pak-applications" | "ibm-cloud-pak-business-automation" | "ibm-cloud-pak-data" | "ibm-cloud-pak-integration" | "ibm-cloud-pak-manta-automated-data-lineage" | "ibm-cloud-pak-multicloud-mgmt" | "ibm-cloud-pak-netezza" | "ibm-cloud-pak-network-automation" | "ibm-cloud-pak-security" | "ibm-cloud-pak-system" | "ibm-cloud-pak-watson-aiops" | "ibm-cloud-pal" | "ibm-cloud-privileged-access-gateway" | "ibm-cloud-projects" | "ibm-cloud-resiliency" | "ibm-cloud-secrets-manager" | "ibm-cloud-security" | "ibm-cloud-security-compliance-center" | "ibm-cloud-security-compliance-center-workload-protection" | "ibm-cloud-security-groups" | "ibm-cloud-subnets" | "ibm-cloud-sysdig-secure" | "ibm-cloud-transit-gateway" | "ibm-cloud-virtual-server-classic" | "ibm-cloud-virtual-server-vpc" | "ibm-cloud-vpc" | "ibm-cloud-vpc-block-storage-snapshots" | "ibm-cloud-vpc-client-vpn" | "ibm-cloud-vpc-endpoints" | "ibm-cloud-vpc-file-storage" | "ibm-cloud-vpc-images" | "ibm-cloudant" | "ibm-consulting-advantage-agent" | "ibm-consulting-advantage-application" | "ibm-consulting-advantage-assistant" | "ibm-content-services" | "ibm-data-power" | "ibm-data-product-exchange" | "ibm-data-replication" | "ibm-databand" | "ibm-datastage" | "ibm-db2" | "ibm-db2-alt" | "ibm-db2-warehouse" | "ibm-deployable-architecture" | "ibm-devops-control" | "ibm-dynamic-route-server" | "ibm-elo-automotive-compliance" | "ibm-elo-engineering-insights" | "ibm-elo-method-composer" | "ibm-elo-publishing" | "ibm-engineering-lifecycle-mgmt" | "ibm-engineering-requirements-doors-next" | "ibm-engineering-systems-design-rhapsody" | "ibm-engineering-systems-design-rhapsody-model-manager" | "ibm-engineering-systems-design-rhapsody-sn1" | "ibm-engineering-systems-design-rhapsody-sn2" | "ibm-engineering-test-mgmt" | "ibm-engineering-workflow-mgmt" | "ibm-event-automation" | "ibm-event-endpoint-mgmt" | "ibm-event-processing" | "ibm-event-streams" | "ibm-federated-api-management" | "ibm-gcm" | "ibm-global-storage-architecture" | "ibm-granite" | "ibm-hybrid-control-plane" | "ibm-ibv" | "ibm-instana" | "ibm-jrs" | "ibm-knowledge-catalog" | "ibm-knowledge-catalog-premium" | "ibm-knowledge-catalog-standard" | "ibm-launchpad-s4" | "ibm-lpa" | "ibm-lqe" | "ibm-machine-learning-for-zos" | "ibm-match-360" | "ibm-maximo-application-suite" | "ibm-mq" | "ibm-open-enterprise-languages" | "ibm-openshift-container-platform-on-vpc-for-regulated-industries" | "ibm-planning-analytics" | "ibm-power-vs" | "ibm-power-vs-private-cloud" | "ibm-power-with-vpc" | "ibm-private-path-services" | "ibm-process-mining" | "ibm-quantum-safe-advisor" | "ibm-quantum-safe-explorer" | "ibm-quantum-safe-remediator" | "ibm-saas-console" | "ibm-sap-on-power" | "ibm-secure-infrastructure-on-vpc-for-regulated-industries" | "ibm-security-services" | "ibm-software-watsonx-data-analyze-and-process" | "ibm-software-watsonx-data-structured-enrichment" | "ibm-software-watsonx-data-structured-import" | "ibm-software-watsonx-data-unstructured-enrichment" | "ibm-software-watsonx-data-unstructured-import" | "ibm-software-watsonx-document-library" | "ibm-streamsets" | "ibm-telehealth" | "ibm-tenet" | "ibm-test-accelerator-for-z" | "ibm-toolchain" | "ibm-turbonomic" | "ibm-unstructured-data-processor" | "ibm-vpn-for-vpc" | "ibm-vsi-on-vpc-for-regulated-industries" | "ibm-watson-assistant" | "ibm-watson-discovery" | "ibm-watson-knowledge-catalog" | "ibm-watson-knowledge-studio" | "ibm-watson-language-translator" | "ibm-watson-machine-learning" | "ibm-watson-natural-language-classifier" | "ibm-watson-natural-language-understanding" | "ibm-watson-openscale" | "ibm-watson-orders" | "ibm-watson-query" | "ibm-watson-speech-to-text" | "ibm-watson-studio" | "ibm-watson-text-to-speech" | "ibm-watson-tone-analyzer" | "ibm-watsonx-assistant" | "ibm-watsonx-code-assistant" | "ibm-watsonx-code-assistant-for-enterprise-java-applications" | "ibm-watsonx-code-assistant-for-z" | "ibm-watsonx-code-assistant-for-z-refactor" | "ibm-watsonx-code-assistant-for-z-validation-assistant" | "ibm-watsonx-orchestrate" | "ibm-wazi-deploy" | "ibm-webmethods-api-gateway" | "ibm-webmethods-api-studio" | "ibm-webmethods-b2b-integration" | "ibm-webmethods-developer-portal" | "ibm-webmethods-hybrid-integration" | "ibm-webmethods-integration" | "ibm-webmethods-integration-server" | "ibm-webmethods-managed-file-transfer" | "ibm-z-cloud-mod-stack" | "ibm-z-cloud-provisioning" | "ibm-z-environments-dev-sec-ops" | "ibm-z-open-editor" | "ibm-z-os" | "ibm-z-os-ai-control-interface" | "ibm-z-os-containers" | "ibm-z-os-package-manager" | "ibm-z-processor-capacity-reference" | "image-medical" | "infrastructure-classic" | "inventory-management" | "keep-dry" | "load-balancer-vpc" | "machine-learning" | "machine-learning-model" | "medication-alert" | "medication-reminder" | "ml-model-reference" | "model" | "model-foundation" | "model-reference" | "model-tuned" | "money" | "monster" | "mysql" | "noodle-bowl" | "object-storage" | "piggy-bank-slot" | "pills-add" | "pills-subtract" | "power-enterprise-pools-metered-capacity-integration" | "power-virtual-server-disaster-recovery-automation" | "pricing-consumption" | "pricing-container" | "pricing-quick-proposal" | "pricing-tailored" | "pricing-traditional" | "prompt-session" | "prompt-template" | "purchase" | "qiskit" | "question-answering" | "rag" | "scis-control-tower" | "scis-transparent-supply" | "shopping-cart-arrow-down" | "shopping-cart-arrow-up" | "shopping-cart-clear" | "shopping-cart-error" | "shopping-catalog" | "stack-limitation" | "strawberry" | "sustainability" | "this-side-up" | "tuning" | "two-person-lift" | "virtual-private-cloud-alt" | "vlan-ibm" | "watsonx" | "watsonx-ai" | "watsonx-data" | "watsonx-governance" | "wireless-checkout" | "_4k" | "_4k-filled" | "accept-action-usage" | "action-definition" | "action-usage" | "add-child-node" | "add-parent-node" | "aggregator-count-rows" | "aggregator-recalculation" | "analytics" | "analytics-custom" | "analytics-reference" | "api-1" | "api-key" | "app-connectivity" | "application-mobile" | "application-virtual" | "application-web" | "assembly-cluster" | "assembly-reference" | "assignment-action-usage" | "async" | "attribute-definition" | "attribute-usage" | "avro" | "bare-metal-server" | "bare-metal-server-01" | "bare-metal-server-02" | "base-document-set" | "bastion-host" | "batch-job" | "batch-job-step" | "binding-01" | "binding-02" | "bland-altman-plot" | "block-storage-alt" | "blockchain" | "boot-volume" | "boot-volume-alt" | "box-extra-large" | "box-large" | "box-medium" | "box-plot" | "box-small" | "bsam-qsam-zedc" | "cad" | "calculation" | "calculation-alt" | "calendar-heat-map" | "catalog" | "categories" | "category-add" | "category-and" | "category-new" | "category-new-each" | "cda" | "certificate-check" | "character-decimal" | "character-fraction" | "character-integer" | "character-lower-case" | "character-negative-number" | "character-patterns" | "character-sentence-case" | "character-upper-case" | "character-whole-number" | "chart-3d" | "chart-area-smooth" | "chart-area-stepper" | "chart-average" | "chart-bar-floating" | "chart-bar-overlay" | "chart-bar-target" | "chart-bubble-packed" | "chart-bullet" | "chart-cluster-bar" | "chart-column-floating" | "chart-column-target" | "chart-combo" | "chart-combo-stacked" | "chart-custom" | "chart-dual-y-axis" | "chart-error-bar" | "chart-error-bar-alt" | "chart-evaluation" | "chart-high-low" | "chart-line-data" | "chart-line-smooth" | "chart-logistic-regression" | "chart-marimekko" | "chart-maximum" | "chart-median" | "chart-minimum" | "chart-multi-line" | "chart-multitype" | "chart-parallel" | "chart-planning-waterfall" | "chart-point" | "chart-population" | "chart-radial" | "chart-relationship" | "chart-ring" | "chart-river" | "chart-rose" | "chart-spiral" | "chart-stacked" | "chart-stepper" | "chart-sunburst" | "chart-t-sne" | "chart-venn-diagram" | "chart-violin-plot" | "chart-win-loss" | "chat-operational" | "checkmark" | "checkmark-filled" | "checkmark-filled-error" | "checkmark-filled-warning" | "checkmark-outline" | "checkmark-outline-error" | "checkmark-outline-warning" | "child-node" | "choropleth-map" | "cics-cmas" | "cics-db2-connection" | "cics-program" | "cics-region" | "cics-region-alt" | "cics-region-routing" | "cics-region-target" | "cics-sit" | "cics-sit-overrides" | "cics-system-group" | "cics-wui-region" | "cicsplex" | "circle-packing" | "classic-batch" | "classification" | "classifier-language" | "closed-caption-alt" | "closed-caption-filled" | "cloud-alerting" | "cloud-data-ops" | "cloud-service-management" | "cloud-services" | "code-signing-service" | "column-dependency" | "communication-unified" | "concept" | "condition-point" | "condition-wait-point" | "connection-flow-usage" | "connection-usage" | "constraint" | "container-engine" | "container-image" | "container-image-pull" | "container-image-push" | "container-image-push-pull" | "container-registry" | "container-runtime" | "container-runtime-monitor" | "container-services" | "container-software" | "content-view" | "copy-file" | "copy-link" | "cost" | "cost-total" | "coupling-facility-encryption" | "course" | "covariate" | "cross-tab" | "cube-view" | "data-1" | "data-2" | "data-accessor" | "data-analytics" | "data-backup" | "data-base" | "data-base-alt" | "data-bin" | "data-blob" | "data-categorical" | "data-center" | "data-check" | "data-class" | "data-collection" | "data-connected" | "data-definition" | "data-diode" | "data-enrichment" | "data-enrichment-add" | "data-error" | "data-format" | "data-player" | "data-quality-definition" | "data-reference" | "data-refinery" | "data-refinery-reference" | "data-regular" | "data-set" | "data-share" | "data-structured" | "data-table" | "data-table-reference" | "data-unreal" | "data-unstructured" | "data-view" | "data-view-alt" | "data-vis-1" | "data-vis-2" | "data-vis-3" | "data-vis-4" | "data-volume" | "data-volume-alt" | "database-messaging" | "datastore" | "db2-buffer-pool" | "db2-data-sharing-group" | "db2-database" | "decision-node" | "decision-tree" | "dependency" | "deployment-unit-data" | "deployment-unit-execution" | "deployment-unit-installation" | "deployment-unit-presentation" | "deployment-unit-technical-data" | "deployment-unit-technical-execution" | "deployment-unit-technical-installation" | "deployment-unit-technical-presentation" | "dfsort-ibm-z-sort" | "diagram" | "diagram-reference" | "digital-identity" | "directory-domain" | "doc" | "document-add" | "document-attachment" | "document-audio" | "document-blank" | "document-comment" | "document-configuration" | "document-download" | "document-epdf" | "document-export" | "document-import" | "document-multiple-01" | "document-multiple-02" | "document-pdf" | "document-preliminary" | "document-processor" | "document-protected" | "document-requirements" | "document-security" | "document-sentiment" | "document-set" | "document-signed" | "document-sketch" | "document-subject" | "document-subtract" | "document-tasks" | "document-unknown" | "document-unprotected" | "document-video" | "document-view" | "document-word-processor" | "document-word-processor-reference" | "documentation" | "double-axis-chart-bar" | "double-axis-chart-column" | "double-integer" | "downstream" | "driver-analysis" | "dvr" | "edge-node-alt" | "element-picker" | "emissions-management" | "encryption" | "enumeration-definition" | "enumeration-usage" | "error-filled" | "error-outline" | "event-change" | "event-incident" | "event-warning" | "executable-program" | "factor" | "feature-membership" | "feature-membership-filled" | "feature-picker" | "feature-typing" | "file-storage" | "firewall" | "firewall-classic" | "floating-ip" | "floorplan" | "flow" | "flow-connection" | "flow-data" | "flow-modeler" | "flow-modeler-reference" | "flow-stream" | "flow-stream-reference" | "folder-add" | "folder-details" | "folder-details-reference" | "folder-move-to" | "folder-parent" | "folder-shared" | "for-loop" | "fork-node" | "gamification" | "gateway" | "gateway-api" | "gateway-mail" | "gateway-public" | "gateway-security" | "gateway-user-access" | "gateway-vpn" | "gem-reference" | "generate-pdf" | "global-loan-and-trial" | "graphical-data-flow" | "group-access" | "group-account" | "group-resource" | "group-security" | "gui" | "gui-management" | "hardware-security-module" | "hd" | "hd-filled" | "heat-map" | "heat-map-02" | "heat-map-03" | "heat-map-stocks" | "help-filled" | "html-reference" | "http" | "hybrid-networking" | "hybrid-networking-alt" | "id-management" | "if-action" | "image-service" | "image-store-local" | "import-export" | "important" | "improve-relevance" | "in-progress" | "in-progress-error" | "in-progress-warning" | "incident-reporter" | "incomplete" | "incomplete-cancel" | "incomplete-error" | "incomplete-warning" | "increase-level" | "information-disabled" | "information-filled" | "information-square" | "information-square-filled" | "instance-bx" | "instance-classic" | "instance-cx" | "instance-mx" | "instance-virtual" | "intent-request-active" | "intent-request-create" | "intent-request-heal" | "intent-request-inactive" | "intent-request-scale-in" | "intent-request-scale-out" | "intent-request-uninstall" | "intent-request-upgrade" | "interactions" | "interface-definition" | "interface-definition-alt" | "interface-usage" | "interface-usage-1" | "interface-usage-alt" | "intrusion-prevention" | "iso" | "iso-filled" | "iso-outline" | "item-definition" | "item-usage" | "job-daemon" | "job-run" | "join-full" | "join-inner" | "join-inner-alt" | "join-left" | "join-left-outer" | "join-node" | "join-outer" | "join-right" | "join-right-outer" | "js-error" | "json-reference" | "kubelet" | "kubernetes-control-plane-node" | "kubernetes-ip-address" | "kubernetes-operator" | "kubernetes-pod" | "kubernetes-worker-node" | "letter-aa" | "letter-bb" | "letter-cc" | "letter-dd" | "letter-ee" | "letter-ff" | "letter-gg" | "letter-hh" | "letter-ii" | "letter-jj" | "letter-kk" | "letter-ll" | "letter-mm" | "letter-nn" | "letter-oo" | "letter-pp" | "letter-qq" | "letter-rr" | "letter-ss" | "letter-tt" | "letter-uu" | "letter-vv" | "letter-ww" | "letter-xx" | "letter-yy" | "letter-zz" | "license-draft" | "license-global" | "license-maintenance" | "license-maintenance-draft" | "license-third-party" | "license-third-party-draft" | "linux-alt" | "linux-namespace" | "list-dropdown" | "load-balancer-application" | "load-balancer-classic" | "load-balancer-global" | "load-balancer-listener" | "load-balancer-local" | "load-balancer-network" | "load-balancer-pool" | "locked-and-blocked" | "logical-partition" | "loop-alt" | "mac" | "managed-solutions" | "marginal" | "math-curve" | "media-library" | "media-library-filled" | "merge-node" | "message-queue" | "microservices-1" | "microservices-2" | "misuse" | "misuse-outline" | "mobility-services" | "model-alt" | "model-builder" | "model-builder-reference" | "mov" | "mp3" | "mp4" | "mpeg" | "mpg2" | "music-add" | "music-remove" | "name-space" | "network-1" | "network-2" | "network-3" | "network-3-reference" | "network-4" | "network-4-reference" | "network-admin-control" | "network-enterprise" | "network-interface" | "network-overlay" | "network-public" | "network-time-protocol" | "no-ticket" | "nominal" | "non-certified" | "notebook-reference" | "notifications-paused" | "null-sign" | "number-small-0" | "number-small-1" | "number-small-2" | "number-small-3" | "number-small-4" | "number-small-5" | "number-small-6" | "number-small-7" | "number-small-8" | "number-small-9" | "object-storage-alt" | "order-details" | "ordinal" | "package-node" | "package-text-analysis" | "panel-expansion" | "parameter" | "parent-child" | "parent-node" | "part-definition" | "part-usage" | "partition-auto" | "partition-collection" | "partition-repartition" | "partition-same" | "partition-specific" | "pcn-e-node" | "pcn-military" | "pcn-p-node" | "pcn-z-node" | "pdf-reference" | "pending" | "pending-filled" | "perform-action" | "phrase-sentiment" | "plan" | "platform-automation" | "point-of-presence" | "policy" | "popup" | "port-definition" | "port-usage" | "ppt" | "presentation-file" | "product" | "progress-bar" | "progress-bar-round" | "property-relationship" | "qq-plot" | "quadrant-plot" | "query-queue" | "queued" | "redefinition" | "reference-architecture" | "repo-artifact" | "repo-source-code" | "report-data" | "requirement-definition" | "requirement-usage" | "result" | "result-draft" | "result-new" | "result-old" | "roadmap" | "router-voice" | "router-wifi" | "row-collapse" | "row-expand" | "rule" | "rule-cancelled" | "rule-data-quality" | "rule-draft" | "rule-filled" | "rule-locked" | "rule-partial" | "rule-test" | "sankey-diagram" | "sankey-diagram-alt" | "satisfy-definition" | "satisfy-usage" | "scatter-matrix" | "schematics" | "screen-map" | "screen-map-set" | "script-reference" | "security-services" | "send-action-usage" | "server-dns" | "server-proxy" | "server-time" | "service-levels" | "session-border-control" | "share-knowledge" | "show-data-cards" | "skill-level" | "skill-level-advanced" | "skill-level-basic" | "skill-level-intermediate" | "slisor" | "slm" | "software-resource" | "software-resource-cluster" | "software-resource-resource" | "spyre-accelerator" | "star-review" | "stem-leaf-plot" | "storage-pool" | "storage-request" | "string-integer" | "string-text" | "subclassification" | "subdirectory" | "subflow" | "subflow-local" | "subject-definition" | "subject-usage" | "subnet-acl-rules" | "subsetting" | "succession" | "succession-flow-connection" | "summary-kpi" | "summary-kpi-mirror" | "support-vector-machine" | "surrogate-key-database" | "surrogate-key-flat-file" | "swimlane-d-vertical" | "switch-layer-2" | "switch-layer-3" | "sys-provision" | "sysplex-distributor" | "table-built" | "table-split" | "task" | "task-add" | "task-approved" | "task-asset-view" | "task-complete" | "task-location" | "task-remove" | "task-settings" | "task-star" | "task-tools" | "task-view" | "tcp-ip-service" | "term" | "term-reference" | "terminal-3270" | "text-link" | "text-link-analysis" | "text-mining" | "text-mining-applier" | "tif" | "time-plot" | "top-data-sets" | "top-programs" | "transform-binary" | "transform-code" | "transform-instructions" | "transform-language" | "tree-view" | "tree-view-alt" | "tsq" | "tsv" | "txt-reference" | "type-pattern" | "types" | "undefined-filled" | "unknown" | "unknown-filled" | "upstream" | "url" | "usage-included-use-case" | "use-case-definition" | "use-case-usage" | "value-variable" | "value-variable-alt" | "vehicle-api" | "vehicle-connected" | "vehicle-insights" | "vehicle-services" | "version" | "version-major" | "version-minor" | "version-patch" | "virtual-column" | "virtual-column-key" | "virtual-desktop" | "virtual-machine" | "virtual-private-cloud" | "visual-recognition" | "vlan" | "vmdk-disk" | "volume-block-storage" | "volume-file-storage" | "volume-object-storage" | "vpn-connection" | "vpn-policy" | "warning" | "warning-alt" | "warning-alt-filled" | "warning-alt-inverted" | "warning-alt-inverted-filled" | "warning-diamond" | "warning-filled" | "warning-hex" | "warning-hex-filled" | "warning-multiple" | "warning-other" | "warning-square" | "warning-square-filled" | "websheet" | "while-loop" | "white-paper" | "wifi-bridge" | "wifi-bridge-alt" | "wifi-not-secure" | "wifi-secure" | "wmv" | "word-cloud" | "workflow-automation" | "workspace" | "xls" | "z-hyperlink" | "z-lpar" | "z-systems" | "zip-reference" | "zos" | "zos-sysplex" | "accessibility-alt" | "accessibility-color" | "accessibility-color-filled" | "cognitive" | "collaborate" | "cough" | "credentials" | "customer" | "customer-service" | "dog-walker" | "education" | "events" | "events-alt" | "face-activated" | "face-activated-add" | "face-activated-filled" | "face-add" | "face-cool" | "face-dissatisfied" | "face-dissatisfied-filled" | "face-dizzy-filled" | "face-neutral" | "face-neutral-filled" | "face-pending" | "face-pending-filled" | "face-satisfied" | "face-satisfied-filled" | "face-wink" | "face-wink-filled" | "friendship" | "group-presentation" | "hearing" | "idea" | "movement" | "need" | "partnership" | "person-favorite" | "running" | "sales-ops" | "sight" | "smell" | "taste" | "touch-1" | "touch-1-down" | "touch-1-down-filled" | "touch-1-filled" | "touch-2" | "touch-2-filled" | "touch-interaction" | "user-access" | "user-access-locked" | "user-access-unlocked" | "user-activity" | "user-admin" | "user-avatar" | "user-avatar-filled" | "user-avatar-filled-alt" | "user-certification" | "user-data" | "user-favorite" | "user-favorite-alt" | "user-favorite-alt-filled" | "user-feedback" | "user-follow" | "user-identification" | "user-military" | "user-multiple" | "user-online" | "user-profile" | "user-profile-alt" | "user-role" | "user-service" | "user-service-desk" | "user-settings" | "user-simulation" | "user-speaker" | "user-sponsor" | "user-x-ray" | "voice-activate" | "accumulation-ice" | "accumulation-precipitation" | "accumulation-rain" | "accumulation-snow" | "agriculture-analytics" | "airline-digital-gate" | "airline-manage-gates" | "airline-passenger-care" | "airline-rapid-board" | "airport-01" | "airport-02" | "airport-location" | "alarm-add" | "alarm-subtract" | "arrival" | "bar" | "boot" | "buoy" | "cabin-care" | "cabin-care-alert" | "cabin-care-alt" | "cafe" | "calendar-add" | "calendar-add-alt" | "calendar-settings" | "calendar-tools" | "campsite" | "carbon-accounting" | "charging-station-filled" | "cloud-ceiling" | "crop-growth" | "crop-health" | "crossroads" | "crowd-report" | "crowd-report-filled" | "cyclist" | "delivery-truck" | "departure" | "dew-point" | "dew-point-filled" | "direction-bear-right-01" | "direction-bear-right-01-filled" | "direction-bear-right-02" | "direction-bear-right-02-filled" | "direction-curve" | "direction-curve-filled" | "direction-fork" | "direction-fork-filled" | "direction-loop-left" | "direction-loop-left-filled" | "direction-loop-right" | "direction-loop-right-filled" | "direction-merge" | "direction-merge-filled" | "direction-right-01" | "direction-right-01-filled" | "direction-right-02" | "direction-right-02-filled" | "direction-rotary-first-right" | "direction-rotary-first-right-filled" | "direction-rotary-right" | "direction-rotary-right-filled" | "direction-rotary-straight" | "direction-rotary-straight-filled" | "direction-sharp-turn" | "direction-sharp-turn-filled" | "direction-straight" | "direction-straight-filled" | "direction-straight-right" | "direction-straight-right-filled" | "direction-u-turn" | "direction-u-turn-filled" | "drought" | "earth-americas-filled" | "earth-europe-africa" | "earth-europe-africa-filled" | "earth-filled" | "earth-southeast-asia" | "earth-southeast-asia-filled" | "earthquake" | "energy-renewable" | "event" | "event-schedule" | "flagging-taxi" | "flight-international" | "flight-roster" | "flight-schedule" | "flood" | "flood-warning" | "fog" | "forecast-hail" | "forecast-hail-30" | "forecast-lightning" | "forecast-lightning-30" | "harbor" | "haze-night" | "help-desk" | "hospital-bed" | "humidity" | "humidity-alt" | "ice-accretion" | "ice-vision" | "lifesaver" | "location-company" | "location-company-filled" | "location-hazard" | "location-hazard-filled" | "location-heart-filled" | "location-info" | "location-info-filled" | "location-person" | "location-person-filled" | "location-save" | "location-star-filled" | "map-boundary" | "map-boundary-vegetation" | "map-center" | "map-identify" | "marine-warning" | "military-camp" | "mixed-rain-hail" | "moonrise" | "moonset" | "mostly-cloudy" | "mostly-cloudy-night" | "navaid-civil" | "navaid-dme" | "navaid-helipad" | "navaid-military" | "navaid-military-civil" | "navaid-ndb" | "navaid-ndb-dme" | "navaid-private" | "navaid-seaplane" | "navaid-tacan" | "navaid-vhfor" | "navaid-vor" | "navaid-vordme" | "navaid-vortac" | "not-available" | "observed-hail" | "observed-lightning" | "outlook-severe" | "partly-cloudy" | "partly-cloudy-night" | "passenger-drinks" | "passenger-plus" | "pedestrian" | "pedestrian-child" | "pedestrian-family" | "pest" | "picnic-area" | "plane-private" | "plane-sea" | "police" | "pressure" | "pressure-filled" | "radar-enhanced" | "radar-weather" | "rain" | "rain-drizzle" | "rain-drop" | "rain-heavy" | "rain-scattered" | "rain-scattered-night" | "ref-evapotranspiration" | "reminder-medical" | "restaurant" | "restaurant-fine" | "road-weather" | "sailboat-coastal" | "sailboat-offshore" | "satellite-radar" | "satellite-weather" | "scooter-front" | "service-desk" | "shuttle" | "sleet" | "snooze" | "snow-blizzard" | "snow-density" | "snow-heavy" | "snow-scattered" | "snow-scattered-night" | "soil-moisture" | "soil-moisture-field" | "soil-moisture-global" | "soil-temperature" | "soil-temperature-field" | "soil-temperature-global" | "stay-inside" | "stop-sign" | "stop-sign-filled" | "storm-tracker" | "temperature-celsius-alt" | "temperature-fahrenheit-alt" | "temperature-feels-like" | "temperature-frigid" | "temperature-hot" | "temperature-inversion" | "temperature-max" | "temperature-min" | "temperature-water" | "thunderstorm" | "thunderstorm-scattered" | "thunderstorm-scattered-night" | "thunderstorm-severe" | "thunderstorm-strong" | "tides" | "time-filled" | "tornado-warning" | "traffic-event" | "traffic-flow" | "traffic-flow-incident" | "traffic-incident" | "traffic-weather-incident" | "train-heart" | "train-profile" | "train-speed" | "train-ticket" | "train-time" | "tree-fall-risk" | "tropical-storm-model-tracks" | "tropical-storm-tracks" | "tropical-warning" | "uv-index-alt" | "uv-index-filled" | "van" | "vegetation-asset" | "vegetation-encroachment" | "vegetation-height" | "wave-direction" | "wave-height" | "wave-period" | "weather-front-cold" | "weather-front-stationary" | "weather-front-warm" | "weather-station" | "wind-gusts" | "wind-stream" | "windy" | "windy-dust" | "windy-snow" | "windy-strong" | "winter-warning" | "wintry-mix" | "worship" | "worship-christian" | "worship-jewish" | "worship-muslim" | "airplay-filled" | "array" | "array-booleans" | "array-dates" | "array-numbers" | "array-objects" | "array-strings" | "asset-confirm" | "asset-digital-twin" | "asset-movement" | "asset-view" | "audio-console" | "battery-error" | "breaking-change" | "build-image" | "build-run" | "building-insights-1" | "building-insights-2" | "building-insights-3" | "business-processes" | "calculator-check" | "calibrate" | "camera-action" | "cell-tower" | "channels" | "chat-bot" | "cloud-offline" | "code-hide" | "code-reference" | "connection-receive" | "connection-send" | "connection-signal" | "connection-signal-off" | "connection-two-way" | "create-link" | "cursor-1" | "cursor-2" | "debug" | "delivery-settings" | "deployment-canary" | "deployment-pattern" | "deployment-policy" | "desk-adjustable" | "development" | "devices-apps" | "drone-delivery" | "drone-front" | "drone-video" | "edge-cluster" | "edge-device" | "edge-node" | "edge-service" | "email-new" | "fetch-upload" | "fetch-upload-cloud" | "fingerprint-recognition" | "function-2" | "game-console" | "game-wireless" | "integration" | "iot-connect" | "iot-platform" | "kiosk-device" | "location-current" | "mail-all" | "mail-reply" | "media-cast" | "meter-alt" | "mobile-add" | "mobile-audio" | "mobile-check" | "mobile-crash" | "mobile-download" | "mobile-event" | "mobile-landscape" | "mobile-request" | "mobile-session" | "mobile-view" | "mobile-view-orientation" | "multiuser-device" | "outage" | "phone-ip" | "platforms" | "plug-filled" | "port-input" | "port-output" | "portfolio" | "radio-combat" | "radio-push-to-talk" | "ruler-alt" | "scales" | "scales-tipped" | "scalpel" | "serverless-fleet" | "service-id" | "signal-strength" | "tool-box" | "tool-kit" | "tools-alt" | "transmission-lte" | "trigger" | "web-services-cluster" | "web-services-container" | "web-services-definition" | "web-services-service" | "web-services-task" | "web-services-task-definition-version" | "wifi-controller" | "wikis">): import("react").JSX.Element;
2403
+ ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"boolean" | "undefined" | "object" | "function" | "map" | "filter" | "rotate" | "scale" | "opacity" | "translate" | "running" | "error" | "search" | "split" | "repeat" | "anchor" | "link" | "categories" | "query" | "image" | "checkbox" | "menu" | "radio" | "timer" | "list" | "key" | "row" | "column" | "area" | "code" | "html" | "label" | "legend" | "meter" | "script" | "table" | "template" | "time" | "video" | "stop" | "svg" | "view" | "loop" | "xml" | "align-horizontal-center" | "align-horizontal-left" | "align-horizontal-right" | "align-vertical-bottom" | "align-vertical-center" | "align-vertical-top" | "application" | "archive" | "arrow-up-left" | "arrow-up-right" | "asterisk" | "at" | "attachment" | "augmented-reality" | "barcode" | "binoculars" | "bluetooth" | "bluetooth-off" | "book" | "bookmark" | "bullhorn" | "certificate" | "chat" | "chip" | "close-outline" | "closed-caption" | "collapse-all" | "compare" | "contrast" | "crop" | "delete" | "diamond-outline" | "distribute-horizontal-center" | "distribute-horizontal-left" | "distribute-horizontal-right" | "distribute-vertical-bottom" | "distribute-vertical-center" | "distribute-vertical-top" | "download" | "drag-horizontal" | "drag-vertical" | "email" | "expand-all" | "export" | "filter-remove" | "fit-to-screen" | "flag" | "flash-off" | "forum" | "gender-female" | "gender-male" | "grid" | "group" | "hdr" | "help" | "image-search" | "ip" | "keyboard" | "keyboard-off" | "lasso" | "launch" | "license" | "login" | "logout" | "merge" | "notebook" | "omega" | "package" | "page-first" | "page-last" | "pan-horizontal" | "pan-vertical" | "pin" | "play-outline" | "radar" | "recycle" | "redo" | "reflect-horizontal" | "reflect-vertical" | "reminder" | "restart" | "rewind-10" | "rewind-30" | "rewind-5" | "router" | "rss" | "satellite" | "security" | "send" | "skip-forward-outline" | "smoke" | "table-of-contents" | "tag" | "tag-edit" | "tank" | "ticket" | "trash-can" | "two-factor-authentication" | "undo" | "upload" | "usb" | "voicemail" | "vpn" | "webhook" | "wifi" | "wifi-off" | "account" | "bee" | "corn" | "sprout" | "tree" | "beta" | "bat" | "fish" | "linux" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-right" | "arrow-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "reply" | "reply-all" | "share" | "shuffle" | "equalizer" | "headphones" | "headset" | "music" | "volume-mute" | "waveform" | "battery-charging" | "car" | "gas-station" | "snowflake" | "currency-rupee" | "finance" | "piggy-bank" | "receipt" | "wallet" | "battery-low" | "apple" | "box" | "kubernetes" | "devices" | "phone" | "phone-incoming" | "phone-off" | "phone-outgoing" | "phone-settings" | "face-mask" | "cloud" | "cloud-download" | "cloud-upload" | "eyedropper" | "alarm" | "calendar" | "api" | "laptop" | "tablet" | "watch" | "draw" | "pen" | "ruler" | "folder" | "folder-off" | "folder-open" | "cookie" | "close" | "compass" | "earth" | "layers" | "tools" | "medication" | "gift" | "camera" | "fire" | "home" | "pause" | "play" | "power" | "printer" | "skip-forward" | "solar-panel" | "theater" | "video-off" | "wind-power" | "calculator" | "chart-bar" | "chart-bar-stacked" | "chart-bubble" | "chart-histogram" | "chart-line" | "chart-pie" | "chart-waterfall" | "sigma" | "hospital" | "stethoscope" | "microphone" | "microphone-off" | "palm-tree" | "tsunami" | "bus" | "hail" | "taxi" | "train" | "tram" | "run" | "raw" | "store" | "microscope" | "rocket" | "information" | "circle-outline" | "cube" | "hexagon-outline" | "pentagon-outline" | "square-outline" | "star" | "star-half" | "triangle-down-outline" | "triangle-outline" | "basketball" | "bicycle" | "soccer" | "swim" | "tennis" | "tennis-ball" | "trophy" | "border-bottom" | "border-left" | "border-none" | "border-right" | "border-top" | "sort-ascending" | "sort-descending" | "drone" | "helicopter" | "scooter" | "road" | "traffic-cone" | "apps" | "flash" | "temperature-celsius" | "temperature-fahrenheit" | "umbrella" | "currency-dollar" | "currency-euro" | "currency-pound" | "currency-yen" | "document" | "gif" | "hashtag" | "identification" | "language" | "moon" | "paint-brush" | "qr-code" | "shopping-bag" | "shopping-cart" | "sun" | "user" | "accessibility" | "activity" | "airplay" | "aperture" | "badge" | "baggage-claim" | "battery-full" | "battery-warning" | "bot" | "bring-to-front" | "building" | "car-front" | "chart-area" | "chart-candlestick" | "chart-column" | "chart-network" | "chart-scatter" | "cloudy" | "construction" | "copy" | "currency" | "equal-approximately" | "folders" | "gem" | "globe" | "haze" | "heading" | "hotel" | "hourglass" | "maximize" | "milestone" | "minimize" | "mountain" | "move" | "plane" | "plug" | "save" | "scan" | "send-to-back" | "settings" | "shapes" | "skip-back" | "spell-check" | "stamp" | "sunrise" | "sunset" | "terminal" | "text-align-center" | "text-align-justify" | "text-wrap" | "thumbs-down" | "thumbs-up" | "tornado" | "transgender" | "unlink" | "wheat" | "zoom-in" | "zoom-out" | "edit" | "ai" | "align-box-bottom-center" | "align-box-bottom-left" | "align-box-bottom-right" | "align-box-top-center" | "align-box-top-left" | "align-box-top-right" | "arrows-horizontal" | "arrows-vertical" | "assembly" | "asset" | "bookmark-filled" | "caret-down" | "caret-left" | "caret-right" | "caret-up" | "carousel-horizontal" | "carousel-vertical" | "category" | "chart-radar" | "chart-treemap" | "circle-filled" | "csv" | "currency-baht" | "currency-lira" | "currency-shekel" | "currency-won" | "cut" | "dashboard" | "edit-off" | "filter-edit" | "flag-filled" | "gas-station-filled" | "growth" | "jpg" | "json" | "lasso-polygon" | "location" | "location-filled" | "location-heart" | "location-star" | "microphone-filled" | "notification" | "notification-off" | "number-0" | "number-1" | "number-2" | "number-3" | "number-4" | "number-5" | "number-6" | "number-7" | "number-8" | "number-9" | "page-break" | "password" | "pdf" | "percentage" | "phone-filled" | "pills" | "pin-filled" | "playlist" | "png" | "quotes" | "report" | "rotate-clockwise" | "sdk" | "settings-check" | "shopping-cart-minus" | "shopping-cart-plus" | "sql" | "star-filled" | "table-alias" | "table-shortcut" | "temperature" | "text-color" | "trophy-filled" | "txt" | "user-filled" | "uv-index" | "video-filled" | "zip" | "zoom-in-area" | "zoom-out-area" | "zoom-reset" | "app" | "battery-half" | "hurricane" | "intersect" | "lightning" | "paragraph" | "person" | "snow" | "stickies" | "subtract" | "tablet-landscape" | "tropical-storm" | "volume-down" | "volume-up" | "earth-americas" | "face-dizzy" | "gears" | "charging-station" | "industry" | "monument" | "paste" | "comments" | "mobile" | "sim-card" | "battery-empty" | "battery-quarter" | "blog" | "ai-generate" | "bring-forward" | "code-block" | "draggable" | "send-backward" | "fire-fill" | "add" | "add-alt" | "add-comment" | "add-filled" | "add-large" | "align-box-middle-center" | "align-box-middle-left" | "align-box-middle-right" | "area-custom" | "arithmetic-mean" | "arithmetic-median" | "arrange" | "arrange-horizontal" | "arrange-vertical" | "arrow-shift-down" | "asleep" | "asleep-filled" | "automatic" | "awake" | "bookmark-add" | "border-full" | "bottom-panel-close" | "bottom-panel-close-filled" | "bottom-panel-open" | "bottom-panel-open-filled" | "branch" | "brightness-contrast" | "build-tool" | "button-centered" | "button-flush-left" | "calls" | "calls-all" | "calls-incoming" | "caret-sort" | "caret-sort-down" | "caret-sort-up" | "catalog-publish" | "center-circle" | "center-square" | "center-to-fit" | "change-catalog" | "chat-launch" | "chat-off" | "checkbox-checked" | "checkbox-checked-filled" | "checkbox-indeterminate" | "checkbox-indeterminate-filled" | "chevron-down-outline" | "chevron-mini" | "chevron-sort" | "chevron-sort-down" | "chevron-sort-up" | "chevron-up-outline" | "choices" | "choose-item" | "circle-dash" | "circle-solid" | "clean" | "close-filled" | "close-large" | "collapse-categories" | "color-palette" | "color-switch" | "column-delete" | "column-insert" | "commit" | "connect" | "connect-recursive" | "connect-reference" | "connect-source" | "connect-target" | "continue" | "continue-filled" | "continuous-deployment" | "continuous-integration" | "convert-to-cloud" | "corner" | "cut-out" | "dashboard-reference" | "data-set-encryption" | "demo" | "deploy" | "deploy-rules" | "diamond-solid" | "document-horizontal" | "document-vertical" | "dot-mark" | "down-to-bottom" | "drill-back" | "drill-down" | "drill-through" | "drop-photo" | "drop-photo-filled" | "erase" | "exit" | "expand-categories" | "explore" | "fade" | "favorite" | "favorite-filled" | "favorite-half" | "filter-reset" | "fit-to-height" | "fit-to-width" | "flash-filled" | "flash-off-filled" | "follow-up-work-order" | "fork" | "forward-10" | "forward-30" | "forward-5" | "fragments" | "function-math" | "funnel-sequence" | "funnel-sort" | "global-filters" | "gradient" | "graph-aggregator" | "group-objects" | "group-objects-new" | "group-objects-save" | "hexagon-solid" | "hexagon-vertical-outline" | "hexagon-vertical-solid" | "horizontal-view" | "image-copy" | "image-reference" | "image-search-alt" | "infinity-symbol" | "insert" | "insert-page" | "insert-syntax" | "inspection" | "jump-link" | "layers-external" | "light" | "light-filled" | "list-boxes" | "list-bulleted" | "list-checked" | "list-checked-mirror" | "list-numbered" | "list-numbered-mirror" | "locked" | "mac-command" | "mac-option" | "mac-shift" | "magic-wand" | "magic-wand-filled" | "manage-protection" | "microphone-off-filled" | "migrate" | "migrate-alt" | "modified-newest" | "modified-oldest" | "new-tab" | "next-filled" | "next-outline" | "no-image" | "not-sent" | "not-sent-filled" | "notification-counter" | "notification-filled" | "notification-new" | "notification-off-filled" | "open-panel-bottom" | "open-panel-filled-bottom" | "open-panel-filled-left" | "open-panel-filled-right" | "open-panel-filled-top" | "open-panel-left" | "open-panel-right" | "open-panel-top" | "operations-field" | "operations-record" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "overlay" | "page-number" | "paint-brush-alt" | "pause-filled" | "pause-future" | "pause-outline" | "pause-outline-filled" | "pause-past" | "pen-fountain" | "pentagon-down-outline" | "pentagon-down-solid" | "pentagon-left-outline" | "pentagon-left-solid" | "pentagon-right-outline" | "pentagon-right-solid" | "pentagon-solid" | "percentage-filled" | "phone-application" | "phone-block" | "phone-block-filled" | "phone-incoming-filled" | "phone-off-filled" | "phone-outgoing-filled" | "phone-voice" | "phone-voice-filled" | "pipelines" | "pivot-horizontal" | "pivot-vertical" | "play-filled" | "play-filled-alt" | "play-outline-filled" | "pop-in" | "previous-filled" | "previous-outline" | "process" | "process-automate" | "promote" | "pull-request" | "punctuation-check" | "radio-button" | "radio-button-checked" | "read-me" | "recently-viewed" | "recommend" | "recording" | "recording-filled" | "recording-filled-alt" | "renew" | "repeat-one" | "replicate" | "request-quote" | "reset" | "reset-alt" | "retry-failed" | "return" | "review" | "right-panel-close" | "right-panel-close-filled" | "right-panel-open" | "right-panel-open-filled" | "rotate-clockwise-alt" | "rotate-clockwise-alt-filled" | "rotate-clockwise-filled" | "rotate-counterclockwise" | "rotate-counterclockwise-alt" | "rotate-counterclockwise-alt-filled" | "rotate-counterclockwise-filled" | "row-delete" | "row-insert" | "run-mirror" | "save-model" | "scan-alt" | "scan-disabled" | "screen" | "screen-off" | "search-advanced" | "search-locate" | "search-locate-mirror" | "select-01" | "select-02" | "select-window" | "send-alt" | "send-alt-filled" | "send-filled" | "settings-adjust" | "settings-edit" | "settings-services" | "settings-view" | "shape-except" | "shape-exclude" | "shape-intersect" | "shape-join" | "shape-unite" | "shrink-screen" | "shrink-screen-filled" | "side-panel-close" | "side-panel-close-filled" | "side-panel-open" | "side-panel-open-filled" | "skip-back-filled" | "skip-back-outline" | "skip-back-outline-filled" | "skip-back-outline-solid" | "skip-back-solid-filled" | "skip-forward-filled" | "skip-forward-outline-filled" | "skip-forward-outline-solid" | "skip-forward-solid-filled" | "sort-remove" | "sorting-a-to-z" | "sorting-highest-to-lowest-number" | "sorting-lowest-to-highest-number" | "sorting-z-to-a" | "split-screen" | "spray-paint" | "stop-filled" | "stop-filled-alt" | "stop-outline" | "stop-outline-filled" | "strategy-play" | "subtract-alt" | "subtract-filled" | "subtract-large" | "switcher" | "sync-settings" | "tag-export" | "tag-group" | "tag-import" | "tag-none" | "test-tool" | "text-align-left" | "text-align-mixed" | "text-align-right" | "text-all-caps" | "text-bold" | "text-clear-format" | "text-creation" | "text-fill" | "text-font" | "text-footnote" | "text-highlight" | "text-indent" | "text-indent-less" | "text-indent-more" | "text-italic" | "text-kerning" | "text-leading" | "text-line-spacing" | "text-long-paragraph" | "text-new-line" | "text-scale" | "text-selection" | "text-short-paragraph" | "text-small-caps" | "text-strikethrough" | "text-subscript" | "text-superscript" | "text-tracking" | "text-underline" | "text-vertical-alignment" | "thumbnail-1" | "thumbnail-2" | "thumbs-down-filled" | "thumbs-up-double" | "thumbs-up-double-filled" | "thumbs-up-filled" | "timing-belt" | "tour" | "transpose" | "triangle-down-solid" | "triangle-left-outline" | "triangle-left-solid" | "triangle-right-outline" | "triangle-right-solid" | "triangle-solid" | "ungroup-objects" | "unlocked" | "unsaved" | "up-to-top" | "update-complete" | "update-now" | "upgrade" | "vertical-view" | "video-add" | "video-chat" | "video-off-filled" | "video-player" | "view-filled" | "view-mode-1" | "view-mode-2" | "view-next" | "view-off" | "view-off-filled" | "volume-down-alt" | "volume-down-filled" | "volume-down-filled-alt" | "volume-mute-filled" | "volume-up-alt" | "volume-up-filled" | "volume-up-filled-alt" | "workspace-import" | "x-axis" | "y-axis" | "z-axis" | "zoom-area" | "zoom-fit" | "carbon" | "carbon-for-aem" | "carbon-for-ibm-dotcom" | "carbon-for-ibm-product" | "carbon-for-mobile" | "carbon-for-salesforce" | "carbon-ui-builder" | "cloud-app" | "edt-loop" | "ibm-cloud" | "ibm-security" | "logo-angular" | "logo-ansible-community" | "logo-bluesky" | "logo-digg" | "logo-discord" | "logo-facebook" | "logo-figma" | "logo-flickr" | "logo-git" | "logo-github" | "logo-gitlab" | "logo-glassdoor" | "logo-instagram" | "logo-invision" | "logo-jupyter" | "logo-keybase" | "logo-kubernetes" | "logo-linkedin" | "logo-livestream" | "logo-mastodon" | "logo-medium" | "logo-npm" | "logo-openshift" | "logo-pinterest" | "logo-python" | "logo-quora" | "logo-r-script" | "logo-react" | "logo-red-hat-ai-instructlab-on-ibm-cloud" | "logo-red-hat-ansible" | "logo-sketch" | "logo-skype" | "logo-slack" | "logo-snapchat" | "logo-svelte" | "logo-tumblr" | "logo-twitter" | "logo-vmware" | "logo-vmware-alt" | "logo-vue" | "logo-wechat" | "logo-x" | "logo-xing" | "logo-yelp" | "logo-youtube" | "sap" | "watson" | "watson-machine-learning" | "ai-business-impact-assessment" | "ai-financial-sustainability-check" | "ai-governance-lifecycle" | "ai-governance-tracked" | "ai-governance-untracked" | "ai-label" | "ai-launch" | "ai-recommend" | "apple-dash" | "autoscaling" | "bee-bat" | "block-storage" | "bottles-01" | "bottles-01-dash" | "bottles-02" | "bottles-02-dash" | "bottles-container" | "business-metrics" | "chemistry" | "chemistry-reference" | "cics-explorer" | "cics-transaction-server-zos" | "cloud-auditing" | "cloud-foundry-1" | "cloud-foundry-2" | "cloud-logging" | "cloud-monitoring" | "cloud-registry" | "cloud-satellite" | "cloud-satellite-config" | "cloud-satellite-link" | "cloud-satellite-services" | "content-delivery-network" | "coronavirus" | "currency-ruble" | "database-datastax" | "database-elastic" | "database-enterprise-db2" | "database-enterprisedb" | "database-etcd" | "database-mongodb" | "database-postgresql" | "database-rabbit" | "database-redis" | "delivery" | "delivery-add" | "delivery-parcel" | "direct-link" | "dns-services" | "drink-01" | "drink-02" | "enterprise" | "exam-mode" | "financial-assets" | "fish-multiple" | "flow-logs-vpc" | "fragile" | "fruit-bowl" | "health-cross" | "ibm-ai-on-z" | "ibm-aiops-insights" | "ibm-api-connect" | "ibm-app-connect-enterprise" | "ibm-application-and-discovery-delivery-intelligence" | "ibm-aspera" | "ibm-bluepay" | "ibm-cloud-app-id" | "ibm-cloud-backup-and-recovery" | "ibm-cloud-backup-service-vpc" | "ibm-cloud-bare-metal-server" | "ibm-cloud-bare-metal-servers-vpc" | "ibm-cloud-citrix-daas" | "ibm-cloud-code-engine" | "ibm-cloud-continuous-delivery" | "ibm-cloud-databases" | "ibm-cloud-dedicated-host" | "ibm-cloud-direct-link-1-connect" | "ibm-cloud-direct-link-1-dedicated" | "ibm-cloud-direct-link-1-dedicated-hosting" | "ibm-cloud-direct-link-1-exchange" | "ibm-cloud-direct-link-2-connect" | "ibm-cloud-direct-link-2-dedicated" | "ibm-cloud-direct-link-2-dedicated-hosting" | "ibm-cloud-essential-security-and-observability-services" | "ibm-cloud-event-notification" | "ibm-cloud-event-streams" | "ibm-cloud-for-education" | "ibm-cloud-gate-keeper" | "ibm-cloud-hpc" | "ibm-cloud-hsm" | "ibm-cloud-hyper-protect-crypto-services" | "ibm-cloud-hyper-protect-dbaas" | "ibm-cloud-hyper-protect-vs" | "ibm-cloud-internet-services" | "ibm-cloud-ipsec-vpn" | "ibm-cloud-key-protect" | "ibm-cloud-kubernetes-service" | "ibm-cloud-logging" | "ibm-cloud-mass-data-migration" | "ibm-cloud-observability" | "ibm-cloud-pak-applications" | "ibm-cloud-pak-business-automation" | "ibm-cloud-pak-data" | "ibm-cloud-pak-integration" | "ibm-cloud-pak-manta-automated-data-lineage" | "ibm-cloud-pak-multicloud-mgmt" | "ibm-cloud-pak-netezza" | "ibm-cloud-pak-network-automation" | "ibm-cloud-pak-security" | "ibm-cloud-pak-system" | "ibm-cloud-pak-watson-aiops" | "ibm-cloud-pal" | "ibm-cloud-privileged-access-gateway" | "ibm-cloud-projects" | "ibm-cloud-resiliency" | "ibm-cloud-secrets-manager" | "ibm-cloud-security" | "ibm-cloud-security-compliance-center" | "ibm-cloud-security-compliance-center-workload-protection" | "ibm-cloud-security-groups" | "ibm-cloud-subnets" | "ibm-cloud-sysdig-secure" | "ibm-cloud-transit-gateway" | "ibm-cloud-virtual-server-classic" | "ibm-cloud-virtual-server-vpc" | "ibm-cloud-vpc" | "ibm-cloud-vpc-block-storage-snapshots" | "ibm-cloud-vpc-client-vpn" | "ibm-cloud-vpc-endpoints" | "ibm-cloud-vpc-file-storage" | "ibm-cloud-vpc-images" | "ibm-cloudant" | "ibm-consulting-advantage-agent" | "ibm-consulting-advantage-application" | "ibm-consulting-advantage-assistant" | "ibm-content-services" | "ibm-data-power" | "ibm-data-product-exchange" | "ibm-data-replication" | "ibm-databand" | "ibm-datastage" | "ibm-db2" | "ibm-db2-alt" | "ibm-db2-warehouse" | "ibm-deployable-architecture" | "ibm-devops-control" | "ibm-dynamic-route-server" | "ibm-elo-automotive-compliance" | "ibm-elo-engineering-insights" | "ibm-elo-method-composer" | "ibm-elo-publishing" | "ibm-engineering-lifecycle-mgmt" | "ibm-engineering-requirements-doors-next" | "ibm-engineering-systems-design-rhapsody" | "ibm-engineering-systems-design-rhapsody-model-manager" | "ibm-engineering-systems-design-rhapsody-sn1" | "ibm-engineering-systems-design-rhapsody-sn2" | "ibm-engineering-test-mgmt" | "ibm-engineering-workflow-mgmt" | "ibm-event-automation" | "ibm-event-endpoint-mgmt" | "ibm-event-processing" | "ibm-event-streams" | "ibm-federated-api-management" | "ibm-gcm" | "ibm-global-storage-architecture" | "ibm-granite" | "ibm-hybrid-control-plane" | "ibm-ibv" | "ibm-instana" | "ibm-jrs" | "ibm-knowledge-catalog" | "ibm-knowledge-catalog-premium" | "ibm-knowledge-catalog-standard" | "ibm-launchpad-s4" | "ibm-lpa" | "ibm-lqe" | "ibm-machine-learning-for-zos" | "ibm-match-360" | "ibm-maximo-application-suite" | "ibm-mq" | "ibm-open-enterprise-languages" | "ibm-openshift-container-platform-on-vpc-for-regulated-industries" | "ibm-planning-analytics" | "ibm-power-vs" | "ibm-power-vs-private-cloud" | "ibm-power-with-vpc" | "ibm-private-path-services" | "ibm-process-mining" | "ibm-quantum-safe-advisor" | "ibm-quantum-safe-explorer" | "ibm-quantum-safe-remediator" | "ibm-saas-console" | "ibm-sap-on-power" | "ibm-secure-infrastructure-on-vpc-for-regulated-industries" | "ibm-security-services" | "ibm-software-watsonx-data-analyze-and-process" | "ibm-software-watsonx-data-structured-enrichment" | "ibm-software-watsonx-data-structured-import" | "ibm-software-watsonx-data-unstructured-enrichment" | "ibm-software-watsonx-data-unstructured-import" | "ibm-software-watsonx-document-library" | "ibm-streamsets" | "ibm-telehealth" | "ibm-tenet" | "ibm-test-accelerator-for-z" | "ibm-toolchain" | "ibm-turbonomic" | "ibm-unstructured-data-processor" | "ibm-vpn-for-vpc" | "ibm-vsi-on-vpc-for-regulated-industries" | "ibm-watson-assistant" | "ibm-watson-discovery" | "ibm-watson-knowledge-catalog" | "ibm-watson-knowledge-studio" | "ibm-watson-language-translator" | "ibm-watson-machine-learning" | "ibm-watson-natural-language-classifier" | "ibm-watson-natural-language-understanding" | "ibm-watson-openscale" | "ibm-watson-orders" | "ibm-watson-query" | "ibm-watson-speech-to-text" | "ibm-watson-studio" | "ibm-watson-text-to-speech" | "ibm-watson-tone-analyzer" | "ibm-watsonx-assistant" | "ibm-watsonx-code-assistant" | "ibm-watsonx-code-assistant-for-enterprise-java-applications" | "ibm-watsonx-code-assistant-for-z" | "ibm-watsonx-code-assistant-for-z-refactor" | "ibm-watsonx-code-assistant-for-z-validation-assistant" | "ibm-watsonx-orchestrate" | "ibm-wazi-deploy" | "ibm-webmethods-api-gateway" | "ibm-webmethods-api-studio" | "ibm-webmethods-b2b-integration" | "ibm-webmethods-developer-portal" | "ibm-webmethods-hybrid-integration" | "ibm-webmethods-integration" | "ibm-webmethods-integration-server" | "ibm-webmethods-managed-file-transfer" | "ibm-z-cloud-mod-stack" | "ibm-z-cloud-provisioning" | "ibm-z-environments-dev-sec-ops" | "ibm-z-open-editor" | "ibm-z-os" | "ibm-z-os-ai-control-interface" | "ibm-z-os-containers" | "ibm-z-os-package-manager" | "ibm-z-processor-capacity-reference" | "image-medical" | "infrastructure-classic" | "inventory-management" | "keep-dry" | "load-balancer-vpc" | "machine-learning" | "machine-learning-model" | "medication-alert" | "medication-reminder" | "ml-model-reference" | "model" | "model-foundation" | "model-reference" | "model-tuned" | "money" | "monster" | "mysql" | "noodle-bowl" | "object-storage" | "piggy-bank-slot" | "pills-add" | "pills-subtract" | "power-enterprise-pools-metered-capacity-integration" | "power-virtual-server-disaster-recovery-automation" | "pricing-consumption" | "pricing-container" | "pricing-quick-proposal" | "pricing-tailored" | "pricing-traditional" | "prompt-session" | "prompt-template" | "purchase" | "qiskit" | "question-answering" | "rag" | "scis-control-tower" | "scis-transparent-supply" | "shopping-cart-arrow-down" | "shopping-cart-arrow-up" | "shopping-cart-clear" | "shopping-cart-error" | "shopping-catalog" | "stack-limitation" | "strawberry" | "sustainability" | "this-side-up" | "tuning" | "two-person-lift" | "virtual-private-cloud-alt" | "vlan-ibm" | "watsonx" | "watsonx-ai" | "watsonx-data" | "watsonx-governance" | "wireless-checkout" | "_4k" | "_4k-filled" | "accept-action-usage" | "action-definition" | "action-usage" | "add-child-node" | "add-parent-node" | "aggregator-count-rows" | "aggregator-recalculation" | "analytics" | "analytics-custom" | "analytics-reference" | "api-1" | "api-key" | "app-connectivity" | "application-mobile" | "application-virtual" | "application-web" | "assembly-cluster" | "assembly-reference" | "assignment-action-usage" | "async" | "attribute-definition" | "attribute-usage" | "avro" | "bare-metal-server" | "bare-metal-server-01" | "bare-metal-server-02" | "base-document-set" | "bastion-host" | "batch-job" | "batch-job-step" | "binding-01" | "binding-02" | "bland-altman-plot" | "block-storage-alt" | "blockchain" | "boot-volume" | "boot-volume-alt" | "box-extra-large" | "box-large" | "box-medium" | "box-plot" | "box-small" | "bsam-qsam-zedc" | "cad" | "calculation" | "calculation-alt" | "calendar-heat-map" | "catalog" | "category-add" | "category-and" | "category-new" | "category-new-each" | "cda" | "certificate-check" | "character-decimal" | "character-fraction" | "character-integer" | "character-lower-case" | "character-negative-number" | "character-patterns" | "character-sentence-case" | "character-upper-case" | "character-whole-number" | "chart-3d" | "chart-area-smooth" | "chart-area-stepper" | "chart-average" | "chart-bar-floating" | "chart-bar-overlay" | "chart-bar-target" | "chart-bubble-packed" | "chart-bullet" | "chart-cluster-bar" | "chart-column-floating" | "chart-column-target" | "chart-combo" | "chart-combo-stacked" | "chart-custom" | "chart-dual-y-axis" | "chart-error-bar" | "chart-error-bar-alt" | "chart-evaluation" | "chart-high-low" | "chart-line-data" | "chart-line-smooth" | "chart-logistic-regression" | "chart-marimekko" | "chart-maximum" | "chart-median" | "chart-minimum" | "chart-multi-line" | "chart-multitype" | "chart-parallel" | "chart-planning-waterfall" | "chart-point" | "chart-population" | "chart-radial" | "chart-relationship" | "chart-ring" | "chart-river" | "chart-rose" | "chart-spiral" | "chart-stacked" | "chart-stepper" | "chart-sunburst" | "chart-t-sne" | "chart-venn-diagram" | "chart-violin-plot" | "chart-win-loss" | "chat-operational" | "checkmark" | "checkmark-filled" | "checkmark-filled-error" | "checkmark-filled-warning" | "checkmark-outline" | "checkmark-outline-error" | "checkmark-outline-warning" | "child-node" | "choropleth-map" | "cics-cmas" | "cics-db2-connection" | "cics-program" | "cics-region" | "cics-region-alt" | "cics-region-routing" | "cics-region-target" | "cics-sit" | "cics-sit-overrides" | "cics-system-group" | "cics-wui-region" | "cicsplex" | "circle-packing" | "classic-batch" | "classification" | "classifier-language" | "closed-caption-alt" | "closed-caption-filled" | "cloud-alerting" | "cloud-data-ops" | "cloud-service-management" | "cloud-services" | "code-signing-service" | "column-dependency" | "communication-unified" | "concept" | "condition-point" | "condition-wait-point" | "connection-flow-usage" | "connection-usage" | "constraint" | "container-engine" | "container-image" | "container-image-pull" | "container-image-push" | "container-image-push-pull" | "container-registry" | "container-runtime" | "container-runtime-monitor" | "container-services" | "container-software" | "content-view" | "copy-file" | "copy-link" | "cost" | "cost-total" | "coupling-facility-encryption" | "course" | "covariate" | "cross-tab" | "cube-view" | "data-1" | "data-2" | "data-accessor" | "data-analytics" | "data-backup" | "data-base" | "data-base-alt" | "data-bin" | "data-blob" | "data-categorical" | "data-center" | "data-check" | "data-class" | "data-collection" | "data-connected" | "data-definition" | "data-diode" | "data-enrichment" | "data-enrichment-add" | "data-error" | "data-format" | "data-player" | "data-quality-definition" | "data-reference" | "data-refinery" | "data-refinery-reference" | "data-regular" | "data-set" | "data-share" | "data-structured" | "data-table" | "data-table-reference" | "data-unreal" | "data-unstructured" | "data-view" | "data-view-alt" | "data-vis-1" | "data-vis-2" | "data-vis-3" | "data-vis-4" | "data-volume" | "data-volume-alt" | "database-messaging" | "datastore" | "db2-buffer-pool" | "db2-data-sharing-group" | "db2-database" | "decision-node" | "decision-tree" | "dependency" | "deployment-unit-data" | "deployment-unit-execution" | "deployment-unit-installation" | "deployment-unit-presentation" | "deployment-unit-technical-data" | "deployment-unit-technical-execution" | "deployment-unit-technical-installation" | "deployment-unit-technical-presentation" | "dfsort-ibm-z-sort" | "diagram" | "diagram-reference" | "digital-identity" | "directory-domain" | "doc" | "document-add" | "document-attachment" | "document-audio" | "document-blank" | "document-comment" | "document-configuration" | "document-download" | "document-epdf" | "document-export" | "document-import" | "document-multiple-01" | "document-multiple-02" | "document-pdf" | "document-preliminary" | "document-processor" | "document-protected" | "document-requirements" | "document-security" | "document-sentiment" | "document-set" | "document-signed" | "document-sketch" | "document-subject" | "document-subtract" | "document-tasks" | "document-unknown" | "document-unprotected" | "document-video" | "document-view" | "document-word-processor" | "document-word-processor-reference" | "documentation" | "double-axis-chart-bar" | "double-axis-chart-column" | "double-integer" | "downstream" | "driver-analysis" | "dvr" | "edge-node-alt" | "element-picker" | "emissions-management" | "encryption" | "enumeration-definition" | "enumeration-usage" | "error-filled" | "error-outline" | "event-change" | "event-incident" | "event-warning" | "executable-program" | "factor" | "feature-membership" | "feature-membership-filled" | "feature-picker" | "feature-typing" | "file-storage" | "firewall" | "firewall-classic" | "floating-ip" | "floorplan" | "flow" | "flow-connection" | "flow-data" | "flow-modeler" | "flow-modeler-reference" | "flow-stream" | "flow-stream-reference" | "folder-add" | "folder-details" | "folder-details-reference" | "folder-move-to" | "folder-parent" | "folder-shared" | "for-loop" | "fork-node" | "gamification" | "gateway" | "gateway-api" | "gateway-mail" | "gateway-public" | "gateway-security" | "gateway-user-access" | "gateway-vpn" | "gem-reference" | "generate-pdf" | "global-loan-and-trial" | "graphical-data-flow" | "group-access" | "group-account" | "group-resource" | "group-security" | "gui" | "gui-management" | "hardware-security-module" | "hd" | "hd-filled" | "heat-map" | "heat-map-02" | "heat-map-03" | "heat-map-stocks" | "help-filled" | "html-reference" | "http" | "hybrid-networking" | "hybrid-networking-alt" | "id-management" | "if-action" | "image-service" | "image-store-local" | "import-export" | "important" | "improve-relevance" | "in-progress" | "in-progress-error" | "in-progress-warning" | "incident-reporter" | "incomplete" | "incomplete-cancel" | "incomplete-error" | "incomplete-warning" | "increase-level" | "information-disabled" | "information-filled" | "information-square" | "information-square-filled" | "instance-bx" | "instance-classic" | "instance-cx" | "instance-mx" | "instance-virtual" | "intent-request-active" | "intent-request-create" | "intent-request-heal" | "intent-request-inactive" | "intent-request-scale-in" | "intent-request-scale-out" | "intent-request-uninstall" | "intent-request-upgrade" | "interactions" | "interface-definition" | "interface-definition-alt" | "interface-usage" | "interface-usage-1" | "interface-usage-alt" | "intrusion-prevention" | "iso" | "iso-filled" | "iso-outline" | "item-definition" | "item-usage" | "job-daemon" | "job-run" | "join-full" | "join-inner" | "join-inner-alt" | "join-left" | "join-left-outer" | "join-node" | "join-outer" | "join-right" | "join-right-outer" | "js-error" | "json-reference" | "kubelet" | "kubernetes-control-plane-node" | "kubernetes-ip-address" | "kubernetes-operator" | "kubernetes-pod" | "kubernetes-worker-node" | "letter-aa" | "letter-bb" | "letter-cc" | "letter-dd" | "letter-ee" | "letter-ff" | "letter-gg" | "letter-hh" | "letter-ii" | "letter-jj" | "letter-kk" | "letter-ll" | "letter-mm" | "letter-nn" | "letter-oo" | "letter-pp" | "letter-qq" | "letter-rr" | "letter-ss" | "letter-tt" | "letter-uu" | "letter-vv" | "letter-ww" | "letter-xx" | "letter-yy" | "letter-zz" | "license-draft" | "license-global" | "license-maintenance" | "license-maintenance-draft" | "license-third-party" | "license-third-party-draft" | "linux-alt" | "linux-namespace" | "list-dropdown" | "load-balancer-application" | "load-balancer-classic" | "load-balancer-global" | "load-balancer-listener" | "load-balancer-local" | "load-balancer-network" | "load-balancer-pool" | "locked-and-blocked" | "logical-partition" | "loop-alt" | "mac" | "managed-solutions" | "marginal" | "math-curve" | "media-library" | "media-library-filled" | "merge-node" | "message-queue" | "microservices-1" | "microservices-2" | "misuse" | "misuse-outline" | "mobility-services" | "model-alt" | "model-builder" | "model-builder-reference" | "mov" | "mp3" | "mp4" | "mpeg" | "mpg2" | "music-add" | "music-remove" | "name-space" | "network-1" | "network-2" | "network-3" | "network-3-reference" | "network-4" | "network-4-reference" | "network-admin-control" | "network-enterprise" | "network-interface" | "network-overlay" | "network-public" | "network-time-protocol" | "no-ticket" | "nominal" | "non-certified" | "notebook-reference" | "notifications-paused" | "null-sign" | "number-small-0" | "number-small-1" | "number-small-2" | "number-small-3" | "number-small-4" | "number-small-5" | "number-small-6" | "number-small-7" | "number-small-8" | "number-small-9" | "object-storage-alt" | "order-details" | "ordinal" | "package-node" | "package-text-analysis" | "panel-expansion" | "parameter" | "parent-child" | "parent-node" | "part-definition" | "part-usage" | "partition-auto" | "partition-collection" | "partition-repartition" | "partition-same" | "partition-specific" | "pcn-e-node" | "pcn-military" | "pcn-p-node" | "pcn-z-node" | "pdf-reference" | "pending" | "pending-filled" | "perform-action" | "phrase-sentiment" | "plan" | "platform-automation" | "point-of-presence" | "policy" | "popup" | "port-definition" | "port-usage" | "ppt" | "presentation-file" | "product" | "progress-bar" | "progress-bar-round" | "property-relationship" | "qq-plot" | "quadrant-plot" | "query-queue" | "queued" | "redefinition" | "reference-architecture" | "repo-artifact" | "repo-source-code" | "report-data" | "requirement-definition" | "requirement-usage" | "result" | "result-draft" | "result-new" | "result-old" | "roadmap" | "router-voice" | "router-wifi" | "row-collapse" | "row-expand" | "rule" | "rule-cancelled" | "rule-data-quality" | "rule-draft" | "rule-filled" | "rule-locked" | "rule-partial" | "rule-test" | "sankey-diagram" | "sankey-diagram-alt" | "satisfy-definition" | "satisfy-usage" | "scatter-matrix" | "schematics" | "screen-map" | "screen-map-set" | "script-reference" | "security-services" | "send-action-usage" | "server-dns" | "server-proxy" | "server-time" | "service-levels" | "session-border-control" | "share-knowledge" | "show-data-cards" | "skill-level" | "skill-level-advanced" | "skill-level-basic" | "skill-level-intermediate" | "slisor" | "slm" | "software-resource" | "software-resource-cluster" | "software-resource-resource" | "spyre-accelerator" | "star-review" | "stem-leaf-plot" | "storage-pool" | "storage-request" | "string-integer" | "string-text" | "subclassification" | "subdirectory" | "subflow" | "subflow-local" | "subject-definition" | "subject-usage" | "subnet-acl-rules" | "subsetting" | "succession" | "succession-flow-connection" | "summary-kpi" | "summary-kpi-mirror" | "support-vector-machine" | "surrogate-key-database" | "surrogate-key-flat-file" | "swimlane-d-vertical" | "switch-layer-2" | "switch-layer-3" | "sys-provision" | "sysplex-distributor" | "table-built" | "table-split" | "task" | "task-add" | "task-approved" | "task-asset-view" | "task-complete" | "task-location" | "task-remove" | "task-settings" | "task-star" | "task-tools" | "task-view" | "tcp-ip-service" | "term" | "term-reference" | "terminal-3270" | "text-link" | "text-link-analysis" | "text-mining" | "text-mining-applier" | "tif" | "time-plot" | "top-data-sets" | "top-programs" | "transform-binary" | "transform-code" | "transform-instructions" | "transform-language" | "tree-view" | "tree-view-alt" | "tsq" | "tsv" | "txt-reference" | "type-pattern" | "types" | "undefined-filled" | "unknown" | "unknown-filled" | "upstream" | "url" | "usage-included-use-case" | "use-case-definition" | "use-case-usage" | "value-variable" | "value-variable-alt" | "vehicle-api" | "vehicle-connected" | "vehicle-insights" | "vehicle-services" | "version" | "version-major" | "version-minor" | "version-patch" | "virtual-column" | "virtual-column-key" | "virtual-desktop" | "virtual-machine" | "virtual-private-cloud" | "visual-recognition" | "vlan" | "vmdk-disk" | "volume-block-storage" | "volume-file-storage" | "volume-object-storage" | "vpn-connection" | "vpn-policy" | "warning" | "warning-alt" | "warning-alt-filled" | "warning-alt-inverted" | "warning-alt-inverted-filled" | "warning-diamond" | "warning-filled" | "warning-hex" | "warning-hex-filled" | "warning-multiple" | "warning-other" | "warning-square" | "warning-square-filled" | "websheet" | "while-loop" | "white-paper" | "wifi-bridge" | "wifi-bridge-alt" | "wifi-not-secure" | "wifi-secure" | "wmv" | "word-cloud" | "workflow-automation" | "workspace" | "xls" | "z-hyperlink" | "z-lpar" | "z-systems" | "zip-reference" | "zos" | "zos-sysplex" | "accessibility-alt" | "accessibility-color" | "accessibility-color-filled" | "cognitive" | "collaborate" | "cough" | "credentials" | "customer" | "customer-service" | "dog-walker" | "education" | "events" | "events-alt" | "face-activated" | "face-activated-add" | "face-activated-filled" | "face-add" | "face-cool" | "face-dissatisfied" | "face-dissatisfied-filled" | "face-dizzy-filled" | "face-neutral" | "face-neutral-filled" | "face-pending" | "face-pending-filled" | "face-satisfied" | "face-satisfied-filled" | "face-wink" | "face-wink-filled" | "friendship" | "group-presentation" | "hearing" | "idea" | "movement" | "need" | "partnership" | "person-favorite" | "sales-ops" | "sight" | "smell" | "taste" | "touch-1" | "touch-1-down" | "touch-1-down-filled" | "touch-1-filled" | "touch-2" | "touch-2-filled" | "touch-interaction" | "user-access" | "user-access-locked" | "user-access-unlocked" | "user-activity" | "user-admin" | "user-avatar" | "user-avatar-filled" | "user-avatar-filled-alt" | "user-certification" | "user-data" | "user-favorite" | "user-favorite-alt" | "user-favorite-alt-filled" | "user-feedback" | "user-follow" | "user-identification" | "user-military" | "user-multiple" | "user-online" | "user-profile" | "user-profile-alt" | "user-role" | "user-service" | "user-service-desk" | "user-settings" | "user-simulation" | "user-speaker" | "user-sponsor" | "user-x-ray" | "voice-activate" | "accumulation-ice" | "accumulation-precipitation" | "accumulation-rain" | "accumulation-snow" | "agriculture-analytics" | "airline-digital-gate" | "airline-manage-gates" | "airline-passenger-care" | "airline-rapid-board" | "airport-01" | "airport-02" | "airport-location" | "alarm-add" | "alarm-subtract" | "arrival" | "bar" | "boot" | "buoy" | "cabin-care" | "cabin-care-alert" | "cabin-care-alt" | "cafe" | "calendar-add" | "calendar-add-alt" | "calendar-settings" | "calendar-tools" | "campsite" | "carbon-accounting" | "charging-station-filled" | "cloud-ceiling" | "crop-growth" | "crop-health" | "crossroads" | "crowd-report" | "crowd-report-filled" | "cyclist" | "delivery-truck" | "departure" | "dew-point" | "dew-point-filled" | "direction-bear-right-01" | "direction-bear-right-01-filled" | "direction-bear-right-02" | "direction-bear-right-02-filled" | "direction-curve" | "direction-curve-filled" | "direction-fork" | "direction-fork-filled" | "direction-loop-left" | "direction-loop-left-filled" | "direction-loop-right" | "direction-loop-right-filled" | "direction-merge" | "direction-merge-filled" | "direction-right-01" | "direction-right-01-filled" | "direction-right-02" | "direction-right-02-filled" | "direction-rotary-first-right" | "direction-rotary-first-right-filled" | "direction-rotary-right" | "direction-rotary-right-filled" | "direction-rotary-straight" | "direction-rotary-straight-filled" | "direction-sharp-turn" | "direction-sharp-turn-filled" | "direction-straight" | "direction-straight-filled" | "direction-straight-right" | "direction-straight-right-filled" | "direction-u-turn" | "direction-u-turn-filled" | "drought" | "earth-americas-filled" | "earth-europe-africa" | "earth-europe-africa-filled" | "earth-filled" | "earth-southeast-asia" | "earth-southeast-asia-filled" | "earthquake" | "energy-renewable" | "event" | "event-schedule" | "flagging-taxi" | "flight-international" | "flight-roster" | "flight-schedule" | "flood" | "flood-warning" | "fog" | "forecast-hail" | "forecast-hail-30" | "forecast-lightning" | "forecast-lightning-30" | "harbor" | "haze-night" | "help-desk" | "hospital-bed" | "humidity" | "humidity-alt" | "ice-accretion" | "ice-vision" | "lifesaver" | "location-company" | "location-company-filled" | "location-hazard" | "location-hazard-filled" | "location-heart-filled" | "location-info" | "location-info-filled" | "location-person" | "location-person-filled" | "location-save" | "location-star-filled" | "map-boundary" | "map-boundary-vegetation" | "map-center" | "map-identify" | "marine-warning" | "military-camp" | "mixed-rain-hail" | "moonrise" | "moonset" | "mostly-cloudy" | "mostly-cloudy-night" | "navaid-civil" | "navaid-dme" | "navaid-helipad" | "navaid-military" | "navaid-military-civil" | "navaid-ndb" | "navaid-ndb-dme" | "navaid-private" | "navaid-seaplane" | "navaid-tacan" | "navaid-vhfor" | "navaid-vor" | "navaid-vordme" | "navaid-vortac" | "not-available" | "observed-hail" | "observed-lightning" | "outlook-severe" | "partly-cloudy" | "partly-cloudy-night" | "passenger-drinks" | "passenger-plus" | "pedestrian" | "pedestrian-child" | "pedestrian-family" | "pest" | "picnic-area" | "plane-private" | "plane-sea" | "police" | "pressure" | "pressure-filled" | "radar-enhanced" | "radar-weather" | "rain" | "rain-drizzle" | "rain-drop" | "rain-heavy" | "rain-scattered" | "rain-scattered-night" | "ref-evapotranspiration" | "reminder-medical" | "restaurant" | "restaurant-fine" | "road-weather" | "sailboat-coastal" | "sailboat-offshore" | "satellite-radar" | "satellite-weather" | "scooter-front" | "service-desk" | "shuttle" | "sleet" | "snooze" | "snow-blizzard" | "snow-density" | "snow-heavy" | "snow-scattered" | "snow-scattered-night" | "soil-moisture" | "soil-moisture-field" | "soil-moisture-global" | "soil-temperature" | "soil-temperature-field" | "soil-temperature-global" | "stay-inside" | "stop-sign" | "stop-sign-filled" | "storm-tracker" | "temperature-celsius-alt" | "temperature-fahrenheit-alt" | "temperature-feels-like" | "temperature-frigid" | "temperature-hot" | "temperature-inversion" | "temperature-max" | "temperature-min" | "temperature-water" | "thunderstorm" | "thunderstorm-scattered" | "thunderstorm-scattered-night" | "thunderstorm-severe" | "thunderstorm-strong" | "tides" | "time-filled" | "tornado-warning" | "traffic-event" | "traffic-flow" | "traffic-flow-incident" | "traffic-incident" | "traffic-weather-incident" | "train-heart" | "train-profile" | "train-speed" | "train-ticket" | "train-time" | "tree-fall-risk" | "tropical-storm-model-tracks" | "tropical-storm-tracks" | "tropical-warning" | "uv-index-alt" | "uv-index-filled" | "van" | "vegetation-asset" | "vegetation-encroachment" | "vegetation-height" | "wave-direction" | "wave-height" | "wave-period" | "weather-front-cold" | "weather-front-stationary" | "weather-front-warm" | "weather-station" | "wind-gusts" | "wind-stream" | "windy" | "windy-dust" | "windy-snow" | "windy-strong" | "winter-warning" | "wintry-mix" | "worship" | "worship-christian" | "worship-jewish" | "worship-muslim" | "airplay-filled" | "array" | "array-booleans" | "array-dates" | "array-numbers" | "array-objects" | "array-strings" | "asset-confirm" | "asset-digital-twin" | "asset-movement" | "asset-view" | "audio-console" | "battery-error" | "breaking-change" | "build-image" | "build-run" | "building-insights-1" | "building-insights-2" | "building-insights-3" | "business-processes" | "calculator-check" | "calibrate" | "camera-action" | "cell-tower" | "channels" | "chat-bot" | "cloud-offline" | "code-hide" | "code-reference" | "connection-receive" | "connection-send" | "connection-signal" | "connection-signal-off" | "connection-two-way" | "create-link" | "cursor-1" | "cursor-2" | "debug" | "delivery-settings" | "deployment-canary" | "deployment-pattern" | "deployment-policy" | "desk-adjustable" | "development" | "devices-apps" | "drone-delivery" | "drone-front" | "drone-video" | "edge-cluster" | "edge-device" | "edge-node" | "edge-service" | "email-new" | "fetch-upload" | "fetch-upload-cloud" | "fingerprint-recognition" | "function-2" | "game-console" | "game-wireless" | "integration" | "iot-connect" | "iot-platform" | "kiosk-device" | "location-current" | "mail-all" | "mail-reply" | "media-cast" | "meter-alt" | "mobile-add" | "mobile-audio" | "mobile-check" | "mobile-crash" | "mobile-download" | "mobile-event" | "mobile-landscape" | "mobile-request" | "mobile-session" | "mobile-view" | "mobile-view-orientation" | "multiuser-device" | "outage" | "phone-ip" | "platforms" | "plug-filled" | "port-input" | "port-output" | "portfolio" | "radio-combat" | "radio-push-to-talk" | "ruler-alt" | "scales" | "scales-tipped" | "scalpel" | "serverless-fleet" | "service-id" | "signal-strength" | "tool-box" | "tool-kit" | "tools-alt" | "transmission-lte" | "trigger" | "web-services-cluster" | "web-services-container" | "web-services-definition" | "web-services-service" | "web-services-task" | "web-services-task-definition-version" | "wifi-controller" | "wikis">): import("react").JSX.Element;
2404
2404
  displayName: string;
2405
2405
  };
2406
2406
  export {};
@@ -664,7 +664,7 @@ declare const catppuccinIconNames: {
664
664
  };
665
665
  export type CatppuccinIconName = keyof typeof catppuccinIconNames;
666
666
  export declare const Catppuccin: {
667
- ({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"android" | "macos" | "svg" | "solid" | "image" | "search" | "text" | "key" | "blink" | "audio" | "html" | "ruby" | "video" | "xml" | "certificate" | "license" | "ninja" | "powershell" | "security" | "lock" | "angular" | "apple" | "babel" | "bitbucket" | "docker" | "ember" | "eslint" | "firebase" | "gatsby" | "git" | "gitlab" | "graphql" | "laravel" | "midi" | "nativescript" | "nix" | "npm" | "nuxt" | "salesforce" | "sass" | "tailwind" | "terraform" | "unity" | "webpack" | "database" | "bash" | "file" | "folder" | "folder-download" | "folder-open" | "folder-upload" | "rocket" | "vhs" | "binary" | "diff" | "figma" | "folder-git" | "folder-symlink" | "squirrel" | "workflow" | "zap" | "assembly" | "csv" | "favicon" | "json" | "markdown" | "pdf" | "razor" | "toml" | "zip" | "css" | "cursor" | "javascript" | "typescript" | "c" | "d" | "r" | "v" | "font" | "folder-shared" | "http" | "url" | "apache" | "arduino" | "astro" | "autohotkey" | "bazel" | "biome" | "bower" | "bun" | "caddy" | "capacitor" | "clojure" | "cmake" | "coffeescript" | "commitlint" | "crystal" | "cucumber" | "cypress" | "dart" | "deno" | "dependabot" | "django" | "docusaurus" | "editorconfig" | "ejs" | "eleventy" | "elixir" | "elm" | "erlang" | "esbuild" | "fastlane" | "flutter" | "forgejo" | "fortran" | "fsharp" | "gitpod" | "gleam" | "go" | "gradle" | "gulp" | "haskell" | "haxe" | "helm" | "heroku" | "hugo" | "ionic" | "jest" | "jinja" | "juce" | "julia" | "jupyter" | "knip" | "kotlin" | "latex" | "lerna" | "less" | "lua" | "luau" | "marko" | "mdbook" | "mermaid" | "moonrepo" | "netlify" | "nextflow" | "nginx" | "nim" | "nodemon" | "nuget" | "nunjucks" | "nx" | "ocaml" | "odin" | "opentofu" | "org" | "perl" | "php" | "pnpm" | "postcss" | "prettier" | "prisma" | "pug" | "puppet" | "puppeteer" | "python" | "qwik" | "racket" | "readme" | "reason" | "remix" | "renovate" | "rescript" | "roblox" | "root" | "ruff" | "rust" | "scala" | "sentry" | "serverless" | "sketch" | "snowpack" | "solidity" | "stackblitz" | "stencil" | "storybook" | "stylelint" | "svelte" | "swift" | "tauri" | "turbo" | "typst" | "unocss" | "uv" | "vala" | "vercel" | "vim" | "vite" | "vitest" | "wxt" | "xcode" | "yaml" | "yarn" | "zig" | "adobe-xd" | "batch" | "browserslist" | "godot" | "haml" | "handlebars" | "hardhat" | "java" | "json-schema" | "modernizr" | "playwright" | "release" | "semantic-release" | "visual-studio" | "vue" | "_3d" | "css3" | "apollo" | "blitz" | "csharp" | "cue" | "folder-cloud" | "folder-messages" | "husky" | "lisp" | "matlab" | "nest" | "next" | "proto" | "todo" | "adobe-ae" | "adobe-ai" | "adobe-id" | "adobe-ps" | "adonis" | "alex" | "amber" | "angular-component" | "angular-directive" | "angular-guard" | "angular-pipe" | "angular-service" | "ansible-lint" | "antlr" | "api-blueprint" | "asciidoc" | "astro-config" | "azure-pipelines" | "benchmark" | "bicep" | "bun-lock" | "c-header" | "cabal" | "cargo" | "cargo-lock" | "changelog" | "circle-ci" | "cobol" | "code-climate" | "code-of-conduct" | "codeowners" | "config" | "contributing" | "cpp" | "cpp-header" | "cspell" | "css-map" | "cuda" | "cursor-ignore" | "darklua" | "dart-generated" | "deno-lock" | "devcontainer" | "dhall" | "docker-compose" | "docker-ignore" | "drawio" | "drizzle-orm" | "dub" | "dub-selections" | "env" | "envrc" | "eslint-ignore" | "exe" | "folder-admin" | "folder-admin-open" | "folder-android" | "folder-android-open" | "folder-animation" | "folder-animation-open" | "folder-api" | "folder-api-open" | "folder-app" | "folder-app-open" | "folder-assets" | "folder-assets-open" | "folder-audio" | "folder-audio-open" | "folder-audit" | "folder-audit-open" | "folder-aws" | "folder-aws-open" | "folder-azure-devops" | "folder-azure-devops-open" | "folder-azure-pipelines" | "folder-azure-pipelines-open" | "folder-benchmark" | "folder-benchmark-open" | "folder-caddy" | "folder-caddy-open" | "folder-cargo" | "folder-cargo-open" | "folder-circle-ci" | "folder-circle-ci-open" | "folder-client" | "folder-client-open" | "folder-cloud-open" | "folder-command" | "folder-command-open" | "folder-components" | "folder-components-open" | "folder-composables" | "folder-composables-open" | "folder-config" | "folder-config-open" | "folder-connection" | "folder-connection-open" | "folder-constant" | "folder-constant-open" | "folder-content" | "folder-content-open" | "folder-controllers" | "folder-controllers-open" | "folder-core" | "folder-core-open" | "folder-coverage" | "folder-coverage-open" | "folder-cursor" | "folder-cursor-open" | "folder-cypress" | "folder-cypress-open" | "folder-database" | "folder-database-open" | "folder-debug" | "folder-debug-open" | "folder-devcontainer" | "folder-devcontainer-open" | "folder-direnv" | "folder-direnv-open" | "folder-dist" | "folder-dist-open" | "folder-docker" | "folder-docker-open" | "folder-docs" | "folder-docs-open" | "folder-download-open" | "folder-drizzle-orm" | "folder-drizzle-orm-open" | "folder-examples" | "folder-examples-open" | "folder-fastlane" | "folder-fastlane-open" | "folder-firebase" | "folder-firebase-open" | "folder-fonts" | "folder-fonts-open" | "folder-forgejo" | "folder-forgejo-open" | "folder-functions" | "folder-functions-open" | "folder-fvm" | "folder-fvm-open" | "folder-git-open" | "folder-github" | "folder-github-open" | "folder-gitlab" | "folder-gitlab-open" | "folder-gradle" | "folder-gradle-open" | "folder-graphql" | "folder-graphql-open" | "folder-hooks" | "folder-hooks-open" | "folder-husky" | "folder-husky-open" | "folder-images" | "folder-images-open" | "folder-include" | "folder-include-open" | "folder-intellij" | "folder-intellij-open" | "folder-javascript" | "folder-javascript-open" | "folder-kubernetes" | "folder-kubernetes-open" | "folder-layouts" | "folder-layouts-open" | "folder-lib" | "folder-lib-open" | "folder-linux" | "folder-linux-open" | "folder-locales" | "folder-locales-open" | "folder-luau" | "folder-luau-open" | "folder-lune" | "folder-lune-open" | "folder-macos" | "folder-macos-open" | "folder-messages-open" | "folder-middleware" | "folder-middleware-open" | "folder-mocks" | "folder-mocks-open" | "folder-moonrepo" | "folder-moonrepo-open" | "folder-next" | "folder-next-open" | "folder-nix" | "folder-nix-open" | "folder-node" | "folder-node-open" | "folder-nuxt" | "folder-nuxt-open" | "folder-packages" | "folder-packages-open" | "folder-pesde" | "folder-pesde-open" | "folder-plugins" | "folder-plugins-open" | "folder-pre-commit" | "folder-pre-commit-open" | "folder-prisma" | "folder-prisma-open" | "folder-private" | "folder-private-open" | "folder-proto" | "folder-proto-open" | "folder-public" | "folder-public-open" | "folder-queue" | "folder-queue-open" | "folder-redux" | "folder-redux-open" | "folder-renovate" | "folder-renovate-open" | "folder-roblox" | "folder-roblox-open" | "folder-routes" | "folder-routes-open" | "folder-sass" | "folder-sass-open" | "folder-scripts" | "folder-scripts-open" | "folder-security" | "folder-security-open" | "folder-server" | "folder-server-open" | "folder-shared-open" | "folder-src" | "folder-src-open" | "folder-storybook" | "folder-storybook-open" | "folder-styles" | "folder-styles-open" | "folder-svg" | "folder-svg-open" | "folder-symlink-open" | "folder-tauri" | "folder-tauri-open" | "folder-temp" | "folder-temp-open" | "folder-templates" | "folder-templates-open" | "folder-tests" | "folder-tests-open" | "folder-themes" | "folder-themes-open" | "folder-turbo" | "folder-turbo-open" | "folder-types" | "folder-types-open" | "folder-upload-open" | "folder-utils" | "folder-utils-open" | "folder-vercel" | "folder-vercel-open" | "folder-video" | "folder-video-open" | "folder-views" | "folder-views-open" | "folder-vscode" | "folder-vscode-open" | "folder-windows" | "folder-windows-open" | "folder-workflows" | "folder-workflows-open" | "folder-wxt" | "folder-wxt-open" | "folder-xcode" | "folder-xcode-open" | "folder-xmake" | "folder-xmake-open" | "folder-yarn" | "folder-yarn-open" | "foreman" | "fvm" | "gcp" | "git-cliff" | "gleam-config" | "go-mod" | "go-template" | "godot-assets" | "groovy" | "hacking" | "hare" | "histoire" | "huff" | "humans" | "java-annotation" | "java-class" | "java-class-abstract" | "java-class-final" | "java-class-sealed" | "java-enum" | "java-exception" | "java-interface" | "java-jar" | "java-record" | "javascript-config" | "javascript-map" | "javascript-react" | "javascript-test" | "jule" | "just" | "kdl" | "latte" | "lib" | "lint-staged" | "liquid" | "log" | "lua-check" | "lua-client" | "lua-rocks" | "lua-server" | "lua-test" | "luau-check" | "luau-client" | "luau-config" | "luau-server" | "luau-test" | "makefile" | "mantle" | "markdown-mdx" | "meson" | "mjml" | "moonwave" | "ms-excel" | "ms-powerpoint" | "ms-word" | "msbuild" | "nest-controller" | "nest-decorator" | "nest-filter" | "nest-gateway" | "nest-guard" | "nest-middleware" | "nest-pipe" | "nest-service" | "nix-lock" | "npm-ignore" | "npm-lock" | "nuxt-ignore" | "nx-ignore" | "package-json" | "panda-css" | "pesde" | "pesde-lock" | "phrase" | "phtml" | "pixi" | "pixi-lock" | "plantuml" | "plop" | "pnpm-lock" | "poetry-lock" | "pre-commit" | "premake" | "prettier-ignore" | "prolog" | "properties" | "prototools" | "python-compiled" | "python-config" | "rdata" | "redwood" | "rmd" | "robots" | "rojo" | "rokit" | "rollup" | "root-open" | "rproj" | "rsml" | "ruby-gem" | "ruby-gem-lock" | "rust-alt" | "rust-alt-config" | "rust-config" | "scheme" | "semgrep" | "semgrep-ignore" | "shader" | "slidesk" | "sonar-cloud" | "spwn" | "stata" | "stitches" | "storybook-svelte" | "storybook-vue" | "stylelint-ignore" | "stylua" | "stylua-ignore" | "sublime" | "super-collider" | "svelte-config" | "swiftformat" | "symlink" | "taskfile" | "tauri-ignore" | "twig" | "twine" | "typescript-config" | "typescript-def" | "typescript-react" | "typescript-test" | "vanilla-extract" | "vapi" | "vento" | "vercel-ignore" | "verilog" | "vital" | "vs-codium" | "vscode" | "vscode-ignore" | "vue-config" | "wally" | "web-assembly" | "windi" | "wrangler" | "xaml" | "xmake" | "yarn-lock">): import("react").JSX.Element;
667
+ ({ 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<"android" | "macos" | "search" | "blink" | "solid" | "image" | "text" | "key" | "cursor" | "audio" | "html" | "ruby" | "video" | "svg" | "xml" | "certificate" | "license" | "ninja" | "powershell" | "security" | "lock" | "angular" | "apple" | "babel" | "bitbucket" | "docker" | "ember" | "eslint" | "firebase" | "gatsby" | "git" | "gitlab" | "graphql" | "laravel" | "midi" | "nativescript" | "nix" | "npm" | "nuxt" | "salesforce" | "sass" | "tailwind" | "terraform" | "unity" | "webpack" | "database" | "bash" | "file" | "folder" | "folder-download" | "folder-open" | "folder-upload" | "rocket" | "vhs" | "binary" | "diff" | "figma" | "folder-git" | "folder-symlink" | "squirrel" | "workflow" | "zap" | "assembly" | "csv" | "favicon" | "json" | "markdown" | "pdf" | "razor" | "toml" | "zip" | "css" | "javascript" | "typescript" | "c" | "d" | "r" | "v" | "font" | "folder-shared" | "http" | "url" | "apache" | "arduino" | "astro" | "autohotkey" | "bazel" | "biome" | "bower" | "bun" | "caddy" | "capacitor" | "clojure" | "cmake" | "coffeescript" | "commitlint" | "crystal" | "cucumber" | "cypress" | "dart" | "deno" | "dependabot" | "django" | "docusaurus" | "editorconfig" | "ejs" | "eleventy" | "elixir" | "elm" | "erlang" | "esbuild" | "fastlane" | "flutter" | "forgejo" | "fortran" | "fsharp" | "gitpod" | "gleam" | "go" | "gradle" | "gulp" | "haskell" | "haxe" | "helm" | "heroku" | "hugo" | "ionic" | "jest" | "jinja" | "juce" | "julia" | "jupyter" | "knip" | "kotlin" | "latex" | "lerna" | "less" | "lua" | "luau" | "marko" | "mdbook" | "mermaid" | "moonrepo" | "netlify" | "nextflow" | "nginx" | "nim" | "nodemon" | "nuget" | "nunjucks" | "nx" | "ocaml" | "odin" | "opentofu" | "org" | "perl" | "php" | "pnpm" | "postcss" | "prettier" | "prisma" | "pug" | "puppet" | "puppeteer" | "python" | "qwik" | "racket" | "readme" | "reason" | "remix" | "renovate" | "rescript" | "roblox" | "root" | "ruff" | "rust" | "scala" | "sentry" | "serverless" | "sketch" | "snowpack" | "solidity" | "stackblitz" | "stencil" | "storybook" | "stylelint" | "svelte" | "swift" | "tauri" | "turbo" | "typst" | "unocss" | "uv" | "vala" | "vercel" | "vim" | "vite" | "vitest" | "wxt" | "xcode" | "yaml" | "yarn" | "zig" | "adobe-xd" | "batch" | "browserslist" | "godot" | "haml" | "handlebars" | "hardhat" | "java" | "json-schema" | "modernizr" | "playwright" | "release" | "semantic-release" | "visual-studio" | "vue" | "_3d" | "css3" | "apollo" | "blitz" | "csharp" | "cue" | "folder-cloud" | "folder-messages" | "husky" | "lisp" | "matlab" | "nest" | "next" | "proto" | "todo" | "adobe-ae" | "adobe-ai" | "adobe-id" | "adobe-ps" | "adonis" | "alex" | "amber" | "angular-component" | "angular-directive" | "angular-guard" | "angular-pipe" | "angular-service" | "ansible-lint" | "antlr" | "api-blueprint" | "asciidoc" | "astro-config" | "azure-pipelines" | "benchmark" | "bicep" | "bun-lock" | "c-header" | "cabal" | "cargo" | "cargo-lock" | "changelog" | "circle-ci" | "cobol" | "code-climate" | "code-of-conduct" | "codeowners" | "config" | "contributing" | "cpp" | "cpp-header" | "cspell" | "css-map" | "cuda" | "cursor-ignore" | "darklua" | "dart-generated" | "deno-lock" | "devcontainer" | "dhall" | "docker-compose" | "docker-ignore" | "drawio" | "drizzle-orm" | "dub" | "dub-selections" | "env" | "envrc" | "eslint-ignore" | "exe" | "folder-admin" | "folder-admin-open" | "folder-android" | "folder-android-open" | "folder-animation" | "folder-animation-open" | "folder-api" | "folder-api-open" | "folder-app" | "folder-app-open" | "folder-assets" | "folder-assets-open" | "folder-audio" | "folder-audio-open" | "folder-audit" | "folder-audit-open" | "folder-aws" | "folder-aws-open" | "folder-azure-devops" | "folder-azure-devops-open" | "folder-azure-pipelines" | "folder-azure-pipelines-open" | "folder-benchmark" | "folder-benchmark-open" | "folder-caddy" | "folder-caddy-open" | "folder-cargo" | "folder-cargo-open" | "folder-circle-ci" | "folder-circle-ci-open" | "folder-client" | "folder-client-open" | "folder-cloud-open" | "folder-command" | "folder-command-open" | "folder-components" | "folder-components-open" | "folder-composables" | "folder-composables-open" | "folder-config" | "folder-config-open" | "folder-connection" | "folder-connection-open" | "folder-constant" | "folder-constant-open" | "folder-content" | "folder-content-open" | "folder-controllers" | "folder-controllers-open" | "folder-core" | "folder-core-open" | "folder-coverage" | "folder-coverage-open" | "folder-cursor" | "folder-cursor-open" | "folder-cypress" | "folder-cypress-open" | "folder-database" | "folder-database-open" | "folder-debug" | "folder-debug-open" | "folder-devcontainer" | "folder-devcontainer-open" | "folder-direnv" | "folder-direnv-open" | "folder-dist" | "folder-dist-open" | "folder-docker" | "folder-docker-open" | "folder-docs" | "folder-docs-open" | "folder-download-open" | "folder-drizzle-orm" | "folder-drizzle-orm-open" | "folder-examples" | "folder-examples-open" | "folder-fastlane" | "folder-fastlane-open" | "folder-firebase" | "folder-firebase-open" | "folder-fonts" | "folder-fonts-open" | "folder-forgejo" | "folder-forgejo-open" | "folder-functions" | "folder-functions-open" | "folder-fvm" | "folder-fvm-open" | "folder-git-open" | "folder-github" | "folder-github-open" | "folder-gitlab" | "folder-gitlab-open" | "folder-gradle" | "folder-gradle-open" | "folder-graphql" | "folder-graphql-open" | "folder-hooks" | "folder-hooks-open" | "folder-husky" | "folder-husky-open" | "folder-images" | "folder-images-open" | "folder-include" | "folder-include-open" | "folder-intellij" | "folder-intellij-open" | "folder-javascript" | "folder-javascript-open" | "folder-kubernetes" | "folder-kubernetes-open" | "folder-layouts" | "folder-layouts-open" | "folder-lib" | "folder-lib-open" | "folder-linux" | "folder-linux-open" | "folder-locales" | "folder-locales-open" | "folder-luau" | "folder-luau-open" | "folder-lune" | "folder-lune-open" | "folder-macos" | "folder-macos-open" | "folder-messages-open" | "folder-middleware" | "folder-middleware-open" | "folder-mocks" | "folder-mocks-open" | "folder-moonrepo" | "folder-moonrepo-open" | "folder-next" | "folder-next-open" | "folder-nix" | "folder-nix-open" | "folder-node" | "folder-node-open" | "folder-nuxt" | "folder-nuxt-open" | "folder-packages" | "folder-packages-open" | "folder-pesde" | "folder-pesde-open" | "folder-plugins" | "folder-plugins-open" | "folder-pre-commit" | "folder-pre-commit-open" | "folder-prisma" | "folder-prisma-open" | "folder-private" | "folder-private-open" | "folder-proto" | "folder-proto-open" | "folder-public" | "folder-public-open" | "folder-queue" | "folder-queue-open" | "folder-redux" | "folder-redux-open" | "folder-renovate" | "folder-renovate-open" | "folder-roblox" | "folder-roblox-open" | "folder-routes" | "folder-routes-open" | "folder-sass" | "folder-sass-open" | "folder-scripts" | "folder-scripts-open" | "folder-security" | "folder-security-open" | "folder-server" | "folder-server-open" | "folder-shared-open" | "folder-src" | "folder-src-open" | "folder-storybook" | "folder-storybook-open" | "folder-styles" | "folder-styles-open" | "folder-svg" | "folder-svg-open" | "folder-symlink-open" | "folder-tauri" | "folder-tauri-open" | "folder-temp" | "folder-temp-open" | "folder-templates" | "folder-templates-open" | "folder-tests" | "folder-tests-open" | "folder-themes" | "folder-themes-open" | "folder-turbo" | "folder-turbo-open" | "folder-types" | "folder-types-open" | "folder-upload-open" | "folder-utils" | "folder-utils-open" | "folder-vercel" | "folder-vercel-open" | "folder-video" | "folder-video-open" | "folder-views" | "folder-views-open" | "folder-vscode" | "folder-vscode-open" | "folder-windows" | "folder-windows-open" | "folder-workflows" | "folder-workflows-open" | "folder-wxt" | "folder-wxt-open" | "folder-xcode" | "folder-xcode-open" | "folder-xmake" | "folder-xmake-open" | "folder-yarn" | "folder-yarn-open" | "foreman" | "fvm" | "gcp" | "git-cliff" | "gleam-config" | "go-mod" | "go-template" | "godot-assets" | "groovy" | "hacking" | "hare" | "histoire" | "huff" | "humans" | "java-annotation" | "java-class" | "java-class-abstract" | "java-class-final" | "java-class-sealed" | "java-enum" | "java-exception" | "java-interface" | "java-jar" | "java-record" | "javascript-config" | "javascript-map" | "javascript-react" | "javascript-test" | "jule" | "just" | "kdl" | "latte" | "lib" | "lint-staged" | "liquid" | "log" | "lua-check" | "lua-client" | "lua-rocks" | "lua-server" | "lua-test" | "luau-check" | "luau-client" | "luau-config" | "luau-server" | "luau-test" | "makefile" | "mantle" | "markdown-mdx" | "meson" | "mjml" | "moonwave" | "ms-excel" | "ms-powerpoint" | "ms-word" | "msbuild" | "nest-controller" | "nest-decorator" | "nest-filter" | "nest-gateway" | "nest-guard" | "nest-middleware" | "nest-pipe" | "nest-service" | "nix-lock" | "npm-ignore" | "npm-lock" | "nuxt-ignore" | "nx-ignore" | "package-json" | "panda-css" | "pesde" | "pesde-lock" | "phrase" | "phtml" | "pixi" | "pixi-lock" | "plantuml" | "plop" | "pnpm-lock" | "poetry-lock" | "pre-commit" | "premake" | "prettier-ignore" | "prolog" | "properties" | "prototools" | "python-compiled" | "python-config" | "rdata" | "redwood" | "rmd" | "robots" | "rojo" | "rokit" | "rollup" | "root-open" | "rproj" | "rsml" | "ruby-gem" | "ruby-gem-lock" | "rust-alt" | "rust-alt-config" | "rust-config" | "scheme" | "semgrep" | "semgrep-ignore" | "shader" | "slidesk" | "sonar-cloud" | "spwn" | "stata" | "stitches" | "storybook-svelte" | "storybook-vue" | "stylelint-ignore" | "stylua" | "stylua-ignore" | "sublime" | "super-collider" | "svelte-config" | "swiftformat" | "symlink" | "taskfile" | "tauri-ignore" | "twig" | "twine" | "typescript-config" | "typescript-def" | "typescript-react" | "typescript-test" | "vanilla-extract" | "vapi" | "vento" | "vercel-ignore" | "verilog" | "vital" | "vs-codium" | "vscode" | "vscode-ignore" | "vue-config" | "wally" | "web-assembly" | "windi" | "wrangler" | "xaml" | "xmake" | "yarn-lock">): import("react").JSX.Element;
668
668
  displayName: string;
669
669
  };
670
670
  export {};