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.
- package/README.md +47 -235
- package/babel.js +14 -0
- package/lib/commonjs/IconRenderer.js +91 -4
- package/lib/commonjs/IconRenderer.js.map +1 -1
- package/lib/commonjs/accessibility/AccessibilityProvider.js +189 -0
- package/lib/commonjs/accessibility/AccessibilityProvider.js.map +1 -0
- package/lib/commonjs/accessibility/index.js +87 -0
- package/lib/commonjs/accessibility/index.js.map +1 -0
- package/lib/commonjs/accessibility/types.js +6 -0
- package/lib/commonjs/accessibility/types.js.map +1 -0
- package/lib/commonjs/accessibility/useAccessibleIcon.js +119 -0
- package/lib/commonjs/accessibility/useAccessibleIcon.js.map +1 -0
- package/lib/commonjs/accessibility/utils.js +231 -0
- package/lib/commonjs/accessibility/utils.js.map +1 -0
- package/lib/commonjs/alias/Icon.js +113 -0
- package/lib/commonjs/alias/Icon.js.map +1 -0
- package/lib/commonjs/alias/IconAliasContext.js +177 -0
- package/lib/commonjs/alias/IconAliasContext.js.map +1 -0
- package/lib/commonjs/alias/createIconAliases.js +222 -0
- package/lib/commonjs/alias/createIconAliases.js.map +1 -0
- package/lib/commonjs/alias/index.js +57 -0
- package/lib/commonjs/alias/index.js.map +1 -0
- package/lib/commonjs/alias/types.js +6 -0
- package/lib/commonjs/alias/types.js.map +1 -0
- package/lib/commonjs/animated/AnimatedIcon.js +116 -0
- package/lib/commonjs/animated/AnimatedIcon.js.map +1 -0
- package/lib/commonjs/animated/index.js +76 -0
- package/lib/commonjs/animated/index.js.map +1 -0
- package/lib/commonjs/animated/presets.js +220 -0
- package/lib/commonjs/animated/presets.js.map +1 -0
- package/lib/commonjs/animated/types.js +71 -0
- package/lib/commonjs/animated/types.js.map +1 -0
- package/lib/commonjs/animated/useIconAnimation.js +313 -0
- package/lib/commonjs/animated/useIconAnimation.js.map +1 -0
- package/lib/commonjs/babel/ast-utils.js +214 -0
- package/lib/commonjs/babel/ast-utils.js.map +1 -0
- package/lib/commonjs/babel/cache-writer.js +281 -0
- package/lib/commonjs/babel/cache-writer.js.map +1 -0
- package/lib/commonjs/babel/collector.js +219 -0
- package/lib/commonjs/babel/collector.js.map +1 -0
- package/lib/commonjs/babel/index.js +104 -0
- package/lib/commonjs/babel/index.js.map +1 -0
- package/lib/commonjs/babel/plugin.js +226 -0
- package/lib/commonjs/babel/plugin.js.map +1 -0
- package/lib/commonjs/babel/types.js +485 -0
- package/lib/commonjs/babel/types.js.map +1 -0
- package/lib/commonjs/bundle/index.js +213 -0
- package/lib/commonjs/bundle/index.js.map +1 -0
- package/lib/commonjs/cache/CacheManager.js +105 -6
- package/lib/commonjs/cache/CacheManager.js.map +1 -1
- package/lib/commonjs/cli/commands/analyze.js +171 -0
- package/lib/commonjs/cli/commands/analyze.js.map +1 -0
- package/lib/commonjs/cli/commands/bundle.js +214 -0
- package/lib/commonjs/cli/commands/bundle.js.map +1 -0
- package/lib/commonjs/cli/index.js +142 -0
- package/lib/commonjs/cli/index.js.map +1 -0
- package/lib/commonjs/cli/parser.js +260 -0
- package/lib/commonjs/cli/parser.js.map +1 -0
- package/lib/commonjs/cli/types.js +42 -0
- package/lib/commonjs/cli/types.js.map +1 -0
- package/lib/commonjs/config/ConfigManager.js +182 -0
- package/lib/commonjs/config/ConfigManager.js.map +1 -0
- package/lib/commonjs/config/index.js +44 -0
- package/lib/commonjs/config/index.js.map +1 -0
- package/lib/commonjs/config/types.js +55 -0
- package/lib/commonjs/config/types.js.map +1 -0
- package/lib/commonjs/createIconSet.js +49 -11
- package/lib/commonjs/createIconSet.js.map +1 -1
- package/lib/commonjs/explorer/IconExplorer.js +827 -0
- package/lib/commonjs/explorer/IconExplorer.js.map +1 -0
- package/lib/commonjs/explorer/iconSets.js +303 -0
- package/lib/commonjs/explorer/iconSets.js.map +1 -0
- package/lib/commonjs/explorer/index.js +93 -0
- package/lib/commonjs/explorer/index.js.map +1 -0
- package/lib/commonjs/explorer/types.js +6 -0
- package/lib/commonjs/explorer/types.js.map +1 -0
- package/lib/commonjs/explorer/useExplorer.js +359 -0
- package/lib/commonjs/explorer/useExplorer.js.map +1 -0
- package/lib/commonjs/index.js +618 -12
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/navigation/createDrawerIcon.js +129 -0
- package/lib/commonjs/navigation/createDrawerIcon.js.map +1 -0
- package/lib/commonjs/navigation/createHeaderIcon.js +185 -0
- package/lib/commonjs/navigation/createHeaderIcon.js.map +1 -0
- package/lib/commonjs/navigation/createTabBarIcon.js +178 -0
- package/lib/commonjs/navigation/createTabBarIcon.js.map +1 -0
- package/lib/commonjs/navigation/index.js +83 -0
- package/lib/commonjs/navigation/index.js.map +1 -0
- package/lib/commonjs/navigation/types.js +94 -0
- package/lib/commonjs/navigation/types.js.map +1 -0
- package/lib/commonjs/navigation/useNavigationIcon.js +128 -0
- package/lib/commonjs/navigation/useNavigationIcon.js.map +1 -0
- package/lib/commonjs/network/IconifyAPI.js +154 -14
- package/lib/commonjs/network/IconifyAPI.js.map +1 -1
- package/lib/commonjs/network/index.js +18 -0
- package/lib/commonjs/network/index.js.map +1 -1
- package/lib/commonjs/performance/PerformanceMonitor.js +327 -0
- package/lib/commonjs/performance/PerformanceMonitor.js.map +1 -0
- package/lib/commonjs/performance/index.js +43 -0
- package/lib/commonjs/performance/index.js.map +1 -0
- package/lib/commonjs/performance/types.js +2 -0
- package/lib/commonjs/performance/types.js.map +1 -0
- package/lib/commonjs/placeholder/PlaceholderFactory.js +111 -0
- package/lib/commonjs/placeholder/PlaceholderFactory.js.map +1 -0
- package/lib/commonjs/placeholder/Pulse.js +77 -0
- package/lib/commonjs/placeholder/Pulse.js.map +1 -0
- package/lib/commonjs/placeholder/Shimmer.js +95 -0
- package/lib/commonjs/placeholder/Shimmer.js.map +1 -0
- package/lib/commonjs/placeholder/Skeleton.js +52 -0
- package/lib/commonjs/placeholder/Skeleton.js.map +1 -0
- package/lib/commonjs/placeholder/index.js +41 -0
- package/lib/commonjs/placeholder/index.js.map +1 -0
- package/lib/commonjs/placeholder/types.js +40 -0
- package/lib/commonjs/placeholder/types.js.map +1 -0
- package/lib/commonjs/theme/IconThemeProvider.js +96 -0
- package/lib/commonjs/theme/IconThemeProvider.js.map +1 -0
- package/lib/commonjs/theme/context.js +53 -0
- package/lib/commonjs/theme/context.js.map +1 -0
- package/lib/commonjs/theme/index.js +52 -0
- package/lib/commonjs/theme/index.js.map +1 -0
- package/lib/commonjs/theme/types.js +39 -0
- package/lib/commonjs/theme/types.js.map +1 -0
- package/lib/commonjs/theme/useIconTheme.js +121 -0
- package/lib/commonjs/theme/useIconTheme.js.map +1 -0
- package/lib/module/IconRenderer.js +92 -5
- package/lib/module/IconRenderer.js.map +1 -1
- package/lib/module/accessibility/AccessibilityProvider.js +179 -0
- package/lib/module/accessibility/AccessibilityProvider.js.map +1 -0
- package/lib/module/accessibility/index.js +42 -0
- package/lib/module/accessibility/index.js.map +1 -0
- package/lib/module/accessibility/types.js +2 -0
- package/lib/module/accessibility/types.js.map +1 -0
- package/lib/module/accessibility/useAccessibleIcon.js +112 -0
- package/lib/module/accessibility/useAccessibleIcon.js.map +1 -0
- package/lib/module/accessibility/utils.js +221 -0
- package/lib/module/accessibility/utils.js.map +1 -0
- package/lib/module/alias/Icon.js +105 -0
- package/lib/module/alias/Icon.js.map +1 -0
- package/lib/module/alias/IconAliasContext.js +166 -0
- package/lib/module/alias/IconAliasContext.js.map +1 -0
- package/lib/module/alias/createIconAliases.js +213 -0
- package/lib/module/alias/createIconAliases.js.map +1 -0
- package/lib/module/alias/index.js +45 -0
- package/lib/module/alias/index.js.map +1 -0
- package/lib/module/alias/types.js +2 -0
- package/lib/module/alias/types.js.map +1 -0
- package/lib/module/animated/AnimatedIcon.js +109 -0
- package/lib/module/animated/AnimatedIcon.js.map +1 -0
- package/lib/module/animated/index.js +80 -0
- package/lib/module/animated/index.js.map +1 -0
- package/lib/module/animated/presets.js +209 -0
- package/lib/module/animated/presets.js.map +1 -0
- package/lib/module/animated/types.js +65 -0
- package/lib/module/animated/types.js.map +1 -0
- package/lib/module/animated/useIconAnimation.js +306 -0
- package/lib/module/animated/useIconAnimation.js.map +1 -0
- package/lib/module/babel/ast-utils.js +201 -0
- package/lib/module/babel/ast-utils.js.map +1 -0
- package/lib/module/babel/cache-writer.js +269 -0
- package/lib/module/babel/cache-writer.js.map +1 -0
- package/lib/module/babel/collector.js +214 -0
- package/lib/module/babel/collector.js.map +1 -0
- package/lib/module/babel/index.js +51 -0
- package/lib/module/babel/index.js.map +1 -0
- package/lib/module/babel/plugin.js +220 -0
- package/lib/module/babel/plugin.js.map +1 -0
- package/lib/module/babel/types.js +476 -0
- package/lib/module/babel/types.js.map +1 -0
- package/lib/module/bundle/index.js +205 -0
- package/lib/module/bundle/index.js.map +1 -0
- package/lib/module/cache/CacheManager.js +106 -6
- package/lib/module/cache/CacheManager.js.map +1 -1
- package/lib/module/cli/commands/analyze.js +166 -0
- package/lib/module/cli/commands/analyze.js.map +1 -0
- package/lib/module/cli/commands/bundle.js +208 -0
- package/lib/module/cli/commands/bundle.js.map +1 -0
- package/lib/module/cli/index.js +140 -0
- package/lib/module/cli/index.js.map +1 -0
- package/lib/module/cli/parser.js +251 -0
- package/lib/module/cli/parser.js.map +1 -0
- package/lib/module/cli/types.js +36 -0
- package/lib/module/cli/types.js.map +1 -0
- package/lib/module/components/index.js +27 -1
- package/lib/module/components/index.js.map +1 -1
- package/lib/module/config/ConfigManager.js +173 -0
- package/lib/module/config/ConfigManager.js.map +1 -0
- package/lib/module/config/index.js +28 -0
- package/lib/module/config/index.js.map +1 -0
- package/lib/module/config/types.js +49 -0
- package/lib/module/config/types.js.map +1 -0
- package/lib/module/createIconSet.js +49 -11
- package/lib/module/createIconSet.js.map +1 -1
- package/lib/module/explorer/IconExplorer.js +817 -0
- package/lib/module/explorer/IconExplorer.js.map +1 -0
- package/lib/module/explorer/iconSets.js +291 -0
- package/lib/module/explorer/iconSets.js.map +1 -0
- package/lib/module/explorer/index.js +42 -0
- package/lib/module/explorer/index.js.map +1 -0
- package/lib/module/explorer/types.js +2 -0
- package/lib/module/explorer/types.js.map +1 -0
- package/lib/module/explorer/useExplorer.js +353 -0
- package/lib/module/explorer/useExplorer.js.map +1 -0
- package/lib/module/index.js +26 -11
- package/lib/module/index.js.map +1 -1
- package/lib/module/navigation/createDrawerIcon.js +121 -0
- package/lib/module/navigation/createDrawerIcon.js.map +1 -0
- package/lib/module/navigation/createHeaderIcon.js +175 -0
- package/lib/module/navigation/createHeaderIcon.js.map +1 -0
- package/lib/module/navigation/createTabBarIcon.js +168 -0
- package/lib/module/navigation/createTabBarIcon.js.map +1 -0
- package/lib/module/navigation/index.js +59 -0
- package/lib/module/navigation/index.js.map +1 -0
- package/lib/module/navigation/types.js +88 -0
- package/lib/module/navigation/types.js.map +1 -0
- package/lib/module/navigation/useNavigationIcon.js +121 -0
- package/lib/module/navigation/useNavigationIcon.js.map +1 -0
- package/lib/module/network/IconifyAPI.js +152 -14
- package/lib/module/network/IconifyAPI.js.map +1 -1
- package/lib/module/network/index.js +1 -1
- package/lib/module/network/index.js.map +1 -1
- package/lib/module/performance/PerformanceMonitor.js +317 -0
- package/lib/module/performance/PerformanceMonitor.js.map +1 -0
- package/lib/module/performance/index.js +26 -0
- package/lib/module/performance/index.js.map +1 -0
- package/lib/module/performance/types.js +2 -0
- package/lib/module/performance/types.js.map +1 -0
- package/lib/module/placeholder/PlaceholderFactory.js +105 -0
- package/lib/module/placeholder/PlaceholderFactory.js.map +1 -0
- package/lib/module/placeholder/Pulse.js +70 -0
- package/lib/module/placeholder/Pulse.js.map +1 -0
- package/lib/module/placeholder/Shimmer.js +88 -0
- package/lib/module/placeholder/Shimmer.js.map +1 -0
- package/lib/module/placeholder/Skeleton.js +45 -0
- package/lib/module/placeholder/Skeleton.js.map +1 -0
- package/lib/module/placeholder/index.js +15 -0
- package/lib/module/placeholder/index.js.map +1 -0
- package/lib/module/placeholder/types.js +34 -0
- package/lib/module/placeholder/types.js.map +1 -0
- package/lib/module/theme/IconThemeProvider.js +89 -0
- package/lib/module/theme/IconThemeProvider.js.map +1 -0
- package/lib/module/theme/context.js +47 -0
- package/lib/module/theme/context.js.map +1 -0
- package/lib/module/theme/index.js +19 -0
- package/lib/module/theme/index.js.map +1 -0
- package/lib/module/theme/types.js +33 -0
- package/lib/module/theme/types.js.map +1 -0
- package/lib/module/theme/useIconTheme.js +114 -0
- package/lib/module/theme/useIconTheme.js.map +1 -0
- package/lib/typescript/IconRenderer.d.ts +1 -1
- package/lib/typescript/IconRenderer.d.ts.map +1 -1
- package/lib/typescript/accessibility/AccessibilityProvider.d.ts +57 -0
- package/lib/typescript/accessibility/AccessibilityProvider.d.ts.map +1 -0
- package/lib/typescript/accessibility/index.d.ts +37 -0
- package/lib/typescript/accessibility/index.d.ts.map +1 -0
- package/lib/typescript/accessibility/types.d.ts +130 -0
- package/lib/typescript/accessibility/types.d.ts.map +1 -0
- package/lib/typescript/accessibility/useAccessibleIcon.d.ts +111 -0
- package/lib/typescript/accessibility/useAccessibleIcon.d.ts.map +1 -0
- package/lib/typescript/accessibility/utils.d.ts +29 -0
- package/lib/typescript/accessibility/utils.d.ts.map +1 -0
- package/lib/typescript/alias/Icon.d.ts +38 -0
- package/lib/typescript/alias/Icon.d.ts.map +1 -0
- package/lib/typescript/alias/IconAliasContext.d.ts +52 -0
- package/lib/typescript/alias/IconAliasContext.d.ts.map +1 -0
- package/lib/typescript/alias/createIconAliases.d.ts +77 -0
- package/lib/typescript/alias/createIconAliases.d.ts.map +1 -0
- package/lib/typescript/alias/index.d.ts +36 -0
- package/lib/typescript/alias/index.d.ts.map +1 -0
- package/lib/typescript/alias/types.d.ts +115 -0
- package/lib/typescript/alias/types.d.ts.map +1 -0
- package/lib/typescript/animated/AnimatedIcon.d.ts +45 -0
- package/lib/typescript/animated/AnimatedIcon.d.ts.map +1 -0
- package/lib/typescript/animated/index.d.ts +70 -0
- package/lib/typescript/animated/index.d.ts.map +1 -0
- package/lib/typescript/animated/presets.d.ts +35 -0
- package/lib/typescript/animated/presets.d.ts.map +1 -0
- package/lib/typescript/animated/types.d.ts +196 -0
- package/lib/typescript/animated/types.d.ts.map +1 -0
- package/lib/typescript/animated/useIconAnimation.d.ts +64 -0
- package/lib/typescript/animated/useIconAnimation.d.ts.map +1 -0
- package/lib/typescript/babel/ast-utils.d.ts +52 -0
- package/lib/typescript/babel/ast-utils.d.ts.map +1 -0
- package/lib/typescript/babel/cache-writer.d.ts +56 -0
- package/lib/typescript/babel/cache-writer.d.ts.map +1 -0
- package/lib/typescript/babel/collector.d.ts +107 -0
- package/lib/typescript/babel/collector.d.ts.map +1 -0
- package/lib/typescript/babel/index.d.ts +47 -0
- package/lib/typescript/babel/index.d.ts.map +1 -0
- package/lib/typescript/babel/plugin.d.ts +17 -0
- package/lib/typescript/babel/plugin.d.ts.map +1 -0
- package/lib/typescript/babel/types.d.ts +129 -0
- package/lib/typescript/babel/types.d.ts.map +1 -0
- package/lib/typescript/bundle/index.d.ts +161 -0
- package/lib/typescript/bundle/index.d.ts.map +1 -0
- package/lib/typescript/cache/CacheManager.d.ts +52 -4
- package/lib/typescript/cache/CacheManager.d.ts.map +1 -1
- package/lib/typescript/cli/commands/analyze.d.ts +10 -0
- package/lib/typescript/cli/commands/analyze.d.ts.map +1 -0
- package/lib/typescript/cli/commands/bundle.d.ts +10 -0
- package/lib/typescript/cli/commands/bundle.d.ts.map +1 -0
- package/lib/typescript/cli/index.d.ts +7 -0
- package/lib/typescript/cli/index.d.ts.map +1 -0
- package/lib/typescript/cli/parser.d.ts +18 -0
- package/lib/typescript/cli/parser.d.ts.map +1 -0
- package/lib/typescript/cli/types.d.ts +157 -0
- package/lib/typescript/cli/types.d.ts.map +1 -0
- package/lib/typescript/components/Academicons.d.ts +1 -1
- package/lib/typescript/components/AkarIcons.d.ts +1 -1
- package/lib/typescript/components/AntDesign.d.ts +1 -1
- package/lib/typescript/components/Arcticons.d.ts +1 -1
- package/lib/typescript/components/Basil.d.ts +1 -1
- package/lib/typescript/components/Bi.d.ts +1 -1
- package/lib/typescript/components/BitcoinIcons.d.ts +1 -1
- package/lib/typescript/components/Bpmn.d.ts +1 -1
- package/lib/typescript/components/Brandico.d.ts +1 -1
- package/lib/typescript/components/Bx.d.ts +1 -1
- package/lib/typescript/components/Bxl.d.ts +1 -1
- package/lib/typescript/components/Bxs.d.ts +1 -1
- package/lib/typescript/components/Bytesize.d.ts +1 -1
- package/lib/typescript/components/Carbon.d.ts +1 -1
- package/lib/typescript/components/Catppuccin.d.ts +1 -1
- package/lib/typescript/components/Cbi.d.ts +1 -1
- package/lib/typescript/components/Charm.d.ts +1 -1
- package/lib/typescript/components/Ci.d.ts +1 -1
- package/lib/typescript/components/Cib.d.ts +1 -1
- package/lib/typescript/components/Cif.d.ts +1 -1
- package/lib/typescript/components/Cil.d.ts +1 -1
- package/lib/typescript/components/CircleFlags.d.ts +1 -1
- package/lib/typescript/components/Circum.d.ts +1 -1
- package/lib/typescript/components/Clarity.d.ts +1 -1
- package/lib/typescript/components/Codex.d.ts +1 -1
- package/lib/typescript/components/Codicon.d.ts +1 -1
- package/lib/typescript/components/Covid.d.ts +1 -1
- package/lib/typescript/components/Cryptocurrency.d.ts +1 -1
- package/lib/typescript/components/CryptocurrencyColor.d.ts +1 -1
- package/lib/typescript/components/Cuida.d.ts +1 -1
- package/lib/typescript/components/Dashicons.d.ts +1 -1
- package/lib/typescript/components/Devicon.d.ts +1 -1
- package/lib/typescript/components/DeviconPlain.d.ts +1 -1
- package/lib/typescript/components/DinkieIcons.d.ts +1 -1
- package/lib/typescript/components/DuoIcons.d.ts +1 -1
- package/lib/typescript/components/Ei.d.ts +1 -1
- package/lib/typescript/components/El.d.ts +1 -1
- package/lib/typescript/components/EmojioneMonotone.d.ts +1 -1
- package/lib/typescript/components/Entypo.d.ts +1 -1
- package/lib/typescript/components/EntypoSocial.d.ts +1 -1
- package/lib/typescript/components/EosIcons.d.ts +1 -1
- package/lib/typescript/components/Ep.d.ts +1 -1
- package/lib/typescript/components/Et.d.ts +1 -1
- package/lib/typescript/components/Eva.d.ts +1 -1
- package/lib/typescript/components/F7.d.ts +1 -1
- package/lib/typescript/components/Fa.d.ts +1 -1
- package/lib/typescript/components/Fa6Brands.d.ts +1 -1
- package/lib/typescript/components/Fa6Regular.d.ts +1 -1
- package/lib/typescript/components/Fa6Solid.d.ts +1 -1
- package/lib/typescript/components/Fa7Brands.d.ts +1 -1
- package/lib/typescript/components/Fa7Regular.d.ts +1 -1
- package/lib/typescript/components/Fa7Solid.d.ts +1 -1
- package/lib/typescript/components/FaBrands.d.ts +1 -1
- package/lib/typescript/components/FaRegular.d.ts +1 -1
- package/lib/typescript/components/FaSolid.d.ts +1 -1
- package/lib/typescript/components/Fad.d.ts +1 -1
- package/lib/typescript/components/Famicons.d.ts +1 -1
- package/lib/typescript/components/Fe.d.ts +1 -1
- package/lib/typescript/components/Feather.d.ts +1 -1
- package/lib/typescript/components/FileIcons.d.ts +1 -1
- package/lib/typescript/components/Flag.d.ts +1 -1
- package/lib/typescript/components/Flagpack.d.ts +1 -1
- package/lib/typescript/components/FlatUi.d.ts +1 -1
- package/lib/typescript/components/Flowbite.d.ts +1 -1
- package/lib/typescript/components/Fluent.d.ts +1 -1
- package/lib/typescript/components/FluentColor.d.ts +1 -1
- package/lib/typescript/components/FluentEmoji.d.ts +1 -1
- package/lib/typescript/components/FluentEmojiFlat.d.ts +1 -1
- package/lib/typescript/components/FluentEmojiHighContrast.d.ts +1 -1
- package/lib/typescript/components/FluentMdl2.d.ts +1 -1
- package/lib/typescript/components/Fontelico.d.ts +1 -1
- package/lib/typescript/components/Fontisto.d.ts +1 -1
- package/lib/typescript/components/Formkit.d.ts +1 -1
- package/lib/typescript/components/Foundation.d.ts +1 -1
- package/lib/typescript/components/Gala.d.ts +1 -1
- package/lib/typescript/components/GameIcons.d.ts +1 -1
- package/lib/typescript/components/Garden.d.ts +1 -1
- package/lib/typescript/components/Geo.d.ts +1 -1
- package/lib/typescript/components/Gg.d.ts +1 -1
- package/lib/typescript/components/Gis.d.ts +1 -1
- package/lib/typescript/components/GravityUi.d.ts +1 -1
- package/lib/typescript/components/Gridicons.d.ts +1 -1
- package/lib/typescript/components/GrommetIcons.d.ts +1 -1
- package/lib/typescript/components/Guidance.d.ts +1 -1
- package/lib/typescript/components/Healthicons.d.ts +1 -1
- package/lib/typescript/components/Heroicons.d.ts +1 -1
- package/lib/typescript/components/HeroiconsOutline.d.ts +1 -1
- package/lib/typescript/components/HeroiconsSolid.d.ts +1 -1
- package/lib/typescript/components/Hugeicons.d.ts +1 -1
- package/lib/typescript/components/Humbleicons.d.ts +1 -1
- package/lib/typescript/components/Ic.d.ts +1 -1
- package/lib/typescript/components/IcomoonFree.d.ts +1 -1
- package/lib/typescript/components/IconPark.d.ts +1 -1
- package/lib/typescript/components/IconParkOutline.d.ts +1 -1
- package/lib/typescript/components/IconParkSolid.d.ts +1 -1
- package/lib/typescript/components/IconParkTwotone.d.ts +1 -1
- package/lib/typescript/components/Iconamoon.d.ts +1 -1
- package/lib/typescript/components/Iconoir.d.ts +1 -1
- package/lib/typescript/components/Icons8.d.ts +1 -1
- package/lib/typescript/components/Il.d.ts +1 -1
- package/lib/typescript/components/Ion.d.ts +1 -1
- package/lib/typescript/components/Iwwa.d.ts +1 -1
- package/lib/typescript/components/Ix.d.ts +1 -1
- package/lib/typescript/components/Jam.d.ts +1 -1
- package/lib/typescript/components/La.d.ts +1 -1
- package/lib/typescript/components/LetsIcons.d.ts +1 -1
- package/lib/typescript/components/LineMd.d.ts +1 -1
- package/lib/typescript/components/Lineicons.d.ts +1 -1
- package/lib/typescript/components/Logos.d.ts +1 -1
- package/lib/typescript/components/Ls.d.ts +1 -1
- package/lib/typescript/components/Lsicon.d.ts +1 -1
- package/lib/typescript/components/Lucide.d.ts +1 -1
- package/lib/typescript/components/LucideLab.d.ts +1 -1
- package/lib/typescript/components/Mage.d.ts +1 -1
- package/lib/typescript/components/Majesticons.d.ts +1 -1
- package/lib/typescript/components/Maki.d.ts +1 -1
- package/lib/typescript/components/Map.d.ts +1 -1
- package/lib/typescript/components/Marketeq.d.ts +1 -1
- package/lib/typescript/components/MaterialIconTheme.d.ts +1 -1
- package/lib/typescript/components/MaterialSymbols.d.ts +1 -1
- package/lib/typescript/components/MaterialSymbolsLight.d.ts +1 -1
- package/lib/typescript/components/Mdi.d.ts +1 -1
- package/lib/typescript/components/MdiLight.d.ts +1 -1
- package/lib/typescript/components/MedicalIcon.d.ts +1 -1
- package/lib/typescript/components/Memory.d.ts +1 -1
- package/lib/typescript/components/Meteocons.d.ts +1 -1
- package/lib/typescript/components/MeteorIcons.d.ts +1 -1
- package/lib/typescript/components/Mi.d.ts +1 -1
- package/lib/typescript/components/Mingcute.d.ts +1 -1
- package/lib/typescript/components/MonoIcons.d.ts +1 -1
- package/lib/typescript/components/Mynaui.d.ts +1 -1
- package/lib/typescript/components/Nimbus.d.ts +1 -1
- package/lib/typescript/components/Nonicons.d.ts +1 -1
- package/lib/typescript/components/Nrk.d.ts +1 -1
- package/lib/typescript/components/Octicon.d.ts +1 -1
- package/lib/typescript/components/Oi.d.ts +1 -1
- package/lib/typescript/components/Ooui.d.ts +1 -1
- package/lib/typescript/components/Oui.d.ts +1 -1
- package/lib/typescript/components/Pajamas.d.ts +1 -1
- package/lib/typescript/components/Pepicons.d.ts +1 -1
- package/lib/typescript/components/PepiconsPencil.d.ts +1 -1
- package/lib/typescript/components/PepiconsPop.d.ts +1 -1
- package/lib/typescript/components/PepiconsPrint.d.ts +1 -1
- package/lib/typescript/components/Ph.d.ts +1 -1
- package/lib/typescript/components/Picon.d.ts +1 -1
- package/lib/typescript/components/Pixel.d.ts +1 -1
- package/lib/typescript/components/Pixelarticons.d.ts +1 -1
- package/lib/typescript/components/Prime.d.ts +1 -1
- package/lib/typescript/components/Proicons.d.ts +1 -1
- package/lib/typescript/components/Ps.d.ts +1 -1
- package/lib/typescript/components/QlementineIcons.d.ts +1 -1
- package/lib/typescript/components/Quill.d.ts +1 -1
- package/lib/typescript/components/RadixIcons.d.ts +1 -1
- package/lib/typescript/components/Raphael.d.ts +1 -1
- package/lib/typescript/components/Ri.d.ts +1 -1
- package/lib/typescript/components/RivetIcons.d.ts +1 -1
- package/lib/typescript/components/Roentgen.d.ts +1 -1
- package/lib/typescript/components/Si.d.ts +1 -1
- package/lib/typescript/components/SiGlyph.d.ts +1 -1
- package/lib/typescript/components/Sidekickicons.d.ts +1 -1
- package/lib/typescript/components/SimpleIcons.d.ts +1 -1
- package/lib/typescript/components/SimpleLineIcons.d.ts +1 -1
- package/lib/typescript/components/SkillIcons.d.ts +1 -1
- package/lib/typescript/components/Solar.d.ts +1 -1
- package/lib/typescript/components/Stash.d.ts +1 -1
- package/lib/typescript/components/Streamline.d.ts +1 -1
- package/lib/typescript/components/StreamlineBlock.d.ts +1 -1
- package/lib/typescript/components/StreamlineColor.d.ts +1 -1
- package/lib/typescript/components/StreamlineCyber.d.ts +1 -1
- package/lib/typescript/components/StreamlineCyberColor.d.ts +1 -1
- package/lib/typescript/components/StreamlineEmojis.d.ts +1 -1
- package/lib/typescript/components/StreamlineFlex.d.ts +1 -1
- package/lib/typescript/components/StreamlineFlexColor.d.ts +1 -1
- package/lib/typescript/components/StreamlineFreehand.d.ts +1 -1
- package/lib/typescript/components/StreamlineFreehandColor.d.ts +1 -1
- package/lib/typescript/components/StreamlineKameleonColor.d.ts +1 -1
- package/lib/typescript/components/StreamlineLogos.d.ts +1 -1
- package/lib/typescript/components/StreamlinePixel.d.ts +1 -1
- package/lib/typescript/components/StreamlinePlump.d.ts +1 -1
- package/lib/typescript/components/StreamlinePlumpColor.d.ts +1 -1
- package/lib/typescript/components/StreamlineSharp.d.ts +1 -1
- package/lib/typescript/components/StreamlineSharpColor.d.ts +1 -1
- package/lib/typescript/components/StreamlineStickiesColor.d.ts +1 -1
- package/lib/typescript/components/StreamlineUltimate.d.ts +1 -1
- package/lib/typescript/components/StreamlineUltimateColor.d.ts +1 -1
- package/lib/typescript/components/Subway.d.ts +1 -1
- package/lib/typescript/components/SvgSpinners.d.ts +1 -1
- package/lib/typescript/components/SystemUicons.d.ts +1 -1
- package/lib/typescript/components/Tabler.d.ts +1 -1
- package/lib/typescript/components/Tdesign.d.ts +1 -1
- package/lib/typescript/components/Teenyicons.d.ts +1 -1
- package/lib/typescript/components/Temaki.d.ts +1 -1
- package/lib/typescript/components/Token.d.ts +1 -1
- package/lib/typescript/components/TokenBranded.d.ts +1 -1
- package/lib/typescript/components/Topcoat.d.ts +1 -1
- package/lib/typescript/components/Typcn.d.ts +1 -1
- package/lib/typescript/components/Uil.d.ts +1 -1
- package/lib/typescript/components/Uim.d.ts +1 -1
- package/lib/typescript/components/Uis.d.ts +1 -1
- package/lib/typescript/components/Uit.d.ts +1 -1
- package/lib/typescript/components/Uiw.d.ts +1 -1
- package/lib/typescript/components/Unjs.d.ts +1 -1
- package/lib/typescript/components/Vaadin.d.ts +1 -1
- package/lib/typescript/components/Vs.d.ts +1 -1
- package/lib/typescript/components/VscodeIcons.d.ts +1 -1
- package/lib/typescript/components/Websymbol.d.ts +1 -1
- package/lib/typescript/components/Weui.d.ts +1 -1
- package/lib/typescript/components/Whh.d.ts +1 -1
- package/lib/typescript/components/Wi.d.ts +1 -1
- package/lib/typescript/components/Wpf.d.ts +1 -1
- package/lib/typescript/components/Zmdi.d.ts +1 -1
- package/lib/typescript/components/Zondicons.d.ts +1 -1
- package/lib/typescript/components/index.d.ts +38 -1
- package/lib/typescript/components/index.d.ts.map +1 -1
- package/lib/typescript/config/ConfigManager.d.ts +102 -0
- package/lib/typescript/config/ConfigManager.d.ts.map +1 -0
- package/lib/typescript/config/index.d.ts +22 -0
- package/lib/typescript/config/index.d.ts.map +1 -0
- package/lib/typescript/config/types.d.ts +112 -0
- package/lib/typescript/config/types.d.ts.map +1 -0
- package/lib/typescript/createIconSet.d.ts +1 -1
- package/lib/typescript/createIconSet.d.ts.map +1 -1
- package/lib/typescript/explorer/IconExplorer.d.ts +54 -0
- package/lib/typescript/explorer/IconExplorer.d.ts.map +1 -0
- package/lib/typescript/explorer/iconSets.d.ts +35 -0
- package/lib/typescript/explorer/iconSets.d.ts.map +1 -0
- package/lib/typescript/explorer/index.d.ts +33 -0
- package/lib/typescript/explorer/index.d.ts.map +1 -0
- package/lib/typescript/explorer/types.d.ts +329 -0
- package/lib/typescript/explorer/types.d.ts.map +1 -0
- package/lib/typescript/explorer/useExplorer.d.ts +18 -0
- package/lib/typescript/explorer/useExplorer.d.ts.map +1 -0
- package/lib/typescript/index.d.ts +25 -4
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/navigation/createDrawerIcon.d.ts +74 -0
- package/lib/typescript/navigation/createDrawerIcon.d.ts.map +1 -0
- package/lib/typescript/navigation/createHeaderIcon.d.ts +145 -0
- package/lib/typescript/navigation/createHeaderIcon.d.ts.map +1 -0
- package/lib/typescript/navigation/createTabBarIcon.d.ts +99 -0
- package/lib/typescript/navigation/createTabBarIcon.d.ts.map +1 -0
- package/lib/typescript/navigation/index.d.ts +51 -0
- package/lib/typescript/navigation/index.d.ts.map +1 -0
- package/lib/typescript/navigation/types.d.ts +149 -0
- package/lib/typescript/navigation/types.d.ts.map +1 -0
- package/lib/typescript/navigation/useNavigationIcon.d.ts +91 -0
- package/lib/typescript/navigation/useNavigationIcon.d.ts.map +1 -0
- package/lib/typescript/network/IconifyAPI.d.ts +32 -0
- package/lib/typescript/network/IconifyAPI.d.ts.map +1 -1
- package/lib/typescript/network/index.d.ts +2 -1
- package/lib/typescript/network/index.d.ts.map +1 -1
- package/lib/typescript/performance/PerformanceMonitor.d.ts +76 -0
- package/lib/typescript/performance/PerformanceMonitor.d.ts.map +1 -0
- package/lib/typescript/performance/index.d.ts +21 -0
- package/lib/typescript/performance/index.d.ts.map +1 -0
- package/lib/typescript/performance/types.d.ts +156 -0
- package/lib/typescript/performance/types.d.ts.map +1 -0
- package/lib/typescript/placeholder/PlaceholderFactory.d.ts +44 -0
- package/lib/typescript/placeholder/PlaceholderFactory.d.ts.map +1 -0
- package/lib/typescript/placeholder/Pulse.d.ts +18 -0
- package/lib/typescript/placeholder/Pulse.d.ts.map +1 -0
- package/lib/typescript/placeholder/Shimmer.d.ts +19 -0
- package/lib/typescript/placeholder/Shimmer.d.ts.map +1 -0
- package/lib/typescript/placeholder/Skeleton.d.ts +18 -0
- package/lib/typescript/placeholder/Skeleton.d.ts.map +1 -0
- package/lib/typescript/placeholder/index.d.ts +12 -0
- package/lib/typescript/placeholder/index.d.ts.map +1 -0
- package/lib/typescript/placeholder/types.d.ts +63 -0
- package/lib/typescript/placeholder/types.d.ts.map +1 -0
- package/lib/typescript/theme/IconThemeProvider.d.ts +64 -0
- package/lib/typescript/theme/IconThemeProvider.d.ts.map +1 -0
- package/lib/typescript/theme/context.d.ts +24 -0
- package/lib/typescript/theme/context.d.ts.map +1 -0
- package/lib/typescript/theme/index.d.ts +10 -0
- package/lib/typescript/theme/index.d.ts.map +1 -0
- package/lib/typescript/theme/types.d.ts +85 -0
- package/lib/typescript/theme/types.d.ts.map +1 -0
- package/lib/typescript/theme/useIconTheme.d.ts +78 -0
- package/lib/typescript/theme/useIconTheme.d.ts.map +1 -0
- package/lib/typescript/types/index.d.ts +58 -1
- package/lib/typescript/types/index.d.ts.map +1 -1
- package/package.json +41 -3
- package/src/IconRenderer.tsx +91 -4
- package/src/accessibility/AccessibilityProvider.tsx +220 -0
- package/src/accessibility/index.ts +63 -0
- package/src/accessibility/types.ts +152 -0
- package/src/accessibility/useAccessibleIcon.ts +220 -0
- package/src/accessibility/utils.ts +180 -0
- package/src/alias/Icon.tsx +113 -0
- package/src/alias/IconAliasContext.tsx +180 -0
- package/src/alias/createIconAliases.tsx +233 -0
- package/src/alias/index.ts +59 -0
- package/src/alias/types.ts +132 -0
- package/src/animated/AnimatedIcon.tsx +116 -0
- package/src/animated/index.ts +97 -0
- package/src/animated/presets.ts +211 -0
- package/src/animated/types.ts +239 -0
- package/src/animated/useIconAnimation.ts +383 -0
- package/src/babel/ast-utils.ts +219 -0
- package/src/babel/cache-writer.ts +323 -0
- package/src/babel/collector.ts +224 -0
- package/src/babel/index.ts +60 -0
- package/src/babel/plugin.ts +254 -0
- package/src/babel/types.ts +717 -0
- package/src/bundle/index.ts +313 -0
- package/src/cache/CacheManager.ts +123 -6
- package/src/cli/commands/analyze.ts +195 -0
- package/src/cli/commands/bundle.ts +231 -0
- package/src/cli/index.ts +153 -0
- package/src/cli/parser.ts +275 -0
- package/src/cli/types.ts +187 -0
- package/src/components/index.ts +52 -1
- package/src/config/ConfigManager.ts +196 -0
- package/src/config/index.ts +34 -0
- package/src/config/types.ts +149 -0
- package/src/createIconSet.tsx +48 -9
- package/src/explorer/IconExplorer.tsx +844 -0
- package/src/explorer/iconSets.ts +334 -0
- package/src/explorer/index.ts +64 -0
- package/src/explorer/types.ts +392 -0
- package/src/explorer/useExplorer.ts +390 -0
- package/src/index.ts +218 -9
- package/src/navigation/createDrawerIcon.tsx +113 -0
- package/src/navigation/createHeaderIcon.tsx +213 -0
- package/src/navigation/createTabBarIcon.tsx +180 -0
- package/src/navigation/index.ts +80 -0
- package/src/navigation/types.ts +155 -0
- package/src/navigation/useNavigationIcon.tsx +156 -0
- package/src/network/IconifyAPI.ts +182 -14
- package/src/network/index.ts +11 -1
- package/src/performance/PerformanceMonitor.ts +367 -0
- package/src/performance/index.ts +39 -0
- package/src/performance/types.ts +185 -0
- package/src/placeholder/PlaceholderFactory.tsx +133 -0
- package/src/placeholder/Pulse.tsx +86 -0
- package/src/placeholder/Shimmer.tsx +104 -0
- package/src/placeholder/Skeleton.tsx +52 -0
- package/src/placeholder/index.ts +21 -0
- package/src/placeholder/types.ts +78 -0
- package/src/theme/IconThemeProvider.tsx +94 -0
- package/src/theme/context.ts +51 -0
- package/src/theme/index.ts +19 -0
- package/src/theme/types.ts +108 -0
- package/src/theme/useIconTheme.ts +119 -0
- package/src/types/index.ts +78 -1
- package/lib/commonjs/components/Phosphor.js +0 -493
- package/lib/commonjs/components/Phosphor.js.map +0 -1
- package/lib/module/components/Phosphor.js +0 -488
- package/lib/module/components/Phosphor.js.map +0 -1
- package/lib/typescript/components/Phosphor.d.ts +0 -472
- package/lib/typescript/components/Phosphor.d.ts.map +0 -1
- package/src/components/Phosphor.tsx +0 -506
|
@@ -7455,7 +7455,7 @@ declare const mdiIconNames: {
|
|
|
7455
7455
|
};
|
|
7456
7456
|
export type MdiIconName = keyof typeof mdiIconNames;
|
|
7457
7457
|
export declare const Mdi: {
|
|
7458
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"symbol" | "function" | "sort" | "map" | "filter" | "android" | "web" | "loading" | "signal" | "svg" | "solid" | "wrap" | "scale" | "matrix" | "image" | "link" | "text" | "alert" | "menu" | "radio" | "switch" | "tab" | "timer" | "key" | "repeat" | "anchor" | "details" | "head" | "label" | "script" | "select" | "table" | "video" | "circle" | "ellipse" | "marker" | "stop" | "xml" | "access-point" | "access-point-check" | "access-point-minus" | "access-point-network" | "access-point-network-off" | "access-point-off" | "access-point-plus" | "access-point-remove" | "adjust" | "advertisements" | "advertisements-off" | "air-horn" | "alarm-note" | "alarm-note-off" | "alien" | "alien-outline" | "align-horizontal-center" | "align-horizontal-left" | "align-horizontal-right" | "align-vertical-bottom" | "align-vertical-center" | "align-vertical-top" | "all-inclusive" | "all-inclusive-box" | "all-inclusive-box-outline" | "altimeter" | "ammunition" | "ampersand" | "amplifier-off" | "animation" | "animation-outline" | "animation-play" | "animation-play-outline" | "antenna" | "anvil" | "apple-keyboard-caps" | "apple-keyboard-command" | "apple-keyboard-control" | "apple-keyboard-option" | "apple-keyboard-shift" | "application" | "application-export" | "application-import" | "application-outline" | "apps-box" | "archive" | "archive-arrow-down" | "archive-arrow-down-outline" | "archive-arrow-up" | "archive-arrow-up-outline" | "archive-cancel" | "archive-cancel-outline" | "archive-check" | "archive-check-outline" | "archive-eye" | "archive-eye-outline" | "archive-minus" | "archive-minus-outline" | "archive-off" | "archive-off-outline" | "archive-outline" | "archive-plus" | "archive-plus-outline" | "archive-refresh" | "archive-refresh-outline" | "archive-remove" | "archive-remove-outline" | "archive-search" | "archive-search-outline" | "archive-star" | "archive-star-outline" | "archive-sync" | "archive-sync-outline" | "arm-flex" | "arm-flex-outline" | "arrow-decision-auto" | "arrow-decision-auto-outline" | "arrow-left-bottom" | "arrow-left-bottom-bold" | "arrow-left-top" | "arrow-left-top-bold" | "arrow-right-bottom" | "arrow-right-bottom-bold" | "arrow-right-top" | "arrow-right-top-bold" | "arrow-u-down-left" | "arrow-u-down-left-bold" | "arrow-u-down-right" | "arrow-u-down-right-bold" | "arrow-u-left-bottom" | "arrow-u-left-bottom-bold" | "arrow-u-left-top" | "arrow-u-left-top-bold" | "arrow-u-right-bottom" | "arrow-u-right-bottom-bold" | "arrow-u-right-top" | "arrow-u-right-top-bold" | "arrow-u-up-left" | "arrow-u-up-left-bold" | "arrow-u-up-right" | "arrow-u-up-right-bold" | "arrow-up-left" | "arrow-up-left-bold" | "arrow-up-right" | "arrow-up-right-bold" | "aspect-ratio" | "assistant" | "asterisk" | "asterisk-circle-outline" | "at" | "atm" | "attachment" | "attachment-check" | "attachment-minus" | "attachment-off" | "attachment-plus" | "attachment-remove" | "augmented-reality" | "auto-download" | "auto-mode" | "auto-upload" | "axis" | "axis-x-rotate-clockwise" | "axis-x-rotate-counterclockwise" | "axis-y-rotate-clockwise" | "axis-y-rotate-counterclockwise" | "axis-z-rotate-clockwise" | "axis-z-rotate-counterclockwise" | "backburger" | "backspace" | "backspace-outline" | "backspace-reverse" | "backspace-reverse-outline" | "backup-restore" | "bag-personal-plus" | "bag-personal-plus-outline" | "bag-personal-tag" | "bag-personal-tag-outline" | "ballot" | "ballot-outline" | "ballot-recount" | "ballot-recount-outline" | "bandage" | "barcode" | "barcode-off" | "barcode-scan" | "barrel" | "barrel-outline" | "bench" | "bench-back" | "betamax" | "billboard" | "binoculars" | "bio" | "block-helper" | "bluetooth" | "bluetooth-connect" | "bluetooth-off" | "bluetooth-transfer" | "blur" | "blur-linear" | "blur-off" | "blur-radial" | "book" | "book-alphabet" | "book-arrow-down" | "book-arrow-down-outline" | "book-arrow-left" | "book-arrow-left-outline" | "book-arrow-right" | "book-arrow-right-outline" | "book-arrow-up" | "book-arrow-up-outline" | "book-cancel" | "book-cancel-outline" | "book-check" | "book-check-outline" | "book-education" | "book-education-outline" | "book-heart" | "book-heart-outline" | "book-information-variant" | "book-minus" | "book-minus-multiple" | "book-minus-multiple-outline" | "book-minus-outline" | "book-multiple" | "book-multiple-outline" | "book-off" | "book-off-outline" | "book-open" | "book-open-blank-variant" | "book-open-blank-variant-outline" | "book-open-outline" | "book-open-page-variant" | "book-open-page-variant-outline" | "book-open-variant" | "book-open-variant-outline" | "book-outline" | "book-play" | "book-play-outline" | "book-plus" | "book-plus-multiple" | "book-plus-multiple-outline" | "book-plus-outline" | "book-refresh" | "book-refresh-outline" | "book-remove" | "book-remove-multiple" | "book-remove-multiple-outline" | "book-remove-outline" | "book-search" | "book-search-outline" | "book-sync" | "book-sync-outline" | "book-variant" | "bookmark" | "bookmark-box" | "bookmark-box-multiple" | "bookmark-box-multiple-outline" | "bookmark-box-outline" | "bookmark-check" | "bookmark-check-outline" | "bookmark-minus" | "bookmark-minus-outline" | "bookmark-multiple" | "bookmark-multiple-outline" | "bookmark-off" | "bookmark-off-outline" | "bookmark-outline" | "bookmark-plus" | "bookmark-plus-outline" | "bookmark-remove" | "bookmark-remove-outline" | "bookshelf" | "bottle-soda-classic-outline" | "box-cutter-off" | "box-shadow" | "braille" | "briefcase" | "briefcase-arrow-left-right" | "briefcase-arrow-left-right-outline" | "briefcase-arrow-up-down" | "briefcase-arrow-up-down-outline" | "briefcase-check" | "briefcase-check-outline" | "briefcase-download" | "briefcase-download-outline" | "briefcase-eye" | "briefcase-eye-outline" | "briefcase-minus" | "briefcase-minus-outline" | "briefcase-off" | "briefcase-off-outline" | "briefcase-outline" | "briefcase-plus" | "briefcase-plus-outline" | "briefcase-remove" | "briefcase-remove-outline" | "briefcase-search" | "briefcase-search-outline" | "briefcase-upload" | "briefcase-upload-outline" | "briefcase-variant" | "briefcase-variant-off" | "briefcase-variant-off-outline" | "briefcase-variant-outline" | "brightness-1" | "brightness-2" | "brightness-3" | "brightness-4" | "brightness-5" | "brightness-6" | "brightness-auto" | "broom" | "brush-off" | "bucket" | "bucket-outline" | "bug-pause" | "bug-pause-outline" | "bug-play" | "bug-play-outline" | "bug-stop" | "bug-stop-outline" | "bullet" | "bulletin-board" | "bullhorn" | "bullhorn-outline" | "bullhorn-variant" | "bullhorn-variant-outline" | "bus-sign" | "bus-wrench" | "cable-data" | "campfire" | "cancel" | "cannabis-off" | "card-bulleted" | "card-bulleted-off" | "card-bulleted-off-outline" | "card-bulleted-outline" | "card-minus" | "card-minus-outline" | "card-multiple" | "card-multiple-outline" | "card-off" | "card-off-outline" | "card-plus" | "card-plus-outline" | "card-remove" | "card-remove-outline" | "card-search" | "card-search-outline" | "card-text" | "card-text-outline" | "cards-club-outline" | "cards-heart-outline" | "case-sensitive-alt" | "cast-audio-variant" | "cast-education" | "certificate" | "certificate-outline" | "chair-school" | "charity" | "charity-search" | "chat" | "chat-minus" | "chat-minus-outline" | "chat-outline" | "chat-plus" | "chat-plus-outline" | "chat-processing" | "chat-processing-outline" | "chat-question" | "chat-question-outline" | "chat-remove" | "chat-remove-outline" | "chat-sleep" | "chat-sleep-outline" | "check-all" | "check-bold" | "check-decagram" | "check-decagram-outline" | "check-network" | "check-network-outline" | "check-outline" | "check-underline" | "check-underline-circle" | "check-underline-circle-outline" | "chemical-weapon" | "chevron-triple-down" | "chevron-triple-left" | "chevron-triple-right" | "chevron-triple-up" | "chili-hot-outline" | "chili-medium-outline" | "chili-mild-outline" | "chili-off-outline" | "chip" | "cigar" | "cigar-off" | "circle-box" | "circle-box-outline" | "circle-expand" | "circle-medium" | "circle-off-outline" | "circle-slice-1" | "circle-slice-2" | "circle-slice-3" | "circle-slice-4" | "circle-slice-5" | "circle-slice-6" | "circle-slice-7" | "circle-slice-8" | "clipboard" | "clipboard-arrow-down" | "clipboard-arrow-down-outline" | "clipboard-arrow-left" | "clipboard-arrow-left-outline" | "clipboard-arrow-right" | "clipboard-arrow-right-outline" | "clipboard-arrow-up" | "clipboard-arrow-up-outline" | "clipboard-check" | "clipboard-check-multiple" | "clipboard-check-multiple-outline" | "clipboard-check-outline" | "clipboard-flow" | "clipboard-flow-outline" | "clipboard-list" | "clipboard-list-outline" | "clipboard-minus" | "clipboard-minus-outline" | "clipboard-multiple" | "clipboard-multiple-outline" | "clipboard-off" | "clipboard-off-outline" | "clipboard-outline" | "clipboard-play" | "clipboard-play-multiple" | "clipboard-play-multiple-outline" | "clipboard-play-outline" | "clipboard-plus" | "clipboard-plus-outline" | "clipboard-remove" | "clipboard-remove-outline" | "clipboard-search" | "clipboard-search-outline" | "clipboard-text" | "clipboard-text-multiple" | "clipboard-text-multiple-outline" | "clipboard-text-off" | "clipboard-text-off-outline" | "clipboard-text-outline" | "clipboard-text-play" | "clipboard-text-play-outline" | "clipboard-text-search" | "clipboard-text-search-outline" | "clippy" | "close-network" | "close-network-outline" | "close-octagon" | "close-octagon-outline" | "close-outline" | "close-thick" | "closed-caption" | "closed-caption-outline" | "collage" | "collapse-all" | "collapse-all-outline" | "comma" | "comma-box" | "comma-box-outline" | "comma-circle" | "comma-circle-outline" | "comment" | "comment-arrow-left" | "comment-arrow-left-outline" | "comment-arrow-right" | "comment-arrow-right-outline" | "comment-bookmark" | "comment-bookmark-outline" | "comment-check" | "comment-check-outline" | "comment-eye" | "comment-eye-outline" | "comment-flash" | "comment-flash-outline" | "comment-minus" | "comment-minus-outline" | "comment-multiple" | "comment-multiple-outline" | "comment-off" | "comment-off-outline" | "comment-outline" | "comment-plus" | "comment-plus-outline" | "comment-processing" | "comment-processing-outline" | "comment-question" | "comment-question-outline" | "comment-quote" | "comment-quote-outline" | "comment-remove" | "comment-remove-outline" | "comment-search" | "comment-search-outline" | "comment-text" | "comment-text-multiple" | "comment-text-multiple-outline" | "comment-text-outline" | "compare" | "compare-remove" | "console" | "console-line" | "console-network" | "console-network-outline" | "consolidate" | "contacts" | "contacts-outline" | "contain" | "contain-end" | "contain-start" | "content-duplicate" | "content-save" | "content-save-all" | "content-save-all-outline" | "content-save-check" | "content-save-check-outline" | "content-save-minus" | "content-save-minus-outline" | "content-save-move" | "content-save-move-outline" | "content-save-off" | "content-save-off-outline" | "content-save-outline" | "content-save-plus" | "content-save-plus-outline" | "contrast" | "contrast-box" | "contrast-circle" | "copyleft" | "copyright" | "cpu-32-bit" | "cpu-64-bit" | "crane" | "creation" | "creation-outline" | "crop" | "crop-free" | "crop-landscape" | "crop-portrait" | "crop-rotate" | "crop-square" | "crown" | "crown-outline" | "cube-off" | "cube-scan" | "cube-send" | "cube-unfolded" | "current-ac" | "cursor-default" | "cursor-default-click" | "cursor-default-click-outline" | "cursor-default-gesture" | "cursor-default-gesture-outline" | "cursor-default-outline" | "cursor-move" | "cursor-pointer" | "cursor-text" | "data-matrix" | "data-matrix-minus" | "data-matrix-plus" | "data-matrix-remove" | "data-matrix-scan" | "death-star" | "death-star-variant" | "deathly-hallows" | "debug-step-into" | "debug-step-out" | "debug-step-over" | "delete" | "delete-circle" | "delete-circle-outline" | "delete-empty" | "delete-empty-outline" | "delete-forever" | "delete-forever-outline" | "delete-off" | "delete-off-outline" | "delete-outline" | "delete-restore" | "delete-sweep" | "delete-sweep-outline" | "delete-variant" | "desk" | "developer-board" | "dialpad" | "diamond" | "diamond-outline" | "diamond-stone" | "dip-switch" | "directions" | "directions-fork" | "distribute-horizontal-center" | "distribute-horizontal-left" | "distribute-horizontal-right" | "distribute-vertical-bottom" | "distribute-vertical-center" | "distribute-vertical-top" | "diversify" | "diving-helmet" | "diving-scuba-flag" | "diving-scuba-tank" | "diving-scuba-tank-multiple" | "dns" | "dns-outline" | "dock-bottom" | "dock-left" | "dock-right" | "dock-top" | "dock-window" | "dolly" | "domain-off" | "domain-plus" | "domain-remove" | "domain-switch" | "dome-light" | "domino-mask" | "dots-circle" | "dots-grid" | "dots-hexagon" | "dots-horizontal" | "dots-horizontal-circle" | "dots-horizontal-circle-outline" | "dots-square" | "dots-triangle" | "dots-vertical" | "dots-vertical-circle" | "dots-vertical-circle-outline" | "download" | "download-box" | "download-box-outline" | "download-circle" | "download-circle-outline" | "download-multiple" | "download-multiple-outline" | "download-network" | "download-network-outline" | "download-off" | "download-off-outline" | "download-outline" | "drag" | "drag-horizontal" | "drag-horizontal-variant" | "drag-variant" | "drag-vertical" | "drag-vertical-variant" | "drama-masks" | "earth-arrow-down" | "earth-arrow-left" | "earth-arrow-up" | "eject" | "eject-circle" | "eject-circle-outline" | "eject-outline" | "electric-switch" | "electric-switch-closed" | "elevation-decline" | "elevation-rise" | "email" | "email-arrow-left" | "email-arrow-left-outline" | "email-arrow-right" | "email-arrow-right-outline" | "email-box" | "email-check" | "email-check-outline" | "email-fast" | "email-fast-outline" | "email-heart-outline" | "email-mark-as-unread" | "email-minus" | "email-minus-outline" | "email-multiple" | "email-multiple-outline" | "email-newsletter" | "email-off" | "email-off-outline" | "email-open" | "email-open-heart-outline" | "email-open-multiple" | "email-open-multiple-outline" | "email-open-outline" | "email-outline" | "email-plus" | "email-plus-outline" | "email-remove" | "email-remove-outline" | "email-seal" | "email-seal-outline" | "email-search" | "email-search-outline" | "email-sync" | "email-sync-outline" | "email-variant" | "emoticon-minus" | "emoticon-minus-outline" | "emoticon-plus" | "emoticon-plus-outline" | "emoticon-remove" | "emoticon-remove-outline" | "eraser" | "eraser-variant" | "escalator-box" | "et" | "ethernet" | "ethernet-cable" | "ethernet-cable-off" | "ethernet-off" | "exclamation-thick" | "exit-to-app" | "expand-all" | "expand-all-outline" | "expansion-card-variant" | "export" | "export-variant" | "eye" | "eye-arrow-left" | "eye-arrow-left-outline" | "eye-arrow-right" | "eye-arrow-right-outline" | "eye-check" | "eye-check-outline" | "eye-circle" | "eye-circle-outline" | "eye-closed" | "eye-lock" | "eye-lock-open" | "eye-lock-open-outline" | "eye-lock-outline" | "eye-minus" | "eye-minus-outline" | "eye-off" | "eye-off-outline" | "eye-outline" | "eye-plus" | "eye-plus-outline" | "eye-refresh" | "eye-refresh-outline" | "eye-remove" | "eye-remove-outline" | "face-agent" | "fan-auto" | "fast-forward" | "fast-forward-10" | "fast-forward-15" | "fast-forward-30" | "fast-forward-45" | "fast-forward-5" | "fast-forward-60" | "fast-forward-outline" | "feature-search" | "feature-search-outline" | "ferris-wheel" | "filmstrip-box" | "filter-check" | "filter-check-outline" | "filter-menu" | "filter-menu-outline" | "filter-minus" | "filter-minus-outline" | "filter-multiple" | "filter-multiple-outline" | "filter-off" | "filter-off-outline" | "filter-outline" | "filter-plus" | "filter-plus-outline" | "filter-remove" | "filter-remove-outline" | "filter-variant" | "filter-variant-minus" | "filter-variant-plus" | "filter-variant-remove" | "find-replace" | "fingerprint" | "fingerprint-off" | "fire-hydrant" | "fire-hydrant-off" | "fire-station" | "firewire" | "firework-off" | "fit-to-screen" | "fit-to-screen-outline" | "flag" | "flag-minus" | "flag-minus-outline" | "flag-off" | "flag-off-outline" | "flag-outline" | "flag-plus" | "flag-plus-outline" | "flag-remove" | "flag-remove-outline" | "flag-triangle" | "flag-variant" | "flag-variant-minus" | "flag-variant-minus-outline" | "flag-variant-off" | "flag-variant-off-outline" | "flag-variant-outline" | "flag-variant-plus" | "flag-variant-plus-outline" | "flag-variant-remove" | "flag-variant-remove-outline" | "flare" | "flash-auto" | "flash-off" | "flash-off-outline" | "flash-red-eye" | "flashlight" | "flashlight-off" | "flask-empty-off" | "flask-empty-off-outline" | "flask-off" | "flask-off-outline" | "fleur-de-lis" | "floppy" | "floppy-variant" | "foot-print" | "forum" | "forum-minus" | "forum-minus-outline" | "forum-outline" | "forum-plus" | "forum-plus-outline" | "forum-remove" | "forum-remove-outline" | "forwardburger" | "fountain" | "fraction-one-half" | "frequently-asked-questions" | "fullscreen" | "fullscreen-exit" | "gantry-crane" | "gas-cylinder" | "gas-station-in-use" | "gas-station-in-use-outline" | "gas-station-off" | "gas-station-off-outline" | "gas-station-outline" | "gate-and" | "gate-buffer" | "gate-nand" | "gate-nor" | "gate-not" | "gate-or" | "gate-xnor" | "gate-xor" | "gavel" | "gender-female" | "gender-male" | "gender-male-female" | "gender-male-female-variant" | "gender-non-binary" | "gender-transgender" | "gesture-double-tap" | "gesture-pinch" | "gesture-spread" | "gesture-swipe" | "gesture-swipe-down" | "gesture-swipe-horizontal" | "gesture-swipe-left" | "gesture-swipe-right" | "gesture-swipe-up" | "gesture-swipe-vertical" | "gesture-tap" | "gesture-tap-box" | "gesture-tap-hold" | "gesture-two-double-tap" | "gesture-two-tap" | "globe-model" | "go-kart-track" | "gold" | "google-my-business" | "google-nearby" | "google-podcast" | "google-spreadsheet" | "google-street-view" | "graph" | "graph-outline" | "grid" | "grid-large" | "grid-off" | "group" | "guy-fawkes-mask" | "hand-back-left" | "hand-back-left-off" | "hand-back-left-off-outline" | "hand-back-left-outline" | "hand-back-right" | "hand-back-right-off" | "hand-back-right-off-outline" | "hand-back-right-outline" | "hand-clap" | "hand-clap-off" | "hand-extended" | "hand-extended-outline" | "hand-front-left" | "hand-front-left-outline" | "hand-front-right" | "hand-front-right-outline" | "hand-heart" | "hand-heart-outline" | "hand-okay" | "hand-peace" | "hand-peace-variant" | "hand-pointing-down" | "hand-pointing-left" | "hand-pointing-right" | "hand-pointing-up" | "hand-wave" | "hand-wave-outline" | "handcuffs" | "hands-pray" | "handshake" | "handshake-outline" | "harddisk" | "harddisk-plus" | "harddisk-remove" | "hdr" | "hdr-off" | "head-check" | "head-check-outline" | "head-dots-horizontal" | "head-dots-horizontal-outline" | "head-flash" | "head-flash-outline" | "head-heart" | "head-heart-outline" | "head-lightbulb" | "head-lightbulb-outline" | "head-minus" | "head-minus-outline" | "head-outline" | "head-plus" | "head-plus-outline" | "head-question" | "head-question-outline" | "head-remove" | "head-remove-outline" | "head-snowflake" | "head-snowflake-outline" | "head-sync" | "head-sync-outline" | "headphones-bluetooth" | "heart-box" | "heart-box-outline" | "heart-broken" | "heart-broken-outline" | "heart-circle" | "heart-circle-outline" | "heart-minus" | "heart-minus-outline" | "heart-multiple" | "heart-multiple-outline" | "heart-plus" | "heart-plus-outline" | "heart-remove" | "heart-remove-outline" | "heart-search" | "help" | "help-box" | "help-box-multiple" | "help-box-multiple-outline" | "help-box-outline" | "help-circle" | "help-circle-outline" | "help-network" | "help-network-outline" | "help-rhombus" | "help-rhombus-outline" | "hexagon-slice-1" | "hexagon-slice-2" | "hexagon-slice-3" | "hexagon-slice-4" | "hexagon-slice-5" | "hexagon-slice-6" | "home-percent" | "hook" | "hook-off" | "horizontal-rotate-clockwise" | "horizontal-rotate-counterclockwise" | "hot-tub" | "hub" | "hub-outline" | "hubspot" | "id-card" | "image-album" | "image-area" | "image-area-close" | "image-broken" | "image-broken-variant" | "image-check" | "image-check-outline" | "image-minus" | "image-minus-outline" | "image-move" | "image-multiple" | "image-off" | "image-off-outline" | "image-outline" | "image-plus" | "image-plus-outline" | "image-remove" | "image-search" | "image-search-outline" | "image-size-select-actual" | "image-size-select-large" | "image-size-select-small" | "image-text" | "import" | "inbox" | "inbox-arrow-down" | "inbox-arrow-down-outline" | "inbox-arrow-up" | "inbox-arrow-up-outline" | "inbox-full" | "inbox-full-outline" | "inbox-multiple" | "inbox-multiple-outline" | "inbox-outline" | "inbox-remove" | "inbox-remove-outline" | "incognito" | "incognito-circle" | "incognito-circle-off" | "incognito-off" | "information-off" | "information-off-outline" | "information-variant" | "invoice-arrow-left-outline" | "ip" | "ip-network" | "ip-network-outline" | "ip-outline" | "ipod" | "island-variant" | "kettle-pour-over" | "key-arrow-right" | "key-change" | "key-link" | "key-minus" | "key-outline" | "key-plus" | "key-remove" | "key-star" | "key-wireless" | "keyboard" | "keyboard-backspace" | "keyboard-caps" | "keyboard-close" | "keyboard-close-outline" | "keyboard-esc" | "keyboard-f1" | "keyboard-f10" | "keyboard-f11" | "keyboard-f12" | "keyboard-f2" | "keyboard-f3" | "keyboard-f4" | "keyboard-f5" | "keyboard-f6" | "keyboard-f7" | "keyboard-f8" | "keyboard-f9" | "keyboard-off" | "keyboard-off-outline" | "keyboard-outline" | "keyboard-return" | "keyboard-space" | "keyboard-tab" | "keyboard-tab-reverse" | "keyboard-variant" | "kitesurfing" | "klingon" | "knife" | "label-multiple" | "label-multiple-outline" | "label-off" | "label-off-outline" | "label-outline" | "label-percent" | "label-percent-outline" | "label-variant" | "label-variant-outline" | "lan" | "lan-check" | "lan-connect" | "lan-disconnect" | "lan-pending" | "laser-pointer" | "lasso" | "launch" | "layers-triple" | "layers-triple-outline" | "leak" | "leak-off" | "lectern" | "library-shelves" | "license" | "lighthouse" | "lighthouse-on" | "line-scan" | "link-box" | "link-box-outline" | "link-box-variant" | "link-box-variant-outline" | "link-circle" | "link-circle-outline" | "link-edit" | "link-off" | "link-plus" | "link-variant" | "link-variant-minus" | "link-variant-off" | "link-variant-plus" | "link-variant-remove" | "list-box" | "list-box-outline" | "lock-pattern" | "lock-percent" | "lock-percent-open" | "lock-percent-open-outline" | "lock-percent-open-variant" | "lock-percent-open-variant-outline" | "lock-percent-outline" | "locker" | "locker-multiple" | "login" | "login-variant" | "logout" | "logout-variant" | "loupe" | "magazine-pistol" | "magazine-rifle" | "magnet" | "magnet-on" | "magnify-close" | "magnify-minus" | "magnify-minus-cursor" | "magnify-plus" | "magnify-plus-cursor" | "magnify-remove-cursor" | "magnify-scan" | "mail" | "mailbox" | "mailbox-open" | "mailbox-open-outline" | "mailbox-open-up" | "mailbox-open-up-outline" | "mailbox-outline" | "mailbox-up" | "mailbox-up-outline" | "margin" | "marker-check" | "memory" | "memory-arrow-down" | "menu-left-outline" | "menu-open" | "menu-right-outline" | "merge" | "message" | "message-arrow-left" | "message-arrow-left-outline" | "message-arrow-right" | "message-arrow-right-outline" | "message-bookmark" | "message-bookmark-outline" | "message-bulleted" | "message-bulleted-off" | "message-check" | "message-check-outline" | "message-draw" | "message-fast" | "message-fast-outline" | "message-flash" | "message-flash-outline" | "message-image" | "message-image-outline" | "message-minus" | "message-minus-outline" | "message-off" | "message-off-outline" | "message-outline" | "message-plus" | "message-plus-outline" | "message-processing" | "message-processing-outline" | "message-question" | "message-question-outline" | "message-reply" | "message-reply-outline" | "message-reply-text" | "message-reply-text-outline" | "message-star" | "message-star-outline" | "message-text" | "message-text-fast" | "message-text-fast-outline" | "message-text-outline" | "micro-sd" | "microphone-message" | "microphone-message-off" | "microphone-minus" | "microphone-plus" | "mine" | "mini-sd" | "minidisc" | "minus-circle-off" | "minus-circle-off-outline" | "minus-network" | "minus-network-outline" | "minus-thick" | "mixed-reality" | "monitor-eye" | "monitor-share" | "monitor-vertical" | "more" | "mortar-pestle" | "motion" | "motion-outline" | "mouse" | "mouse-bluetooth" | "mouse-left-click" | "mouse-left-click-outline" | "mouse-move-down" | "mouse-move-up" | "mouse-move-vertical" | "mouse-off" | "mouse-outline" | "mouse-right-click" | "mouse-right-click-outline" | "mouse-scroll-wheel" | "mouse-variant" | "mouse-variant-off" | "move-resize" | "move-resize-variant" | "multicast" | "music-note-minus" | "mustache" | "nas" | "near-me" | "network" | "network-off" | "network-off-outline" | "network-outline" | "new-box" | "newspaper" | "newspaper-check" | "newspaper-minus" | "newspaper-plus" | "newspaper-remove" | "newspaper-variant" | "newspaper-variant-multiple" | "newspaper-variant-multiple-outline" | "newspaper-variant-outline" | "nfc-search-variant" | "nfc-tap" | "ninja" | "not-equal" | "note" | "note-check" | "note-check-outline" | "note-minus" | "note-minus-outline" | "note-multiple" | "note-multiple-outline" | "note-off" | "note-off-outline" | "note-outline" | "note-plus" | "note-plus-outline" | "note-remove" | "note-remove-outline" | "note-search" | "note-search-outline" | "note-text" | "note-text-outline" | "notebook" | "notebook-check" | "notebook-check-outline" | "notebook-heart" | "notebook-heart-outline" | "notebook-minus" | "notebook-minus-outline" | "notebook-multiple" | "notebook-outline" | "notebook-plus" | "notebook-plus-outline" | "notebook-remove" | "notebook-remove-outline" | "nuke" | "null" | "oar" | "ocr" | "octagram-plus-outline" | "offer" | "office-building-minus" | "office-building-minus-outline" | "office-building-plus" | "office-building-plus-outline" | "office-building-remove" | "office-building-remove-outline" | "oil-lamp" | "omega" | "opacity" | "open-in-app" | "open-in-new" | "overscan" | "package" | "package-check" | "package-down" | "package-up" | "package-variant" | "package-variant-closed" | "package-variant-closed-check" | "package-variant-closed-minus" | "package-variant-closed-plus" | "package-variant-closed-remove" | "package-variant-minus" | "package-variant-plus" | "package-variant-remove" | "page-first" | "page-last" | "page-layout-body" | "page-layout-footer" | "page-layout-header" | "page-layout-header-footer" | "page-layout-sidebar-left" | "page-layout-sidebar-right" | "page-next" | "page-next-outline" | "page-previous" | "page-previous-outline" | "pail" | "pail-minus" | "pail-minus-outline" | "pail-off" | "pail-off-outline" | "pail-outline" | "pail-plus" | "pail-plus-outline" | "pail-remove" | "pail-remove-outline" | "pan" | "pan-bottom-left" | "pan-bottom-right" | "pan-down" | "pan-horizontal" | "pan-left" | "pan-right" | "pan-top-left" | "pan-top-right" | "pan-up" | "pan-vertical" | "panorama-fisheye" | "paper-cut-vertical" | "paperclip" | "paperclip-check" | "paperclip-minus" | "paperclip-off" | "paperclip-plus" | "paperclip-remove" | "passport" | "passport-alert" | "passport-biometric" | "passport-cancel" | "passport-check" | "passport-minus" | "passport-plus" | "passport-remove" | "pause-circle" | "pause-circle-outline" | "pause-octagon" | "pause-octagon-outline" | "peace" | "pen-minus" | "pen-off" | "pen-plus" | "pen-remove" | "pencil-minus" | "pencil-minus-outline" | "pencil-off" | "pencil-off-outline" | "pencil-plus" | "pencil-plus-outline" | "pencil-remove" | "pencil-remove-outline" | "pentagram" | "phone-classic-off" | "picture-in-picture-bottom-right" | "picture-in-picture-bottom-right-outline" | "picture-in-picture-top-right" | "picture-in-picture-top-right-outline" | "pillar" | "pin" | "pin-off" | "pin-off-outline" | "pin-outline" | "pinwheel" | "pinwheel-outline" | "pirate" | "pistol" | "play-box" | "play-box-edit-outline" | "play-box-multiple" | "play-box-multiple-outline" | "play-box-outline" | "play-circle" | "play-circle-outline" | "play-network" | "play-network-outline" | "play-outline" | "play-protected-content" | "play-speed" | "playlist-check" | "playlist-minus" | "playlist-play" | "playlist-plus" | "playlist-remove" | "playlist-star" | "plus-box-multiple" | "plus-box-multiple-outline" | "plus-circle" | "plus-circle-multiple" | "plus-circle-multiple-outline" | "plus-circle-outline" | "plus-network" | "plus-network-outline" | "plus-outline" | "pocket" | "podcast" | "point-of-sale" | "polaroid" | "police-badge" | "police-badge-outline" | "poll" | "post" | "post-outline" | "postage-stamp" | "pound" | "pound-box" | "pound-box-outline" | "power-cycle" | "power-off" | "power-on" | "power-sleep" | "power-socket-it" | "power-standby" | "powershell" | "presentation" | "presentation-play" | "priority-high" | "priority-low" | "professional-hexagon" | "progress-check" | "progress-close" | "progress-download" | "progress-helper" | "progress-pencil" | "progress-question" | "progress-star" | "progress-star-four-points" | "progress-tag" | "progress-upload" | "propane-tank" | "propane-tank-outline" | "protocol" | "publish" | "pump" | "pump-off" | "purse" | "purse-outline" | "qrcode" | "qrcode-minus" | "qrcode-plus" | "qrcode-remove" | "qrcode-scan" | "quadcopter" | "quality-low" | "quality-medium" | "queue-first-in-last-out" | "quora" | "radar" | "radio-off" | "radio-tower" | "raspberry-pi" | "ray-end" | "ray-end-arrow" | "ray-start" | "ray-start-arrow" | "ray-start-end" | "ray-start-vertex-end" | "ray-vertex" | "read" | "receipt-clock" | "receipt-clock-outline" | "receipt-send" | "receipt-send-outline" | "record-circle" | "record-circle-outline" | "recycle" | "recycle-variant" | "redo" | "redo-variant" | "reflect-horizontal" | "reflect-vertical" | "refresh-circle" | "regex" | "registered-trademark" | "relative-scale" | "reminder" | "remote-desktop" | "remote-off" | "reorder-horizontal" | "reorder-vertical" | "repeat-off" | "repeat-once" | "replay" | "resistor" | "resistor-nodes" | "resize" | "resize-bottom-right" | "responsive" | "restart" | "restart-off" | "rewind" | "rewind-10" | "rewind-15" | "rewind-30" | "rewind-45" | "rewind-5" | "rewind-60" | "rewind-outline" | "ribbon" | "ring" | "robber" | "robot-angry" | "robot-angry-outline" | "robot-confused" | "robot-confused-outline" | "robot-dead" | "robot-dead-outline" | "robot-excited" | "robot-excited-outline" | "robot-happy" | "robot-happy-outline" | "robot-love" | "robot-love-outline" | "robot-off" | "robot-off-outline" | "robot-outline" | "rolodex" | "rolodex-outline" | "room-service" | "room-service-outline" | "rotate-3d" | "rotate-3d-variant" | "rotate-left-variant" | "rotate-orbit" | "rotate-right-variant" | "rounded-corner" | "router" | "router-network" | "router-wireless" | "router-wireless-off" | "routes" | "rss" | "rss-box" | "rss-off" | "sack-outline" | "sack-percent" | "safe-square" | "safe-square-outline" | "satellite" | "satellite-uplink" | "satellite-variant" | "scale-unbalanced" | "scan-helper" | "scatter-plot" | "scatter-plot-outline" | "scent" | "scent-off" | "school" | "school-outline" | "scissors-cutting" | "screen-rotation" | "script-text-key" | "script-text-key-outline" | "script-text-play" | "script-text-play-outline" | "sd" | "seal" | "seal-variant" | "search-web" | "seat-flat" | "seat-flat-angled" | "seat-individual-suite" | "seat-legroom-extra" | "seat-legroom-normal" | "seat-legroom-reduced" | "seat-passenger" | "seat-recline-extra" | "seat-recline-normal" | "security" | "security-network" | "seesaw" | "segment" | "select-all" | "select-arrow-down" | "select-arrow-up" | "select-compare" | "select-drag" | "select-group" | "select-inverse" | "select-multiple" | "select-off" | "select-place" | "select-remove" | "select-search" | "selection" | "selection-drag" | "selection-ellipse" | "selection-ellipse-arrow-inside" | "selection-ellipse-remove" | "selection-multiple" | "selection-off" | "selection-remove" | "selection-search" | "send" | "send-check" | "send-check-outline" | "send-circle" | "send-circle-outline" | "send-outline" | "send-variant" | "send-variant-clock" | "send-variant-clock-outline" | "send-variant-outline" | "serial-port" | "server" | "server-minus" | "server-minus-outline" | "server-network" | "server-network-off" | "server-network-outline" | "server-off" | "server-outline" | "server-plus" | "server-plus-outline" | "server-remove" | "server-security" | "set-merge" | "set-split" | "shape-oval-plus" | "shape-square-rounded-plus" | "share-all" | "share-all-outline" | "share-variant" | "share-variant-outline" | "shield-bug" | "shield-bug-outline" | "shield-check-outline" | "shield-half" | "shield-half-full" | "shield-key" | "shield-key-outline" | "shield-link-variant" | "shield-link-variant-outline" | "shield-off" | "shield-off-outline" | "shield-plus" | "shield-plus-outline" | "shield-refresh" | "shield-refresh-outline" | "shield-remove" | "shield-remove-outline" | "shield-search" | "shield-star" | "shield-star-outline" | "shield-sync" | "shield-sync-outline" | "shimmer" | "shipping-pallet" | "shoe-print" | "shore" | "shredder" | "shuriken" | "sigma-lower" | "sign-direction" | "sign-direction-minus" | "sign-direction-plus" | "sign-direction-remove" | "sign-language" | "sign-language-outline" | "sign-pole" | "sign-real-estate" | "sign-text" | "signal-distance-variant" | "signal-variant" | "sitemap" | "sitemap-outline" | "size-l" | "size-m" | "size-s" | "size-xl" | "size-xs" | "size-xxl" | "size-xxs" | "size-xxxl" | "skip-backward-outline" | "skip-forward-outline" | "skip-next-circle" | "skip-next-circle-outline" | "skip-next-outline" | "skip-previous-circle" | "skip-previous-circle-outline" | "skip-previous-outline" | "sleep" | "sleep-off" | "slide" | "slope-downhill" | "slope-uphill" | "slot-machine" | "slot-machine-outline" | "smog" | "smoke" | "smoking-off" | "smoking-pipe" | "smoking-pipe-off" | "soldering-iron" | "source-commit" | "source-commit-end" | "source-commit-end-local" | "source-commit-local" | "source-commit-next-local" | "source-commit-start" | "source-commit-start-next-local" | "soy-sauce-off" | "space-station" | "spellcheck" | "spray-bottle" | "square-circle-outline" | "square-off" | "square-off-outline" | "square-root-box" | "square-rounded" | "square-rounded-outline" | "square-small" | "squeegee" | "ssh" | "stairs-box" | "stamper" | "star-box" | "star-box-multiple" | "star-box-multiple-outline" | "star-box-outline" | "star-half-full" | "star-off" | "star-off-outline" | "star-shooting" | "star-shooting-outline" | "state-machine" | "step-backward" | "step-backward-2" | "step-forward" | "step-forward-2" | "sticker" | "sticker-check" | "sticker-check-outline" | "sticker-circle-outline" | "sticker-minus" | "sticker-minus-outline" | "sticker-outline" | "sticker-plus" | "sticker-plus-outline" | "sticker-remove" | "sticker-remove-outline" | "sticker-text" | "sticker-text-outline" | "stool" | "stool-outline" | "stop-circle" | "stop-circle-outline" | "storage-tank" | "storage-tank-outline" | "storefront-check" | "storefront-check-outline" | "storefront-minus" | "storefront-minus-outline" | "storefront-plus" | "storefront-plus-outline" | "storefront-remove" | "storefront-remove-outline" | "submarine" | "subtitles" | "subtitles-outline" | "summit" | "surfing" | "surround-sound-2-1" | "surround-sound-5-1-2" | "sync" | "sync-circle" | "sync-off" | "tab-minus" | "tab-plus" | "tab-remove" | "tab-search" | "tab-unselected" | "table-arrow-down" | "table-arrow-left" | "table-arrow-right" | "table-arrow-up" | "table-cancel" | "table-check" | "table-eye" | "table-eye-off" | "table-filter" | "table-headers-eye" | "table-headers-eye-off" | "table-heart" | "table-key" | "table-minus" | "table-multiple" | "table-network" | "table-of-contents" | "table-off" | "table-picnic" | "table-question" | "table-refresh" | "table-search" | "table-star" | "table-sync" | "tag" | "tag-arrow-down" | "tag-arrow-down-outline" | "tag-arrow-left" | "tag-arrow-left-outline" | "tag-arrow-right" | "tag-arrow-right-outline" | "tag-arrow-up" | "tag-arrow-up-outline" | "tag-check" | "tag-check-outline" | "tag-edit" | "tag-edit-outline" | "tag-faces" | "tag-heart" | "tag-heart-outline" | "tag-hidden" | "tag-minus" | "tag-minus-outline" | "tag-multiple" | "tag-multiple-outline" | "tag-off" | "tag-off-outline" | "tag-outline" | "tag-plus" | "tag-plus-outline" | "tag-remove" | "tag-remove-outline" | "tag-search" | "tag-search-outline" | "tag-text" | "tag-text-outline" | "tank" | "tape-drive" | "target" | "target-variant" | "television-box" | "tent" | "text-long" | "text-recognition" | "text-search" | "text-search-variant" | "text-shadow" | "text-short" | "texture" | "thermometer-probe" | "thermometer-probe-off" | "thermostat-cog" | "thought-bubble" | "thought-bubble-outline" | "thumb-down" | "thumb-down-outline" | "thumb-up" | "thumb-up-outline" | "thumbs-up-down" | "thumbs-up-down-outline" | "ticket" | "ticket-confirmation" | "ticket-confirmation-outline" | "ticket-outline" | "ticket-percent" | "ticket-percent-outline" | "tilde" | "tilde-off" | "timeline" | "timeline-check" | "timeline-check-outline" | "timeline-minus" | "timeline-minus-outline" | "timeline-outline" | "timeline-plus" | "timeline-plus-outline" | "timeline-question" | "timeline-question-outline" | "timeline-remove" | "timeline-remove-outline" | "timeline-text" | "timeline-text-outline" | "toggle-switch" | "toggle-switch-off" | "toggle-switch-off-outline" | "toggle-switch-outline" | "touch-text-outline" | "tower-beach" | "tower-fire" | "toy-brick" | "toy-brick-minus" | "toy-brick-minus-outline" | "toy-brick-outline" | "toy-brick-plus" | "toy-brick-plus-outline" | "toy-brick-remove" | "toy-brick-remove-outline" | "toy-brick-search" | "toy-brick-search-outline" | "track-light-off" | "trackpad" | "trademark" | "train-bus" | "transcribe" | "transcribe-close" | "transition" | "transition-masked" | "translate" | "translate-off" | "trash-can" | "trash-can-outline" | "tray" | "tray-full" | "tray-minus" | "tray-plus" | "tray-remove" | "trending-down" | "trending-neutral" | "trending-up" | "turnstile" | "turnstile-outline" | "two-factor-authentication" | "typewriter" | "ufo" | "ufo-outline" | "undo" | "undo-variant" | "unfold-less-horizontal" | "unfold-less-vertical" | "unfold-more-horizontal" | "unfold-more-vertical" | "ungroup" | "upload" | "upload-box" | "upload-box-outline" | "upload-circle" | "upload-multiple" | "upload-multiple-outline" | "upload-network" | "upload-network-outline" | "upload-off" | "upload-off-outline" | "upload-outline" | "usb" | "usb-c-port" | "usb-flash-drive" | "usb-flash-drive-outline" | "usb-port" | "vanish" | "vanish-quarter" | "vector-polyline-minus" | "vector-polyline-plus" | "vector-polyline-remove" | "vibrate" | "vibrate-off" | "view-grid-compact" | "virtual-reality" | "voicemail" | "vote" | "vote-outline" | "vpn" | "wall" | "wallet-membership" | "wallet-travel" | "wallpaper" | "wan" | "water-check" | "water-check-outline" | "water-minus" | "water-minus-outline" | "water-off" | "water-off-outline" | "water-plus" | "water-plus-outline" | "water-remove" | "water-remove-outline" | "water-well" | "water-well-outline" | "watermark" | "wave-arrow-down" | "wave-arrow-up" | "wave-undercurrent" | "web-cancel" | "web-check" | "web-minus" | "web-off" | "web-plus" | "web-refresh" | "web-remove" | "web-sync" | "webcam-off" | "webhook" | "weight" | "weight-gram" | "weight-kilogram" | "weight-pound" | "widgets" | "widgets-outline" | "wifi" | "wifi-arrow-down" | "wifi-arrow-left" | "wifi-arrow-left-right" | "wifi-arrow-right" | "wifi-arrow-up" | "wifi-arrow-up-down" | "wifi-cancel" | "wifi-check" | "wifi-minus" | "wifi-off" | "wifi-plus" | "wifi-refresh" | "wifi-remove" | "wifi-star" | "wifi-strength-1" | "wifi-strength-2" | "wifi-strength-3" | "wifi-strength-4" | "wifi-strength-off" | "wifi-strength-off-outline" | "wifi-strength-outline" | "wifi-sync" | "window-close" | "window-maximize" | "window-minimize" | "window-restore" | "wiper" | "wrap-disabled" | "yeast" | "yin-yang" | "yurt" | "zip-disk" | "zodiac-aquarius" | "zodiac-aries" | "zodiac-cancer" | "zodiac-capricorn" | "zodiac-gemini" | "zodiac-leo" | "zodiac-libra" | "zodiac-pisces" | "zodiac-sagittarius" | "zodiac-scorpio" | "zodiac-taurus" | "zodiac-virgo" | "account" | "account-alert" | "account-alert-outline" | "account-arrow-down" | "account-arrow-down-outline" | "account-arrow-left" | "account-arrow-left-outline" | "account-arrow-right" | "account-arrow-right-outline" | "account-arrow-up" | "account-arrow-up-outline" | "account-badge" | "account-badge-outline" | "account-box" | "account-box-edit-outline" | "account-box-minus-outline" | "account-box-multiple" | "account-box-multiple-outline" | "account-box-outline" | "account-box-plus-outline" | "account-cancel" | "account-cancel-outline" | "account-card" | "account-card-outline" | "account-cash" | "account-cash-outline" | "account-check" | "account-check-outline" | "account-child" | "account-child-circle" | "account-child-outline" | "account-circle" | "account-circle-outline" | "account-clock" | "account-clock-outline" | "account-cog" | "account-cog-outline" | "account-convert" | "account-convert-outline" | "account-cowboy-hat" | "account-cowboy-hat-outline" | "account-credit-card" | "account-credit-card-outline" | "account-details" | "account-details-outline" | "account-edit" | "account-edit-outline" | "account-eye" | "account-eye-outline" | "account-file" | "account-file-outline" | "account-file-text" | "account-file-text-outline" | "account-filter" | "account-filter-outline" | "account-group" | "account-group-outline" | "account-hard-hat" | "account-hard-hat-outline" | "account-heart" | "account-heart-outline" | "account-injury" | "account-injury-outline" | "account-key" | "account-key-outline" | "account-lock" | "account-lock-open" | "account-lock-open-outline" | "account-lock-outline" | "account-minus" | "account-minus-outline" | "account-multiple" | "account-multiple-check" | "account-multiple-check-outline" | "account-multiple-minus" | "account-multiple-minus-outline" | "account-multiple-outline" | "account-multiple-plus" | "account-multiple-plus-outline" | "account-multiple-remove" | "account-multiple-remove-outline" | "account-music" | "account-music-outline" | "account-network" | "account-network-off" | "account-network-off-outline" | "account-network-outline" | "account-off" | "account-off-outline" | "account-outline" | "account-plus" | "account-plus-outline" | "account-question" | "account-question-outline" | "account-reactivate" | "account-reactivate-outline" | "account-remove" | "account-remove-outline" | "account-school" | "account-school-outline" | "account-search" | "account-search-outline" | "account-settings" | "account-settings-outline" | "account-star" | "account-star-outline" | "account-supervisor" | "account-supervisor-circle" | "account-supervisor-circle-outline" | "account-supervisor-outline" | "account-switch" | "account-switch-outline" | "account-sync" | "account-sync-outline" | "account-tag" | "account-tag-outline" | "account-tie" | "account-tie-hat" | "account-tie-hat-outline" | "account-tie-outline" | "account-tie-voice" | "account-tie-voice-off" | "account-tie-voice-off-outline" | "account-tie-voice-outline" | "account-tie-woman" | "account-voice" | "account-voice-off" | "account-wrench" | "account-wrench-outline" | "badge-account" | "badge-account-alert" | "badge-account-alert-outline" | "badge-account-horizontal" | "badge-account-horizontal-outline" | "badge-account-outline" | "book-account" | "book-account-outline" | "briefcase-account" | "briefcase-account-outline" | "calendar-account" | "calendar-account-outline" | "camera-account" | "card-account-details" | "card-account-details-outline" | "card-account-details-star" | "card-account-details-star-outline" | "card-account-mail" | "card-account-mail-outline" | "card-account-phone" | "card-account-phone-outline" | "clipboard-account" | "clipboard-account-outline" | "comment-account" | "comment-account-outline" | "crowd" | "face-man-shimmer" | "face-man-shimmer-outline" | "face-woman-shimmer" | "face-woman-shimmer-outline" | "file-account" | "file-account-outline" | "folder-account" | "folder-account-outline" | "home-account" | "human-capacity-decrease" | "human-capacity-increase" | "human-greeting-proximity" | "laptop-account" | "map-marker-account" | "map-marker-account-outline" | "monitor-account" | "nature-people" | "nature-people-outline" | "shield-account" | "shield-account-outline" | "shield-account-variant" | "shield-account-variant-outline" | "shield-check" | "smart-card" | "smart-card-off" | "smart-card-off-outline" | "smart-card-outline" | "smart-card-reader" | "smart-card-reader-outline" | "table-account" | "target-account" | "text-account" | "ticket-account" | "tooltip-account" | "video-account" | "barley" | "barley-off" | "barn" | "bee" | "bee-flower" | "beehive-off-outline" | "beehive-outline" | "beekeeper" | "car-lifted-pickup" | "car-pickup" | "carrot" | "chili-mild" | "compost" | "corn" | "corn-off" | "cow" | "cow-off" | "egg" | "egg-off" | "egg-off-outline" | "egg-outline" | "fence" | "fence-electric" | "flower" | "flower-outline" | "flower-pollen" | "flower-pollen-outline" | "flower-poppy" | "flower-tulip" | "flower-tulip-outline" | "food-apple" | "food-apple-outline" | "forest" | "forest-outline" | "fruit-cherries" | "fruit-cherries-off" | "fruit-citrus" | "fruit-citrus-off" | "fruit-grapes" | "fruit-grapes-outline" | "fruit-pineapple" | "fruit-watermelon" | "grain" | "grass" | "greenhouse" | "heat-wave" | "home-silo" | "home-silo-outline" | "hoop-house" | "hops" | "horse" | "horse-human" | "horse-variant" | "horse-variant-fast" | "horseshoe" | "hydro-power" | "land-fields" | "land-plots" | "land-plots-circle" | "land-plots-circle-variant" | "land-plots-marker" | "land-rows-horizontal" | "land-rows-vertical" | "leaf" | "leaf-circle" | "leaf-circle-outline" | "leaf-maple" | "leaf-off" | "mushroom" | "mushroom-off" | "mushroom-off-outline" | "mushroom-outline" | "nature" | "peanut" | "peanut-off" | "peanut-off-outline" | "peanut-outline" | "pig" | "pig-variant" | "pig-variant-outline" | "pine-tree" | "pine-tree-box" | "pine-tree-fire" | "pine-tree-variant" | "pine-tree-variant-outline" | "seed" | "seed-off" | "seed-off-outline" | "seed-outline" | "seed-plus" | "seed-plus-outline" | "sheep" | "shovel" | "silo" | "silo-outline" | "spray" | "sprinkler" | "sprinkler-fire" | "sprinkler-variant" | "sprout" | "sprout-outline" | "tire" | "tractor" | "tractor-variant" | "tree" | "tree-outline" | "turkey" | "water" | "water-alert" | "water-alert-outline" | "water-pump" | "water-pump-off" | "water-sync" | "watering-can" | "watering-can-outline" | "waves" | "weather-cloudy" | "weather-dust" | "weather-fog" | "weather-hail" | "weather-hazy" | "weather-hurricane" | "weather-hurricane-outline" | "weather-lightning" | "weather-pouring" | "weather-rainy" | "airplane-alert" | "alert-box" | "alert-box-outline" | "alert-circle" | "alert-circle-check" | "alert-circle-check-outline" | "alert-circle-outline" | "alert-decagram" | "alert-decagram-outline" | "alert-minus" | "alert-minus-outline" | "alert-octagon" | "alert-octagon-outline" | "alert-octagram" | "alert-octagram-outline" | "alert-outline" | "alert-plus" | "alert-plus-outline" | "alert-remove" | "alert-remove-outline" | "alert-rhombus" | "alert-rhombus-outline" | "archive-alert" | "archive-alert-outline" | "battery-alert" | "battery-alert-bluetooth" | "battery-alert-variant" | "battery-alert-variant-outline" | "battery-charging-wireless-alert" | "beaker-alert" | "beaker-alert-outline" | "bell-alert" | "bell-alert-outline" | "book-alert" | "book-alert-outline" | "boom-gate-alert" | "boom-gate-alert-outline" | "bus-alert" | "calendar-alert" | "calendar-alert-outline" | "car-brake-alert" | "car-light-alert" | "car-tire-alert" | "chat-alert" | "chat-alert-outline" | "chili-alert" | "chili-alert-outline" | "clipboard-alert" | "clipboard-alert-outline" | "clock-alert" | "clock-alert-outline" | "cloud-alert" | "cloud-alert-outline" | "comment-alert" | "comment-alert-outline" | "content-save-alert" | "content-save-alert-outline" | "cookie-alert" | "cookie-alert-outline" | "database-alert" | "database-alert-outline" | "delete-alert" | "delete-alert-outline" | "disc-alert" | "dishwasher-alert" | "email-alert" | "email-alert-outline" | "fan-alert" | "file-alert" | "file-alert-outline" | "file-document-alert" | "file-document-alert-outline" | "fire-alert" | "fire-hydrant-alert" | "flash-alert" | "flash-alert-outline" | "folder-alert" | "folder-alert-outline" | "fridge-alert" | "fridge-alert-outline" | "fridge-industrial-alert" | "fridge-industrial-alert-outline" | "fridge-variant-alert" | "fridge-variant-alert-outline" | "fuse-alert" | "garage-alert" | "garage-alert-variant" | "gate-alert" | "head-alert" | "head-alert-outline" | "home-alert" | "home-alert-outline" | "kettle-alert" | "kettle-alert-outline" | "key-alert" | "key-alert-outline" | "lightbulb-alert" | "lightbulb-alert-outline" | "lock-alert" | "lock-alert-outline" | "lock-open-alert" | "lock-open-alert-outline" | "map-marker-alert" | "map-marker-alert-outline" | "message-alert" | "message-alert-outline" | "microsoft-xbox-controller-battery-alert" | "network-strength-1-alert" | "network-strength-2-alert" | "network-strength-3-alert" | "network-strength-4-alert" | "note-alert" | "note-alert-outline" | "phone-alert" | "phone-alert-outline" | "printer-3d-nozzle-alert" | "printer-3d-nozzle-alert-outline" | "printer-alert" | "printer-pos-alert" | "printer-pos-alert-outline" | "progress-alert" | "reload-alert" | "restart-alert" | "restore-alert" | "robot-vacuum-alert" | "robot-vacuum-variant-alert" | "shield-alert" | "shield-alert-outline" | "sim-alert" | "sim-alert-outline" | "smoke-detector-alert" | "smoke-detector-alert-outline" | "smoke-detector-variant-alert" | "snowflake-alert" | "sticker-alert" | "sticker-alert-outline" | "store-alert" | "store-alert-outline" | "subway-alert-variant" | "sync-alert" | "table-alert" | "thermometer-alert" | "timeline-alert" | "timeline-alert-outline" | "timer-alert" | "timer-alert-outline" | "tray-alert" | "truck-alert" | "truck-alert-outline" | "tumble-dryer-alert" | "washing-machine-alert" | "water-boiler-alert" | "water-percent-alert" | "weather-cloudy-alert" | "weather-sunny-alert" | "wifi-alert" | "wifi-strength-1-alert" | "wifi-strength-2-alert" | "wifi-strength-3-alert" | "wifi-strength-4-alert" | "wifi-strength-alert-outline" | "wind-turbine-alert" | "window-shutter-alert" | "wiper-wash-alert" | "abjad-arabic" | "abjad-hebrew" | "abugida-devanagari" | "abugida-thai" | "alpha" | "alpha-a" | "alpha-a-box" | "alpha-a-box-outline" | "alpha-a-circle" | "alpha-a-circle-outline" | "alpha-b" | "alpha-b-box" | "alpha-b-box-outline" | "alpha-b-circle" | "alpha-b-circle-outline" | "alpha-c" | "alpha-c-box" | "alpha-c-box-outline" | "alpha-c-circle" | "alpha-c-circle-outline" | "alpha-d" | "alpha-d-box" | "alpha-d-box-outline" | "alpha-d-circle" | "alpha-d-circle-outline" | "alpha-e" | "alpha-e-box" | "alpha-e-box-outline" | "alpha-e-circle" | "alpha-e-circle-outline" | "alpha-f" | "alpha-f-box" | "alpha-f-box-outline" | "alpha-f-circle" | "alpha-f-circle-outline" | "alpha-g" | "alpha-g-box" | "alpha-g-box-outline" | "alpha-g-circle" | "alpha-g-circle-outline" | "alpha-h" | "alpha-h-box" | "alpha-h-box-outline" | "alpha-h-circle" | "alpha-h-circle-outline" | "alpha-i" | "alpha-i-box" | "alpha-i-box-outline" | "alpha-i-circle" | "alpha-i-circle-outline" | "alpha-j" | "alpha-j-box" | "alpha-j-box-outline" | "alpha-j-circle" | "alpha-j-circle-outline" | "alpha-k" | "alpha-k-box" | "alpha-k-box-outline" | "alpha-k-circle" | "alpha-k-circle-outline" | "alpha-l" | "alpha-l-box" | "alpha-l-box-outline" | "alpha-l-circle" | "alpha-l-circle-outline" | "alpha-m" | "alpha-m-box" | "alpha-m-box-outline" | "alpha-m-circle" | "alpha-m-circle-outline" | "alpha-n" | "alpha-n-box" | "alpha-n-box-outline" | "alpha-n-circle" | "alpha-n-circle-outline" | "alpha-o" | "alpha-o-box" | "alpha-o-box-outline" | "alpha-o-circle" | "alpha-o-circle-outline" | "alpha-p" | "alpha-p-box" | "alpha-p-box-outline" | "alpha-p-circle" | "alpha-p-circle-outline" | "alpha-q" | "alpha-q-box" | "alpha-q-box-outline" | "alpha-q-circle" | "alpha-q-circle-outline" | "alpha-r" | "alpha-r-box" | "alpha-r-box-outline" | "alpha-r-circle" | "alpha-r-circle-outline" | "alpha-s" | "alpha-s-box" | "alpha-s-box-outline" | "alpha-s-circle" | "alpha-s-circle-outline" | "alpha-t" | "alpha-t-box" | "alpha-t-box-outline" | "alpha-t-circle" | "alpha-t-circle-outline" | "alpha-u" | "alpha-u-box" | "alpha-u-box-outline" | "alpha-u-circle" | "alpha-u-circle-outline" | "alpha-v" | "alpha-v-box" | "alpha-v-box-outline" | "alpha-v-circle" | "alpha-v-circle-outline" | "alpha-w" | "alpha-w-box" | "alpha-w-box-outline" | "alpha-w-circle" | "alpha-w-circle-outline" | "alpha-x" | "alpha-x-box" | "alpha-x-box-outline" | "alpha-x-circle" | "alpha-x-circle-outline" | "alpha-y" | "alpha-y-box" | "alpha-y-box-outline" | "alpha-y-circle" | "alpha-y-circle-outline" | "alpha-z" | "alpha-z-box" | "alpha-z-box-outline" | "alpha-z-circle" | "alpha-z-circle-outline" | "alphabet-aurebesh" | "alphabet-cyrillic" | "alphabet-greek" | "alphabet-latin" | "alphabet-piqad" | "alphabet-tengwar" | "alphabetical" | "alphabetical-off" | "alphabetical-variant" | "alphabetical-variant-off" | "beta" | "delta" | "epsilon" | "gamma" | "ideogram-cjk" | "ideogram-cjk-variant" | "numeric" | "numeric-0" | "numeric-0-box" | "numeric-0-box-multiple" | "numeric-0-box-multiple-outline" | "numeric-0-box-outline" | "numeric-0-circle" | "numeric-0-circle-outline" | "numeric-1" | "numeric-1-box" | "numeric-1-box-multiple" | "numeric-1-box-multiple-outline" | "numeric-1-box-outline" | "numeric-1-circle" | "numeric-1-circle-outline" | "numeric-10" | "numeric-10-box" | "numeric-10-box-multiple" | "numeric-10-box-multiple-outline" | "numeric-10-box-outline" | "numeric-10-circle" | "numeric-10-circle-outline" | "numeric-2" | "numeric-2-box" | "numeric-2-box-multiple" | "numeric-2-box-multiple-outline" | "numeric-2-box-outline" | "numeric-2-circle" | "numeric-2-circle-outline" | "numeric-3" | "numeric-3-box" | "numeric-3-box-multiple" | "numeric-3-box-multiple-outline" | "numeric-3-box-outline" | "numeric-3-circle" | "numeric-3-circle-outline" | "numeric-4" | "numeric-4-box" | "numeric-4-box-multiple" | "numeric-4-box-multiple-outline" | "numeric-4-box-outline" | "numeric-4-circle" | "numeric-4-circle-outline" | "numeric-5" | "numeric-5-box" | "numeric-5-box-multiple" | "numeric-5-box-multiple-outline" | "numeric-5-box-outline" | "numeric-5-circle" | "numeric-5-circle-outline" | "numeric-6" | "numeric-6-box" | "numeric-6-box-multiple" | "numeric-6-box-multiple-outline" | "numeric-6-box-outline" | "numeric-6-circle" | "numeric-6-circle-outline" | "numeric-7" | "numeric-7-box" | "numeric-7-box-multiple" | "numeric-7-box-multiple-outline" | "numeric-7-box-outline" | "numeric-7-circle" | "numeric-7-circle-outline" | "numeric-8" | "numeric-8-box" | "numeric-8-box-multiple" | "numeric-8-box-multiple-outline" | "numeric-8-box-outline" | "numeric-8-circle" | "numeric-8-circle-outline" | "numeric-9" | "numeric-9-box" | "numeric-9-box-multiple" | "numeric-9-box-multiple-outline" | "numeric-9-box-outline" | "numeric-9-circle" | "numeric-9-circle-outline" | "numeric-9-plus" | "numeric-9-plus-box" | "numeric-9-plus-box-multiple" | "numeric-9-plus-box-multiple-outline" | "numeric-9-plus-box-outline" | "numeric-9-plus-circle" | "numeric-9-plus-circle-outline" | "numeric-negative-1" | "numeric-off" | "numeric-positive-1" | "roman-numeral-1" | "roman-numeral-10" | "roman-numeral-2" | "roman-numeral-3" | "roman-numeral-4" | "roman-numeral-5" | "roman-numeral-6" | "roman-numeral-7" | "roman-numeral-8" | "roman-numeral-9" | "syllabary-hangul" | "syllabary-hiragana" | "syllabary-katakana" | "syllabary-katakana-halfwidth" | "bat" | "bird" | "bone" | "bone-off" | "bug" | "bug-check" | "bug-check-outline" | "bug-outline" | "butterfly" | "butterfly-outline" | "cat" | "dog" | "dog-service" | "dog-side" | "dog-side-off" | "dolphin" | "donkey" | "duck" | "elephant" | "fish" | "fishbowl" | "fishbowl-outline" | "google-downasaur" | "jellyfish" | "jellyfish-outline" | "kangaroo" | "koala" | "linux" | "owl" | "panda" | "paw" | "paw-off" | "paw-off-outline" | "paw-outline" | "penguin" | "rabbit" | "rabbit-variant" | "rabbit-variant-outline" | "rodent" | "shark" | "shark-fin" | "shark-fin-outline" | "shark-off" | "snail" | "snake" | "spider" | "spider-outline" | "spider-thread" | "tortoise" | "turtle" | "unicorn" | "unicorn-variant" | "arrange-bring-forward" | "arrange-bring-to-front" | "arrange-send-backward" | "arrange-send-to-back" | "flip-horizontal" | "flip-to-back" | "flip-to-front" | "flip-vertical" | "vector-arrange-above" | "vector-arrange-below" | "arrow-all" | "arrow-bottom-left" | "arrow-bottom-left-bold-box" | "arrow-bottom-left-bold-box-outline" | "arrow-bottom-left-bold-outline" | "arrow-bottom-left-thick" | "arrow-bottom-left-thin" | "arrow-bottom-left-thin-circle-outline" | "arrow-bottom-right" | "arrow-bottom-right-bold-box" | "arrow-bottom-right-bold-box-outline" | "arrow-bottom-right-bold-outline" | "arrow-bottom-right-thick" | "arrow-bottom-right-thin" | "arrow-bottom-right-thin-circle-outline" | "arrow-collapse" | "arrow-collapse-all" | "arrow-collapse-down" | "arrow-collapse-horizontal" | "arrow-collapse-left" | "arrow-collapse-right" | "arrow-collapse-up" | "arrow-collapse-vertical" | "arrow-decision" | "arrow-decision-outline" | "arrow-down" | "arrow-down-bold" | "arrow-down-bold-box" | "arrow-down-bold-box-outline" | "arrow-down-bold-circle" | "arrow-down-bold-circle-outline" | "arrow-down-bold-hexagon-outline" | "arrow-down-bold-outline" | "arrow-down-box" | "arrow-down-circle" | "arrow-down-circle-outline" | "arrow-down-drop-circle" | "arrow-down-drop-circle-outline" | "arrow-down-left" | "arrow-down-left-bold" | "arrow-down-right" | "arrow-down-right-bold" | "arrow-down-thick" | "arrow-down-thin" | "arrow-down-thin-circle-outline" | "arrow-expand" | "arrow-expand-all" | "arrow-expand-down" | "arrow-expand-horizontal" | "arrow-expand-left" | "arrow-expand-right" | "arrow-expand-up" | "arrow-expand-vertical" | "arrow-horizontal-lock" | "arrow-left" | "arrow-left-bold" | "arrow-left-bold-box" | "arrow-left-bold-box-outline" | "arrow-left-bold-circle" | "arrow-left-bold-circle-outline" | "arrow-left-bold-hexagon-outline" | "arrow-left-bold-outline" | "arrow-left-box" | "arrow-left-circle" | "arrow-left-circle-outline" | "arrow-left-drop-circle" | "arrow-left-drop-circle-outline" | "arrow-left-right" | "arrow-left-right-bold" | "arrow-left-right-bold-outline" | "arrow-left-thick" | "arrow-left-thin" | "arrow-left-thin-circle-outline" | "arrow-right" | "arrow-right-bold" | "arrow-right-bold-box" | "arrow-right-bold-box-outline" | "arrow-right-bold-circle" | "arrow-right-bold-circle-outline" | "arrow-right-bold-hexagon-outline" | "arrow-right-bold-outline" | "arrow-right-box" | "arrow-right-circle" | "arrow-right-circle-outline" | "arrow-right-drop-circle" | "arrow-right-drop-circle-outline" | "arrow-right-thick" | "arrow-right-thin" | "arrow-right-thin-circle-outline" | "arrow-split-horizontal" | "arrow-split-vertical" | "arrow-top-left" | "arrow-top-left-bold-box" | "arrow-top-left-bold-box-outline" | "arrow-top-left-bold-outline" | "arrow-top-left-bottom-right" | "arrow-top-left-bottom-right-bold" | "arrow-top-left-thick" | "arrow-top-left-thin" | "arrow-top-left-thin-circle-outline" | "arrow-top-right" | "arrow-top-right-bold-box" | "arrow-top-right-bold-box-outline" | "arrow-top-right-bold-outline" | "arrow-top-right-bottom-left" | "arrow-top-right-bottom-left-bold" | "arrow-top-right-thick" | "arrow-top-right-thin" | "arrow-top-right-thin-circle-outline" | "arrow-up" | "arrow-up-bold" | "arrow-up-bold-box" | "arrow-up-bold-box-outline" | "arrow-up-bold-circle" | "arrow-up-bold-circle-outline" | "arrow-up-bold-hexagon-outline" | "arrow-up-bold-outline" | "arrow-up-box" | "arrow-up-circle" | "arrow-up-circle-outline" | "arrow-up-down" | "arrow-up-down-bold" | "arrow-up-down-bold-outline" | "arrow-up-drop-circle" | "arrow-up-drop-circle-outline" | "arrow-up-thick" | "arrow-up-thin" | "arrow-up-thin-circle-outline" | "arrow-vertical-lock" | "autorenew" | "autorenew-off" | "axis-arrow" | "axis-arrow-info" | "axis-arrow-lock" | "axis-x-arrow" | "axis-x-arrow-lock" | "axis-x-y-arrow-lock" | "axis-y-arrow" | "axis-y-arrow-lock" | "axis-z-arrow" | "axis-z-arrow-lock" | "cached" | "call-made" | "call-merge" | "call-missed" | "call-received" | "call-split" | "chevron-double-down" | "chevron-double-left" | "chevron-double-right" | "chevron-double-up" | "chevron-down" | "chevron-down-box" | "chevron-down-box-outline" | "chevron-down-circle" | "chevron-down-circle-outline" | "chevron-left" | "chevron-left-box" | "chevron-left-box-outline" | "chevron-left-circle" | "chevron-left-circle-outline" | "chevron-right" | "chevron-right-box" | "chevron-right-box-outline" | "chevron-right-circle" | "chevron-right-circle-outline" | "chevron-up" | "chevron-up-box" | "chevron-up-box-outline" | "chevron-up-circle" | "chevron-up-circle-outline" | "compare-horizontal" | "compare-vertical" | "fit-to-page" | "fit-to-page-outline" | "forward" | "menu-down" | "menu-down-outline" | "menu-left" | "menu-right" | "menu-swap" | "menu-swap-outline" | "menu-up" | "menu-up-outline" | "middleware" | "middleware-outline" | "publish-off" | "refresh" | "reiterate" | "reload" | "repeat-variant" | "reply" | "reply-all" | "reply-all-outline" | "reply-circle" | "reply-outline" | "restore" | "rotate-360" | "rotate-left" | "rotate-right" | "share" | "share-circle" | "share-off" | "share-off-outline" | "share-outline" | "shuffle" | "shuffle-disabled" | "shuffle-variant" | "stretch-to-page" | "stretch-to-page-outline" | "subdirectory-arrow-left" | "subdirectory-arrow-right" | "swap-horizontal" | "swap-horizontal-bold" | "swap-horizontal-circle" | "swap-horizontal-circle-outline" | "swap-horizontal-hidden" | "swap-horizontal-variant" | "swap-vertical" | "swap-vertical-bold" | "swap-vertical-circle" | "swap-vertical-circle-outline" | "swap-vertical-variant" | "transfer-down" | "transfer-left" | "transfer-right" | "transfer-up" | "tray-arrow-down" | "tray-arrow-up" | "album" | "audio-input-rca" | "audio-input-stereo-minijack" | "audio-input-xlr" | "audio-video" | "audio-video-off" | "bluetooth-audio" | "book-music" | "cast-audio" | "cosine-wave" | "dolby" | "earbuds" | "earbuds-off" | "earbuds-off-outline" | "earbuds-outline" | "equalizer" | "equalizer-outline" | "headphones" | "headphones-box" | "headphones-off" | "headphones-settings" | "headset" | "headset-dock" | "headset-off" | "knob" | "microphone-question" | "microphone-question-outline" | "multimedia" | "music" | "music-box" | "music-box-outline" | "music-circle" | "music-circle-outline" | "music-note" | "music-note-bluetooth" | "music-note-bluetooth-off" | "music-note-eighth" | "music-note-half" | "music-note-off" | "music-note-plus" | "music-note-quarter" | "music-note-sixteenth" | "music-note-whole" | "music-off" | "pause-box" | "pause-box-outline" | "radio-am" | "radio-fm" | "sawtooth-wave" | "sine-wave" | "speaker" | "speaker-bluetooth" | "speaker-message" | "speaker-multiple" | "speaker-off" | "speaker-pause" | "speaker-play" | "speaker-stop" | "speaker-wireless" | "square-wave" | "surround-sound" | "surround-sound-2-0" | "surround-sound-3-1" | "surround-sound-5-1" | "surround-sound-7-1" | "television-speaker" | "television-speaker-off" | "toslink" | "triangle-wave" | "tune" | "tune-variant" | "tune-vertical" | "tune-vertical-variant" | "volume-equal" | "volume-high" | "volume-low" | "volume-medium" | "volume-minus" | "volume-mute" | "volume-off" | "volume-plus" | "volume-source" | "volume-variant-off" | "volume-vibrate" | "waveform" | "air-conditioner" | "airbag" | "battery" | "battery-10" | "battery-20" | "battery-30" | "battery-40" | "battery-50" | "battery-60" | "battery-70" | "battery-80" | "battery-90" | "battery-charging" | "battery-charging-10" | "battery-charging-100" | "battery-charging-20" | "battery-charging-30" | "battery-charging-40" | "battery-charging-50" | "battery-charging-60" | "battery-charging-70" | "battery-charging-80" | "battery-charging-90" | "battery-charging-outline" | "battery-outline" | "bugle" | "car" | "car-2-plus" | "car-3-plus" | "car-arrow-left" | "car-arrow-right" | "car-back" | "car-battery" | "car-brake-abs" | "car-brake-fluid-level" | "car-brake-hold" | "car-brake-low-pressure" | "car-brake-parking" | "car-brake-retarder" | "car-brake-temperature" | "car-brake-worn-linings" | "car-child-seat" | "car-clock" | "car-clutch" | "car-cog" | "car-connected" | "car-convertible" | "car-coolant-level" | "car-cruise-control" | "car-defrost-front" | "car-defrost-rear" | "car-door" | "car-door-lock" | "car-door-lock-open" | "car-electric" | "car-electric-outline" | "car-emergency" | "car-esp" | "car-estate" | "car-hatchback" | "car-info" | "car-key" | "car-light-dimmed" | "car-light-fog" | "car-light-high" | "car-limousine" | "car-multiple" | "car-off" | "car-outline" | "car-parking-lights" | "car-search" | "car-search-outline" | "car-seat" | "car-seat-cooler" | "car-seat-heater" | "car-select" | "car-settings" | "car-shift-pattern" | "car-side" | "car-speed-limiter" | "car-sports" | "car-traction-control" | "car-turbocharger" | "car-wash" | "car-windshield" | "car-windshield-outline" | "car-wireless" | "car-wrench" | "caravan" | "cellphone-nfc" | "coolant-temperature" | "counter" | "engine" | "engine-off" | "engine-off-outline" | "engine-outline" | "ev-plug-ccs1" | "ev-plug-ccs2" | "ev-plug-chademo" | "ev-plug-tesla" | "ev-plug-type1" | "ev-plug-type2" | "ev-station" | "fan" | "fan-off" | "fuel" | "fuel-cell" | "fuse" | "fuse-blade" | "fuse-off" | "gas-station" | "gauge" | "gauge-empty" | "gauge-full" | "gauge-low" | "hazard-lights" | "hydraulic-oil-level" | "hydraulic-oil-temperature" | "hydrogen-station" | "induction" | "key-chain" | "key-chain-variant" | "key-variant" | "liquid-spot" | "lock" | "lock-open" | "lock-open-outline" | "lock-outline" | "oil" | "oil-level" | "oil-temperature" | "piston" | "refresh-auto" | "seatbelt" | "shield-car" | "smoking" | "snowflake" | "speedometer" | "speedometer-medium" | "speedometer-slow" | "steering" | "steering-off" | "thermometer" | "thermometer-bluetooth" | "truck-flatbed" | "wiper-wash" | "bank" | "bank-check" | "bank-circle" | "bank-circle-outline" | "bank-minus" | "bank-off" | "bank-off-outline" | "bank-outline" | "bank-plus" | "bank-remove" | "bank-transfer" | "bank-transfer-in" | "bank-transfer-out" | "bitcoin" | "cash" | "cash-100" | "cash-check" | "cash-clock" | "cash-edit" | "cash-fast" | "cash-lock" | "cash-lock-open" | "cash-marker" | "cash-minus" | "cash-multiple" | "cash-off" | "cash-plus" | "cash-refund" | "cash-register" | "cash-remove" | "cash-sync" | "checkbook" | "checkbook-arrow-left" | "checkbook-arrow-right" | "circle-multiple" | "circle-multiple-outline" | "credit-card" | "credit-card-check" | "credit-card-check-outline" | "credit-card-chip" | "credit-card-chip-outline" | "credit-card-clock" | "credit-card-clock-outline" | "credit-card-edit" | "credit-card-edit-outline" | "credit-card-fast" | "credit-card-fast-outline" | "credit-card-lock" | "credit-card-lock-outline" | "credit-card-marker" | "credit-card-marker-outline" | "credit-card-minus" | "credit-card-minus-outline" | "credit-card-multiple" | "credit-card-multiple-outline" | "credit-card-off" | "credit-card-off-outline" | "credit-card-outline" | "credit-card-plus" | "credit-card-plus-outline" | "credit-card-refresh" | "credit-card-refresh-outline" | "credit-card-refund" | "credit-card-refund-outline" | "credit-card-remove" | "credit-card-remove-outline" | "credit-card-scan" | "credit-card-scan-outline" | "credit-card-search" | "credit-card-search-outline" | "credit-card-settings" | "credit-card-settings-outline" | "credit-card-sync" | "credit-card-sync-outline" | "credit-card-wireless" | "credit-card-wireless-off" | "credit-card-wireless-off-outline" | "credit-card-wireless-outline" | "currency-bdt" | "currency-brl" | "currency-btc" | "currency-cny" | "currency-eth" | "currency-eur" | "currency-eur-off" | "currency-fra" | "currency-gbp" | "currency-ils" | "currency-inr" | "currency-jpy" | "currency-krw" | "currency-kzt" | "currency-mnt" | "currency-ngn" | "currency-php" | "currency-rial" | "currency-rub" | "currency-rupee" | "currency-sign" | "currency-thb" | "currency-try" | "currency-twd" | "currency-uah" | "currency-usd" | "currency-usd-off" | "file-sign" | "finance" | "hand-coin" | "hand-coin-outline" | "integrated-circuit-chip" | "invoice" | "invoice-arrow-left" | "invoice-arrow-right" | "invoice-arrow-right-outline" | "invoice-check" | "invoice-check-outline" | "invoice-clock" | "invoice-clock-outline" | "invoice-edit" | "invoice-edit-outline" | "invoice-export-outline" | "invoice-fast" | "invoice-fast-outline" | "invoice-import" | "invoice-import-outline" | "invoice-list" | "invoice-list-outline" | "invoice-minus" | "invoice-minus-outline" | "invoice-multiple" | "invoice-multiple-outline" | "invoice-outline" | "invoice-plus" | "invoice-plus-outline" | "invoice-remove" | "invoice-remove-outline" | "invoice-send" | "invoice-send-outline" | "invoice-text" | "invoice-text-arrow-left" | "invoice-text-arrow-left-outline" | "invoice-text-arrow-right" | "invoice-text-arrow-right-outline" | "invoice-text-check" | "invoice-text-check-outline" | "invoice-text-clock" | "invoice-text-clock-outline" | "invoice-text-edit" | "invoice-text-edit-outline" | "invoice-text-fast" | "invoice-text-fast-outline" | "invoice-text-minus" | "invoice-text-minus-outline" | "invoice-text-multiple" | "invoice-text-multiple-outline" | "invoice-text-outline" | "invoice-text-plus" | "invoice-text-plus-outline" | "invoice-text-remove" | "invoice-text-remove-outline" | "invoice-text-send" | "invoice-text-send-outline" | "litecoin" | "network-pos" | "piggy-bank" | "piggy-bank-outline" | "receipt" | "receipt-outline" | "receipt-text" | "receipt-text-arrow-left" | "receipt-text-arrow-left-outline" | "receipt-text-arrow-right" | "receipt-text-arrow-right-outline" | "receipt-text-check" | "receipt-text-check-outline" | "receipt-text-clock" | "receipt-text-clock-outline" | "receipt-text-edit" | "receipt-text-edit-outline" | "receipt-text-minus" | "receipt-text-minus-outline" | "receipt-text-outline" | "receipt-text-plus" | "receipt-text-plus-outline" | "receipt-text-remove" | "receipt-text-remove-outline" | "receipt-text-send" | "receipt-text-send-outline" | "safe" | "transfer" | "wallet" | "wallet-bifold" | "wallet-bifold-outline" | "wallet-giftcard" | "wallet-outline" | "wallet-plus" | "wallet-plus-outline" | "battery-10-bluetooth" | "battery-20-bluetooth" | "battery-30-bluetooth" | "battery-40-bluetooth" | "battery-50-bluetooth" | "battery-60-bluetooth" | "battery-70-bluetooth" | "battery-80-bluetooth" | "battery-90-bluetooth" | "battery-arrow-down" | "battery-arrow-down-outline" | "battery-arrow-up" | "battery-arrow-up-outline" | "battery-bluetooth" | "battery-bluetooth-variant" | "battery-charging-high" | "battery-charging-low" | "battery-charging-medium" | "battery-charging-wireless" | "battery-charging-wireless-10" | "battery-charging-wireless-20" | "battery-charging-wireless-30" | "battery-charging-wireless-40" | "battery-charging-wireless-50" | "battery-charging-wireless-60" | "battery-charging-wireless-70" | "battery-charging-wireless-80" | "battery-charging-wireless-90" | "battery-charging-wireless-outline" | "battery-check" | "battery-check-outline" | "battery-clock" | "battery-clock-outline" | "battery-heart" | "battery-heart-outline" | "battery-heart-variant" | "battery-high" | "battery-lock" | "battery-lock-open" | "battery-low" | "battery-medium" | "battery-minus" | "battery-minus-outline" | "battery-minus-variant" | "battery-negative" | "battery-off" | "battery-off-outline" | "battery-plus" | "battery-plus-outline" | "battery-plus-variant" | "battery-positive" | "battery-remove" | "battery-remove-outline" | "battery-sync" | "battery-sync-outline" | "battery-unknown" | "battery-unknown-bluetooth" | "current-dc" | "home-battery" | "home-battery-outline" | "microsoft-xbox-controller-battery-charging" | "microsoft-xbox-controller-battery-empty" | "microsoft-xbox-controller-battery-full" | "microsoft-xbox-controller-battery-low" | "microsoft-xbox-controller-battery-medium" | "microsoft-xbox-controller-battery-unknown" | "power-plug-battery" | "power-plug-battery-outline" | "android-studio" | "angular" | "angularjs" | "ansible" | "apache-kafka" | "apple" | "apple-finder" | "apple-icloud" | "apple-ios" | "apple-safari" | "arch" | "artstation" | "atlassian" | "aws" | "babel" | "bitbucket" | "black-mesa" | "blender-software" | "bootstrap" | "box" | "bulma" | "centos" | "codepen" | "cordova" | "creative-commons" | "cryengine" | "debian" | "dev-to" | "deviantart" | "digital-ocean" | "disqus" | "dlna" | "docker" | "dot-net" | "dropbox" | "drupal" | "electron-framework" | "ember" | "emby" | "eslint" | "ethereum" | "evernote" | "facebook" | "facebook-gaming" | "facebook-messenger" | "facebook-workplace" | "fedora" | "firebase" | "firefox" | "folder-google-drive" | "font-awesome" | "freebsd" | "gatsby" | "gentoo" | "git" | "github" | "gitlab" | "gmail" | "gnome" | "gog" | "goodreads" | "google" | "google-ads" | "google-analytics" | "google-assistant" | "google-cardboard" | "google-chrome" | "google-circles" | "google-circles-communities" | "google-circles-extended" | "google-circles-group" | "google-classroom" | "google-cloud" | "google-drive" | "google-earth" | "google-fit" | "google-glass" | "google-hangouts" | "google-keep" | "google-lens" | "google-maps" | "google-play" | "google-plus" | "google-translate" | "graphql" | "home-assistant" | "hulu" | "humble-bundle" | "instagram" | "iobroker" | "jabber" | "jira" | "jquery" | "jsfiddle" | "kickstarter" | "kodi" | "kubernetes" | "language-c" | "language-cpp" | "language-csharp" | "language-css3" | "language-fortran" | "language-go" | "language-haskell" | "language-html5" | "language-java" | "language-javascript" | "language-kotlin" | "language-lua" | "language-markdown" | "language-markdown-outline" | "language-php" | "language-python" | "language-r" | "language-ruby" | "language-ruby-on-rails" | "language-rust" | "language-swift" | "language-typescript" | "language-xaml" | "laravel" | "lastpass" | "linkedin" | "linux-mint" | "lumx" | "manjaro" | "mapbox" | "mastodon" | "material-design" | "material-ui" | "meteor" | "microsoft" | "microsoft-access" | "microsoft-azure" | "microsoft-azure-devops" | "microsoft-bing" | "microsoft-dynamics-365" | "microsoft-edge" | "microsoft-excel" | "microsoft-internet-explorer" | "microsoft-office" | "microsoft-onedrive" | "microsoft-onenote" | "microsoft-outlook" | "microsoft-powerpoint" | "microsoft-sharepoint" | "microsoft-teams" | "microsoft-visual-studio" | "microsoft-visual-studio-code" | "microsoft-windows" | "microsoft-windows-classic" | "microsoft-word" | "microsoft-xbox" | "midi" | "minecraft" | "nativescript" | "netflix" | "nfc" | "nintendo-switch" | "nintendo-wii" | "nintendo-wiiu" | "nix" | "nodejs" | "npm" | "nuxt" | "oci" | "odnoklassniki" | "onepassword" | "open-source-initiative" | "openid" | "opera" | "origin" | "pandora" | "patreon" | "pi-hole" | "pinterest" | "plex" | "pokemon-go" | "polymer" | "qi" | "qqchat" | "react" | "reddit" | "redhat" | "rollupjs" | "salesforce" | "sass" | "semantic-web" | "simple-icons" | "sina-weibo" | "skype" | "skype-business" | "slack" | "snapchat" | "sony-playstation" | "soundcloud" | "spotify" | "stack-exchange" | "stack-overflow" | "stackpath" | "steam" | "symfony" | "tailwind" | "teamviewer" | "terraform" | "trello" | "twitch" | "twitter" | "ubisoft" | "ubuntu" | "umbraco" | "unicode" | "unity" | "unreal" | "vimeo" | "vlc" | "vuejs" | "vuetify" | "waze" | "webpack" | "webrtc" | "wechat" | "whatsapp" | "wikipedia" | "wordpress" | "xamarin" | "xmpp" | "yahoo" | "youtube" | "youtube-gaming" | "youtube-studio" | "youtube-subscription" | "youtube-tv" | "z-wave" | "zend" | "zigbee" | "cellphone" | "cellphone-arrow-down" | "cellphone-arrow-down-variant" | "cellphone-basic" | "cellphone-charging" | "cellphone-check" | "cellphone-cog" | "cellphone-dock" | "cellphone-information" | "cellphone-key" | "cellphone-link" | "cellphone-link-off" | "cellphone-lock" | "cellphone-marker" | "cellphone-message" | "cellphone-message-off" | "cellphone-nfc-off" | "cellphone-off" | "cellphone-play" | "cellphone-remove" | "cellphone-screenshot" | "cellphone-settings" | "cellphone-sound" | "cellphone-text" | "cellphone-wireless" | "deskphone" | "devices" | "fax" | "file-phone" | "file-phone-outline" | "monitor-cellphone" | "monitor-cellphone-star" | "network-strength-1" | "network-strength-2" | "network-strength-3" | "network-strength-4" | "network-strength-off" | "network-strength-off-outline" | "network-strength-outline" | "phone" | "phone-bluetooth" | "phone-bluetooth-outline" | "phone-cancel" | "phone-cancel-outline" | "phone-check" | "phone-check-outline" | "phone-classic" | "phone-clock" | "phone-dial" | "phone-dial-outline" | "phone-forward" | "phone-forward-outline" | "phone-hangup" | "phone-hangup-outline" | "phone-in-talk" | "phone-in-talk-outline" | "phone-incoming" | "phone-incoming-outgoing" | "phone-incoming-outgoing-outline" | "phone-incoming-outline" | "phone-lock" | "phone-lock-outline" | "phone-log" | "phone-log-outline" | "phone-message" | "phone-message-outline" | "phone-minus" | "phone-minus-outline" | "phone-missed" | "phone-missed-outline" | "phone-off" | "phone-off-outline" | "phone-outgoing" | "phone-outgoing-outline" | "phone-outline" | "phone-paused" | "phone-paused-outline" | "phone-plus" | "phone-plus-outline" | "phone-refresh" | "phone-refresh-outline" | "phone-remove" | "phone-remove-outline" | "phone-return" | "phone-return-outline" | "phone-ring" | "phone-ring-outline" | "phone-rotate-landscape" | "phone-rotate-portrait" | "phone-settings" | "phone-settings-outline" | "phone-sync" | "phone-sync-outline" | "phone-voip" | "signal-2g" | "signal-3g" | "signal-4g" | "signal-5g" | "signal-cellular-1" | "signal-cellular-2" | "signal-cellular-3" | "signal-cellular-outline" | "signal-hspa" | "signal-hspa-plus" | "signal-off" | "sim" | "sim-off" | "sim-off-outline" | "sim-outline" | "tablet-cellphone" | "tooltip-cellphone" | "bow-tie" | "chef-hat" | "coat-rack" | "diaper-outline" | "face-mask" | "face-mask-outline" | "glasses" | "hanger" | "hard-hat" | "hat-fedora" | "iron" | "iron-board" | "iron-outline" | "lingerie" | "necklace" | "shoe-ballet" | "shoe-cleat" | "shoe-formal" | "shoe-heel" | "shoe-sneaker" | "sunglasses" | "tie" | "tshirt-crew" | "tshirt-crew-outline" | "tshirt-v" | "tshirt-v-outline" | "underwear-outline" | "wizard-hat" | "cloud" | "cloud-arrow-down" | "cloud-arrow-down-outline" | "cloud-arrow-left" | "cloud-arrow-left-outline" | "cloud-arrow-right" | "cloud-arrow-right-outline" | "cloud-arrow-up" | "cloud-arrow-up-outline" | "cloud-braces" | "cloud-cancel" | "cloud-cancel-outline" | "cloud-check" | "cloud-check-outline" | "cloud-check-variant" | "cloud-check-variant-outline" | "cloud-circle" | "cloud-circle-outline" | "cloud-clock" | "cloud-clock-outline" | "cloud-cog" | "cloud-cog-outline" | "cloud-download" | "cloud-download-outline" | "cloud-key" | "cloud-key-outline" | "cloud-lock" | "cloud-lock-open" | "cloud-lock-open-outline" | "cloud-lock-outline" | "cloud-minus" | "cloud-minus-outline" | "cloud-off" | "cloud-off-outline" | "cloud-outline" | "cloud-percent" | "cloud-percent-outline" | "cloud-plus" | "cloud-plus-outline" | "cloud-print" | "cloud-print-outline" | "cloud-question" | "cloud-question-outline" | "cloud-refresh" | "cloud-refresh-outline" | "cloud-refresh-variant" | "cloud-refresh-variant-outline" | "cloud-remove" | "cloud-remove-outline" | "cloud-search" | "cloud-search-outline" | "cloud-sync" | "cloud-sync-outline" | "cloud-tags" | "cloud-upload" | "cloud-upload-outline" | "clouds" | "file-cloud" | "file-cloud-outline" | "image-filter-drama" | "image-filter-drama-outline" | "weather-cloudy-arrow-right" | "weather-cloudy-clock" | "weather-night-partly-cloudy" | "weather-partly-cloudy" | "border-color" | "color-helper" | "eyedropper" | "eyedropper-variant" | "format-color-fill" | "format-color-highlight" | "format-color-marker-cancel" | "format-color-text" | "format-paint" | "invert-colors" | "invert-colors-off" | "looks" | "palette" | "palette-advanced" | "palette-outline" | "palette-swatch" | "palette-swatch-outline" | "palette-swatch-variant" | "select-color" | "contactless-payment" | "contactless-payment-circle" | "contactless-payment-circle-outline" | "database" | "database-arrow-down" | "database-arrow-down-outline" | "database-arrow-left" | "database-arrow-left-outline" | "database-arrow-right" | "database-arrow-right-outline" | "database-arrow-up" | "database-arrow-up-outline" | "database-check" | "database-check-outline" | "database-clock" | "database-clock-outline" | "database-cog" | "database-cog-outline" | "database-edit" | "database-edit-outline" | "database-export" | "database-export-outline" | "database-eye" | "database-eye-off" | "database-eye-off-outline" | "database-eye-outline" | "database-import" | "database-import-outline" | "database-lock" | "database-lock-outline" | "database-marker" | "database-marker-outline" | "database-minus" | "database-minus-outline" | "database-off" | "database-off-outline" | "database-outline" | "database-plus" | "database-plus-outline" | "database-refresh" | "database-refresh-outline" | "database-remove" | "database-remove-outline" | "database-search" | "database-search-outline" | "database-settings" | "database-settings-outline" | "database-sync" | "database-sync-outline" | "relation-many-to-many" | "relation-many-to-one" | "relation-many-to-one-or-many" | "relation-many-to-only-one" | "relation-many-to-zero-or-many" | "relation-many-to-zero-or-one" | "relation-one-or-many-to-many" | "relation-one-or-many-to-one" | "relation-one-or-many-to-one-or-many" | "relation-one-or-many-to-only-one" | "relation-one-or-many-to-zero-or-many" | "relation-one-or-many-to-zero-or-one" | "relation-one-to-many" | "relation-one-to-one" | "relation-one-to-one-or-many" | "relation-one-to-only-one" | "relation-one-to-zero-or-many" | "relation-one-to-zero-or-one" | "relation-only-one-to-many" | "relation-only-one-to-one" | "relation-only-one-to-one-or-many" | "relation-only-one-to-only-one" | "relation-only-one-to-zero-or-many" | "relation-only-one-to-zero-or-one" | "relation-zero-or-many-to-many" | "relation-zero-or-many-to-one" | "relation-zero-or-many-to-one-or-many" | "relation-zero-or-many-to-only-one" | "relation-zero-or-many-to-zero-or-many" | "relation-zero-or-many-to-zero-or-one" | "relation-zero-or-one-to-many" | "relation-zero-or-one-to-one" | "relation-zero-or-one-to-one-or-many" | "relation-zero-or-one-to-only-one" | "relation-zero-or-one-to-zero-or-many" | "relation-zero-or-one-to-zero-or-one" | "set-all" | "set-center" | "set-center-right" | "set-left" | "set-left-center" | "set-left-right" | "set-none" | "set-right" | "airplane-clock" | "alarm" | "alarm-check" | "alarm-multiple" | "alarm-off" | "alarm-plus" | "alarm-snooze" | "archive-clock" | "archive-clock-outline" | "av-timer" | "bed-clock" | "book-clock" | "book-clock-outline" | "briefcase-clock" | "briefcase-clock-outline" | "bus-clock" | "calendar" | "calendar-arrow-left" | "calendar-arrow-right" | "calendar-badge" | "calendar-badge-outline" | "calendar-blank" | "calendar-blank-multiple" | "calendar-blank-outline" | "calendar-check" | "calendar-check-outline" | "calendar-clock" | "calendar-clock-outline" | "calendar-collapse-horizontal" | "calendar-collapse-horizontal-outline" | "calendar-cursor" | "calendar-cursor-outline" | "calendar-edit" | "calendar-edit-outline" | "calendar-end" | "calendar-end-outline" | "calendar-expand-horizontal" | "calendar-expand-horizontal-outline" | "calendar-export" | "calendar-export-outline" | "calendar-filter" | "calendar-filter-outline" | "calendar-heart" | "calendar-heart-outline" | "calendar-import" | "calendar-import-outline" | "calendar-lock" | "calendar-lock-open" | "calendar-lock-open-outline" | "calendar-lock-outline" | "calendar-minus" | "calendar-minus-outline" | "calendar-month" | "calendar-month-outline" | "calendar-multiple" | "calendar-multiple-check" | "calendar-multiselect" | "calendar-multiselect-outline" | "calendar-outline" | "calendar-plus" | "calendar-plus-outline" | "calendar-question" | "calendar-question-outline" | "calendar-range" | "calendar-range-outline" | "calendar-refresh" | "calendar-refresh-outline" | "calendar-remove" | "calendar-remove-outline" | "calendar-search" | "calendar-search-outline" | "calendar-star" | "calendar-star-four-points" | "calendar-star-outline" | "calendar-start" | "calendar-start-outline" | "calendar-sync" | "calendar-sync-outline" | "calendar-text" | "calendar-text-outline" | "calendar-today" | "calendar-today-outline" | "calendar-week" | "calendar-week-begin" | "calendar-week-begin-outline" | "calendar-week-outline" | "calendar-weekend" | "calendar-weekend-outline" | "camera-timer" | "clipboard-clock" | "clipboard-clock-outline" | "clipboard-text-clock" | "clipboard-text-clock-outline" | "clock" | "clock-check" | "clock-check-outline" | "clock-digital" | "clock-edit" | "clock-edit-outline" | "clock-end" | "clock-fast" | "clock-in" | "clock-minus" | "clock-minus-outline" | "clock-out" | "clock-outline" | "clock-plus" | "clock-plus-outline" | "clock-remove" | "clock-remove-outline" | "clock-star-four-points" | "clock-star-four-points-outline" | "clock-start" | "clock-time-eight" | "clock-time-eight-outline" | "clock-time-eleven" | "clock-time-eleven-outline" | "clock-time-five" | "clock-time-five-outline" | "clock-time-four" | "clock-time-four-outline" | "clock-time-nine" | "clock-time-nine-outline" | "clock-time-one" | "clock-time-one-outline" | "clock-time-seven" | "clock-time-seven-outline" | "clock-time-six" | "clock-time-six-outline" | "clock-time-ten" | "clock-time-ten-outline" | "clock-time-three" | "clock-time-three-outline" | "clock-time-twelve" | "clock-time-twelve-outline" | "clock-time-two" | "clock-time-two-outline" | "cookie-clock" | "cookie-clock-outline" | "delete-clock" | "delete-clock-outline" | "fan-clock" | "file-clock" | "file-clock-outline" | "folder-clock" | "folder-clock-outline" | "history" | "home-clock" | "home-clock-outline" | "hours-12" | "hours-24" | "lock-clock" | "map-clock" | "map-clock-outline" | "message-text-clock" | "message-text-clock-outline" | "progress-clock" | "routes-clock" | "send-clock" | "send-clock-outline" | "sort-calendar-ascending" | "sort-calendar-descending" | "sort-clock-ascending" | "sort-clock-ascending-outline" | "sort-clock-descending" | "sort-clock-descending-outline" | "store-clock-outline" | "sun-clock-outline" | "table-clock" | "timelapse" | "timeline-clock" | "timeline-clock-outline" | "timer-10" | "timer-3" | "timer-cancel" | "timer-cancel-outline" | "timer-check" | "timer-check-outline" | "timer-cog" | "timer-cog-outline" | "timer-edit" | "timer-edit-outline" | "timer-lock" | "timer-lock-open" | "timer-lock-open-outline" | "timer-lock-outline" | "timer-marker" | "timer-marker-outline" | "timer-minus" | "timer-minus-outline" | "timer-music" | "timer-music-outline" | "timer-off" | "timer-off-outline" | "timer-outline" | "timer-pause" | "timer-pause-outline" | "timer-play" | "timer-play-outline" | "timer-plus" | "timer-plus-outline" | "timer-refresh" | "timer-refresh-outline" | "timer-remove" | "timer-remove-outline" | "timer-sand" | "timer-sand-complete" | "timer-sand-empty" | "timer-sand-full" | "timer-sand-paused" | "timer-settings" | "timer-settings-outline" | "timer-star" | "timer-star-outline" | "timer-stop" | "timer-stop-outline" | "timer-sync" | "timer-sync-outline" | "timetable" | "update" | "web-clock" | "wrench-clock" | "wrench-clock-outline" | "ab-testing" | "api" | "api-off" | "application-array" | "application-array-outline" | "application-braces" | "application-braces-outline" | "application-brackets" | "application-brackets-outline" | "application-parentheses" | "application-parentheses-outline" | "application-variable" | "application-variable-outline" | "bash" | "code-array" | "code-block-braces" | "code-block-brackets" | "code-block-parentheses" | "code-block-tags" | "code-braces" | "code-braces-box" | "code-brackets" | "code-equal" | "code-greater-than" | "code-greater-than-or-equal" | "code-json" | "code-less-than" | "code-less-than-or-equal" | "code-not-equal" | "code-not-equal-variant" | "code-parentheses" | "code-parentheses-box" | "code-string" | "code-tags" | "code-tags-check" | "file-code" | "file-code-outline" | "folder-pound" | "folder-pound-outline" | "hexadecimal" | "identifier" | "math-norm" | "math-norm-box" | "source-branch" | "source-branch-check" | "source-branch-minus" | "source-branch-plus" | "source-branch-refresh" | "source-branch-remove" | "source-branch-sync" | "source-fork" | "source-merge" | "source-pull" | "source-repository" | "source-repository-multiple" | "translate-variant" | "variable" | "variable-box" | "camera-gopro" | "desktop-classic" | "desktop-tower" | "desktop-tower-monitor" | "disc-player" | "laptop" | "laptop-off" | "monitor" | "monitor-arrow-down" | "monitor-arrow-down-variant" | "monitor-dashboard" | "monitor-lock" | "monitor-multiple" | "monitor-off" | "monitor-screenshot" | "monitor-shimmer" | "monitor-small" | "monitor-speaker" | "monitor-speaker-off" | "monitor-star" | "projector" | "projector-off" | "projector-screen" | "radio-handheld" | "remote-tv" | "remote-tv-off" | "robot-vacuum" | "router-network-wireless" | "scanner" | "scanner-off" | "smoke-detector" | "tablet" | "tablet-dashboard" | "television" | "television-classic" | "television-classic-off" | "television-guide" | "television-off" | "television-pause" | "television-play" | "television-shimmer" | "television-stop" | "thermostat" | "thermostat-box" | "wall-fire" | "watch" | "watch-export" | "watch-export-variant" | "watch-import" | "watch-import-variant" | "watch-variant" | "watch-vibrate" | "watch-vibrate-off" | "artboard" | "brush" | "brush-outline" | "brush-variant" | "circle-opacity" | "draw" | "draw-pen" | "drawing" | "drawing-box" | "format-line-style" | "format-line-weight" | "fountain-pen" | "fountain-pen-tip" | "gesture" | "gradient-horizontal" | "gradient-vertical" | "grease-pencil" | "lead-pencil" | "math-compass" | "pen" | "pencil" | "pencil-box" | "pencil-box-outline" | "pencil-circle" | "pencil-circle-outline" | "pencil-outline" | "pencil-ruler" | "pencil-ruler-outline" | "ruler" | "ruler-square" | "square-opacity" | "water-opacity" | "airplane-edit" | "application-edit" | "application-edit-outline" | "archive-edit" | "archive-edit-outline" | "book-edit" | "book-edit-outline" | "briefcase-edit" | "briefcase-edit-outline" | "circle-edit-outline" | "clipboard-edit" | "clipboard-edit-outline" | "comment-edit" | "comment-edit-outline" | "content-save-edit" | "content-save-edit-outline" | "cookie-edit" | "cookie-edit-outline" | "data-matrix-edit" | "email-edit" | "email-edit-outline" | "file-document-edit" | "file-document-edit-outline" | "file-edit" | "file-edit-outline" | "folder-edit" | "folder-edit-outline" | "home-edit" | "home-edit-outline" | "human-edit" | "image-edit" | "image-edit-outline" | "layers-edit" | "monitor-edit" | "movie-edit" | "movie-edit-outline" | "movie-open-edit" | "movie-open-edit-outline" | "note-edit" | "note-edit-outline" | "notebook-edit" | "notebook-edit-outline" | "pencil-box-multiple" | "pencil-box-multiple-outline" | "playlist-edit" | "puzzle-edit" | "puzzle-edit-outline" | "qrcode-edit" | "rename" | "rename-box" | "rename-box-outline" | "rename-outline" | "shield-edit" | "shield-edit-outline" | "square-edit-outline" | "store-edit" | "store-edit-outline" | "storefront-edit" | "storefront-edit-outline" | "table-edit" | "text-box-edit" | "text-box-edit-outline" | "tooltip-edit" | "tooltip-edit-outline" | "vector-point-edit" | "vector-polyline-edit" | "vector-square-edit" | "view-dashboard-edit" | "view-dashboard-edit-outline" | "emoticon" | "emoticon-angry" | "emoticon-angry-outline" | "emoticon-confused" | "emoticon-confused-outline" | "emoticon-cool" | "emoticon-cool-outline" | "emoticon-cry" | "emoticon-cry-outline" | "emoticon-dead" | "emoticon-dead-outline" | "emoticon-devil" | "emoticon-devil-outline" | "emoticon-excited" | "emoticon-excited-outline" | "emoticon-frown" | "emoticon-frown-outline" | "emoticon-happy" | "emoticon-happy-outline" | "emoticon-kiss" | "emoticon-kiss-outline" | "emoticon-lol" | "emoticon-lol-outline" | "emoticon-neutral" | "emoticon-neutral-outline" | "emoticon-outline" | "emoticon-poop" | "emoticon-poop-outline" | "emoticon-sad" | "emoticon-sad-outline" | "emoticon-sick" | "emoticon-sick-outline" | "emoticon-tongue" | "emoticon-tongue-outline" | "emoticon-wink" | "emoticon-wink-outline" | "sticker-emoji" | "clipboard-file" | "clipboard-file-outline" | "file" | "file-arrow-left-right" | "file-arrow-left-right-outline" | "file-arrow-up-down" | "file-arrow-up-down-outline" | "file-cabinet" | "file-cad" | "file-cad-box" | "file-cancel" | "file-cancel-outline" | "file-certificate" | "file-certificate-outline" | "file-chart" | "file-chart-check" | "file-chart-check-outline" | "file-chart-outline" | "file-check" | "file-check-outline" | "file-cog" | "file-cog-outline" | "file-compare" | "file-delimited" | "file-delimited-outline" | "file-document" | "file-document-arrow-right" | "file-document-arrow-right-outline" | "file-document-check" | "file-document-check-outline" | "file-document-minus" | "file-document-minus-outline" | "file-document-multiple" | "file-document-multiple-outline" | "file-document-outline" | "file-document-plus" | "file-document-plus-outline" | "file-document-refresh" | "file-document-refresh-outline" | "file-document-remove" | "file-document-remove-outline" | "file-download" | "file-download-outline" | "file-excel" | "file-excel-box" | "file-excel-box-outline" | "file-excel-outline" | "file-export" | "file-export-outline" | "file-eye" | "file-eye-outline" | "file-find" | "file-find-outline" | "file-gif-box" | "file-hidden" | "file-image" | "file-image-marker" | "file-image-marker-outline" | "file-image-minus" | "file-image-minus-outline" | "file-image-outline" | "file-image-plus" | "file-image-plus-outline" | "file-image-remove" | "file-image-remove-outline" | "file-import" | "file-import-outline" | "file-jpg-box" | "file-key" | "file-key-outline" | "file-link" | "file-link-outline" | "file-lock" | "file-lock-open" | "file-lock-open-outline" | "file-lock-outline" | "file-marker" | "file-marker-outline" | "file-minus" | "file-minus-outline" | "file-move" | "file-move-outline" | "file-multiple" | "file-multiple-outline" | "file-music" | "file-music-outline" | "file-outline" | "file-pdf-box" | "file-percent" | "file-percent-outline" | "file-plus" | "file-plus-outline" | "file-png-box" | "file-powerpoint" | "file-powerpoint-box" | "file-powerpoint-box-outline" | "file-powerpoint-outline" | "file-presentation-box" | "file-question" | "file-question-outline" | "file-refresh" | "file-refresh-outline" | "file-remove" | "file-remove-outline" | "file-replace" | "file-replace-outline" | "file-restore" | "file-restore-outline" | "file-rotate-left" | "file-rotate-left-outline" | "file-rotate-right" | "file-rotate-right-outline" | "file-search" | "file-search-outline" | "file-send" | "file-send-outline" | "file-settings" | "file-settings-outline" | "file-star" | "file-star-four-points" | "file-star-four-points-outline" | "file-star-outline" | "file-swap" | "file-swap-outline" | "file-sync" | "file-sync-outline" | "file-table" | "file-table-box" | "file-table-box-multiple" | "file-table-box-multiple-outline" | "file-table-box-outline" | "file-table-outline" | "file-tree" | "file-tree-outline" | "file-undo" | "file-undo-outline" | "file-upload" | "file-upload-outline" | "file-video" | "file-video-outline" | "file-word" | "file-word-box" | "file-word-box-outline" | "file-word-outline" | "file-xml-box" | "folder" | "folder-arrow-down" | "folder-arrow-down-outline" | "folder-arrow-left" | "folder-arrow-left-outline" | "folder-arrow-left-right" | "folder-arrow-left-right-outline" | "folder-arrow-right" | "folder-arrow-right-outline" | "folder-arrow-up" | "folder-arrow-up-down" | "folder-arrow-up-down-outline" | "folder-arrow-up-outline" | "folder-cancel" | "folder-cancel-outline" | "folder-check" | "folder-check-outline" | "folder-cog" | "folder-cog-outline" | "folder-download" | "folder-download-outline" | "folder-eye" | "folder-eye-outline" | "folder-file" | "folder-file-outline" | "folder-heart" | "folder-heart-outline" | "folder-hidden" | "folder-home" | "folder-home-outline" | "folder-image" | "folder-information" | "folder-information-outline" | "folder-key" | "folder-key-network" | "folder-key-network-outline" | "folder-key-outline" | "folder-lock" | "folder-lock-open" | "folder-lock-open-outline" | "folder-lock-outline" | "folder-marker" | "folder-marker-outline" | "folder-minus" | "folder-minus-outline" | "folder-move" | "folder-move-outline" | "folder-multiple" | "folder-multiple-image" | "folder-multiple-outline" | "folder-multiple-plus" | "folder-multiple-plus-outline" | "folder-music" | "folder-music-outline" | "folder-network" | "folder-network-outline" | "folder-off" | "folder-off-outline" | "folder-open" | "folder-open-outline" | "folder-outline" | "folder-play" | "folder-play-outline" | "folder-plus" | "folder-plus-outline" | "folder-question" | "folder-question-outline" | "folder-refresh" | "folder-refresh-outline" | "folder-remove" | "folder-remove-outline" | "folder-search" | "folder-search-outline" | "folder-settings" | "folder-settings-outline" | "folder-star" | "folder-star-multiple" | "folder-star-multiple-outline" | "folder-star-outline" | "folder-swap" | "folder-swap-outline" | "folder-sync" | "folder-sync-outline" | "folder-table" | "folder-table-outline" | "folder-text" | "folder-text-outline" | "folder-upload" | "folder-upload-outline" | "folder-wrench" | "folder-wrench-outline" | "folder-zip" | "folder-zip-outline" | "text-box" | "text-box-check" | "text-box-check-outline" | "text-box-minus" | "text-box-minus-outline" | "text-box-multiple" | "text-box-multiple-outline" | "text-box-outline" | "text-box-plus" | "text-box-plus-outline" | "text-box-remove" | "text-box-remove-outline" | "text-box-search" | "text-box-search-outline" | "upload-circle-outline" | "zip-box" | "zip-box-outline" | "baguette" | "beer" | "beer-outline" | "blender" | "blender-outline" | "bottle-soda" | "bottle-soda-classic" | "bottle-soda-outline" | "bottle-wine" | "bottle-wine-outline" | "bowl" | "bowl-mix" | "bowl-mix-outline" | "bowl-outline" | "bread-slice" | "bread-slice-outline" | "cake" | "cake-layered" | "cake-variant" | "cake-variant-outline" | "candy" | "candy-off" | "candy-off-outline" | "candy-outline" | "candycane" | "cheese" | "cheese-off" | "chili-hot" | "chili-medium" | "chili-off" | "coffee" | "coffee-maker" | "coffee-maker-check" | "coffee-maker-check-outline" | "coffee-off" | "coffee-off-outline" | "coffee-outline" | "coffee-to-go" | "coffee-to-go-outline" | "cookie" | "cookie-check" | "cookie-check-outline" | "cookie-cog" | "cookie-cog-outline" | "cookie-lock" | "cookie-lock-outline" | "cookie-minus" | "cookie-minus-outline" | "cookie-off" | "cookie-off-outline" | "cookie-outline" | "cookie-plus" | "cookie-plus-outline" | "cookie-refresh" | "cookie-refresh-outline" | "cookie-remove" | "cookie-remove-outline" | "cookie-settings" | "cookie-settings-outline" | "cube-off-outline" | "cube-outline" | "cup" | "cup-off" | "cup-off-outline" | "cup-outline" | "cup-water" | "cupcake" | "egg-fried" | "fish-off" | "food" | "food-croissant" | "food-drumstick" | "food-drumstick-off" | "food-drumstick-off-outline" | "food-drumstick-outline" | "food-fork-drink" | "food-halal" | "food-hot-dog" | "food-kosher" | "food-off" | "food-off-outline" | "food-outline" | "food-steak" | "food-steak-off" | "food-takeout-box" | "food-takeout-box-outline" | "food-turkey" | "food-variant" | "food-variant-off" | "french-fries" | "fruit-pear" | "glass-cocktail" | "glass-cocktail-off" | "glass-flute" | "glass-fragile" | "glass-mug" | "glass-mug-off" | "glass-mug-variant" | "glass-mug-variant-off" | "glass-pint-outline" | "glass-stange" | "glass-tulip" | "glass-wine" | "grill" | "grill-outline" | "hamburger" | "hamburger-check" | "hamburger-minus" | "hamburger-off" | "hamburger-plus" | "hamburger-remove" | "ice-cream" | "ice-cream-off" | "ice-pop" | "keg" | "kettle" | "kettle-off" | "kettle-off-outline" | "kettle-outline" | "kettle-steam" | "kettle-steam-outline" | "leek" | "liquor" | "microwave" | "muffin" | "noodles" | "nutrition" | "pasta" | "pizza" | "popcorn" | "pot" | "pot-mix" | "pot-mix-outline" | "pot-outline" | "pot-steam" | "pot-steam-outline" | "pretzel" | "rice" | "sausage" | "sausage-off" | "shaker" | "shaker-outline" | "silverware" | "silverware-clean" | "silverware-fork" | "silverware-fork-knife" | "silverware-spoon" | "silverware-variant" | "soy-sauce" | "spoon-sugar" | "square-circle" | "stove" | "taco" | "tea" | "tea-outline" | "toaster-oven" | "button-cursor" | "button-pointer" | "card" | "card-outline" | "check" | "check-circle" | "check-circle-outline" | "checkbox-blank" | "checkbox-blank-badge" | "checkbox-blank-badge-outline" | "checkbox-blank-circle" | "checkbox-blank-circle-outline" | "checkbox-blank-off" | "checkbox-blank-off-outline" | "checkbox-blank-outline" | "checkbox-intermediate" | "checkbox-intermediate-variant" | "checkbox-marked" | "checkbox-marked-circle" | "checkbox-marked-circle-auto-outline" | "checkbox-marked-circle-minus-outline" | "checkbox-marked-circle-outline" | "checkbox-marked-circle-plus-outline" | "checkbox-marked-outline" | "checkbox-multiple-blank" | "checkbox-multiple-blank-circle" | "checkbox-multiple-blank-circle-outline" | "checkbox-multiple-blank-outline" | "checkbox-multiple-marked" | "checkbox-multiple-marked-circle" | "checkbox-multiple-marked-circle-outline" | "checkbox-multiple-marked-outline" | "checkbox-multiple-outline" | "checkbox-outline" | "close" | "close-box" | "close-box-multiple" | "close-box-multiple-outline" | "close-box-outline" | "close-circle" | "close-circle-multiple" | "close-circle-multiple-outline" | "close-circle-outline" | "form-dropdown" | "form-select" | "form-textarea" | "form-textbox" | "form-textbox-lock" | "form-textbox-password" | "gesture-tap-button" | "minus-box" | "minus-box-multiple" | "minus-box-multiple-outline" | "minus-box-outline" | "minus-circle" | "minus-circle-multiple" | "minus-circle-multiple-outline" | "minus-circle-outline" | "radiobox-blank" | "radiobox-indeterminate-variant" | "radiobox-marked" | "signature" | "signature-freehand" | "signature-image" | "signature-text" | "arrow-projectile" | "arrow-projectile-multiple" | "axe-battle" | "bomb" | "bomb-off" | "boomerang" | "bottle-tonic-plus" | "bottle-tonic-plus-outline" | "bottle-tonic-skull" | "bottle-tonic-skull-outline" | "bow-arrow" | "cards" | "cards-club" | "cards-diamond" | "cards-heart" | "cards-outline" | "cards-playing" | "cards-playing-club" | "cards-playing-club-multiple" | "cards-playing-club-multiple-outline" | "cards-playing-club-outline" | "cards-playing-diamond" | "cards-playing-diamond-multiple" | "cards-playing-diamond-multiple-outline" | "cards-playing-diamond-outline" | "cards-playing-heart" | "cards-playing-heart-multiple" | "cards-playing-heart-multiple-outline" | "cards-playing-heart-outline" | "cards-playing-outline" | "cards-playing-spade" | "cards-playing-spade-multiple" | "cards-playing-spade-multiple-outline" | "cards-playing-spade-outline" | "cards-spade" | "cards-spade-outline" | "cards-variant" | "checkerboard" | "chess-bishop" | "chess-king" | "chess-knight" | "chess-pawn" | "chess-queen" | "chess-rook" | "controller" | "controller-classic" | "controller-classic-outline" | "controller-off" | "crown-circle" | "crown-circle-outline" | "crystal-ball" | "dice-1" | "dice-1-outline" | "dice-2" | "dice-2-outline" | "dice-3" | "dice-3-outline" | "dice-4" | "dice-4-outline" | "dice-5" | "dice-5-outline" | "dice-6" | "dice-6-outline" | "dice-d10" | "dice-d10-outline" | "dice-d12" | "dice-d12-outline" | "dice-d20" | "dice-d20-outline" | "dice-d4" | "dice-d4-outline" | "dice-d6" | "dice-d6-outline" | "dice-d8" | "dice-d8-outline" | "dice-multiple" | "dice-multiple-outline" | "expansion-card" | "flask" | "flask-empty" | "flask-empty-outline" | "flask-outline" | "gamepad" | "gamepad-circle" | "gamepad-circle-down" | "gamepad-circle-left" | "gamepad-circle-outline" | "gamepad-circle-right" | "gamepad-circle-up" | "gamepad-down" | "gamepad-left" | "gamepad-outline" | "gamepad-right" | "gamepad-round" | "gamepad-round-down" | "gamepad-round-left" | "gamepad-round-outline" | "gamepad-round-right" | "gamepad-round-up" | "gamepad-square" | "gamepad-square-outline" | "gamepad-up" | "gamepad-variant" | "gamepad-variant-outline" | "ghost" | "ghost-off" | "ghost-off-outline" | "ghost-outline" | "heart" | "heart-half" | "heart-half-full" | "heart-half-outline" | "heart-outline" | "hololens" | "knife-military" | "lambda" | "mace" | "magic-staff" | "medal" | "microsoft-xbox-controller" | "microsoft-xbox-controller-menu" | "microsoft-xbox-controller-off" | "microsoft-xbox-controller-view" | "nintendo-game-boy" | "ocarina" | "one-up" | "pac-man" | "pokeball" | "poker-chip" | "puzzle" | "puzzle-check" | "puzzle-check-outline" | "puzzle-heart" | "puzzle-heart-outline" | "puzzle-minus" | "puzzle-minus-outline" | "puzzle-outline" | "puzzle-plus" | "puzzle-plus-outline" | "puzzle-remove" | "puzzle-remove-outline" | "puzzle-star" | "puzzle-star-outline" | "sack" | "script-outline" | "script-text" | "script-text-outline" | "shield" | "shield-cross" | "shield-cross-outline" | "shield-crown" | "shield-crown-outline" | "shield-outline" | "shield-sword" | "shield-sword-outline" | "skull" | "skull-crossbones" | "skull-crossbones-outline" | "skull-outline" | "space-invaders" | "spear" | "star-face" | "sword" | "sword-cross" | "tangram" | "tournament" | "treasure-chest" | "treasure-chest-outline" | "triforce" | "checkerboard-minus" | "checkerboard-plus" | "checkerboard-remove" | "compass" | "compass-off" | "compass-off-outline" | "compass-outline" | "crosshairs" | "crosshairs-gps" | "crosshairs-off" | "crosshairs-question" | "earth" | "earth-off" | "latitude" | "layers" | "layers-minus" | "layers-off" | "layers-off-outline" | "layers-outline" | "layers-plus" | "layers-remove" | "layers-search" | "layers-search-outline" | "longitude" | "magnify" | "magnify-expand" | "magnify-minus-outline" | "magnify-plus-outline" | "magnify-remove-outline" | "map-check" | "map-check-outline" | "map-legend" | "map-marker" | "map-marker-check" | "map-marker-check-outline" | "map-marker-circle" | "map-marker-distance" | "map-marker-down" | "map-marker-left" | "map-marker-left-outline" | "map-marker-minus" | "map-marker-minus-outline" | "map-marker-multiple" | "map-marker-multiple-outline" | "map-marker-off" | "map-marker-off-outline" | "map-marker-outline" | "map-marker-path" | "map-marker-plus" | "map-marker-plus-outline" | "map-marker-question" | "map-marker-question-outline" | "map-marker-radius" | "map-marker-radius-outline" | "map-marker-remove" | "map-marker-remove-outline" | "map-marker-remove-variant" | "map-marker-right" | "map-marker-right-outline" | "map-marker-up" | "map-minus" | "map-outline" | "map-plus" | "map-search" | "map-search-outline" | "table-large" | "table-large-plus" | "table-large-remove" | "vector-circle" | "vector-combine" | "vector-curve" | "vector-difference" | "vector-difference-ab" | "vector-difference-ba" | "vector-ellipse" | "vector-intersection" | "vector-line" | "vector-link" | "vector-point-select" | "vector-polygon" | "vector-polyline" | "vector-radius" | "vector-rectangle" | "vector-selection" | "vector-square" | "vector-triangle" | "vector-union" | "web-box" | "axe" | "bolt" | "box-cutter" | "bulldozer" | "circular-saw" | "dump-truck" | "excavator" | "factory" | "fire-extinguisher" | "hammer" | "hammer-screwdriver" | "hammer-sickle" | "hammer-wrench" | "hand-saw" | "ladder" | "mower" | "mower-bag" | "mower-bag-on" | "mower-on" | "nail" | "nut" | "pickaxe" | "pipe-wrench" | "pitchfork" | "pliers" | "progress-wrench" | "rake" | "razor-double-edge" | "razor-single-edge" | "rivet" | "robot-industrial" | "robot-industrial-outline" | "robot-mower" | "robot-mower-outline" | "ruler-square-compass" | "saw-blade" | "screw-flat-top" | "screw-lag" | "screw-machine-flat-top" | "screw-machine-round-top" | "screw-round-top" | "screwdriver" | "set-square" | "shovel-off" | "sickle" | "spade" | "spirit-level" | "tape-measure" | "toolbox" | "toolbox-outline" | "tools" | "wheel-barrow" | "wrench" | "wrench-check" | "wrench-check-outline" | "wrench-cog" | "wrench-cog-outline" | "wrench-outline" | "content-cut" | "hair-dryer" | "hair-dryer-outline" | "lipstick" | "lotion" | "lotion-outline" | "medication" | "medication-outline" | "balloon" | "bed" | "bed-double" | "bed-double-outline" | "bed-empty" | "bed-king" | "bed-king-outline" | "bed-outline" | "bed-queen" | "bed-queen-outline" | "bed-single" | "bed-single-outline" | "candelabra" | "candelabra-fire" | "candle" | "coffin" | "cross" | "cross-celtic" | "egg-easter" | "firework" | "gift" | "gift-off" | "gift-off-outline" | "gift-open" | "gift-open-outline" | "gift-outline" | "grave-stone" | "halloween" | "hexagram" | "hexagram-outline" | "menorah" | "menorah-fire" | "ornament" | "ornament-variant" | "party-popper" | "pumpkin" | "snowflake-variant" | "snowman" | "spider-web" | "stocking" | "teddy-bear" | "weather-night" | "air-filter" | "air-humidifier" | "air-humidifier-off" | "air-purifier" | "air-purifier-off" | "alarm-light" | "alarm-light-off" | "alarm-light-off-outline" | "alarm-light-outline" | "alarm-panel" | "alarm-panel-outline" | "amplifier" | "arrow-oscillating" | "arrow-oscillating-off" | "awning" | "awning-outline" | "balcony" | "bathtub" | "bathtub-outline" | "bell" | "bell-outline" | "blinds" | "blinds-horizontal" | "blinds-horizontal-closed" | "blinds-open" | "blinds-vertical" | "blinds-vertical-closed" | "boom-gate" | "boom-gate-outline" | "boom-gate-up" | "boom-gate-up-outline" | "boombox" | "brightness-7" | "buffet" | "bulkhead-light" | "bunk-bed" | "bunk-bed-outline" | "cabin-a-frame" | "camera" | "cast" | "cast-connected" | "cast-off" | "cast-variant" | "cctv" | "cctv-off" | "ceiling-fan" | "ceiling-fan-light" | "ceiling-light" | "ceiling-light-multiple" | "ceiling-light-multiple-outline" | "ceiling-light-outline" | "chair-rolling" | "chandelier" | "coach-lamp" | "coach-lamp-variant" | "coffee-maker-outline" | "connection" | "countertop" | "countertop-outline" | "cradle" | "cradle-outline" | "cupboard" | "cupboard-outline" | "curtains" | "curtains-closed" | "desk-lamp" | "desk-lamp-off" | "desk-lamp-on" | "dishwasher" | "dishwasher-off" | "door" | "door-closed" | "door-closed-cancel" | "door-closed-lock" | "door-open" | "door-sliding" | "door-sliding-lock" | "door-sliding-open" | "doorbell" | "doorbell-video" | "dresser" | "dresser-outline" | "exit-run" | "fan-chevron-down" | "fan-chevron-up" | "fan-minus" | "fan-plus" | "fan-remove" | "fan-speed-1" | "fan-speed-2" | "fan-speed-3" | "faucet" | "faucet-variant" | "fire" | "fire-circle" | "fire-off" | "fireplace" | "fireplace-off" | "flash-triangle" | "flash-triangle-outline" | "floor-lamp" | "floor-lamp-dual" | "floor-lamp-dual-outline" | "floor-lamp-outline" | "floor-lamp-torchiere" | "floor-lamp-torchiere-outline" | "floor-lamp-torchiere-variant" | "floor-lamp-torchiere-variant-outline" | "floor-plan" | "fridge" | "fridge-bottom" | "fridge-industrial" | "fridge-industrial-off" | "fridge-industrial-off-outline" | "fridge-industrial-outline" | "fridge-off" | "fridge-off-outline" | "fridge-outline" | "fridge-top" | "fridge-variant" | "fridge-variant-off" | "fridge-variant-off-outline" | "fridge-variant-outline" | "garage" | "garage-lock" | "garage-open" | "garage-open-variant" | "garage-variant" | "garage-variant-lock" | "gas-burner" | "gate" | "gate-arrow-left" | "gate-arrow-right" | "gate-open" | "generator-mobile" | "generator-portable" | "generator-stationary" | "globe-light" | "globe-light-outline" | "hdmi-port" | "heat-pump" | "heat-pump-outline" | "heating-coil" | "home" | "home-analytics" | "home-automation" | "home-circle" | "home-circle-outline" | "home-city" | "home-city-outline" | "home-export-outline" | "home-flood" | "home-floor-0" | "home-floor-1" | "home-floor-2" | "home-floor-3" | "home-floor-a" | "home-floor-b" | "home-floor-g" | "home-floor-l" | "home-floor-negative-1" | "home-group" | "home-group-minus" | "home-group-plus" | "home-group-remove" | "home-heart" | "home-import-outline" | "home-lightbulb" | "home-lightbulb-outline" | "home-lightning-bolt" | "home-lightning-bolt-outline" | "home-lock" | "home-lock-open" | "home-map-marker" | "home-minus" | "home-minus-outline" | "home-modern" | "home-off" | "home-off-outline" | "home-outline" | "home-percent-outline" | "home-plus" | "home-plus-outline" | "home-remove" | "home-remove-outline" | "home-roof" | "home-search" | "home-search-outline" | "home-sound-in" | "home-sound-in-outline" | "home-sound-out" | "home-sound-out-outline" | "home-switch" | "home-switch-outline" | "home-thermometer" | "home-thermometer-outline" | "home-variant" | "home-variant-outline" | "hvac" | "hvac-off" | "image-frame" | "lamp" | "lamp-outline" | "lamps" | "lamps-outline" | "lava-lamp" | "led-off" | "led-on" | "led-outline" | "led-strip" | "led-strip-variant" | "led-strip-variant-off" | "led-variant-off" | "led-variant-on" | "led-variant-outline" | "light-flood-down" | "light-flood-up" | "light-recessed" | "light-switch" | "light-switch-off" | "lightbulb" | "lightbulb-auto" | "lightbulb-auto-outline" | "lightbulb-cfl" | "lightbulb-cfl-off" | "lightbulb-cfl-spiral" | "lightbulb-cfl-spiral-off" | "lightbulb-fluorescent-tube" | "lightbulb-fluorescent-tube-outline" | "lightbulb-group" | "lightbulb-group-off" | "lightbulb-group-off-outline" | "lightbulb-group-outline" | "lightbulb-multiple" | "lightbulb-multiple-off" | "lightbulb-multiple-off-outline" | "lightbulb-multiple-outline" | "lightbulb-night" | "lightbulb-night-outline" | "lightbulb-off" | "lightbulb-off-outline" | "lightbulb-on" | "lightbulb-on-10" | "lightbulb-on-20" | "lightbulb-on-30" | "lightbulb-on-40" | "lightbulb-on-50" | "lightbulb-on-60" | "lightbulb-on-70" | "lightbulb-on-80" | "lightbulb-on-90" | "lightbulb-on-outline" | "lightbulb-outline" | "lightbulb-question" | "lightbulb-question-outline" | "lightbulb-spot" | "lightbulb-spot-off" | "lightbulb-variant" | "lightbulb-variant-outline" | "lightning-bolt" | "lightning-bolt-circle" | "lightning-bolt-outline" | "location-enter" | "location-exit" | "lock-open-variant" | "lock-open-variant-outline" | "lock-smart" | "meter-electric" | "meter-electric-outline" | "meter-gas" | "meter-gas-outline" | "microwave-off" | "mirror" | "mirror-rectangle" | "mirror-variant" | "molecule-co" | "molecule-co2" | "motion-sensor" | "motion-sensor-off" | "nfc-variant" | "nfc-variant-off" | "outdoor-lamp" | "paper-roll" | "paper-roll-outline" | "patio-heater" | "pause" | "ph" | "pipe" | "pipe-disconnected" | "pipe-leak" | "pipe-valve" | "play" | "play-pause" | "pool" | "pool-thermometer" | "post-lamp" | "power" | "power-plug" | "power-plug-off" | "power-plug-off-outline" | "power-plug-outline" | "power-socket" | "power-socket-au" | "power-socket-ch" | "power-socket-de" | "power-socket-eu" | "power-socket-fr" | "power-socket-jp" | "power-socket-uk" | "power-socket-us" | "printer" | "printer-3d" | "projector-screen-off" | "projector-screen-off-outline" | "projector-screen-outline" | "projector-screen-variant" | "projector-screen-variant-off" | "projector-screen-variant-off-outline" | "projector-screen-variant-outline" | "radiator" | "radiator-disabled" | "radiator-off" | "record" | "record-player" | "record-rec" | "remote" | "robot" | "robot-vacuum-off" | "robot-vacuum-variant" | "robot-vacuum-variant-off" | "roller-shade" | "roller-shade-closed" | "rug" | "run-fast" | "scale-bathroom" | "seat" | "seat-outline" | "set-top-box" | "shield-home" | "shield-home-outline" | "shield-lock" | "shield-lock-open" | "shield-lock-open-outline" | "shield-lock-outline" | "shield-moon" | "shield-moon-outline" | "shower" | "shower-head" | "skip-backward" | "skip-forward" | "skip-next" | "skip-previous" | "smoke-detector-off" | "smoke-detector-off-outline" | "smoke-detector-outline" | "smoke-detector-variant" | "smoke-detector-variant-off" | "snowflake-thermometer" | "sofa" | "sofa-outline" | "sofa-single" | "sofa-single-outline" | "solar-panel" | "solar-panel-large" | "solar-power" | "solar-power-variant" | "solar-power-variant-outline" | "soundbar" | "spotlight" | "spotlight-beam" | "string-lights" | "string-lights-off" | "sun-clock" | "sun-compass" | "sun-snowflake" | "sun-snowflake-variant" | "sun-thermometer" | "sun-thermometer-outline" | "sun-wireless" | "sun-wireless-outline" | "table-chair" | "table-furniture" | "television-ambient-light" | "theater" | "thermometer-auto" | "thermometer-check" | "thermometer-chevron-down" | "thermometer-chevron-up" | "thermometer-high" | "thermometer-lines" | "thermometer-low" | "thermometer-minus" | "thermometer-off" | "thermometer-plus" | "thermometer-water" | "thermostat-auto" | "thermostat-box-auto" | "toaster" | "toaster-off" | "toggle-switch-variant" | "toggle-switch-variant-off" | "toilet" | "track-light" | "transmission-tower" | "transmission-tower-export" | "transmission-tower-import" | "transmission-tower-off" | "tumble-dryer" | "tumble-dryer-off" | "vacuum" | "vacuum-outline" | "valve" | "valve-closed" | "valve-open" | "vanity-light" | "video-off" | "wall-sconce" | "wall-sconce-flat" | "wall-sconce-flat-outline" | "wall-sconce-flat-variant" | "wall-sconce-flat-variant-outline" | "wall-sconce-outline" | "wall-sconce-round" | "wall-sconce-round-outline" | "wall-sconce-round-variant" | "wall-sconce-round-variant-outline" | "wardrobe" | "wardrobe-outline" | "washing-machine" | "washing-machine-off" | "water-boiler" | "water-boiler-auto" | "water-boiler-off" | "water-circle" | "water-outline" | "water-percent" | "water-thermometer" | "water-thermometer-outline" | "waterfall" | "webcam" | "wind-power" | "wind-power-outline" | "wind-turbine" | "wind-turbine-check" | "window-closed" | "window-closed-variant" | "window-open" | "window-open-variant" | "window-shutter" | "window-shutter-auto" | "window-shutter-cog" | "window-shutter-open" | "window-shutter-settings" | "archive-lock" | "archive-lock-open" | "archive-lock-open-outline" | "archive-lock-outline" | "attachment-lock" | "axis-lock" | "book-lock" | "book-lock-open" | "book-lock-open-outline" | "book-lock-outline" | "camera-lock" | "camera-lock-outline" | "download-lock" | "download-lock-outline" | "email-lock" | "email-lock-outline" | "image-lock" | "image-lock-outline" | "link-lock" | "lock-check" | "lock-check-outline" | "lock-minus" | "lock-minus-outline" | "lock-off" | "lock-off-outline" | "lock-open-check" | "lock-open-check-outline" | "lock-open-minus" | "lock-open-minus-outline" | "lock-open-plus" | "lock-open-plus-outline" | "lock-open-remove" | "lock-open-remove-outline" | "lock-plus" | "lock-plus-outline" | "lock-question" | "lock-remove" | "lock-remove-outline" | "lock-reset" | "message-lock" | "message-lock-outline" | "message-text-lock" | "message-text-lock-outline" | "paperclip-lock" | "pen-lock" | "pencil-lock" | "pencil-lock-outline" | "play-box-lock" | "play-box-lock-open" | "play-box-lock-open-outline" | "play-box-lock-outline" | "plus-lock" | "plus-lock-open" | "screen-rotation-lock" | "send-lock" | "send-lock-outline" | "sort-variant-lock" | "sort-variant-lock-open" | "table-lock" | "trackpad-lock" | "upload-lock" | "upload-lock-outline" | "wifi-lock" | "wifi-lock-open" | "wifi-strength-1-lock" | "wifi-strength-1-lock-open" | "wifi-strength-2-lock" | "wifi-strength-2-lock-open" | "wifi-strength-3-lock" | "wifi-strength-3-lock-open" | "wifi-strength-4-lock" | "wifi-strength-4-lock-open" | "wifi-strength-lock-open-outline" | "wifi-strength-lock-outline" | "abacus" | "angle-acute" | "angle-obtuse" | "angle-right" | "approximately-equal" | "approximately-equal-box" | "calculator" | "calculator-variant" | "calculator-variant-outline" | "chart-arc" | "chart-areaspline" | "chart-areaspline-variant" | "chart-bar" | "chart-bar-stacked" | "chart-bell-curve" | "chart-bell-curve-cumulative" | "chart-box" | "chart-box-multiple" | "chart-box-multiple-outline" | "chart-box-outline" | "chart-box-plus-outline" | "chart-bubble" | "chart-donut" | "chart-donut-variant" | "chart-gantt" | "chart-histogram" | "chart-line" | "chart-line-stacked" | "chart-line-variant" | "chart-multiline" | "chart-multiple" | "chart-pie" | "chart-pie-outline" | "chart-ppf" | "chart-sankey" | "chart-sankey-variant" | "chart-scatter-plot" | "chart-scatter-plot-hexbin" | "chart-timeline" | "chart-timeline-variant" | "chart-timeline-variant-shimmer" | "chart-tree" | "chart-waterfall" | "circle-small" | "decimal" | "decimal-comma" | "decimal-comma-decrease" | "decimal-comma-increase" | "decimal-decrease" | "decimal-increase" | "diameter" | "diameter-outline" | "diameter-variant" | "division" | "division-box" | "equal" | "equal-box" | "exclamation" | "exponent" | "exponent-box" | "format-superscript" | "function-variant" | "greater-than" | "greater-than-or-equal" | "infinity" | "less-than" | "less-than-or-equal" | "math-cos" | "math-integral" | "math-integral-box" | "math-log" | "math-sin" | "math-tan" | "minus" | "multiplication" | "multiplication-box" | "not-equal-variant" | "percent" | "percent-box" | "percent-box-outline" | "percent-circle" | "percent-circle-outline" | "percent-outline" | "perspective-less" | "perspective-more" | "pi" | "pi-box" | "plus" | "plus-box" | "plus-box-outline" | "plus-minus" | "plus-minus-box" | "plus-minus-variant" | "plus-thick" | "radius" | "radius-outline" | "sigma" | "skew-less" | "skew-more" | "slash-forward" | "slash-forward-box" | "square-root" | "tally-mark-1" | "tally-mark-2" | "tally-mark-3" | "tally-mark-4" | "tally-mark-5" | "texture-box" | "allergy" | "ambulance" | "bacteria" | "bacteria-outline" | "blood-bag" | "brain" | "cannabis" | "clipboard-pulse" | "clipboard-pulse-outline" | "diabetes" | "doctor" | "ear-hearing" | "ear-hearing-loop" | "ear-hearing-off" | "hand-wash" | "hand-wash-outline" | "hand-water" | "heart-flash" | "heart-off" | "heart-off-outline" | "heart-pulse" | "hospital" | "hospital-box" | "hospital-box-outline" | "hospital-building" | "hospital-marker" | "human-baby-changing-table" | "human-cane" | "human-male-height" | "human-male-height-variant" | "human-walker" | "human-wheelchair" | "human-white-cane" | "iv-bag" | "lotion-plus" | "lotion-plus-outline" | "lungs" | "medical-bag" | "medical-cotton-swab" | "mortar-pestle-plus" | "mother-nurse" | "needle" | "needle-off" | "pill" | "pill-multiple" | "pill-off" | "prescription" | "pulse" | "radiology-box" | "radiology-box-outline" | "reproduction" | "skull-scan" | "skull-scan-outline" | "social-distance-2-meters" | "social-distance-6-feet" | "stethoscope" | "stomach" | "tooth" | "tooth-outline" | "toothbrush" | "toothbrush-electric" | "toothbrush-paste" | "truck-plus" | "truck-plus-outline" | "virus" | "virus-outline" | "wheelchair" | "wheelchair-accessibility" | "archive-music" | "archive-music-outline" | "book-music-outline" | "bookmark-music" | "bookmark-music-outline" | "cassette" | "disc" | "eight-track" | "guitar-acoustic" | "guitar-electric" | "guitar-pick" | "guitar-pick-outline" | "instrument-triangle" | "metronome" | "metronome-tick" | "microphone" | "microphone-off" | "microphone-outline" | "microphone-variant" | "microphone-variant-off" | "midi-port" | "music-accidental-double-flat" | "music-accidental-double-sharp" | "music-accidental-flat" | "music-accidental-natural" | "music-accidental-sharp" | "music-box-multiple" | "music-box-multiple-outline" | "music-clef-alto" | "music-clef-bass" | "music-clef-treble" | "music-note-eighth-dotted" | "music-note-half-dotted" | "music-note-off-outline" | "music-note-outline" | "music-note-quarter-dotted" | "music-note-sixteenth-dotted" | "music-note-whole-dotted" | "music-rest-eighth" | "music-rest-half" | "music-rest-quarter" | "music-rest-sixteenth" | "music-rest-whole" | "piano" | "piano-off" | "playlist-music" | "playlist-music-outline" | "saxophone" | "trumpet" | "violin" | "cactus" | "clover" | "clover-outline" | "feather" | "hexagon-multiple-outline" | "image-filter-hdr" | "image-filter-hdr-outline" | "image-filter-vintage" | "ladybug" | "landslide" | "landslide-outline" | "leaf-maple-off" | "nature-outline" | "palm-tree" | "spa" | "spa-outline" | "terrain" | "tsunami" | "volcano" | "volcano-outline" | "waves-arrow-left" | "waves-arrow-right" | "waves-arrow-up" | "airplane" | "airplane-marker" | "archive-marker" | "archive-marker-outline" | "book-marker" | "book-marker-outline" | "bus" | "bus-marker" | "bus-stop" | "bus-stop-covered" | "bus-stop-uncovered" | "camera-marker" | "camera-marker-outline" | "compass-rose" | "earth-arrow-right" | "earth-box" | "earth-box-minus" | "earth-box-off" | "earth-box-plus" | "earth-box-remove" | "earth-minus" | "earth-plus" | "earth-remove" | "ferry" | "hail" | "image-marker" | "image-marker-outline" | "map-marker-star" | "map-marker-star-outline" | "menu-close" | "navigation" | "navigation-outline" | "navigation-variant" | "navigation-variant-outline" | "office-building-marker" | "office-building-marker-outline" | "select-marker" | "select-multiple-marker" | "selection-marker" | "selection-multiple-marker" | "store-marker" | "store-marker-outline" | "taxi" | "toy-brick-marker" | "toy-brick-marker-outline" | "train" | "tram" | "transit-connection" | "transit-connection-variant" | "transit-detour" | "transit-transfer" | "video-marker" | "video-marker-outline" | "wifi-marker" | "alarm-bell" | "bell-badge" | "bell-badge-outline" | "bell-cancel" | "bell-cancel-outline" | "bell-check" | "bell-check-outline" | "bell-circle" | "bell-circle-outline" | "bell-cog" | "bell-cog-outline" | "bell-minus" | "bell-minus-outline" | "bell-off" | "bell-off-outline" | "bell-plus" | "bell-plus-outline" | "bell-remove" | "bell-remove-outline" | "bell-ring" | "bell-ring-outline" | "bell-sleep" | "bell-sleep-outline" | "message-badge" | "message-badge-outline" | "notification-clear-all" | "square-rounded-badge" | "square-rounded-badge-outline" | "baby" | "baby-bottle" | "baby-bottle-outline" | "baby-buggy" | "baby-buggy-off" | "baby-carriage" | "baby-carriage-off" | "baby-face" | "baby-face-outline" | "biathlon" | "dance-ballroom" | "dance-pole" | "diving" | "face-man" | "face-man-outline" | "face-man-profile" | "face-woman" | "face-woman-outline" | "face-woman-profile" | "family-tree" | "handball" | "hiking" | "human" | "human-child" | "human-dolly" | "human-female" | "human-female-boy" | "human-female-dance" | "human-female-female" | "human-female-female-child" | "human-female-girl" | "human-greeting" | "human-greeting-variant" | "human-handsdown" | "human-handsup" | "human-male" | "human-male-board" | "human-male-board-poll" | "human-male-boy" | "human-male-child" | "human-male-female" | "human-male-female-child" | "human-male-girl" | "human-male-male" | "human-male-male-child" | "human-non-binary" | "human-pregnant" | "human-queue" | "human-scooter" | "kabaddi" | "karate" | "kayaking" | "meditation" | "mother-heart" | "rowing" | "run" | "skateboarding" | "ski" | "ski-cross-country" | "ski-water" | "sledding" | "snowboard" | "walk" | "weight-lifter" | "auto-fix" | "camera-burst" | "camera-control" | "camera-document" | "camera-document-off" | "camera-enhance" | "camera-enhance-outline" | "camera-flip" | "camera-flip-outline" | "camera-front" | "camera-front-variant" | "camera-image" | "camera-iris" | "camera-lock-open" | "camera-lock-open-outline" | "camera-metering-center" | "camera-metering-matrix" | "camera-metering-partial" | "camera-metering-spot" | "camera-off" | "camera-off-outline" | "camera-outline" | "camera-party-mode" | "camera-plus" | "camera-plus-outline" | "camera-rear" | "camera-rear-variant" | "camera-retake" | "camera-retake-outline" | "camera-switch" | "camera-switch-outline" | "camera-wireless" | "camera-wireless-outline" | "face-recognition" | "film" | "focus-auto" | "focus-field" | "focus-field-horizontal" | "focus-field-vertical" | "image-auto-adjust" | "image-filter-black-white" | "image-filter-center-focus" | "image-filter-center-focus-strong" | "image-filter-center-focus-strong-outline" | "image-filter-center-focus-weak" | "image-filter-frames" | "image-filter-none" | "image-filter-tilt-shift" | "image-multiple-outline" | "image-refresh" | "image-refresh-outline" | "image-remove-outline" | "image-sync" | "image-sync-outline" | "orbit-variant" | "panorama" | "panorama-horizontal" | "panorama-horizontal-outline" | "panorama-outline" | "panorama-sphere" | "panorama-sphere-outline" | "panorama-variant" | "panorama-variant-outline" | "panorama-vertical" | "panorama-vertical-outline" | "panorama-wide-angle" | "panorama-wide-angle-outline" | "raw" | "raw-off" | "white-balance-auto" | "white-balance-incandescent" | "white-balance-iridescent" | "white-balance-sunny" | "airport" | "beach" | "bridge" | "castle" | "church" | "church-outline" | "city" | "city-switch" | "city-variant" | "city-variant-outline" | "domain" | "eiffel-tower" | "island" | "library" | "library-outline" | "mosque-outline" | "office-building" | "office-building-cog" | "office-building-cog-outline" | "office-building-outline" | "parking" | "pier" | "pier-crane" | "police-station" | "stadium" | "stadium-outline" | "stadium-variant" | "store" | "store-24-hour" | "store-check" | "store-check-outline" | "store-clock" | "store-cog" | "store-cog-outline" | "store-minus" | "store-minus-outline" | "store-off" | "store-off-outline" | "store-outline" | "store-plus" | "store-plus-outline" | "store-remove" | "store-remove-outline" | "store-search" | "store-search-outline" | "store-settings" | "store-settings-outline" | "storefront" | "storefront-outline" | "synagogue" | "synagogue-outline" | "temple-buddhist" | "temple-buddhist-outline" | "temple-hindu" | "temple-hindu-outline" | "town-hall" | "warehouse" | "printer-3d-nozzle" | "printer-3d-nozzle-heat" | "printer-3d-nozzle-heat-outline" | "printer-3d-nozzle-off" | "printer-3d-nozzle-off-outline" | "printer-3d-nozzle-outline" | "printer-3d-off" | "printer-check" | "printer-eye" | "printer-off" | "printer-off-outline" | "printer-outline" | "printer-pos" | "printer-pos-cancel" | "printer-pos-cancel-outline" | "printer-pos-check" | "printer-pos-check-outline" | "printer-pos-cog" | "printer-pos-cog-outline" | "printer-pos-edit" | "printer-pos-edit-outline" | "printer-pos-minus" | "printer-pos-minus-outline" | "printer-pos-network" | "printer-pos-network-outline" | "printer-pos-off" | "printer-pos-off-outline" | "printer-pos-outline" | "printer-pos-pause" | "printer-pos-pause-outline" | "printer-pos-play" | "printer-pos-play-outline" | "printer-pos-plus" | "printer-pos-plus-outline" | "printer-pos-refresh" | "printer-pos-refresh-outline" | "printer-pos-remove" | "printer-pos-remove-outline" | "printer-pos-star" | "printer-pos-star-outline" | "printer-pos-stop" | "printer-pos-stop-outline" | "printer-pos-sync" | "printer-pos-sync-outline" | "printer-pos-wrench" | "printer-pos-wrench-outline" | "printer-search" | "printer-settings" | "printer-wireless" | "book-cross" | "cross-bolnisi" | "cross-outline" | "dharmachakra" | "khanda" | "mosque" | "om" | "star-crescent" | "star-david" | "atom" | "atom-variant" | "aurora" | "beaker" | "beaker-check" | "beaker-check-outline" | "beaker-minus" | "beaker-minus-outline" | "beaker-outline" | "beaker-plus" | "beaker-plus-outline" | "beaker-question" | "beaker-question-outline" | "beaker-remove" | "beaker-remove-outline" | "biohazard" | "bottle-tonic" | "bottle-tonic-outline" | "dna" | "eyedropper-minus" | "eyedropper-off" | "eyedropper-plus" | "eyedropper-remove" | "flask-empty-minus" | "flask-empty-minus-outline" | "flask-empty-plus" | "flask-empty-plus-outline" | "flask-empty-remove" | "flask-empty-remove-outline" | "flask-minus" | "flask-minus-outline" | "flask-plus" | "flask-plus-outline" | "flask-remove" | "flask-remove-outline" | "flask-round-bottom" | "flask-round-bottom-empty" | "flask-round-bottom-empty-outline" | "flask-round-bottom-outline" | "microscope" | "molecule" | "orbit" | "periodic-table" | "radioactive" | "radioactive-circle" | "radioactive-circle-outline" | "radioactive-off" | "rocket" | "rocket-launch" | "rocket-launch-outline" | "rocket-outline" | "safety-goggles" | "scale-balance" | "scale-off" | "telescope" | "test-tube" | "test-tube-empty" | "test-tube-off" | "virus-off" | "virus-off-outline" | "airplane-cog" | "airplane-settings" | "application-cog" | "application-cog-outline" | "application-settings" | "application-settings-outline" | "archive-cog" | "archive-cog-outline" | "archive-settings" | "archive-settings-outline" | "bluetooth-settings" | "book-cog" | "book-cog-outline" | "book-settings" | "book-settings-outline" | "card-bulleted-settings" | "card-bulleted-settings-outline" | "cog" | "cog-box" | "cog-clockwise" | "cog-counterclockwise" | "cog-off" | "cog-off-outline" | "cog-outline" | "cog-pause" | "cog-pause-outline" | "cog-play" | "cog-play-outline" | "cog-refresh" | "cog-refresh-outline" | "cog-stop" | "cog-stop-outline" | "cog-sync" | "cog-sync-outline" | "cog-transfer" | "cog-transfer-outline" | "cogs" | "content-save-cog" | "content-save-cog-outline" | "content-save-settings" | "content-save-settings-outline" | "eye-settings" | "eye-settings-outline" | "filter-cog" | "filter-cog-outline" | "filter-settings" | "filter-settings-outline" | "head-cog" | "head-cog-outline" | "heart-cog" | "heart-cog-outline" | "heart-settings" | "heart-settings-outline" | "information" | "information-box" | "information-box-outline" | "information-outline" | "information-slab-box" | "information-slab-box-outline" | "information-slab-circle" | "information-slab-circle-outline" | "information-slab-symbol" | "information-symbol" | "information-variant-box" | "information-variant-box-outline" | "information-variant-circle" | "information-variant-circle-outline" | "keyboard-settings" | "keyboard-settings-outline" | "message-cog" | "message-cog-outline" | "message-settings" | "message-settings-outline" | "microphone-settings" | "movie-cog" | "movie-cog-outline" | "movie-open-cog" | "movie-open-cog-outline" | "movie-open-settings" | "movie-open-settings-outline" | "movie-settings" | "movie-settings-outline" | "network-strength-4-cog" | "power-settings" | "router-wireless-settings" | "settings-helper" | "star-cog" | "star-cog-outline" | "star-settings" | "star-settings-outline" | "table-cog" | "table-settings" | "wifi-cog" | "wifi-settings" | "circle-double" | "circle-half" | "circle-half-full" | "circle-outline" | "cone" | "cone-off" | "cube" | "cylinder" | "cylinder-off" | "decagram" | "decagram-outline" | "ellipse-outline" | "hexagon" | "hexagon-multiple" | "hexagon-outline" | "octagon" | "octagon-outline" | "octagram" | "octagram-edit" | "octagram-edit-outline" | "octagram-minus" | "octagram-minus-outline" | "octagram-outline" | "octagram-plus" | "octahedron" | "octahedron-off" | "pentagon" | "pentagon-outline" | "pyramid" | "pyramid-off" | "rectangle" | "rectangle-outline" | "rhombus" | "rhombus-medium" | "rhombus-medium-outline" | "rhombus-outline" | "rhombus-split" | "rhombus-split-outline" | "shape" | "shape-circle-plus" | "shape-outline" | "shape-plus" | "shape-plus-outline" | "shape-polygon-plus" | "shape-rectangle-plus" | "shape-square-plus" | "sphere" | "sphere-off" | "square" | "square-medium" | "square-medium-outline" | "square-outline" | "star" | "star-check" | "star-check-outline" | "star-circle" | "star-circle-outline" | "star-four-points" | "star-four-points-box" | "star-four-points-box-outline" | "star-four-points-circle" | "star-four-points-circle-outline" | "star-four-points-outline" | "star-four-points-small" | "star-half" | "star-minus" | "star-minus-outline" | "star-outline" | "star-plus" | "star-plus-outline" | "star-remove" | "star-remove-outline" | "star-three-points" | "star-three-points-outline" | "triangle" | "triangle-down" | "triangle-down-outline" | "triangle-outline" | "triangle-small-down" | "triangle-small-up" | "basket" | "basket-check" | "basket-check-outline" | "basket-fill" | "basket-minus" | "basket-minus-outline" | "basket-off" | "basket-off-outline" | "basket-outline" | "basket-plus" | "basket-plus-outline" | "basket-remove" | "basket-remove-outline" | "basket-unfill" | "brightness-percent" | "cart" | "cart-arrow-down" | "cart-arrow-right" | "cart-arrow-up" | "cart-check" | "cart-heart" | "cart-minus" | "cart-off" | "cart-outline" | "cart-percent" | "cart-plus" | "cart-remove" | "cart-variant" | "sale" | "sale-outline" | "shopping" | "shopping-music" | "shopping-outline" | "shopping-search" | "shopping-search-outline" | "atv" | "badminton" | "baseball" | "baseball-bat" | "baseball-diamond" | "baseball-diamond-outline" | "baseball-outline" | "basketball" | "basketball-hoop" | "basketball-hoop-outline" | "bicycle" | "bicycle-basket" | "bicycle-cargo" | "bicycle-penny-farthing" | "bike" | "bike-fast" | "bike-pedal" | "bike-pedal-clipless" | "bike-pedal-mountain" | "billiards" | "billiards-rack" | "bowling" | "boxing-glove" | "bullseye" | "bullseye-arrow" | "carabiner" | "cricket" | "curling" | "diving-flippers" | "diving-scuba" | "diving-scuba-mask" | "diving-snorkel" | "dumbbell" | "fencing" | "flag-checkered" | "football" | "football-australian" | "football-helmet" | "go-kart" | "golf" | "golf-cart" | "golf-tee" | "gymnastics" | "hand-cycle" | "hockey-puck" | "hockey-sticks" | "jump-rope" | "kettlebell" | "kite" | "kite-outline" | "medal-outline" | "mixed-martial-arts" | "motorbike" | "paragliding" | "podium" | "podium-bronze" | "podium-gold" | "podium-silver" | "polo" | "racing-helmet" | "racquetball" | "roller-skate" | "roller-skate-off" | "rollerblade" | "rollerblade-off" | "rugby" | "sail-boat" | "scoreboard" | "scoreboard-outline" | "skate" | "skate-off" | "skateboard" | "snowmobile" | "snowshoeing" | "soccer" | "soccer-field" | "strategy" | "swim" | "table-tennis" | "tennis" | "tennis-ball" | "tennis-ball-outline" | "torch" | "trophy" | "trophy-award" | "trophy-broken" | "trophy-outline" | "trophy-variant" | "trophy-variant-outline" | "unicycle" | "volleyball" | "water-polo" | "whistle" | "whistle-outline" | "yoga" | "align-horizontal-distribute" | "align-vertical-distribute" | "border-all" | "border-all-variant" | "border-bottom" | "border-bottom-variant" | "border-horizontal" | "border-inside" | "border-left" | "border-left-variant" | "border-none" | "border-none-variant" | "border-outside" | "border-radius" | "border-right" | "border-right-variant" | "border-style" | "border-top" | "border-top-variant" | "border-vertical" | "caps-lock" | "content-copy" | "content-paste" | "format-align-bottom" | "format-align-center" | "format-align-justify" | "format-align-left" | "format-align-middle" | "format-align-right" | "format-align-top" | "format-annotation-minus" | "format-annotation-plus" | "format-bold" | "format-clear" | "format-columns" | "format-float-center" | "format-float-left" | "format-float-none" | "format-float-right" | "format-font" | "format-font-size-decrease" | "format-font-size-increase" | "format-header-1" | "format-header-2" | "format-header-3" | "format-header-4" | "format-header-5" | "format-header-6" | "format-header-decrease" | "format-header-equal" | "format-header-increase" | "format-header-pound" | "format-horizontal-align-center" | "format-horizontal-align-left" | "format-horizontal-align-right" | "format-indent-decrease" | "format-indent-increase" | "format-italic" | "format-letter-case" | "format-letter-case-lower" | "format-letter-case-upper" | "format-letter-ends-with" | "format-letter-matches" | "format-letter-spacing" | "format-letter-spacing-variant" | "format-letter-starts-with" | "format-line-height" | "format-line-spacing" | "format-list-bulleted" | "format-list-bulleted-square" | "format-list-bulleted-triangle" | "format-list-bulleted-type" | "format-list-checkbox" | "format-list-checks" | "format-list-group" | "format-list-group-plus" | "format-list-numbered" | "format-list-numbered-rtl" | "format-list-text" | "format-overline" | "format-page-break" | "format-page-split" | "format-paragraph" | "format-paragraph-spacing" | "format-pilcrow" | "format-pilcrow-arrow-left" | "format-pilcrow-arrow-right" | "format-quote-close" | "format-quote-close-outline" | "format-quote-open" | "format-quote-open-outline" | "format-rotate-90" | "format-section" | "format-size" | "format-strikethrough" | "format-strikethrough-variant" | "format-subscript" | "format-text" | "format-text-rotation-angle-down" | "format-text-rotation-angle-up" | "format-text-rotation-down" | "format-text-rotation-down-vertical" | "format-text-rotation-none" | "format-text-rotation-up" | "format-text-rotation-vertical" | "format-text-variant" | "format-text-variant-outline" | "format-text-wrapping-clip" | "format-text-wrapping-overflow" | "format-text-wrapping-wrap" | "format-textbox" | "format-title" | "format-underline" | "format-underline-wavy" | "format-vertical-align-bottom" | "format-vertical-align-center" | "format-vertical-align-top" | "format-wrap-inline" | "format-wrap-square" | "format-wrap-tight" | "format-wrap-top-bottom" | "furigana-horizontal" | "furigana-vertical" | "list-status" | "marker-cancel" | "order-alphabetical-ascending" | "order-alphabetical-descending" | "order-bool-ascending" | "order-bool-ascending-variant" | "order-bool-descending" | "order-bool-descending-variant" | "order-numeric-ascending" | "order-numeric-descending" | "sort-alphabetical-ascending" | "sort-alphabetical-ascending-variant" | "sort-alphabetical-descending" | "sort-alphabetical-descending-variant" | "sort-alphabetical-variant" | "sort-ascending" | "sort-bool-ascending" | "sort-bool-ascending-variant" | "sort-bool-descending" | "sort-bool-descending-variant" | "sort-descending" | "sort-numeric-ascending" | "sort-numeric-ascending-variant" | "sort-numeric-descending" | "sort-numeric-descending-variant" | "sort-numeric-variant" | "sort-reverse-variant" | "sort-variant" | "sort-variant-off" | "sort-variant-remove" | "table-border" | "table-column" | "table-column-plus-after" | "table-column-plus-before" | "table-column-remove" | "table-column-width" | "table-merge-cells" | "table-pivot" | "table-plus" | "table-remove" | "table-row" | "table-row-height" | "table-row-plus-after" | "table-row-plus-before" | "table-row-remove" | "table-split-cell" | "tooltip" | "tooltip-check" | "tooltip-check-outline" | "tooltip-image" | "tooltip-image-outline" | "tooltip-minus" | "tooltip-minus-outline" | "tooltip-outline" | "tooltip-plus" | "tooltip-plus-outline" | "tooltip-question" | "tooltip-question-outline" | "tooltip-remove" | "tooltip-remove-outline" | "tooltip-text" | "tooltip-text-outline" | "airballoon" | "airballoon-outline" | "airplane-check" | "airplane-landing" | "airplane-minus" | "airplane-off" | "airplane-plus" | "airplane-remove" | "airplane-search" | "airplane-takeoff" | "bag-carry-on" | "bag-carry-on-check" | "bag-carry-on-off" | "bag-checked" | "bag-personal" | "bag-personal-off" | "bag-personal-off-outline" | "bag-personal-outline" | "bag-suitcase" | "bag-suitcase-off" | "bag-suitcase-off-outline" | "bag-suitcase-outline" | "drone" | "helicopter" | "parachute" | "parachute-outline" | "plane-car" | "plane-train" | "shield-airplane" | "shield-airplane-outline" | "turbine" | "bicycle-electric" | "elevator" | "elevator-down" | "elevator-passenger" | "elevator-passenger-off" | "elevator-passenger-off-outline" | "elevator-passenger-outline" | "elevator-up" | "escalator" | "escalator-down" | "escalator-up" | "gondola" | "moped" | "railroad-light" | "rickshaw" | "rickshaw-electric" | "scooter" | "scooter-electric" | "stairs" | "stairs-down" | "stairs-up" | "subway" | "subway-variant" | "train-car" | "train-car-autorack" | "train-car-box" | "train-car-box-full" | "train-car-box-open" | "train-car-caboose" | "train-car-centerbeam" | "train-car-centerbeam-full" | "train-car-container" | "train-car-flatbed" | "train-car-flatbed-car" | "train-car-flatbed-tank" | "train-car-gondola" | "train-car-gondola-full" | "train-car-hopper" | "train-car-hopper-covered" | "train-car-hopper-full" | "train-car-intermodal" | "train-car-passenger" | "train-car-passenger-door" | "train-car-passenger-door-open" | "train-car-passenger-variant" | "train-car-tank" | "train-variant" | "tram-side" | "transit-connection-horizontal" | "transit-skip" | "truck-off-road" | "truck-off-road-off" | "tunnel" | "tunnel-outline" | "boom-gate-arrow-down" | "boom-gate-arrow-down-outline" | "boom-gate-arrow-up" | "boom-gate-arrow-up-outline" | "bus-articulated-end" | "bus-articulated-front" | "bus-double-decker" | "bus-electric" | "bus-multiple" | "bus-school" | "bus-side" | "cards-diamond-outline" | "fire-truck" | "forklift" | "highway" | "jeepney" | "moped-electric" | "moped-electric-outline" | "moped-outline" | "motorbike-electric" | "motorbike-off" | "road" | "road-variant" | "rv-truck" | "sign-caution" | "sign-yield" | "tanker-truck" | "tow-truck" | "traffic-cone" | "traffic-light" | "traffic-light-outline" | "truck" | "truck-cargo-container" | "truck-check" | "truck-check-outline" | "truck-delivery" | "truck-delivery-outline" | "truck-fast" | "truck-fast-outline" | "truck-minus" | "truck-minus-outline" | "truck-outline" | "truck-remove" | "truck-remove-outline" | "truck-snowflake" | "truck-trailer" | "van-passenger" | "van-utility" | "lifebuoy" | "sail-boat-sink" | "ship-wheel" | "wave" | "vector-bezier" | "vector-circle-variant" | "vector-point" | "vector-point-minus" | "vector-point-plus" | "vector-polygon-variant" | "vector-square-close" | "vector-square-minus" | "vector-square-open" | "vector-square-plus" | "vector-square-remove" | "camcorder" | "camcorder-off" | "filmstrip" | "filmstrip-box-multiple" | "filmstrip-off" | "high-definition" | "high-definition-box" | "message-video" | "motion-pause" | "motion-pause-outline" | "motion-play" | "motion-play-outline" | "movie" | "movie-check" | "movie-check-outline" | "movie-filter" | "movie-filter-outline" | "movie-minus" | "movie-minus-outline" | "movie-off" | "movie-off-outline" | "movie-open" | "movie-open-check" | "movie-open-check-outline" | "movie-open-minus" | "movie-open-minus-outline" | "movie-open-off" | "movie-open-off-outline" | "movie-open-outline" | "movie-open-play" | "movie-open-play-outline" | "movie-open-plus" | "movie-open-plus-outline" | "movie-open-remove" | "movie-open-remove-outline" | "movie-open-star" | "movie-open-star-outline" | "movie-outline" | "movie-play" | "movie-play-outline" | "movie-plus" | "movie-plus-outline" | "movie-remove" | "movie-remove-outline" | "movie-roll" | "movie-search" | "movie-search-outline" | "movie-star" | "movie-star-outline" | "quality-high" | "standard-definition" | "ultra-high-definition" | "vhs" | "video-2d" | "video-3d" | "video-3d-off" | "video-3d-variant" | "video-4k-box" | "video-box" | "video-box-off" | "video-check" | "video-check-outline" | "video-high-definition" | "video-image" | "video-input-antenna" | "video-input-component" | "video-input-hdmi" | "video-input-scart" | "video-input-svideo" | "video-minus" | "video-minus-outline" | "video-off-outline" | "video-outline" | "video-plus" | "video-plus-outline" | "video-stabilization" | "video-standard-definition" | "video-switch" | "video-switch-outline" | "video-vintage" | "video-wireless" | "video-wireless-outline" | "apps" | "view-agenda" | "view-agenda-outline" | "view-array" | "view-array-outline" | "view-carousel" | "view-carousel-outline" | "view-column" | "view-column-outline" | "view-comfy" | "view-comfy-outline" | "view-compact" | "view-compact-outline" | "view-dashboard" | "view-dashboard-outline" | "view-dashboard-variant" | "view-dashboard-variant-outline" | "view-day" | "view-day-outline" | "view-gallery" | "view-gallery-outline" | "view-grid" | "view-grid-outline" | "view-grid-plus" | "view-grid-plus-outline" | "view-headline" | "view-list" | "view-list-outline" | "view-module" | "view-module-outline" | "view-parallel" | "view-parallel-outline" | "view-quilt" | "view-quilt-outline" | "view-sequential" | "view-sequential-outline" | "view-split-horizontal" | "view-split-vertical" | "view-stream" | "view-stream-outline" | "view-week" | "view-week-outline" | "broadcast" | "broadcast-off" | "flash" | "flash-outline" | "moon-first-quarter" | "moon-full" | "moon-last-quarter" | "moon-new" | "moon-waning-crescent" | "moon-waning-gibbous" | "moon-waxing-crescent" | "moon-waxing-gibbous" | "shield-sun" | "shield-sun-outline" | "snowflake-check" | "snowflake-melt" | "snowflake-off" | "sun-angle" | "sun-angle-outline" | "temperature-celsius" | "temperature-fahrenheit" | "temperature-kelvin" | "theme-light-dark" | "umbrella" | "umbrella-beach" | "umbrella-beach-outline" | "umbrella-closed" | "umbrella-closed-outline" | "umbrella-closed-variant" | "umbrella-outline" | "weather-lightning-rainy" | "weather-moonset" | "weather-moonset-down" | "weather-moonset-up" | "weather-partly-lightning" | "weather-partly-rainy" | "weather-partly-snowy" | "weather-partly-snowy-rainy" | "weather-snowy" | "weather-snowy-heavy" | "weather-snowy-rainy" | "weather-sunny" | "weather-sunny-off" | "weather-sunset" | "weather-sunset-down" | "weather-sunset-up" | "weather-tornado" | "weather-windy" | "weather-windy-variant" | "windsock">): import("react").JSX.Element;
|
|
7458
|
+
({ 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<"symbol" | "function" | "sort" | "map" | "filter" | "android" | "web" | "pulse" | "shimmer" | "scale" | "opacity" | "translate" | "loading" | "repeat" | "anchor" | "link" | "signal" | "solid" | "image" | "text" | "alert" | "menu" | "radio" | "switch" | "tab" | "timer" | "key" | "margin" | "wrap" | "matrix" | "details" | "head" | "label" | "script" | "select" | "table" | "video" | "circle" | "ellipse" | "marker" | "stop" | "svg" | "animation" | "xml" | "access-point" | "access-point-check" | "access-point-minus" | "access-point-network" | "access-point-network-off" | "access-point-off" | "access-point-plus" | "access-point-remove" | "adjust" | "advertisements" | "advertisements-off" | "air-horn" | "alarm-note" | "alarm-note-off" | "alien" | "alien-outline" | "align-horizontal-center" | "align-horizontal-left" | "align-horizontal-right" | "align-vertical-bottom" | "align-vertical-center" | "align-vertical-top" | "all-inclusive" | "all-inclusive-box" | "all-inclusive-box-outline" | "altimeter" | "ammunition" | "ampersand" | "amplifier-off" | "animation-outline" | "animation-play" | "animation-play-outline" | "antenna" | "anvil" | "apple-keyboard-caps" | "apple-keyboard-command" | "apple-keyboard-control" | "apple-keyboard-option" | "apple-keyboard-shift" | "application" | "application-export" | "application-import" | "application-outline" | "apps-box" | "archive" | "archive-arrow-down" | "archive-arrow-down-outline" | "archive-arrow-up" | "archive-arrow-up-outline" | "archive-cancel" | "archive-cancel-outline" | "archive-check" | "archive-check-outline" | "archive-eye" | "archive-eye-outline" | "archive-minus" | "archive-minus-outline" | "archive-off" | "archive-off-outline" | "archive-outline" | "archive-plus" | "archive-plus-outline" | "archive-refresh" | "archive-refresh-outline" | "archive-remove" | "archive-remove-outline" | "archive-search" | "archive-search-outline" | "archive-star" | "archive-star-outline" | "archive-sync" | "archive-sync-outline" | "arm-flex" | "arm-flex-outline" | "arrow-decision-auto" | "arrow-decision-auto-outline" | "arrow-left-bottom" | "arrow-left-bottom-bold" | "arrow-left-top" | "arrow-left-top-bold" | "arrow-right-bottom" | "arrow-right-bottom-bold" | "arrow-right-top" | "arrow-right-top-bold" | "arrow-u-down-left" | "arrow-u-down-left-bold" | "arrow-u-down-right" | "arrow-u-down-right-bold" | "arrow-u-left-bottom" | "arrow-u-left-bottom-bold" | "arrow-u-left-top" | "arrow-u-left-top-bold" | "arrow-u-right-bottom" | "arrow-u-right-bottom-bold" | "arrow-u-right-top" | "arrow-u-right-top-bold" | "arrow-u-up-left" | "arrow-u-up-left-bold" | "arrow-u-up-right" | "arrow-u-up-right-bold" | "arrow-up-left" | "arrow-up-left-bold" | "arrow-up-right" | "arrow-up-right-bold" | "aspect-ratio" | "assistant" | "asterisk" | "asterisk-circle-outline" | "at" | "atm" | "attachment" | "attachment-check" | "attachment-minus" | "attachment-off" | "attachment-plus" | "attachment-remove" | "augmented-reality" | "auto-download" | "auto-mode" | "auto-upload" | "axis" | "axis-x-rotate-clockwise" | "axis-x-rotate-counterclockwise" | "axis-y-rotate-clockwise" | "axis-y-rotate-counterclockwise" | "axis-z-rotate-clockwise" | "axis-z-rotate-counterclockwise" | "backburger" | "backspace" | "backspace-outline" | "backspace-reverse" | "backspace-reverse-outline" | "backup-restore" | "bag-personal-plus" | "bag-personal-plus-outline" | "bag-personal-tag" | "bag-personal-tag-outline" | "ballot" | "ballot-outline" | "ballot-recount" | "ballot-recount-outline" | "bandage" | "barcode" | "barcode-off" | "barcode-scan" | "barrel" | "barrel-outline" | "bench" | "bench-back" | "betamax" | "billboard" | "binoculars" | "bio" | "block-helper" | "bluetooth" | "bluetooth-connect" | "bluetooth-off" | "bluetooth-transfer" | "blur" | "blur-linear" | "blur-off" | "blur-radial" | "book" | "book-alphabet" | "book-arrow-down" | "book-arrow-down-outline" | "book-arrow-left" | "book-arrow-left-outline" | "book-arrow-right" | "book-arrow-right-outline" | "book-arrow-up" | "book-arrow-up-outline" | "book-cancel" | "book-cancel-outline" | "book-check" | "book-check-outline" | "book-education" | "book-education-outline" | "book-heart" | "book-heart-outline" | "book-information-variant" | "book-minus" | "book-minus-multiple" | "book-minus-multiple-outline" | "book-minus-outline" | "book-multiple" | "book-multiple-outline" | "book-off" | "book-off-outline" | "book-open" | "book-open-blank-variant" | "book-open-blank-variant-outline" | "book-open-outline" | "book-open-page-variant" | "book-open-page-variant-outline" | "book-open-variant" | "book-open-variant-outline" | "book-outline" | "book-play" | "book-play-outline" | "book-plus" | "book-plus-multiple" | "book-plus-multiple-outline" | "book-plus-outline" | "book-refresh" | "book-refresh-outline" | "book-remove" | "book-remove-multiple" | "book-remove-multiple-outline" | "book-remove-outline" | "book-search" | "book-search-outline" | "book-sync" | "book-sync-outline" | "book-variant" | "bookmark" | "bookmark-box" | "bookmark-box-multiple" | "bookmark-box-multiple-outline" | "bookmark-box-outline" | "bookmark-check" | "bookmark-check-outline" | "bookmark-minus" | "bookmark-minus-outline" | "bookmark-multiple" | "bookmark-multiple-outline" | "bookmark-off" | "bookmark-off-outline" | "bookmark-outline" | "bookmark-plus" | "bookmark-plus-outline" | "bookmark-remove" | "bookmark-remove-outline" | "bookshelf" | "bottle-soda-classic-outline" | "box-cutter-off" | "box-shadow" | "braille" | "briefcase" | "briefcase-arrow-left-right" | "briefcase-arrow-left-right-outline" | "briefcase-arrow-up-down" | "briefcase-arrow-up-down-outline" | "briefcase-check" | "briefcase-check-outline" | "briefcase-download" | "briefcase-download-outline" | "briefcase-eye" | "briefcase-eye-outline" | "briefcase-minus" | "briefcase-minus-outline" | "briefcase-off" | "briefcase-off-outline" | "briefcase-outline" | "briefcase-plus" | "briefcase-plus-outline" | "briefcase-remove" | "briefcase-remove-outline" | "briefcase-search" | "briefcase-search-outline" | "briefcase-upload" | "briefcase-upload-outline" | "briefcase-variant" | "briefcase-variant-off" | "briefcase-variant-off-outline" | "briefcase-variant-outline" | "brightness-1" | "brightness-2" | "brightness-3" | "brightness-4" | "brightness-5" | "brightness-6" | "brightness-auto" | "broom" | "brush-off" | "bucket" | "bucket-outline" | "bug-pause" | "bug-pause-outline" | "bug-play" | "bug-play-outline" | "bug-stop" | "bug-stop-outline" | "bullet" | "bulletin-board" | "bullhorn" | "bullhorn-outline" | "bullhorn-variant" | "bullhorn-variant-outline" | "bus-sign" | "bus-wrench" | "cable-data" | "campfire" | "cancel" | "cannabis-off" | "card-bulleted" | "card-bulleted-off" | "card-bulleted-off-outline" | "card-bulleted-outline" | "card-minus" | "card-minus-outline" | "card-multiple" | "card-multiple-outline" | "card-off" | "card-off-outline" | "card-plus" | "card-plus-outline" | "card-remove" | "card-remove-outline" | "card-search" | "card-search-outline" | "card-text" | "card-text-outline" | "cards-club-outline" | "cards-heart-outline" | "case-sensitive-alt" | "cast-audio-variant" | "cast-education" | "certificate" | "certificate-outline" | "chair-school" | "charity" | "charity-search" | "chat" | "chat-minus" | "chat-minus-outline" | "chat-outline" | "chat-plus" | "chat-plus-outline" | "chat-processing" | "chat-processing-outline" | "chat-question" | "chat-question-outline" | "chat-remove" | "chat-remove-outline" | "chat-sleep" | "chat-sleep-outline" | "check-all" | "check-bold" | "check-decagram" | "check-decagram-outline" | "check-network" | "check-network-outline" | "check-outline" | "check-underline" | "check-underline-circle" | "check-underline-circle-outline" | "chemical-weapon" | "chevron-triple-down" | "chevron-triple-left" | "chevron-triple-right" | "chevron-triple-up" | "chili-hot-outline" | "chili-medium-outline" | "chili-mild-outline" | "chili-off-outline" | "chip" | "cigar" | "cigar-off" | "circle-box" | "circle-box-outline" | "circle-expand" | "circle-medium" | "circle-off-outline" | "circle-slice-1" | "circle-slice-2" | "circle-slice-3" | "circle-slice-4" | "circle-slice-5" | "circle-slice-6" | "circle-slice-7" | "circle-slice-8" | "clipboard" | "clipboard-arrow-down" | "clipboard-arrow-down-outline" | "clipboard-arrow-left" | "clipboard-arrow-left-outline" | "clipboard-arrow-right" | "clipboard-arrow-right-outline" | "clipboard-arrow-up" | "clipboard-arrow-up-outline" | "clipboard-check" | "clipboard-check-multiple" | "clipboard-check-multiple-outline" | "clipboard-check-outline" | "clipboard-flow" | "clipboard-flow-outline" | "clipboard-list" | "clipboard-list-outline" | "clipboard-minus" | "clipboard-minus-outline" | "clipboard-multiple" | "clipboard-multiple-outline" | "clipboard-off" | "clipboard-off-outline" | "clipboard-outline" | "clipboard-play" | "clipboard-play-multiple" | "clipboard-play-multiple-outline" | "clipboard-play-outline" | "clipboard-plus" | "clipboard-plus-outline" | "clipboard-remove" | "clipboard-remove-outline" | "clipboard-search" | "clipboard-search-outline" | "clipboard-text" | "clipboard-text-multiple" | "clipboard-text-multiple-outline" | "clipboard-text-off" | "clipboard-text-off-outline" | "clipboard-text-outline" | "clipboard-text-play" | "clipboard-text-play-outline" | "clipboard-text-search" | "clipboard-text-search-outline" | "clippy" | "close-network" | "close-network-outline" | "close-octagon" | "close-octagon-outline" | "close-outline" | "close-thick" | "closed-caption" | "closed-caption-outline" | "collage" | "collapse-all" | "collapse-all-outline" | "comma" | "comma-box" | "comma-box-outline" | "comma-circle" | "comma-circle-outline" | "comment" | "comment-arrow-left" | "comment-arrow-left-outline" | "comment-arrow-right" | "comment-arrow-right-outline" | "comment-bookmark" | "comment-bookmark-outline" | "comment-check" | "comment-check-outline" | "comment-eye" | "comment-eye-outline" | "comment-flash" | "comment-flash-outline" | "comment-minus" | "comment-minus-outline" | "comment-multiple" | "comment-multiple-outline" | "comment-off" | "comment-off-outline" | "comment-outline" | "comment-plus" | "comment-plus-outline" | "comment-processing" | "comment-processing-outline" | "comment-question" | "comment-question-outline" | "comment-quote" | "comment-quote-outline" | "comment-remove" | "comment-remove-outline" | "comment-search" | "comment-search-outline" | "comment-text" | "comment-text-multiple" | "comment-text-multiple-outline" | "comment-text-outline" | "compare" | "compare-remove" | "console" | "console-line" | "console-network" | "console-network-outline" | "consolidate" | "contacts" | "contacts-outline" | "contain" | "contain-end" | "contain-start" | "content-duplicate" | "content-save" | "content-save-all" | "content-save-all-outline" | "content-save-check" | "content-save-check-outline" | "content-save-minus" | "content-save-minus-outline" | "content-save-move" | "content-save-move-outline" | "content-save-off" | "content-save-off-outline" | "content-save-outline" | "content-save-plus" | "content-save-plus-outline" | "contrast" | "contrast-box" | "contrast-circle" | "copyleft" | "copyright" | "cpu-32-bit" | "cpu-64-bit" | "crane" | "creation" | "creation-outline" | "crop" | "crop-free" | "crop-landscape" | "crop-portrait" | "crop-rotate" | "crop-square" | "crown" | "crown-outline" | "cube-off" | "cube-scan" | "cube-send" | "cube-unfolded" | "current-ac" | "cursor-default" | "cursor-default-click" | "cursor-default-click-outline" | "cursor-default-gesture" | "cursor-default-gesture-outline" | "cursor-default-outline" | "cursor-move" | "cursor-pointer" | "cursor-text" | "data-matrix" | "data-matrix-minus" | "data-matrix-plus" | "data-matrix-remove" | "data-matrix-scan" | "death-star" | "death-star-variant" | "deathly-hallows" | "debug-step-into" | "debug-step-out" | "debug-step-over" | "delete" | "delete-circle" | "delete-circle-outline" | "delete-empty" | "delete-empty-outline" | "delete-forever" | "delete-forever-outline" | "delete-off" | "delete-off-outline" | "delete-outline" | "delete-restore" | "delete-sweep" | "delete-sweep-outline" | "delete-variant" | "desk" | "developer-board" | "dialpad" | "diamond" | "diamond-outline" | "diamond-stone" | "dip-switch" | "directions" | "directions-fork" | "distribute-horizontal-center" | "distribute-horizontal-left" | "distribute-horizontal-right" | "distribute-vertical-bottom" | "distribute-vertical-center" | "distribute-vertical-top" | "diversify" | "diving-helmet" | "diving-scuba-flag" | "diving-scuba-tank" | "diving-scuba-tank-multiple" | "dns" | "dns-outline" | "dock-bottom" | "dock-left" | "dock-right" | "dock-top" | "dock-window" | "dolly" | "domain-off" | "domain-plus" | "domain-remove" | "domain-switch" | "dome-light" | "domino-mask" | "dots-circle" | "dots-grid" | "dots-hexagon" | "dots-horizontal" | "dots-horizontal-circle" | "dots-horizontal-circle-outline" | "dots-square" | "dots-triangle" | "dots-vertical" | "dots-vertical-circle" | "dots-vertical-circle-outline" | "download" | "download-box" | "download-box-outline" | "download-circle" | "download-circle-outline" | "download-multiple" | "download-multiple-outline" | "download-network" | "download-network-outline" | "download-off" | "download-off-outline" | "download-outline" | "drag" | "drag-horizontal" | "drag-horizontal-variant" | "drag-variant" | "drag-vertical" | "drag-vertical-variant" | "drama-masks" | "earth-arrow-down" | "earth-arrow-left" | "earth-arrow-up" | "eject" | "eject-circle" | "eject-circle-outline" | "eject-outline" | "electric-switch" | "electric-switch-closed" | "elevation-decline" | "elevation-rise" | "email" | "email-arrow-left" | "email-arrow-left-outline" | "email-arrow-right" | "email-arrow-right-outline" | "email-box" | "email-check" | "email-check-outline" | "email-fast" | "email-fast-outline" | "email-heart-outline" | "email-mark-as-unread" | "email-minus" | "email-minus-outline" | "email-multiple" | "email-multiple-outline" | "email-newsletter" | "email-off" | "email-off-outline" | "email-open" | "email-open-heart-outline" | "email-open-multiple" | "email-open-multiple-outline" | "email-open-outline" | "email-outline" | "email-plus" | "email-plus-outline" | "email-remove" | "email-remove-outline" | "email-seal" | "email-seal-outline" | "email-search" | "email-search-outline" | "email-sync" | "email-sync-outline" | "email-variant" | "emoticon-minus" | "emoticon-minus-outline" | "emoticon-plus" | "emoticon-plus-outline" | "emoticon-remove" | "emoticon-remove-outline" | "eraser" | "eraser-variant" | "escalator-box" | "et" | "ethernet" | "ethernet-cable" | "ethernet-cable-off" | "ethernet-off" | "exclamation-thick" | "exit-to-app" | "expand-all" | "expand-all-outline" | "expansion-card-variant" | "export" | "export-variant" | "eye" | "eye-arrow-left" | "eye-arrow-left-outline" | "eye-arrow-right" | "eye-arrow-right-outline" | "eye-check" | "eye-check-outline" | "eye-circle" | "eye-circle-outline" | "eye-closed" | "eye-lock" | "eye-lock-open" | "eye-lock-open-outline" | "eye-lock-outline" | "eye-minus" | "eye-minus-outline" | "eye-off" | "eye-off-outline" | "eye-outline" | "eye-plus" | "eye-plus-outline" | "eye-refresh" | "eye-refresh-outline" | "eye-remove" | "eye-remove-outline" | "face-agent" | "fan-auto" | "fast-forward" | "fast-forward-10" | "fast-forward-15" | "fast-forward-30" | "fast-forward-45" | "fast-forward-5" | "fast-forward-60" | "fast-forward-outline" | "feature-search" | "feature-search-outline" | "ferris-wheel" | "filmstrip-box" | "filter-check" | "filter-check-outline" | "filter-menu" | "filter-menu-outline" | "filter-minus" | "filter-minus-outline" | "filter-multiple" | "filter-multiple-outline" | "filter-off" | "filter-off-outline" | "filter-outline" | "filter-plus" | "filter-plus-outline" | "filter-remove" | "filter-remove-outline" | "filter-variant" | "filter-variant-minus" | "filter-variant-plus" | "filter-variant-remove" | "find-replace" | "fingerprint" | "fingerprint-off" | "fire-hydrant" | "fire-hydrant-off" | "fire-station" | "firewire" | "firework-off" | "fit-to-screen" | "fit-to-screen-outline" | "flag" | "flag-minus" | "flag-minus-outline" | "flag-off" | "flag-off-outline" | "flag-outline" | "flag-plus" | "flag-plus-outline" | "flag-remove" | "flag-remove-outline" | "flag-triangle" | "flag-variant" | "flag-variant-minus" | "flag-variant-minus-outline" | "flag-variant-off" | "flag-variant-off-outline" | "flag-variant-outline" | "flag-variant-plus" | "flag-variant-plus-outline" | "flag-variant-remove" | "flag-variant-remove-outline" | "flare" | "flash-auto" | "flash-off" | "flash-off-outline" | "flash-red-eye" | "flashlight" | "flashlight-off" | "flask-empty-off" | "flask-empty-off-outline" | "flask-off" | "flask-off-outline" | "fleur-de-lis" | "floppy" | "floppy-variant" | "foot-print" | "forum" | "forum-minus" | "forum-minus-outline" | "forum-outline" | "forum-plus" | "forum-plus-outline" | "forum-remove" | "forum-remove-outline" | "forwardburger" | "fountain" | "fraction-one-half" | "frequently-asked-questions" | "fullscreen" | "fullscreen-exit" | "gantry-crane" | "gas-cylinder" | "gas-station-in-use" | "gas-station-in-use-outline" | "gas-station-off" | "gas-station-off-outline" | "gas-station-outline" | "gate-and" | "gate-buffer" | "gate-nand" | "gate-nor" | "gate-not" | "gate-or" | "gate-xnor" | "gate-xor" | "gavel" | "gender-female" | "gender-male" | "gender-male-female" | "gender-male-female-variant" | "gender-non-binary" | "gender-transgender" | "gesture-double-tap" | "gesture-pinch" | "gesture-spread" | "gesture-swipe" | "gesture-swipe-down" | "gesture-swipe-horizontal" | "gesture-swipe-left" | "gesture-swipe-right" | "gesture-swipe-up" | "gesture-swipe-vertical" | "gesture-tap" | "gesture-tap-box" | "gesture-tap-hold" | "gesture-two-double-tap" | "gesture-two-tap" | "globe-model" | "go-kart-track" | "gold" | "google-my-business" | "google-nearby" | "google-podcast" | "google-spreadsheet" | "google-street-view" | "graph" | "graph-outline" | "grid" | "grid-large" | "grid-off" | "group" | "guy-fawkes-mask" | "hand-back-left" | "hand-back-left-off" | "hand-back-left-off-outline" | "hand-back-left-outline" | "hand-back-right" | "hand-back-right-off" | "hand-back-right-off-outline" | "hand-back-right-outline" | "hand-clap" | "hand-clap-off" | "hand-extended" | "hand-extended-outline" | "hand-front-left" | "hand-front-left-outline" | "hand-front-right" | "hand-front-right-outline" | "hand-heart" | "hand-heart-outline" | "hand-okay" | "hand-peace" | "hand-peace-variant" | "hand-pointing-down" | "hand-pointing-left" | "hand-pointing-right" | "hand-pointing-up" | "hand-wave" | "hand-wave-outline" | "handcuffs" | "hands-pray" | "handshake" | "handshake-outline" | "harddisk" | "harddisk-plus" | "harddisk-remove" | "hdr" | "hdr-off" | "head-check" | "head-check-outline" | "head-dots-horizontal" | "head-dots-horizontal-outline" | "head-flash" | "head-flash-outline" | "head-heart" | "head-heart-outline" | "head-lightbulb" | "head-lightbulb-outline" | "head-minus" | "head-minus-outline" | "head-outline" | "head-plus" | "head-plus-outline" | "head-question" | "head-question-outline" | "head-remove" | "head-remove-outline" | "head-snowflake" | "head-snowflake-outline" | "head-sync" | "head-sync-outline" | "headphones-bluetooth" | "heart-box" | "heart-box-outline" | "heart-broken" | "heart-broken-outline" | "heart-circle" | "heart-circle-outline" | "heart-minus" | "heart-minus-outline" | "heart-multiple" | "heart-multiple-outline" | "heart-plus" | "heart-plus-outline" | "heart-remove" | "heart-remove-outline" | "heart-search" | "help" | "help-box" | "help-box-multiple" | "help-box-multiple-outline" | "help-box-outline" | "help-circle" | "help-circle-outline" | "help-network" | "help-network-outline" | "help-rhombus" | "help-rhombus-outline" | "hexagon-slice-1" | "hexagon-slice-2" | "hexagon-slice-3" | "hexagon-slice-4" | "hexagon-slice-5" | "hexagon-slice-6" | "home-percent" | "hook" | "hook-off" | "horizontal-rotate-clockwise" | "horizontal-rotate-counterclockwise" | "hot-tub" | "hub" | "hub-outline" | "hubspot" | "id-card" | "image-album" | "image-area" | "image-area-close" | "image-broken" | "image-broken-variant" | "image-check" | "image-check-outline" | "image-minus" | "image-minus-outline" | "image-move" | "image-multiple" | "image-off" | "image-off-outline" | "image-outline" | "image-plus" | "image-plus-outline" | "image-remove" | "image-search" | "image-search-outline" | "image-size-select-actual" | "image-size-select-large" | "image-size-select-small" | "image-text" | "import" | "inbox" | "inbox-arrow-down" | "inbox-arrow-down-outline" | "inbox-arrow-up" | "inbox-arrow-up-outline" | "inbox-full" | "inbox-full-outline" | "inbox-multiple" | "inbox-multiple-outline" | "inbox-outline" | "inbox-remove" | "inbox-remove-outline" | "incognito" | "incognito-circle" | "incognito-circle-off" | "incognito-off" | "information-off" | "information-off-outline" | "information-variant" | "invoice-arrow-left-outline" | "ip" | "ip-network" | "ip-network-outline" | "ip-outline" | "ipod" | "island-variant" | "kettle-pour-over" | "key-arrow-right" | "key-change" | "key-link" | "key-minus" | "key-outline" | "key-plus" | "key-remove" | "key-star" | "key-wireless" | "keyboard" | "keyboard-backspace" | "keyboard-caps" | "keyboard-close" | "keyboard-close-outline" | "keyboard-esc" | "keyboard-f1" | "keyboard-f10" | "keyboard-f11" | "keyboard-f12" | "keyboard-f2" | "keyboard-f3" | "keyboard-f4" | "keyboard-f5" | "keyboard-f6" | "keyboard-f7" | "keyboard-f8" | "keyboard-f9" | "keyboard-off" | "keyboard-off-outline" | "keyboard-outline" | "keyboard-return" | "keyboard-space" | "keyboard-tab" | "keyboard-tab-reverse" | "keyboard-variant" | "kitesurfing" | "klingon" | "knife" | "label-multiple" | "label-multiple-outline" | "label-off" | "label-off-outline" | "label-outline" | "label-percent" | "label-percent-outline" | "label-variant" | "label-variant-outline" | "lan" | "lan-check" | "lan-connect" | "lan-disconnect" | "lan-pending" | "laser-pointer" | "lasso" | "launch" | "layers-triple" | "layers-triple-outline" | "leak" | "leak-off" | "lectern" | "library-shelves" | "license" | "lighthouse" | "lighthouse-on" | "line-scan" | "link-box" | "link-box-outline" | "link-box-variant" | "link-box-variant-outline" | "link-circle" | "link-circle-outline" | "link-edit" | "link-off" | "link-plus" | "link-variant" | "link-variant-minus" | "link-variant-off" | "link-variant-plus" | "link-variant-remove" | "list-box" | "list-box-outline" | "lock-pattern" | "lock-percent" | "lock-percent-open" | "lock-percent-open-outline" | "lock-percent-open-variant" | "lock-percent-open-variant-outline" | "lock-percent-outline" | "locker" | "locker-multiple" | "login" | "login-variant" | "logout" | "logout-variant" | "loupe" | "magazine-pistol" | "magazine-rifle" | "magnet" | "magnet-on" | "magnify-close" | "magnify-minus" | "magnify-minus-cursor" | "magnify-plus" | "magnify-plus-cursor" | "magnify-remove-cursor" | "magnify-scan" | "mail" | "mailbox" | "mailbox-open" | "mailbox-open-outline" | "mailbox-open-up" | "mailbox-open-up-outline" | "mailbox-outline" | "mailbox-up" | "mailbox-up-outline" | "marker-check" | "memory" | "memory-arrow-down" | "menu-left-outline" | "menu-open" | "menu-right-outline" | "merge" | "message" | "message-arrow-left" | "message-arrow-left-outline" | "message-arrow-right" | "message-arrow-right-outline" | "message-bookmark" | "message-bookmark-outline" | "message-bulleted" | "message-bulleted-off" | "message-check" | "message-check-outline" | "message-draw" | "message-fast" | "message-fast-outline" | "message-flash" | "message-flash-outline" | "message-image" | "message-image-outline" | "message-minus" | "message-minus-outline" | "message-off" | "message-off-outline" | "message-outline" | "message-plus" | "message-plus-outline" | "message-processing" | "message-processing-outline" | "message-question" | "message-question-outline" | "message-reply" | "message-reply-outline" | "message-reply-text" | "message-reply-text-outline" | "message-star" | "message-star-outline" | "message-text" | "message-text-fast" | "message-text-fast-outline" | "message-text-outline" | "micro-sd" | "microphone-message" | "microphone-message-off" | "microphone-minus" | "microphone-plus" | "mine" | "mini-sd" | "minidisc" | "minus-circle-off" | "minus-circle-off-outline" | "minus-network" | "minus-network-outline" | "minus-thick" | "mixed-reality" | "monitor-eye" | "monitor-share" | "monitor-vertical" | "more" | "mortar-pestle" | "motion" | "motion-outline" | "mouse" | "mouse-bluetooth" | "mouse-left-click" | "mouse-left-click-outline" | "mouse-move-down" | "mouse-move-up" | "mouse-move-vertical" | "mouse-off" | "mouse-outline" | "mouse-right-click" | "mouse-right-click-outline" | "mouse-scroll-wheel" | "mouse-variant" | "mouse-variant-off" | "move-resize" | "move-resize-variant" | "multicast" | "music-note-minus" | "mustache" | "nas" | "near-me" | "network" | "network-off" | "network-off-outline" | "network-outline" | "new-box" | "newspaper" | "newspaper-check" | "newspaper-minus" | "newspaper-plus" | "newspaper-remove" | "newspaper-variant" | "newspaper-variant-multiple" | "newspaper-variant-multiple-outline" | "newspaper-variant-outline" | "nfc-search-variant" | "nfc-tap" | "ninja" | "not-equal" | "note" | "note-check" | "note-check-outline" | "note-minus" | "note-minus-outline" | "note-multiple" | "note-multiple-outline" | "note-off" | "note-off-outline" | "note-outline" | "note-plus" | "note-plus-outline" | "note-remove" | "note-remove-outline" | "note-search" | "note-search-outline" | "note-text" | "note-text-outline" | "notebook" | "notebook-check" | "notebook-check-outline" | "notebook-heart" | "notebook-heart-outline" | "notebook-minus" | "notebook-minus-outline" | "notebook-multiple" | "notebook-outline" | "notebook-plus" | "notebook-plus-outline" | "notebook-remove" | "notebook-remove-outline" | "nuke" | "null" | "oar" | "ocr" | "octagram-plus-outline" | "offer" | "office-building-minus" | "office-building-minus-outline" | "office-building-plus" | "office-building-plus-outline" | "office-building-remove" | "office-building-remove-outline" | "oil-lamp" | "omega" | "open-in-app" | "open-in-new" | "overscan" | "package" | "package-check" | "package-down" | "package-up" | "package-variant" | "package-variant-closed" | "package-variant-closed-check" | "package-variant-closed-minus" | "package-variant-closed-plus" | "package-variant-closed-remove" | "package-variant-minus" | "package-variant-plus" | "package-variant-remove" | "page-first" | "page-last" | "page-layout-body" | "page-layout-footer" | "page-layout-header" | "page-layout-header-footer" | "page-layout-sidebar-left" | "page-layout-sidebar-right" | "page-next" | "page-next-outline" | "page-previous" | "page-previous-outline" | "pail" | "pail-minus" | "pail-minus-outline" | "pail-off" | "pail-off-outline" | "pail-outline" | "pail-plus" | "pail-plus-outline" | "pail-remove" | "pail-remove-outline" | "pan" | "pan-bottom-left" | "pan-bottom-right" | "pan-down" | "pan-horizontal" | "pan-left" | "pan-right" | "pan-top-left" | "pan-top-right" | "pan-up" | "pan-vertical" | "panorama-fisheye" | "paper-cut-vertical" | "paperclip" | "paperclip-check" | "paperclip-minus" | "paperclip-off" | "paperclip-plus" | "paperclip-remove" | "passport" | "passport-alert" | "passport-biometric" | "passport-cancel" | "passport-check" | "passport-minus" | "passport-plus" | "passport-remove" | "pause-circle" | "pause-circle-outline" | "pause-octagon" | "pause-octagon-outline" | "peace" | "pen-minus" | "pen-off" | "pen-plus" | "pen-remove" | "pencil-minus" | "pencil-minus-outline" | "pencil-off" | "pencil-off-outline" | "pencil-plus" | "pencil-plus-outline" | "pencil-remove" | "pencil-remove-outline" | "pentagram" | "phone-classic-off" | "picture-in-picture-bottom-right" | "picture-in-picture-bottom-right-outline" | "picture-in-picture-top-right" | "picture-in-picture-top-right-outline" | "pillar" | "pin" | "pin-off" | "pin-off-outline" | "pin-outline" | "pinwheel" | "pinwheel-outline" | "pirate" | "pistol" | "play-box" | "play-box-edit-outline" | "play-box-multiple" | "play-box-multiple-outline" | "play-box-outline" | "play-circle" | "play-circle-outline" | "play-network" | "play-network-outline" | "play-outline" | "play-protected-content" | "play-speed" | "playlist-check" | "playlist-minus" | "playlist-play" | "playlist-plus" | "playlist-remove" | "playlist-star" | "plus-box-multiple" | "plus-box-multiple-outline" | "plus-circle" | "plus-circle-multiple" | "plus-circle-multiple-outline" | "plus-circle-outline" | "plus-network" | "plus-network-outline" | "plus-outline" | "pocket" | "podcast" | "point-of-sale" | "polaroid" | "police-badge" | "police-badge-outline" | "poll" | "post" | "post-outline" | "postage-stamp" | "pound" | "pound-box" | "pound-box-outline" | "power-cycle" | "power-off" | "power-on" | "power-sleep" | "power-socket-it" | "power-standby" | "powershell" | "presentation" | "presentation-play" | "priority-high" | "priority-low" | "professional-hexagon" | "progress-check" | "progress-close" | "progress-download" | "progress-helper" | "progress-pencil" | "progress-question" | "progress-star" | "progress-star-four-points" | "progress-tag" | "progress-upload" | "propane-tank" | "propane-tank-outline" | "protocol" | "publish" | "pump" | "pump-off" | "purse" | "purse-outline" | "qrcode" | "qrcode-minus" | "qrcode-plus" | "qrcode-remove" | "qrcode-scan" | "quadcopter" | "quality-low" | "quality-medium" | "queue-first-in-last-out" | "quora" | "radar" | "radio-off" | "radio-tower" | "raspberry-pi" | "ray-end" | "ray-end-arrow" | "ray-start" | "ray-start-arrow" | "ray-start-end" | "ray-start-vertex-end" | "ray-vertex" | "read" | "receipt-clock" | "receipt-clock-outline" | "receipt-send" | "receipt-send-outline" | "record-circle" | "record-circle-outline" | "recycle" | "recycle-variant" | "redo" | "redo-variant" | "reflect-horizontal" | "reflect-vertical" | "refresh-circle" | "regex" | "registered-trademark" | "relative-scale" | "reminder" | "remote-desktop" | "remote-off" | "reorder-horizontal" | "reorder-vertical" | "repeat-off" | "repeat-once" | "replay" | "resistor" | "resistor-nodes" | "resize" | "resize-bottom-right" | "responsive" | "restart" | "restart-off" | "rewind" | "rewind-10" | "rewind-15" | "rewind-30" | "rewind-45" | "rewind-5" | "rewind-60" | "rewind-outline" | "ribbon" | "ring" | "robber" | "robot-angry" | "robot-angry-outline" | "robot-confused" | "robot-confused-outline" | "robot-dead" | "robot-dead-outline" | "robot-excited" | "robot-excited-outline" | "robot-happy" | "robot-happy-outline" | "robot-love" | "robot-love-outline" | "robot-off" | "robot-off-outline" | "robot-outline" | "rolodex" | "rolodex-outline" | "room-service" | "room-service-outline" | "rotate-3d" | "rotate-3d-variant" | "rotate-left-variant" | "rotate-orbit" | "rotate-right-variant" | "rounded-corner" | "router" | "router-network" | "router-wireless" | "router-wireless-off" | "routes" | "rss" | "rss-box" | "rss-off" | "sack-outline" | "sack-percent" | "safe-square" | "safe-square-outline" | "satellite" | "satellite-uplink" | "satellite-variant" | "scale-unbalanced" | "scan-helper" | "scatter-plot" | "scatter-plot-outline" | "scent" | "scent-off" | "school" | "school-outline" | "scissors-cutting" | "screen-rotation" | "script-text-key" | "script-text-key-outline" | "script-text-play" | "script-text-play-outline" | "sd" | "seal" | "seal-variant" | "search-web" | "seat-flat" | "seat-flat-angled" | "seat-individual-suite" | "seat-legroom-extra" | "seat-legroom-normal" | "seat-legroom-reduced" | "seat-passenger" | "seat-recline-extra" | "seat-recline-normal" | "security" | "security-network" | "seesaw" | "segment" | "select-all" | "select-arrow-down" | "select-arrow-up" | "select-compare" | "select-drag" | "select-group" | "select-inverse" | "select-multiple" | "select-off" | "select-place" | "select-remove" | "select-search" | "selection" | "selection-drag" | "selection-ellipse" | "selection-ellipse-arrow-inside" | "selection-ellipse-remove" | "selection-multiple" | "selection-off" | "selection-remove" | "selection-search" | "send" | "send-check" | "send-check-outline" | "send-circle" | "send-circle-outline" | "send-outline" | "send-variant" | "send-variant-clock" | "send-variant-clock-outline" | "send-variant-outline" | "serial-port" | "server" | "server-minus" | "server-minus-outline" | "server-network" | "server-network-off" | "server-network-outline" | "server-off" | "server-outline" | "server-plus" | "server-plus-outline" | "server-remove" | "server-security" | "set-merge" | "set-split" | "shape-oval-plus" | "shape-square-rounded-plus" | "share-all" | "share-all-outline" | "share-variant" | "share-variant-outline" | "shield-bug" | "shield-bug-outline" | "shield-check-outline" | "shield-half" | "shield-half-full" | "shield-key" | "shield-key-outline" | "shield-link-variant" | "shield-link-variant-outline" | "shield-off" | "shield-off-outline" | "shield-plus" | "shield-plus-outline" | "shield-refresh" | "shield-refresh-outline" | "shield-remove" | "shield-remove-outline" | "shield-search" | "shield-star" | "shield-star-outline" | "shield-sync" | "shield-sync-outline" | "shipping-pallet" | "shoe-print" | "shore" | "shredder" | "shuriken" | "sigma-lower" | "sign-direction" | "sign-direction-minus" | "sign-direction-plus" | "sign-direction-remove" | "sign-language" | "sign-language-outline" | "sign-pole" | "sign-real-estate" | "sign-text" | "signal-distance-variant" | "signal-variant" | "sitemap" | "sitemap-outline" | "size-l" | "size-m" | "size-s" | "size-xl" | "size-xs" | "size-xxl" | "size-xxs" | "size-xxxl" | "skip-backward-outline" | "skip-forward-outline" | "skip-next-circle" | "skip-next-circle-outline" | "skip-next-outline" | "skip-previous-circle" | "skip-previous-circle-outline" | "skip-previous-outline" | "sleep" | "sleep-off" | "slide" | "slope-downhill" | "slope-uphill" | "slot-machine" | "slot-machine-outline" | "smog" | "smoke" | "smoking-off" | "smoking-pipe" | "smoking-pipe-off" | "soldering-iron" | "source-commit" | "source-commit-end" | "source-commit-end-local" | "source-commit-local" | "source-commit-next-local" | "source-commit-start" | "source-commit-start-next-local" | "soy-sauce-off" | "space-station" | "spellcheck" | "spray-bottle" | "square-circle-outline" | "square-off" | "square-off-outline" | "square-root-box" | "square-rounded" | "square-rounded-outline" | "square-small" | "squeegee" | "ssh" | "stairs-box" | "stamper" | "star-box" | "star-box-multiple" | "star-box-multiple-outline" | "star-box-outline" | "star-half-full" | "star-off" | "star-off-outline" | "star-shooting" | "star-shooting-outline" | "state-machine" | "step-backward" | "step-backward-2" | "step-forward" | "step-forward-2" | "sticker" | "sticker-check" | "sticker-check-outline" | "sticker-circle-outline" | "sticker-minus" | "sticker-minus-outline" | "sticker-outline" | "sticker-plus" | "sticker-plus-outline" | "sticker-remove" | "sticker-remove-outline" | "sticker-text" | "sticker-text-outline" | "stool" | "stool-outline" | "stop-circle" | "stop-circle-outline" | "storage-tank" | "storage-tank-outline" | "storefront-check" | "storefront-check-outline" | "storefront-minus" | "storefront-minus-outline" | "storefront-plus" | "storefront-plus-outline" | "storefront-remove" | "storefront-remove-outline" | "submarine" | "subtitles" | "subtitles-outline" | "summit" | "surfing" | "surround-sound-2-1" | "surround-sound-5-1-2" | "sync" | "sync-circle" | "sync-off" | "tab-minus" | "tab-plus" | "tab-remove" | "tab-search" | "tab-unselected" | "table-arrow-down" | "table-arrow-left" | "table-arrow-right" | "table-arrow-up" | "table-cancel" | "table-check" | "table-eye" | "table-eye-off" | "table-filter" | "table-headers-eye" | "table-headers-eye-off" | "table-heart" | "table-key" | "table-minus" | "table-multiple" | "table-network" | "table-of-contents" | "table-off" | "table-picnic" | "table-question" | "table-refresh" | "table-search" | "table-star" | "table-sync" | "tag" | "tag-arrow-down" | "tag-arrow-down-outline" | "tag-arrow-left" | "tag-arrow-left-outline" | "tag-arrow-right" | "tag-arrow-right-outline" | "tag-arrow-up" | "tag-arrow-up-outline" | "tag-check" | "tag-check-outline" | "tag-edit" | "tag-edit-outline" | "tag-faces" | "tag-heart" | "tag-heart-outline" | "tag-hidden" | "tag-minus" | "tag-minus-outline" | "tag-multiple" | "tag-multiple-outline" | "tag-off" | "tag-off-outline" | "tag-outline" | "tag-plus" | "tag-plus-outline" | "tag-remove" | "tag-remove-outline" | "tag-search" | "tag-search-outline" | "tag-text" | "tag-text-outline" | "tank" | "tape-drive" | "target" | "target-variant" | "television-box" | "tent" | "text-long" | "text-recognition" | "text-search" | "text-search-variant" | "text-shadow" | "text-short" | "texture" | "thermometer-probe" | "thermometer-probe-off" | "thermostat-cog" | "thought-bubble" | "thought-bubble-outline" | "thumb-down" | "thumb-down-outline" | "thumb-up" | "thumb-up-outline" | "thumbs-up-down" | "thumbs-up-down-outline" | "ticket" | "ticket-confirmation" | "ticket-confirmation-outline" | "ticket-outline" | "ticket-percent" | "ticket-percent-outline" | "tilde" | "tilde-off" | "timeline" | "timeline-check" | "timeline-check-outline" | "timeline-minus" | "timeline-minus-outline" | "timeline-outline" | "timeline-plus" | "timeline-plus-outline" | "timeline-question" | "timeline-question-outline" | "timeline-remove" | "timeline-remove-outline" | "timeline-text" | "timeline-text-outline" | "toggle-switch" | "toggle-switch-off" | "toggle-switch-off-outline" | "toggle-switch-outline" | "touch-text-outline" | "tower-beach" | "tower-fire" | "toy-brick" | "toy-brick-minus" | "toy-brick-minus-outline" | "toy-brick-outline" | "toy-brick-plus" | "toy-brick-plus-outline" | "toy-brick-remove" | "toy-brick-remove-outline" | "toy-brick-search" | "toy-brick-search-outline" | "track-light-off" | "trackpad" | "trademark" | "train-bus" | "transcribe" | "transcribe-close" | "transition" | "transition-masked" | "translate-off" | "trash-can" | "trash-can-outline" | "tray" | "tray-full" | "tray-minus" | "tray-plus" | "tray-remove" | "trending-down" | "trending-neutral" | "trending-up" | "turnstile" | "turnstile-outline" | "two-factor-authentication" | "typewriter" | "ufo" | "ufo-outline" | "undo" | "undo-variant" | "unfold-less-horizontal" | "unfold-less-vertical" | "unfold-more-horizontal" | "unfold-more-vertical" | "ungroup" | "upload" | "upload-box" | "upload-box-outline" | "upload-circle" | "upload-multiple" | "upload-multiple-outline" | "upload-network" | "upload-network-outline" | "upload-off" | "upload-off-outline" | "upload-outline" | "usb" | "usb-c-port" | "usb-flash-drive" | "usb-flash-drive-outline" | "usb-port" | "vanish" | "vanish-quarter" | "vector-polyline-minus" | "vector-polyline-plus" | "vector-polyline-remove" | "vibrate" | "vibrate-off" | "view-grid-compact" | "virtual-reality" | "voicemail" | "vote" | "vote-outline" | "vpn" | "wall" | "wallet-membership" | "wallet-travel" | "wallpaper" | "wan" | "water-check" | "water-check-outline" | "water-minus" | "water-minus-outline" | "water-off" | "water-off-outline" | "water-plus" | "water-plus-outline" | "water-remove" | "water-remove-outline" | "water-well" | "water-well-outline" | "watermark" | "wave-arrow-down" | "wave-arrow-up" | "wave-undercurrent" | "web-cancel" | "web-check" | "web-minus" | "web-off" | "web-plus" | "web-refresh" | "web-remove" | "web-sync" | "webcam-off" | "webhook" | "weight" | "weight-gram" | "weight-kilogram" | "weight-pound" | "widgets" | "widgets-outline" | "wifi" | "wifi-arrow-down" | "wifi-arrow-left" | "wifi-arrow-left-right" | "wifi-arrow-right" | "wifi-arrow-up" | "wifi-arrow-up-down" | "wifi-cancel" | "wifi-check" | "wifi-minus" | "wifi-off" | "wifi-plus" | "wifi-refresh" | "wifi-remove" | "wifi-star" | "wifi-strength-1" | "wifi-strength-2" | "wifi-strength-3" | "wifi-strength-4" | "wifi-strength-off" | "wifi-strength-off-outline" | "wifi-strength-outline" | "wifi-sync" | "window-close" | "window-maximize" | "window-minimize" | "window-restore" | "wiper" | "wrap-disabled" | "yeast" | "yin-yang" | "yurt" | "zip-disk" | "zodiac-aquarius" | "zodiac-aries" | "zodiac-cancer" | "zodiac-capricorn" | "zodiac-gemini" | "zodiac-leo" | "zodiac-libra" | "zodiac-pisces" | "zodiac-sagittarius" | "zodiac-scorpio" | "zodiac-taurus" | "zodiac-virgo" | "account" | "account-alert" | "account-alert-outline" | "account-arrow-down" | "account-arrow-down-outline" | "account-arrow-left" | "account-arrow-left-outline" | "account-arrow-right" | "account-arrow-right-outline" | "account-arrow-up" | "account-arrow-up-outline" | "account-badge" | "account-badge-outline" | "account-box" | "account-box-edit-outline" | "account-box-minus-outline" | "account-box-multiple" | "account-box-multiple-outline" | "account-box-outline" | "account-box-plus-outline" | "account-cancel" | "account-cancel-outline" | "account-card" | "account-card-outline" | "account-cash" | "account-cash-outline" | "account-check" | "account-check-outline" | "account-child" | "account-child-circle" | "account-child-outline" | "account-circle" | "account-circle-outline" | "account-clock" | "account-clock-outline" | "account-cog" | "account-cog-outline" | "account-convert" | "account-convert-outline" | "account-cowboy-hat" | "account-cowboy-hat-outline" | "account-credit-card" | "account-credit-card-outline" | "account-details" | "account-details-outline" | "account-edit" | "account-edit-outline" | "account-eye" | "account-eye-outline" | "account-file" | "account-file-outline" | "account-file-text" | "account-file-text-outline" | "account-filter" | "account-filter-outline" | "account-group" | "account-group-outline" | "account-hard-hat" | "account-hard-hat-outline" | "account-heart" | "account-heart-outline" | "account-injury" | "account-injury-outline" | "account-key" | "account-key-outline" | "account-lock" | "account-lock-open" | "account-lock-open-outline" | "account-lock-outline" | "account-minus" | "account-minus-outline" | "account-multiple" | "account-multiple-check" | "account-multiple-check-outline" | "account-multiple-minus" | "account-multiple-minus-outline" | "account-multiple-outline" | "account-multiple-plus" | "account-multiple-plus-outline" | "account-multiple-remove" | "account-multiple-remove-outline" | "account-music" | "account-music-outline" | "account-network" | "account-network-off" | "account-network-off-outline" | "account-network-outline" | "account-off" | "account-off-outline" | "account-outline" | "account-plus" | "account-plus-outline" | "account-question" | "account-question-outline" | "account-reactivate" | "account-reactivate-outline" | "account-remove" | "account-remove-outline" | "account-school" | "account-school-outline" | "account-search" | "account-search-outline" | "account-settings" | "account-settings-outline" | "account-star" | "account-star-outline" | "account-supervisor" | "account-supervisor-circle" | "account-supervisor-circle-outline" | "account-supervisor-outline" | "account-switch" | "account-switch-outline" | "account-sync" | "account-sync-outline" | "account-tag" | "account-tag-outline" | "account-tie" | "account-tie-hat" | "account-tie-hat-outline" | "account-tie-outline" | "account-tie-voice" | "account-tie-voice-off" | "account-tie-voice-off-outline" | "account-tie-voice-outline" | "account-tie-woman" | "account-voice" | "account-voice-off" | "account-wrench" | "account-wrench-outline" | "badge-account" | "badge-account-alert" | "badge-account-alert-outline" | "badge-account-horizontal" | "badge-account-horizontal-outline" | "badge-account-outline" | "book-account" | "book-account-outline" | "briefcase-account" | "briefcase-account-outline" | "calendar-account" | "calendar-account-outline" | "camera-account" | "card-account-details" | "card-account-details-outline" | "card-account-details-star" | "card-account-details-star-outline" | "card-account-mail" | "card-account-mail-outline" | "card-account-phone" | "card-account-phone-outline" | "clipboard-account" | "clipboard-account-outline" | "comment-account" | "comment-account-outline" | "crowd" | "face-man-shimmer" | "face-man-shimmer-outline" | "face-woman-shimmer" | "face-woman-shimmer-outline" | "file-account" | "file-account-outline" | "folder-account" | "folder-account-outline" | "home-account" | "human-capacity-decrease" | "human-capacity-increase" | "human-greeting-proximity" | "laptop-account" | "map-marker-account" | "map-marker-account-outline" | "monitor-account" | "nature-people" | "nature-people-outline" | "shield-account" | "shield-account-outline" | "shield-account-variant" | "shield-account-variant-outline" | "shield-check" | "smart-card" | "smart-card-off" | "smart-card-off-outline" | "smart-card-outline" | "smart-card-reader" | "smart-card-reader-outline" | "table-account" | "target-account" | "text-account" | "ticket-account" | "tooltip-account" | "video-account" | "barley" | "barley-off" | "barn" | "bee" | "bee-flower" | "beehive-off-outline" | "beehive-outline" | "beekeeper" | "car-lifted-pickup" | "car-pickup" | "carrot" | "chili-mild" | "compost" | "corn" | "corn-off" | "cow" | "cow-off" | "egg" | "egg-off" | "egg-off-outline" | "egg-outline" | "fence" | "fence-electric" | "flower" | "flower-outline" | "flower-pollen" | "flower-pollen-outline" | "flower-poppy" | "flower-tulip" | "flower-tulip-outline" | "food-apple" | "food-apple-outline" | "forest" | "forest-outline" | "fruit-cherries" | "fruit-cherries-off" | "fruit-citrus" | "fruit-citrus-off" | "fruit-grapes" | "fruit-grapes-outline" | "fruit-pineapple" | "fruit-watermelon" | "grain" | "grass" | "greenhouse" | "heat-wave" | "home-silo" | "home-silo-outline" | "hoop-house" | "hops" | "horse" | "horse-human" | "horse-variant" | "horse-variant-fast" | "horseshoe" | "hydro-power" | "land-fields" | "land-plots" | "land-plots-circle" | "land-plots-circle-variant" | "land-plots-marker" | "land-rows-horizontal" | "land-rows-vertical" | "leaf" | "leaf-circle" | "leaf-circle-outline" | "leaf-maple" | "leaf-off" | "mushroom" | "mushroom-off" | "mushroom-off-outline" | "mushroom-outline" | "nature" | "peanut" | "peanut-off" | "peanut-off-outline" | "peanut-outline" | "pig" | "pig-variant" | "pig-variant-outline" | "pine-tree" | "pine-tree-box" | "pine-tree-fire" | "pine-tree-variant" | "pine-tree-variant-outline" | "seed" | "seed-off" | "seed-off-outline" | "seed-outline" | "seed-plus" | "seed-plus-outline" | "sheep" | "shovel" | "silo" | "silo-outline" | "spray" | "sprinkler" | "sprinkler-fire" | "sprinkler-variant" | "sprout" | "sprout-outline" | "tire" | "tractor" | "tractor-variant" | "tree" | "tree-outline" | "turkey" | "water" | "water-alert" | "water-alert-outline" | "water-pump" | "water-pump-off" | "water-sync" | "watering-can" | "watering-can-outline" | "waves" | "weather-cloudy" | "weather-dust" | "weather-fog" | "weather-hail" | "weather-hazy" | "weather-hurricane" | "weather-hurricane-outline" | "weather-lightning" | "weather-pouring" | "weather-rainy" | "airplane-alert" | "alert-box" | "alert-box-outline" | "alert-circle" | "alert-circle-check" | "alert-circle-check-outline" | "alert-circle-outline" | "alert-decagram" | "alert-decagram-outline" | "alert-minus" | "alert-minus-outline" | "alert-octagon" | "alert-octagon-outline" | "alert-octagram" | "alert-octagram-outline" | "alert-outline" | "alert-plus" | "alert-plus-outline" | "alert-remove" | "alert-remove-outline" | "alert-rhombus" | "alert-rhombus-outline" | "archive-alert" | "archive-alert-outline" | "battery-alert" | "battery-alert-bluetooth" | "battery-alert-variant" | "battery-alert-variant-outline" | "battery-charging-wireless-alert" | "beaker-alert" | "beaker-alert-outline" | "bell-alert" | "bell-alert-outline" | "book-alert" | "book-alert-outline" | "boom-gate-alert" | "boom-gate-alert-outline" | "bus-alert" | "calendar-alert" | "calendar-alert-outline" | "car-brake-alert" | "car-light-alert" | "car-tire-alert" | "chat-alert" | "chat-alert-outline" | "chili-alert" | "chili-alert-outline" | "clipboard-alert" | "clipboard-alert-outline" | "clock-alert" | "clock-alert-outline" | "cloud-alert" | "cloud-alert-outline" | "comment-alert" | "comment-alert-outline" | "content-save-alert" | "content-save-alert-outline" | "cookie-alert" | "cookie-alert-outline" | "database-alert" | "database-alert-outline" | "delete-alert" | "delete-alert-outline" | "disc-alert" | "dishwasher-alert" | "email-alert" | "email-alert-outline" | "fan-alert" | "file-alert" | "file-alert-outline" | "file-document-alert" | "file-document-alert-outline" | "fire-alert" | "fire-hydrant-alert" | "flash-alert" | "flash-alert-outline" | "folder-alert" | "folder-alert-outline" | "fridge-alert" | "fridge-alert-outline" | "fridge-industrial-alert" | "fridge-industrial-alert-outline" | "fridge-variant-alert" | "fridge-variant-alert-outline" | "fuse-alert" | "garage-alert" | "garage-alert-variant" | "gate-alert" | "head-alert" | "head-alert-outline" | "home-alert" | "home-alert-outline" | "kettle-alert" | "kettle-alert-outline" | "key-alert" | "key-alert-outline" | "lightbulb-alert" | "lightbulb-alert-outline" | "lock-alert" | "lock-alert-outline" | "lock-open-alert" | "lock-open-alert-outline" | "map-marker-alert" | "map-marker-alert-outline" | "message-alert" | "message-alert-outline" | "microsoft-xbox-controller-battery-alert" | "network-strength-1-alert" | "network-strength-2-alert" | "network-strength-3-alert" | "network-strength-4-alert" | "note-alert" | "note-alert-outline" | "phone-alert" | "phone-alert-outline" | "printer-3d-nozzle-alert" | "printer-3d-nozzle-alert-outline" | "printer-alert" | "printer-pos-alert" | "printer-pos-alert-outline" | "progress-alert" | "reload-alert" | "restart-alert" | "restore-alert" | "robot-vacuum-alert" | "robot-vacuum-variant-alert" | "shield-alert" | "shield-alert-outline" | "sim-alert" | "sim-alert-outline" | "smoke-detector-alert" | "smoke-detector-alert-outline" | "smoke-detector-variant-alert" | "snowflake-alert" | "sticker-alert" | "sticker-alert-outline" | "store-alert" | "store-alert-outline" | "subway-alert-variant" | "sync-alert" | "table-alert" | "thermometer-alert" | "timeline-alert" | "timeline-alert-outline" | "timer-alert" | "timer-alert-outline" | "tray-alert" | "truck-alert" | "truck-alert-outline" | "tumble-dryer-alert" | "washing-machine-alert" | "water-boiler-alert" | "water-percent-alert" | "weather-cloudy-alert" | "weather-sunny-alert" | "wifi-alert" | "wifi-strength-1-alert" | "wifi-strength-2-alert" | "wifi-strength-3-alert" | "wifi-strength-4-alert" | "wifi-strength-alert-outline" | "wind-turbine-alert" | "window-shutter-alert" | "wiper-wash-alert" | "abjad-arabic" | "abjad-hebrew" | "abugida-devanagari" | "abugida-thai" | "alpha" | "alpha-a" | "alpha-a-box" | "alpha-a-box-outline" | "alpha-a-circle" | "alpha-a-circle-outline" | "alpha-b" | "alpha-b-box" | "alpha-b-box-outline" | "alpha-b-circle" | "alpha-b-circle-outline" | "alpha-c" | "alpha-c-box" | "alpha-c-box-outline" | "alpha-c-circle" | "alpha-c-circle-outline" | "alpha-d" | "alpha-d-box" | "alpha-d-box-outline" | "alpha-d-circle" | "alpha-d-circle-outline" | "alpha-e" | "alpha-e-box" | "alpha-e-box-outline" | "alpha-e-circle" | "alpha-e-circle-outline" | "alpha-f" | "alpha-f-box" | "alpha-f-box-outline" | "alpha-f-circle" | "alpha-f-circle-outline" | "alpha-g" | "alpha-g-box" | "alpha-g-box-outline" | "alpha-g-circle" | "alpha-g-circle-outline" | "alpha-h" | "alpha-h-box" | "alpha-h-box-outline" | "alpha-h-circle" | "alpha-h-circle-outline" | "alpha-i" | "alpha-i-box" | "alpha-i-box-outline" | "alpha-i-circle" | "alpha-i-circle-outline" | "alpha-j" | "alpha-j-box" | "alpha-j-box-outline" | "alpha-j-circle" | "alpha-j-circle-outline" | "alpha-k" | "alpha-k-box" | "alpha-k-box-outline" | "alpha-k-circle" | "alpha-k-circle-outline" | "alpha-l" | "alpha-l-box" | "alpha-l-box-outline" | "alpha-l-circle" | "alpha-l-circle-outline" | "alpha-m" | "alpha-m-box" | "alpha-m-box-outline" | "alpha-m-circle" | "alpha-m-circle-outline" | "alpha-n" | "alpha-n-box" | "alpha-n-box-outline" | "alpha-n-circle" | "alpha-n-circle-outline" | "alpha-o" | "alpha-o-box" | "alpha-o-box-outline" | "alpha-o-circle" | "alpha-o-circle-outline" | "alpha-p" | "alpha-p-box" | "alpha-p-box-outline" | "alpha-p-circle" | "alpha-p-circle-outline" | "alpha-q" | "alpha-q-box" | "alpha-q-box-outline" | "alpha-q-circle" | "alpha-q-circle-outline" | "alpha-r" | "alpha-r-box" | "alpha-r-box-outline" | "alpha-r-circle" | "alpha-r-circle-outline" | "alpha-s" | "alpha-s-box" | "alpha-s-box-outline" | "alpha-s-circle" | "alpha-s-circle-outline" | "alpha-t" | "alpha-t-box" | "alpha-t-box-outline" | "alpha-t-circle" | "alpha-t-circle-outline" | "alpha-u" | "alpha-u-box" | "alpha-u-box-outline" | "alpha-u-circle" | "alpha-u-circle-outline" | "alpha-v" | "alpha-v-box" | "alpha-v-box-outline" | "alpha-v-circle" | "alpha-v-circle-outline" | "alpha-w" | "alpha-w-box" | "alpha-w-box-outline" | "alpha-w-circle" | "alpha-w-circle-outline" | "alpha-x" | "alpha-x-box" | "alpha-x-box-outline" | "alpha-x-circle" | "alpha-x-circle-outline" | "alpha-y" | "alpha-y-box" | "alpha-y-box-outline" | "alpha-y-circle" | "alpha-y-circle-outline" | "alpha-z" | "alpha-z-box" | "alpha-z-box-outline" | "alpha-z-circle" | "alpha-z-circle-outline" | "alphabet-aurebesh" | "alphabet-cyrillic" | "alphabet-greek" | "alphabet-latin" | "alphabet-piqad" | "alphabet-tengwar" | "alphabetical" | "alphabetical-off" | "alphabetical-variant" | "alphabetical-variant-off" | "beta" | "delta" | "epsilon" | "gamma" | "ideogram-cjk" | "ideogram-cjk-variant" | "numeric" | "numeric-0" | "numeric-0-box" | "numeric-0-box-multiple" | "numeric-0-box-multiple-outline" | "numeric-0-box-outline" | "numeric-0-circle" | "numeric-0-circle-outline" | "numeric-1" | "numeric-1-box" | "numeric-1-box-multiple" | "numeric-1-box-multiple-outline" | "numeric-1-box-outline" | "numeric-1-circle" | "numeric-1-circle-outline" | "numeric-10" | "numeric-10-box" | "numeric-10-box-multiple" | "numeric-10-box-multiple-outline" | "numeric-10-box-outline" | "numeric-10-circle" | "numeric-10-circle-outline" | "numeric-2" | "numeric-2-box" | "numeric-2-box-multiple" | "numeric-2-box-multiple-outline" | "numeric-2-box-outline" | "numeric-2-circle" | "numeric-2-circle-outline" | "numeric-3" | "numeric-3-box" | "numeric-3-box-multiple" | "numeric-3-box-multiple-outline" | "numeric-3-box-outline" | "numeric-3-circle" | "numeric-3-circle-outline" | "numeric-4" | "numeric-4-box" | "numeric-4-box-multiple" | "numeric-4-box-multiple-outline" | "numeric-4-box-outline" | "numeric-4-circle" | "numeric-4-circle-outline" | "numeric-5" | "numeric-5-box" | "numeric-5-box-multiple" | "numeric-5-box-multiple-outline" | "numeric-5-box-outline" | "numeric-5-circle" | "numeric-5-circle-outline" | "numeric-6" | "numeric-6-box" | "numeric-6-box-multiple" | "numeric-6-box-multiple-outline" | "numeric-6-box-outline" | "numeric-6-circle" | "numeric-6-circle-outline" | "numeric-7" | "numeric-7-box" | "numeric-7-box-multiple" | "numeric-7-box-multiple-outline" | "numeric-7-box-outline" | "numeric-7-circle" | "numeric-7-circle-outline" | "numeric-8" | "numeric-8-box" | "numeric-8-box-multiple" | "numeric-8-box-multiple-outline" | "numeric-8-box-outline" | "numeric-8-circle" | "numeric-8-circle-outline" | "numeric-9" | "numeric-9-box" | "numeric-9-box-multiple" | "numeric-9-box-multiple-outline" | "numeric-9-box-outline" | "numeric-9-circle" | "numeric-9-circle-outline" | "numeric-9-plus" | "numeric-9-plus-box" | "numeric-9-plus-box-multiple" | "numeric-9-plus-box-multiple-outline" | "numeric-9-plus-box-outline" | "numeric-9-plus-circle" | "numeric-9-plus-circle-outline" | "numeric-negative-1" | "numeric-off" | "numeric-positive-1" | "roman-numeral-1" | "roman-numeral-10" | "roman-numeral-2" | "roman-numeral-3" | "roman-numeral-4" | "roman-numeral-5" | "roman-numeral-6" | "roman-numeral-7" | "roman-numeral-8" | "roman-numeral-9" | "syllabary-hangul" | "syllabary-hiragana" | "syllabary-katakana" | "syllabary-katakana-halfwidth" | "bat" | "bird" | "bone" | "bone-off" | "bug" | "bug-check" | "bug-check-outline" | "bug-outline" | "butterfly" | "butterfly-outline" | "cat" | "dog" | "dog-service" | "dog-side" | "dog-side-off" | "dolphin" | "donkey" | "duck" | "elephant" | "fish" | "fishbowl" | "fishbowl-outline" | "google-downasaur" | "jellyfish" | "jellyfish-outline" | "kangaroo" | "koala" | "linux" | "owl" | "panda" | "paw" | "paw-off" | "paw-off-outline" | "paw-outline" | "penguin" | "rabbit" | "rabbit-variant" | "rabbit-variant-outline" | "rodent" | "shark" | "shark-fin" | "shark-fin-outline" | "shark-off" | "snail" | "snake" | "spider" | "spider-outline" | "spider-thread" | "tortoise" | "turtle" | "unicorn" | "unicorn-variant" | "arrange-bring-forward" | "arrange-bring-to-front" | "arrange-send-backward" | "arrange-send-to-back" | "flip-horizontal" | "flip-to-back" | "flip-to-front" | "flip-vertical" | "vector-arrange-above" | "vector-arrange-below" | "arrow-all" | "arrow-bottom-left" | "arrow-bottom-left-bold-box" | "arrow-bottom-left-bold-box-outline" | "arrow-bottom-left-bold-outline" | "arrow-bottom-left-thick" | "arrow-bottom-left-thin" | "arrow-bottom-left-thin-circle-outline" | "arrow-bottom-right" | "arrow-bottom-right-bold-box" | "arrow-bottom-right-bold-box-outline" | "arrow-bottom-right-bold-outline" | "arrow-bottom-right-thick" | "arrow-bottom-right-thin" | "arrow-bottom-right-thin-circle-outline" | "arrow-collapse" | "arrow-collapse-all" | "arrow-collapse-down" | "arrow-collapse-horizontal" | "arrow-collapse-left" | "arrow-collapse-right" | "arrow-collapse-up" | "arrow-collapse-vertical" | "arrow-decision" | "arrow-decision-outline" | "arrow-down" | "arrow-down-bold" | "arrow-down-bold-box" | "arrow-down-bold-box-outline" | "arrow-down-bold-circle" | "arrow-down-bold-circle-outline" | "arrow-down-bold-hexagon-outline" | "arrow-down-bold-outline" | "arrow-down-box" | "arrow-down-circle" | "arrow-down-circle-outline" | "arrow-down-drop-circle" | "arrow-down-drop-circle-outline" | "arrow-down-left" | "arrow-down-left-bold" | "arrow-down-right" | "arrow-down-right-bold" | "arrow-down-thick" | "arrow-down-thin" | "arrow-down-thin-circle-outline" | "arrow-expand" | "arrow-expand-all" | "arrow-expand-down" | "arrow-expand-horizontal" | "arrow-expand-left" | "arrow-expand-right" | "arrow-expand-up" | "arrow-expand-vertical" | "arrow-horizontal-lock" | "arrow-left" | "arrow-left-bold" | "arrow-left-bold-box" | "arrow-left-bold-box-outline" | "arrow-left-bold-circle" | "arrow-left-bold-circle-outline" | "arrow-left-bold-hexagon-outline" | "arrow-left-bold-outline" | "arrow-left-box" | "arrow-left-circle" | "arrow-left-circle-outline" | "arrow-left-drop-circle" | "arrow-left-drop-circle-outline" | "arrow-left-right" | "arrow-left-right-bold" | "arrow-left-right-bold-outline" | "arrow-left-thick" | "arrow-left-thin" | "arrow-left-thin-circle-outline" | "arrow-right" | "arrow-right-bold" | "arrow-right-bold-box" | "arrow-right-bold-box-outline" | "arrow-right-bold-circle" | "arrow-right-bold-circle-outline" | "arrow-right-bold-hexagon-outline" | "arrow-right-bold-outline" | "arrow-right-box" | "arrow-right-circle" | "arrow-right-circle-outline" | "arrow-right-drop-circle" | "arrow-right-drop-circle-outline" | "arrow-right-thick" | "arrow-right-thin" | "arrow-right-thin-circle-outline" | "arrow-split-horizontal" | "arrow-split-vertical" | "arrow-top-left" | "arrow-top-left-bold-box" | "arrow-top-left-bold-box-outline" | "arrow-top-left-bold-outline" | "arrow-top-left-bottom-right" | "arrow-top-left-bottom-right-bold" | "arrow-top-left-thick" | "arrow-top-left-thin" | "arrow-top-left-thin-circle-outline" | "arrow-top-right" | "arrow-top-right-bold-box" | "arrow-top-right-bold-box-outline" | "arrow-top-right-bold-outline" | "arrow-top-right-bottom-left" | "arrow-top-right-bottom-left-bold" | "arrow-top-right-thick" | "arrow-top-right-thin" | "arrow-top-right-thin-circle-outline" | "arrow-up" | "arrow-up-bold" | "arrow-up-bold-box" | "arrow-up-bold-box-outline" | "arrow-up-bold-circle" | "arrow-up-bold-circle-outline" | "arrow-up-bold-hexagon-outline" | "arrow-up-bold-outline" | "arrow-up-box" | "arrow-up-circle" | "arrow-up-circle-outline" | "arrow-up-down" | "arrow-up-down-bold" | "arrow-up-down-bold-outline" | "arrow-up-drop-circle" | "arrow-up-drop-circle-outline" | "arrow-up-thick" | "arrow-up-thin" | "arrow-up-thin-circle-outline" | "arrow-vertical-lock" | "autorenew" | "autorenew-off" | "axis-arrow" | "axis-arrow-info" | "axis-arrow-lock" | "axis-x-arrow" | "axis-x-arrow-lock" | "axis-x-y-arrow-lock" | "axis-y-arrow" | "axis-y-arrow-lock" | "axis-z-arrow" | "axis-z-arrow-lock" | "cached" | "call-made" | "call-merge" | "call-missed" | "call-received" | "call-split" | "chevron-double-down" | "chevron-double-left" | "chevron-double-right" | "chevron-double-up" | "chevron-down" | "chevron-down-box" | "chevron-down-box-outline" | "chevron-down-circle" | "chevron-down-circle-outline" | "chevron-left" | "chevron-left-box" | "chevron-left-box-outline" | "chevron-left-circle" | "chevron-left-circle-outline" | "chevron-right" | "chevron-right-box" | "chevron-right-box-outline" | "chevron-right-circle" | "chevron-right-circle-outline" | "chevron-up" | "chevron-up-box" | "chevron-up-box-outline" | "chevron-up-circle" | "chevron-up-circle-outline" | "compare-horizontal" | "compare-vertical" | "fit-to-page" | "fit-to-page-outline" | "forward" | "menu-down" | "menu-down-outline" | "menu-left" | "menu-right" | "menu-swap" | "menu-swap-outline" | "menu-up" | "menu-up-outline" | "middleware" | "middleware-outline" | "publish-off" | "refresh" | "reiterate" | "reload" | "repeat-variant" | "reply" | "reply-all" | "reply-all-outline" | "reply-circle" | "reply-outline" | "restore" | "rotate-360" | "rotate-left" | "rotate-right" | "share" | "share-circle" | "share-off" | "share-off-outline" | "share-outline" | "shuffle" | "shuffle-disabled" | "shuffle-variant" | "stretch-to-page" | "stretch-to-page-outline" | "subdirectory-arrow-left" | "subdirectory-arrow-right" | "swap-horizontal" | "swap-horizontal-bold" | "swap-horizontal-circle" | "swap-horizontal-circle-outline" | "swap-horizontal-hidden" | "swap-horizontal-variant" | "swap-vertical" | "swap-vertical-bold" | "swap-vertical-circle" | "swap-vertical-circle-outline" | "swap-vertical-variant" | "transfer-down" | "transfer-left" | "transfer-right" | "transfer-up" | "tray-arrow-down" | "tray-arrow-up" | "album" | "audio-input-rca" | "audio-input-stereo-minijack" | "audio-input-xlr" | "audio-video" | "audio-video-off" | "bluetooth-audio" | "book-music" | "cast-audio" | "cosine-wave" | "dolby" | "earbuds" | "earbuds-off" | "earbuds-off-outline" | "earbuds-outline" | "equalizer" | "equalizer-outline" | "headphones" | "headphones-box" | "headphones-off" | "headphones-settings" | "headset" | "headset-dock" | "headset-off" | "knob" | "microphone-question" | "microphone-question-outline" | "multimedia" | "music" | "music-box" | "music-box-outline" | "music-circle" | "music-circle-outline" | "music-note" | "music-note-bluetooth" | "music-note-bluetooth-off" | "music-note-eighth" | "music-note-half" | "music-note-off" | "music-note-plus" | "music-note-quarter" | "music-note-sixteenth" | "music-note-whole" | "music-off" | "pause-box" | "pause-box-outline" | "radio-am" | "radio-fm" | "sawtooth-wave" | "sine-wave" | "speaker" | "speaker-bluetooth" | "speaker-message" | "speaker-multiple" | "speaker-off" | "speaker-pause" | "speaker-play" | "speaker-stop" | "speaker-wireless" | "square-wave" | "surround-sound" | "surround-sound-2-0" | "surround-sound-3-1" | "surround-sound-5-1" | "surround-sound-7-1" | "television-speaker" | "television-speaker-off" | "toslink" | "triangle-wave" | "tune" | "tune-variant" | "tune-vertical" | "tune-vertical-variant" | "volume-equal" | "volume-high" | "volume-low" | "volume-medium" | "volume-minus" | "volume-mute" | "volume-off" | "volume-plus" | "volume-source" | "volume-variant-off" | "volume-vibrate" | "waveform" | "air-conditioner" | "airbag" | "battery" | "battery-10" | "battery-20" | "battery-30" | "battery-40" | "battery-50" | "battery-60" | "battery-70" | "battery-80" | "battery-90" | "battery-charging" | "battery-charging-10" | "battery-charging-100" | "battery-charging-20" | "battery-charging-30" | "battery-charging-40" | "battery-charging-50" | "battery-charging-60" | "battery-charging-70" | "battery-charging-80" | "battery-charging-90" | "battery-charging-outline" | "battery-outline" | "bugle" | "car" | "car-2-plus" | "car-3-plus" | "car-arrow-left" | "car-arrow-right" | "car-back" | "car-battery" | "car-brake-abs" | "car-brake-fluid-level" | "car-brake-hold" | "car-brake-low-pressure" | "car-brake-parking" | "car-brake-retarder" | "car-brake-temperature" | "car-brake-worn-linings" | "car-child-seat" | "car-clock" | "car-clutch" | "car-cog" | "car-connected" | "car-convertible" | "car-coolant-level" | "car-cruise-control" | "car-defrost-front" | "car-defrost-rear" | "car-door" | "car-door-lock" | "car-door-lock-open" | "car-electric" | "car-electric-outline" | "car-emergency" | "car-esp" | "car-estate" | "car-hatchback" | "car-info" | "car-key" | "car-light-dimmed" | "car-light-fog" | "car-light-high" | "car-limousine" | "car-multiple" | "car-off" | "car-outline" | "car-parking-lights" | "car-search" | "car-search-outline" | "car-seat" | "car-seat-cooler" | "car-seat-heater" | "car-select" | "car-settings" | "car-shift-pattern" | "car-side" | "car-speed-limiter" | "car-sports" | "car-traction-control" | "car-turbocharger" | "car-wash" | "car-windshield" | "car-windshield-outline" | "car-wireless" | "car-wrench" | "caravan" | "cellphone-nfc" | "coolant-temperature" | "counter" | "engine" | "engine-off" | "engine-off-outline" | "engine-outline" | "ev-plug-ccs1" | "ev-plug-ccs2" | "ev-plug-chademo" | "ev-plug-tesla" | "ev-plug-type1" | "ev-plug-type2" | "ev-station" | "fan" | "fan-off" | "fuel" | "fuel-cell" | "fuse" | "fuse-blade" | "fuse-off" | "gas-station" | "gauge" | "gauge-empty" | "gauge-full" | "gauge-low" | "hazard-lights" | "hydraulic-oil-level" | "hydraulic-oil-temperature" | "hydrogen-station" | "induction" | "key-chain" | "key-chain-variant" | "key-variant" | "liquid-spot" | "lock" | "lock-open" | "lock-open-outline" | "lock-outline" | "oil" | "oil-level" | "oil-temperature" | "piston" | "refresh-auto" | "seatbelt" | "shield-car" | "smoking" | "snowflake" | "speedometer" | "speedometer-medium" | "speedometer-slow" | "steering" | "steering-off" | "thermometer" | "thermometer-bluetooth" | "truck-flatbed" | "wiper-wash" | "bank" | "bank-check" | "bank-circle" | "bank-circle-outline" | "bank-minus" | "bank-off" | "bank-off-outline" | "bank-outline" | "bank-plus" | "bank-remove" | "bank-transfer" | "bank-transfer-in" | "bank-transfer-out" | "bitcoin" | "cash" | "cash-100" | "cash-check" | "cash-clock" | "cash-edit" | "cash-fast" | "cash-lock" | "cash-lock-open" | "cash-marker" | "cash-minus" | "cash-multiple" | "cash-off" | "cash-plus" | "cash-refund" | "cash-register" | "cash-remove" | "cash-sync" | "checkbook" | "checkbook-arrow-left" | "checkbook-arrow-right" | "circle-multiple" | "circle-multiple-outline" | "credit-card" | "credit-card-check" | "credit-card-check-outline" | "credit-card-chip" | "credit-card-chip-outline" | "credit-card-clock" | "credit-card-clock-outline" | "credit-card-edit" | "credit-card-edit-outline" | "credit-card-fast" | "credit-card-fast-outline" | "credit-card-lock" | "credit-card-lock-outline" | "credit-card-marker" | "credit-card-marker-outline" | "credit-card-minus" | "credit-card-minus-outline" | "credit-card-multiple" | "credit-card-multiple-outline" | "credit-card-off" | "credit-card-off-outline" | "credit-card-outline" | "credit-card-plus" | "credit-card-plus-outline" | "credit-card-refresh" | "credit-card-refresh-outline" | "credit-card-refund" | "credit-card-refund-outline" | "credit-card-remove" | "credit-card-remove-outline" | "credit-card-scan" | "credit-card-scan-outline" | "credit-card-search" | "credit-card-search-outline" | "credit-card-settings" | "credit-card-settings-outline" | "credit-card-sync" | "credit-card-sync-outline" | "credit-card-wireless" | "credit-card-wireless-off" | "credit-card-wireless-off-outline" | "credit-card-wireless-outline" | "currency-bdt" | "currency-brl" | "currency-btc" | "currency-cny" | "currency-eth" | "currency-eur" | "currency-eur-off" | "currency-fra" | "currency-gbp" | "currency-ils" | "currency-inr" | "currency-jpy" | "currency-krw" | "currency-kzt" | "currency-mnt" | "currency-ngn" | "currency-php" | "currency-rial" | "currency-rub" | "currency-rupee" | "currency-sign" | "currency-thb" | "currency-try" | "currency-twd" | "currency-uah" | "currency-usd" | "currency-usd-off" | "file-sign" | "finance" | "hand-coin" | "hand-coin-outline" | "integrated-circuit-chip" | "invoice" | "invoice-arrow-left" | "invoice-arrow-right" | "invoice-arrow-right-outline" | "invoice-check" | "invoice-check-outline" | "invoice-clock" | "invoice-clock-outline" | "invoice-edit" | "invoice-edit-outline" | "invoice-export-outline" | "invoice-fast" | "invoice-fast-outline" | "invoice-import" | "invoice-import-outline" | "invoice-list" | "invoice-list-outline" | "invoice-minus" | "invoice-minus-outline" | "invoice-multiple" | "invoice-multiple-outline" | "invoice-outline" | "invoice-plus" | "invoice-plus-outline" | "invoice-remove" | "invoice-remove-outline" | "invoice-send" | "invoice-send-outline" | "invoice-text" | "invoice-text-arrow-left" | "invoice-text-arrow-left-outline" | "invoice-text-arrow-right" | "invoice-text-arrow-right-outline" | "invoice-text-check" | "invoice-text-check-outline" | "invoice-text-clock" | "invoice-text-clock-outline" | "invoice-text-edit" | "invoice-text-edit-outline" | "invoice-text-fast" | "invoice-text-fast-outline" | "invoice-text-minus" | "invoice-text-minus-outline" | "invoice-text-multiple" | "invoice-text-multiple-outline" | "invoice-text-outline" | "invoice-text-plus" | "invoice-text-plus-outline" | "invoice-text-remove" | "invoice-text-remove-outline" | "invoice-text-send" | "invoice-text-send-outline" | "litecoin" | "network-pos" | "piggy-bank" | "piggy-bank-outline" | "receipt" | "receipt-outline" | "receipt-text" | "receipt-text-arrow-left" | "receipt-text-arrow-left-outline" | "receipt-text-arrow-right" | "receipt-text-arrow-right-outline" | "receipt-text-check" | "receipt-text-check-outline" | "receipt-text-clock" | "receipt-text-clock-outline" | "receipt-text-edit" | "receipt-text-edit-outline" | "receipt-text-minus" | "receipt-text-minus-outline" | "receipt-text-outline" | "receipt-text-plus" | "receipt-text-plus-outline" | "receipt-text-remove" | "receipt-text-remove-outline" | "receipt-text-send" | "receipt-text-send-outline" | "safe" | "transfer" | "wallet" | "wallet-bifold" | "wallet-bifold-outline" | "wallet-giftcard" | "wallet-outline" | "wallet-plus" | "wallet-plus-outline" | "battery-10-bluetooth" | "battery-20-bluetooth" | "battery-30-bluetooth" | "battery-40-bluetooth" | "battery-50-bluetooth" | "battery-60-bluetooth" | "battery-70-bluetooth" | "battery-80-bluetooth" | "battery-90-bluetooth" | "battery-arrow-down" | "battery-arrow-down-outline" | "battery-arrow-up" | "battery-arrow-up-outline" | "battery-bluetooth" | "battery-bluetooth-variant" | "battery-charging-high" | "battery-charging-low" | "battery-charging-medium" | "battery-charging-wireless" | "battery-charging-wireless-10" | "battery-charging-wireless-20" | "battery-charging-wireless-30" | "battery-charging-wireless-40" | "battery-charging-wireless-50" | "battery-charging-wireless-60" | "battery-charging-wireless-70" | "battery-charging-wireless-80" | "battery-charging-wireless-90" | "battery-charging-wireless-outline" | "battery-check" | "battery-check-outline" | "battery-clock" | "battery-clock-outline" | "battery-heart" | "battery-heart-outline" | "battery-heart-variant" | "battery-high" | "battery-lock" | "battery-lock-open" | "battery-low" | "battery-medium" | "battery-minus" | "battery-minus-outline" | "battery-minus-variant" | "battery-negative" | "battery-off" | "battery-off-outline" | "battery-plus" | "battery-plus-outline" | "battery-plus-variant" | "battery-positive" | "battery-remove" | "battery-remove-outline" | "battery-sync" | "battery-sync-outline" | "battery-unknown" | "battery-unknown-bluetooth" | "current-dc" | "home-battery" | "home-battery-outline" | "microsoft-xbox-controller-battery-charging" | "microsoft-xbox-controller-battery-empty" | "microsoft-xbox-controller-battery-full" | "microsoft-xbox-controller-battery-low" | "microsoft-xbox-controller-battery-medium" | "microsoft-xbox-controller-battery-unknown" | "power-plug-battery" | "power-plug-battery-outline" | "android-studio" | "angular" | "angularjs" | "ansible" | "apache-kafka" | "apple" | "apple-finder" | "apple-icloud" | "apple-ios" | "apple-safari" | "arch" | "artstation" | "atlassian" | "aws" | "babel" | "bitbucket" | "black-mesa" | "blender-software" | "bootstrap" | "box" | "bulma" | "centos" | "codepen" | "cordova" | "creative-commons" | "cryengine" | "debian" | "dev-to" | "deviantart" | "digital-ocean" | "disqus" | "dlna" | "docker" | "dot-net" | "dropbox" | "drupal" | "electron-framework" | "ember" | "emby" | "eslint" | "ethereum" | "evernote" | "facebook" | "facebook-gaming" | "facebook-messenger" | "facebook-workplace" | "fedora" | "firebase" | "firefox" | "folder-google-drive" | "font-awesome" | "freebsd" | "gatsby" | "gentoo" | "git" | "github" | "gitlab" | "gmail" | "gnome" | "gog" | "goodreads" | "google" | "google-ads" | "google-analytics" | "google-assistant" | "google-cardboard" | "google-chrome" | "google-circles" | "google-circles-communities" | "google-circles-extended" | "google-circles-group" | "google-classroom" | "google-cloud" | "google-drive" | "google-earth" | "google-fit" | "google-glass" | "google-hangouts" | "google-keep" | "google-lens" | "google-maps" | "google-play" | "google-plus" | "google-translate" | "graphql" | "home-assistant" | "hulu" | "humble-bundle" | "instagram" | "iobroker" | "jabber" | "jira" | "jquery" | "jsfiddle" | "kickstarter" | "kodi" | "kubernetes" | "language-c" | "language-cpp" | "language-csharp" | "language-css3" | "language-fortran" | "language-go" | "language-haskell" | "language-html5" | "language-java" | "language-javascript" | "language-kotlin" | "language-lua" | "language-markdown" | "language-markdown-outline" | "language-php" | "language-python" | "language-r" | "language-ruby" | "language-ruby-on-rails" | "language-rust" | "language-swift" | "language-typescript" | "language-xaml" | "laravel" | "lastpass" | "linkedin" | "linux-mint" | "lumx" | "manjaro" | "mapbox" | "mastodon" | "material-design" | "material-ui" | "meteor" | "microsoft" | "microsoft-access" | "microsoft-azure" | "microsoft-azure-devops" | "microsoft-bing" | "microsoft-dynamics-365" | "microsoft-edge" | "microsoft-excel" | "microsoft-internet-explorer" | "microsoft-office" | "microsoft-onedrive" | "microsoft-onenote" | "microsoft-outlook" | "microsoft-powerpoint" | "microsoft-sharepoint" | "microsoft-teams" | "microsoft-visual-studio" | "microsoft-visual-studio-code" | "microsoft-windows" | "microsoft-windows-classic" | "microsoft-word" | "microsoft-xbox" | "midi" | "minecraft" | "nativescript" | "netflix" | "nfc" | "nintendo-switch" | "nintendo-wii" | "nintendo-wiiu" | "nix" | "nodejs" | "npm" | "nuxt" | "oci" | "odnoklassniki" | "onepassword" | "open-source-initiative" | "openid" | "opera" | "origin" | "pandora" | "patreon" | "pi-hole" | "pinterest" | "plex" | "pokemon-go" | "polymer" | "qi" | "qqchat" | "react" | "reddit" | "redhat" | "rollupjs" | "salesforce" | "sass" | "semantic-web" | "simple-icons" | "sina-weibo" | "skype" | "skype-business" | "slack" | "snapchat" | "sony-playstation" | "soundcloud" | "spotify" | "stack-exchange" | "stack-overflow" | "stackpath" | "steam" | "symfony" | "tailwind" | "teamviewer" | "terraform" | "trello" | "twitch" | "twitter" | "ubisoft" | "ubuntu" | "umbraco" | "unicode" | "unity" | "unreal" | "vimeo" | "vlc" | "vuejs" | "vuetify" | "waze" | "webpack" | "webrtc" | "wechat" | "whatsapp" | "wikipedia" | "wordpress" | "xamarin" | "xmpp" | "yahoo" | "youtube" | "youtube-gaming" | "youtube-studio" | "youtube-subscription" | "youtube-tv" | "z-wave" | "zend" | "zigbee" | "cellphone" | "cellphone-arrow-down" | "cellphone-arrow-down-variant" | "cellphone-basic" | "cellphone-charging" | "cellphone-check" | "cellphone-cog" | "cellphone-dock" | "cellphone-information" | "cellphone-key" | "cellphone-link" | "cellphone-link-off" | "cellphone-lock" | "cellphone-marker" | "cellphone-message" | "cellphone-message-off" | "cellphone-nfc-off" | "cellphone-off" | "cellphone-play" | "cellphone-remove" | "cellphone-screenshot" | "cellphone-settings" | "cellphone-sound" | "cellphone-text" | "cellphone-wireless" | "deskphone" | "devices" | "fax" | "file-phone" | "file-phone-outline" | "monitor-cellphone" | "monitor-cellphone-star" | "network-strength-1" | "network-strength-2" | "network-strength-3" | "network-strength-4" | "network-strength-off" | "network-strength-off-outline" | "network-strength-outline" | "phone" | "phone-bluetooth" | "phone-bluetooth-outline" | "phone-cancel" | "phone-cancel-outline" | "phone-check" | "phone-check-outline" | "phone-classic" | "phone-clock" | "phone-dial" | "phone-dial-outline" | "phone-forward" | "phone-forward-outline" | "phone-hangup" | "phone-hangup-outline" | "phone-in-talk" | "phone-in-talk-outline" | "phone-incoming" | "phone-incoming-outgoing" | "phone-incoming-outgoing-outline" | "phone-incoming-outline" | "phone-lock" | "phone-lock-outline" | "phone-log" | "phone-log-outline" | "phone-message" | "phone-message-outline" | "phone-minus" | "phone-minus-outline" | "phone-missed" | "phone-missed-outline" | "phone-off" | "phone-off-outline" | "phone-outgoing" | "phone-outgoing-outline" | "phone-outline" | "phone-paused" | "phone-paused-outline" | "phone-plus" | "phone-plus-outline" | "phone-refresh" | "phone-refresh-outline" | "phone-remove" | "phone-remove-outline" | "phone-return" | "phone-return-outline" | "phone-ring" | "phone-ring-outline" | "phone-rotate-landscape" | "phone-rotate-portrait" | "phone-settings" | "phone-settings-outline" | "phone-sync" | "phone-sync-outline" | "phone-voip" | "signal-2g" | "signal-3g" | "signal-4g" | "signal-5g" | "signal-cellular-1" | "signal-cellular-2" | "signal-cellular-3" | "signal-cellular-outline" | "signal-hspa" | "signal-hspa-plus" | "signal-off" | "sim" | "sim-off" | "sim-off-outline" | "sim-outline" | "tablet-cellphone" | "tooltip-cellphone" | "bow-tie" | "chef-hat" | "coat-rack" | "diaper-outline" | "face-mask" | "face-mask-outline" | "glasses" | "hanger" | "hard-hat" | "hat-fedora" | "iron" | "iron-board" | "iron-outline" | "lingerie" | "necklace" | "shoe-ballet" | "shoe-cleat" | "shoe-formal" | "shoe-heel" | "shoe-sneaker" | "sunglasses" | "tie" | "tshirt-crew" | "tshirt-crew-outline" | "tshirt-v" | "tshirt-v-outline" | "underwear-outline" | "wizard-hat" | "cloud" | "cloud-arrow-down" | "cloud-arrow-down-outline" | "cloud-arrow-left" | "cloud-arrow-left-outline" | "cloud-arrow-right" | "cloud-arrow-right-outline" | "cloud-arrow-up" | "cloud-arrow-up-outline" | "cloud-braces" | "cloud-cancel" | "cloud-cancel-outline" | "cloud-check" | "cloud-check-outline" | "cloud-check-variant" | "cloud-check-variant-outline" | "cloud-circle" | "cloud-circle-outline" | "cloud-clock" | "cloud-clock-outline" | "cloud-cog" | "cloud-cog-outline" | "cloud-download" | "cloud-download-outline" | "cloud-key" | "cloud-key-outline" | "cloud-lock" | "cloud-lock-open" | "cloud-lock-open-outline" | "cloud-lock-outline" | "cloud-minus" | "cloud-minus-outline" | "cloud-off" | "cloud-off-outline" | "cloud-outline" | "cloud-percent" | "cloud-percent-outline" | "cloud-plus" | "cloud-plus-outline" | "cloud-print" | "cloud-print-outline" | "cloud-question" | "cloud-question-outline" | "cloud-refresh" | "cloud-refresh-outline" | "cloud-refresh-variant" | "cloud-refresh-variant-outline" | "cloud-remove" | "cloud-remove-outline" | "cloud-search" | "cloud-search-outline" | "cloud-sync" | "cloud-sync-outline" | "cloud-tags" | "cloud-upload" | "cloud-upload-outline" | "clouds" | "file-cloud" | "file-cloud-outline" | "image-filter-drama" | "image-filter-drama-outline" | "weather-cloudy-arrow-right" | "weather-cloudy-clock" | "weather-night-partly-cloudy" | "weather-partly-cloudy" | "border-color" | "color-helper" | "eyedropper" | "eyedropper-variant" | "format-color-fill" | "format-color-highlight" | "format-color-marker-cancel" | "format-color-text" | "format-paint" | "invert-colors" | "invert-colors-off" | "looks" | "palette" | "palette-advanced" | "palette-outline" | "palette-swatch" | "palette-swatch-outline" | "palette-swatch-variant" | "select-color" | "contactless-payment" | "contactless-payment-circle" | "contactless-payment-circle-outline" | "database" | "database-arrow-down" | "database-arrow-down-outline" | "database-arrow-left" | "database-arrow-left-outline" | "database-arrow-right" | "database-arrow-right-outline" | "database-arrow-up" | "database-arrow-up-outline" | "database-check" | "database-check-outline" | "database-clock" | "database-clock-outline" | "database-cog" | "database-cog-outline" | "database-edit" | "database-edit-outline" | "database-export" | "database-export-outline" | "database-eye" | "database-eye-off" | "database-eye-off-outline" | "database-eye-outline" | "database-import" | "database-import-outline" | "database-lock" | "database-lock-outline" | "database-marker" | "database-marker-outline" | "database-minus" | "database-minus-outline" | "database-off" | "database-off-outline" | "database-outline" | "database-plus" | "database-plus-outline" | "database-refresh" | "database-refresh-outline" | "database-remove" | "database-remove-outline" | "database-search" | "database-search-outline" | "database-settings" | "database-settings-outline" | "database-sync" | "database-sync-outline" | "relation-many-to-many" | "relation-many-to-one" | "relation-many-to-one-or-many" | "relation-many-to-only-one" | "relation-many-to-zero-or-many" | "relation-many-to-zero-or-one" | "relation-one-or-many-to-many" | "relation-one-or-many-to-one" | "relation-one-or-many-to-one-or-many" | "relation-one-or-many-to-only-one" | "relation-one-or-many-to-zero-or-many" | "relation-one-or-many-to-zero-or-one" | "relation-one-to-many" | "relation-one-to-one" | "relation-one-to-one-or-many" | "relation-one-to-only-one" | "relation-one-to-zero-or-many" | "relation-one-to-zero-or-one" | "relation-only-one-to-many" | "relation-only-one-to-one" | "relation-only-one-to-one-or-many" | "relation-only-one-to-only-one" | "relation-only-one-to-zero-or-many" | "relation-only-one-to-zero-or-one" | "relation-zero-or-many-to-many" | "relation-zero-or-many-to-one" | "relation-zero-or-many-to-one-or-many" | "relation-zero-or-many-to-only-one" | "relation-zero-or-many-to-zero-or-many" | "relation-zero-or-many-to-zero-or-one" | "relation-zero-or-one-to-many" | "relation-zero-or-one-to-one" | "relation-zero-or-one-to-one-or-many" | "relation-zero-or-one-to-only-one" | "relation-zero-or-one-to-zero-or-many" | "relation-zero-or-one-to-zero-or-one" | "set-all" | "set-center" | "set-center-right" | "set-left" | "set-left-center" | "set-left-right" | "set-none" | "set-right" | "airplane-clock" | "alarm" | "alarm-check" | "alarm-multiple" | "alarm-off" | "alarm-plus" | "alarm-snooze" | "archive-clock" | "archive-clock-outline" | "av-timer" | "bed-clock" | "book-clock" | "book-clock-outline" | "briefcase-clock" | "briefcase-clock-outline" | "bus-clock" | "calendar" | "calendar-arrow-left" | "calendar-arrow-right" | "calendar-badge" | "calendar-badge-outline" | "calendar-blank" | "calendar-blank-multiple" | "calendar-blank-outline" | "calendar-check" | "calendar-check-outline" | "calendar-clock" | "calendar-clock-outline" | "calendar-collapse-horizontal" | "calendar-collapse-horizontal-outline" | "calendar-cursor" | "calendar-cursor-outline" | "calendar-edit" | "calendar-edit-outline" | "calendar-end" | "calendar-end-outline" | "calendar-expand-horizontal" | "calendar-expand-horizontal-outline" | "calendar-export" | "calendar-export-outline" | "calendar-filter" | "calendar-filter-outline" | "calendar-heart" | "calendar-heart-outline" | "calendar-import" | "calendar-import-outline" | "calendar-lock" | "calendar-lock-open" | "calendar-lock-open-outline" | "calendar-lock-outline" | "calendar-minus" | "calendar-minus-outline" | "calendar-month" | "calendar-month-outline" | "calendar-multiple" | "calendar-multiple-check" | "calendar-multiselect" | "calendar-multiselect-outline" | "calendar-outline" | "calendar-plus" | "calendar-plus-outline" | "calendar-question" | "calendar-question-outline" | "calendar-range" | "calendar-range-outline" | "calendar-refresh" | "calendar-refresh-outline" | "calendar-remove" | "calendar-remove-outline" | "calendar-search" | "calendar-search-outline" | "calendar-star" | "calendar-star-four-points" | "calendar-star-outline" | "calendar-start" | "calendar-start-outline" | "calendar-sync" | "calendar-sync-outline" | "calendar-text" | "calendar-text-outline" | "calendar-today" | "calendar-today-outline" | "calendar-week" | "calendar-week-begin" | "calendar-week-begin-outline" | "calendar-week-outline" | "calendar-weekend" | "calendar-weekend-outline" | "camera-timer" | "clipboard-clock" | "clipboard-clock-outline" | "clipboard-text-clock" | "clipboard-text-clock-outline" | "clock" | "clock-check" | "clock-check-outline" | "clock-digital" | "clock-edit" | "clock-edit-outline" | "clock-end" | "clock-fast" | "clock-in" | "clock-minus" | "clock-minus-outline" | "clock-out" | "clock-outline" | "clock-plus" | "clock-plus-outline" | "clock-remove" | "clock-remove-outline" | "clock-star-four-points" | "clock-star-four-points-outline" | "clock-start" | "clock-time-eight" | "clock-time-eight-outline" | "clock-time-eleven" | "clock-time-eleven-outline" | "clock-time-five" | "clock-time-five-outline" | "clock-time-four" | "clock-time-four-outline" | "clock-time-nine" | "clock-time-nine-outline" | "clock-time-one" | "clock-time-one-outline" | "clock-time-seven" | "clock-time-seven-outline" | "clock-time-six" | "clock-time-six-outline" | "clock-time-ten" | "clock-time-ten-outline" | "clock-time-three" | "clock-time-three-outline" | "clock-time-twelve" | "clock-time-twelve-outline" | "clock-time-two" | "clock-time-two-outline" | "cookie-clock" | "cookie-clock-outline" | "delete-clock" | "delete-clock-outline" | "fan-clock" | "file-clock" | "file-clock-outline" | "folder-clock" | "folder-clock-outline" | "history" | "home-clock" | "home-clock-outline" | "hours-12" | "hours-24" | "lock-clock" | "map-clock" | "map-clock-outline" | "message-text-clock" | "message-text-clock-outline" | "progress-clock" | "routes-clock" | "send-clock" | "send-clock-outline" | "sort-calendar-ascending" | "sort-calendar-descending" | "sort-clock-ascending" | "sort-clock-ascending-outline" | "sort-clock-descending" | "sort-clock-descending-outline" | "store-clock-outline" | "sun-clock-outline" | "table-clock" | "timelapse" | "timeline-clock" | "timeline-clock-outline" | "timer-10" | "timer-3" | "timer-cancel" | "timer-cancel-outline" | "timer-check" | "timer-check-outline" | "timer-cog" | "timer-cog-outline" | "timer-edit" | "timer-edit-outline" | "timer-lock" | "timer-lock-open" | "timer-lock-open-outline" | "timer-lock-outline" | "timer-marker" | "timer-marker-outline" | "timer-minus" | "timer-minus-outline" | "timer-music" | "timer-music-outline" | "timer-off" | "timer-off-outline" | "timer-outline" | "timer-pause" | "timer-pause-outline" | "timer-play" | "timer-play-outline" | "timer-plus" | "timer-plus-outline" | "timer-refresh" | "timer-refresh-outline" | "timer-remove" | "timer-remove-outline" | "timer-sand" | "timer-sand-complete" | "timer-sand-empty" | "timer-sand-full" | "timer-sand-paused" | "timer-settings" | "timer-settings-outline" | "timer-star" | "timer-star-outline" | "timer-stop" | "timer-stop-outline" | "timer-sync" | "timer-sync-outline" | "timetable" | "update" | "web-clock" | "wrench-clock" | "wrench-clock-outline" | "ab-testing" | "api" | "api-off" | "application-array" | "application-array-outline" | "application-braces" | "application-braces-outline" | "application-brackets" | "application-brackets-outline" | "application-parentheses" | "application-parentheses-outline" | "application-variable" | "application-variable-outline" | "bash" | "code-array" | "code-block-braces" | "code-block-brackets" | "code-block-parentheses" | "code-block-tags" | "code-braces" | "code-braces-box" | "code-brackets" | "code-equal" | "code-greater-than" | "code-greater-than-or-equal" | "code-json" | "code-less-than" | "code-less-than-or-equal" | "code-not-equal" | "code-not-equal-variant" | "code-parentheses" | "code-parentheses-box" | "code-string" | "code-tags" | "code-tags-check" | "file-code" | "file-code-outline" | "folder-pound" | "folder-pound-outline" | "hexadecimal" | "identifier" | "math-norm" | "math-norm-box" | "source-branch" | "source-branch-check" | "source-branch-minus" | "source-branch-plus" | "source-branch-refresh" | "source-branch-remove" | "source-branch-sync" | "source-fork" | "source-merge" | "source-pull" | "source-repository" | "source-repository-multiple" | "translate-variant" | "variable" | "variable-box" | "camera-gopro" | "desktop-classic" | "desktop-tower" | "desktop-tower-monitor" | "disc-player" | "laptop" | "laptop-off" | "monitor" | "monitor-arrow-down" | "monitor-arrow-down-variant" | "monitor-dashboard" | "monitor-lock" | "monitor-multiple" | "monitor-off" | "monitor-screenshot" | "monitor-shimmer" | "monitor-small" | "monitor-speaker" | "monitor-speaker-off" | "monitor-star" | "projector" | "projector-off" | "projector-screen" | "radio-handheld" | "remote-tv" | "remote-tv-off" | "robot-vacuum" | "router-network-wireless" | "scanner" | "scanner-off" | "smoke-detector" | "tablet" | "tablet-dashboard" | "television" | "television-classic" | "television-classic-off" | "television-guide" | "television-off" | "television-pause" | "television-play" | "television-shimmer" | "television-stop" | "thermostat" | "thermostat-box" | "wall-fire" | "watch" | "watch-export" | "watch-export-variant" | "watch-import" | "watch-import-variant" | "watch-variant" | "watch-vibrate" | "watch-vibrate-off" | "artboard" | "brush" | "brush-outline" | "brush-variant" | "circle-opacity" | "draw" | "draw-pen" | "drawing" | "drawing-box" | "format-line-style" | "format-line-weight" | "fountain-pen" | "fountain-pen-tip" | "gesture" | "gradient-horizontal" | "gradient-vertical" | "grease-pencil" | "lead-pencil" | "math-compass" | "pen" | "pencil" | "pencil-box" | "pencil-box-outline" | "pencil-circle" | "pencil-circle-outline" | "pencil-outline" | "pencil-ruler" | "pencil-ruler-outline" | "ruler" | "ruler-square" | "square-opacity" | "water-opacity" | "airplane-edit" | "application-edit" | "application-edit-outline" | "archive-edit" | "archive-edit-outline" | "book-edit" | "book-edit-outline" | "briefcase-edit" | "briefcase-edit-outline" | "circle-edit-outline" | "clipboard-edit" | "clipboard-edit-outline" | "comment-edit" | "comment-edit-outline" | "content-save-edit" | "content-save-edit-outline" | "cookie-edit" | "cookie-edit-outline" | "data-matrix-edit" | "email-edit" | "email-edit-outline" | "file-document-edit" | "file-document-edit-outline" | "file-edit" | "file-edit-outline" | "folder-edit" | "folder-edit-outline" | "home-edit" | "home-edit-outline" | "human-edit" | "image-edit" | "image-edit-outline" | "layers-edit" | "monitor-edit" | "movie-edit" | "movie-edit-outline" | "movie-open-edit" | "movie-open-edit-outline" | "note-edit" | "note-edit-outline" | "notebook-edit" | "notebook-edit-outline" | "pencil-box-multiple" | "pencil-box-multiple-outline" | "playlist-edit" | "puzzle-edit" | "puzzle-edit-outline" | "qrcode-edit" | "rename" | "rename-box" | "rename-box-outline" | "rename-outline" | "shield-edit" | "shield-edit-outline" | "square-edit-outline" | "store-edit" | "store-edit-outline" | "storefront-edit" | "storefront-edit-outline" | "table-edit" | "text-box-edit" | "text-box-edit-outline" | "tooltip-edit" | "tooltip-edit-outline" | "vector-point-edit" | "vector-polyline-edit" | "vector-square-edit" | "view-dashboard-edit" | "view-dashboard-edit-outline" | "emoticon" | "emoticon-angry" | "emoticon-angry-outline" | "emoticon-confused" | "emoticon-confused-outline" | "emoticon-cool" | "emoticon-cool-outline" | "emoticon-cry" | "emoticon-cry-outline" | "emoticon-dead" | "emoticon-dead-outline" | "emoticon-devil" | "emoticon-devil-outline" | "emoticon-excited" | "emoticon-excited-outline" | "emoticon-frown" | "emoticon-frown-outline" | "emoticon-happy" | "emoticon-happy-outline" | "emoticon-kiss" | "emoticon-kiss-outline" | "emoticon-lol" | "emoticon-lol-outline" | "emoticon-neutral" | "emoticon-neutral-outline" | "emoticon-outline" | "emoticon-poop" | "emoticon-poop-outline" | "emoticon-sad" | "emoticon-sad-outline" | "emoticon-sick" | "emoticon-sick-outline" | "emoticon-tongue" | "emoticon-tongue-outline" | "emoticon-wink" | "emoticon-wink-outline" | "sticker-emoji" | "clipboard-file" | "clipboard-file-outline" | "file" | "file-arrow-left-right" | "file-arrow-left-right-outline" | "file-arrow-up-down" | "file-arrow-up-down-outline" | "file-cabinet" | "file-cad" | "file-cad-box" | "file-cancel" | "file-cancel-outline" | "file-certificate" | "file-certificate-outline" | "file-chart" | "file-chart-check" | "file-chart-check-outline" | "file-chart-outline" | "file-check" | "file-check-outline" | "file-cog" | "file-cog-outline" | "file-compare" | "file-delimited" | "file-delimited-outline" | "file-document" | "file-document-arrow-right" | "file-document-arrow-right-outline" | "file-document-check" | "file-document-check-outline" | "file-document-minus" | "file-document-minus-outline" | "file-document-multiple" | "file-document-multiple-outline" | "file-document-outline" | "file-document-plus" | "file-document-plus-outline" | "file-document-refresh" | "file-document-refresh-outline" | "file-document-remove" | "file-document-remove-outline" | "file-download" | "file-download-outline" | "file-excel" | "file-excel-box" | "file-excel-box-outline" | "file-excel-outline" | "file-export" | "file-export-outline" | "file-eye" | "file-eye-outline" | "file-find" | "file-find-outline" | "file-gif-box" | "file-hidden" | "file-image" | "file-image-marker" | "file-image-marker-outline" | "file-image-minus" | "file-image-minus-outline" | "file-image-outline" | "file-image-plus" | "file-image-plus-outline" | "file-image-remove" | "file-image-remove-outline" | "file-import" | "file-import-outline" | "file-jpg-box" | "file-key" | "file-key-outline" | "file-link" | "file-link-outline" | "file-lock" | "file-lock-open" | "file-lock-open-outline" | "file-lock-outline" | "file-marker" | "file-marker-outline" | "file-minus" | "file-minus-outline" | "file-move" | "file-move-outline" | "file-multiple" | "file-multiple-outline" | "file-music" | "file-music-outline" | "file-outline" | "file-pdf-box" | "file-percent" | "file-percent-outline" | "file-plus" | "file-plus-outline" | "file-png-box" | "file-powerpoint" | "file-powerpoint-box" | "file-powerpoint-box-outline" | "file-powerpoint-outline" | "file-presentation-box" | "file-question" | "file-question-outline" | "file-refresh" | "file-refresh-outline" | "file-remove" | "file-remove-outline" | "file-replace" | "file-replace-outline" | "file-restore" | "file-restore-outline" | "file-rotate-left" | "file-rotate-left-outline" | "file-rotate-right" | "file-rotate-right-outline" | "file-search" | "file-search-outline" | "file-send" | "file-send-outline" | "file-settings" | "file-settings-outline" | "file-star" | "file-star-four-points" | "file-star-four-points-outline" | "file-star-outline" | "file-swap" | "file-swap-outline" | "file-sync" | "file-sync-outline" | "file-table" | "file-table-box" | "file-table-box-multiple" | "file-table-box-multiple-outline" | "file-table-box-outline" | "file-table-outline" | "file-tree" | "file-tree-outline" | "file-undo" | "file-undo-outline" | "file-upload" | "file-upload-outline" | "file-video" | "file-video-outline" | "file-word" | "file-word-box" | "file-word-box-outline" | "file-word-outline" | "file-xml-box" | "folder" | "folder-arrow-down" | "folder-arrow-down-outline" | "folder-arrow-left" | "folder-arrow-left-outline" | "folder-arrow-left-right" | "folder-arrow-left-right-outline" | "folder-arrow-right" | "folder-arrow-right-outline" | "folder-arrow-up" | "folder-arrow-up-down" | "folder-arrow-up-down-outline" | "folder-arrow-up-outline" | "folder-cancel" | "folder-cancel-outline" | "folder-check" | "folder-check-outline" | "folder-cog" | "folder-cog-outline" | "folder-download" | "folder-download-outline" | "folder-eye" | "folder-eye-outline" | "folder-file" | "folder-file-outline" | "folder-heart" | "folder-heart-outline" | "folder-hidden" | "folder-home" | "folder-home-outline" | "folder-image" | "folder-information" | "folder-information-outline" | "folder-key" | "folder-key-network" | "folder-key-network-outline" | "folder-key-outline" | "folder-lock" | "folder-lock-open" | "folder-lock-open-outline" | "folder-lock-outline" | "folder-marker" | "folder-marker-outline" | "folder-minus" | "folder-minus-outline" | "folder-move" | "folder-move-outline" | "folder-multiple" | "folder-multiple-image" | "folder-multiple-outline" | "folder-multiple-plus" | "folder-multiple-plus-outline" | "folder-music" | "folder-music-outline" | "folder-network" | "folder-network-outline" | "folder-off" | "folder-off-outline" | "folder-open" | "folder-open-outline" | "folder-outline" | "folder-play" | "folder-play-outline" | "folder-plus" | "folder-plus-outline" | "folder-question" | "folder-question-outline" | "folder-refresh" | "folder-refresh-outline" | "folder-remove" | "folder-remove-outline" | "folder-search" | "folder-search-outline" | "folder-settings" | "folder-settings-outline" | "folder-star" | "folder-star-multiple" | "folder-star-multiple-outline" | "folder-star-outline" | "folder-swap" | "folder-swap-outline" | "folder-sync" | "folder-sync-outline" | "folder-table" | "folder-table-outline" | "folder-text" | "folder-text-outline" | "folder-upload" | "folder-upload-outline" | "folder-wrench" | "folder-wrench-outline" | "folder-zip" | "folder-zip-outline" | "text-box" | "text-box-check" | "text-box-check-outline" | "text-box-minus" | "text-box-minus-outline" | "text-box-multiple" | "text-box-multiple-outline" | "text-box-outline" | "text-box-plus" | "text-box-plus-outline" | "text-box-remove" | "text-box-remove-outline" | "text-box-search" | "text-box-search-outline" | "upload-circle-outline" | "zip-box" | "zip-box-outline" | "baguette" | "beer" | "beer-outline" | "blender" | "blender-outline" | "bottle-soda" | "bottle-soda-classic" | "bottle-soda-outline" | "bottle-wine" | "bottle-wine-outline" | "bowl" | "bowl-mix" | "bowl-mix-outline" | "bowl-outline" | "bread-slice" | "bread-slice-outline" | "cake" | "cake-layered" | "cake-variant" | "cake-variant-outline" | "candy" | "candy-off" | "candy-off-outline" | "candy-outline" | "candycane" | "cheese" | "cheese-off" | "chili-hot" | "chili-medium" | "chili-off" | "coffee" | "coffee-maker" | "coffee-maker-check" | "coffee-maker-check-outline" | "coffee-off" | "coffee-off-outline" | "coffee-outline" | "coffee-to-go" | "coffee-to-go-outline" | "cookie" | "cookie-check" | "cookie-check-outline" | "cookie-cog" | "cookie-cog-outline" | "cookie-lock" | "cookie-lock-outline" | "cookie-minus" | "cookie-minus-outline" | "cookie-off" | "cookie-off-outline" | "cookie-outline" | "cookie-plus" | "cookie-plus-outline" | "cookie-refresh" | "cookie-refresh-outline" | "cookie-remove" | "cookie-remove-outline" | "cookie-settings" | "cookie-settings-outline" | "cube-off-outline" | "cube-outline" | "cup" | "cup-off" | "cup-off-outline" | "cup-outline" | "cup-water" | "cupcake" | "egg-fried" | "fish-off" | "food" | "food-croissant" | "food-drumstick" | "food-drumstick-off" | "food-drumstick-off-outline" | "food-drumstick-outline" | "food-fork-drink" | "food-halal" | "food-hot-dog" | "food-kosher" | "food-off" | "food-off-outline" | "food-outline" | "food-steak" | "food-steak-off" | "food-takeout-box" | "food-takeout-box-outline" | "food-turkey" | "food-variant" | "food-variant-off" | "french-fries" | "fruit-pear" | "glass-cocktail" | "glass-cocktail-off" | "glass-flute" | "glass-fragile" | "glass-mug" | "glass-mug-off" | "glass-mug-variant" | "glass-mug-variant-off" | "glass-pint-outline" | "glass-stange" | "glass-tulip" | "glass-wine" | "grill" | "grill-outline" | "hamburger" | "hamburger-check" | "hamburger-minus" | "hamburger-off" | "hamburger-plus" | "hamburger-remove" | "ice-cream" | "ice-cream-off" | "ice-pop" | "keg" | "kettle" | "kettle-off" | "kettle-off-outline" | "kettle-outline" | "kettle-steam" | "kettle-steam-outline" | "leek" | "liquor" | "microwave" | "muffin" | "noodles" | "nutrition" | "pasta" | "pizza" | "popcorn" | "pot" | "pot-mix" | "pot-mix-outline" | "pot-outline" | "pot-steam" | "pot-steam-outline" | "pretzel" | "rice" | "sausage" | "sausage-off" | "shaker" | "shaker-outline" | "silverware" | "silverware-clean" | "silverware-fork" | "silverware-fork-knife" | "silverware-spoon" | "silverware-variant" | "soy-sauce" | "spoon-sugar" | "square-circle" | "stove" | "taco" | "tea" | "tea-outline" | "toaster-oven" | "button-cursor" | "button-pointer" | "card" | "card-outline" | "check" | "check-circle" | "check-circle-outline" | "checkbox-blank" | "checkbox-blank-badge" | "checkbox-blank-badge-outline" | "checkbox-blank-circle" | "checkbox-blank-circle-outline" | "checkbox-blank-off" | "checkbox-blank-off-outline" | "checkbox-blank-outline" | "checkbox-intermediate" | "checkbox-intermediate-variant" | "checkbox-marked" | "checkbox-marked-circle" | "checkbox-marked-circle-auto-outline" | "checkbox-marked-circle-minus-outline" | "checkbox-marked-circle-outline" | "checkbox-marked-circle-plus-outline" | "checkbox-marked-outline" | "checkbox-multiple-blank" | "checkbox-multiple-blank-circle" | "checkbox-multiple-blank-circle-outline" | "checkbox-multiple-blank-outline" | "checkbox-multiple-marked" | "checkbox-multiple-marked-circle" | "checkbox-multiple-marked-circle-outline" | "checkbox-multiple-marked-outline" | "checkbox-multiple-outline" | "checkbox-outline" | "close" | "close-box" | "close-box-multiple" | "close-box-multiple-outline" | "close-box-outline" | "close-circle" | "close-circle-multiple" | "close-circle-multiple-outline" | "close-circle-outline" | "form-dropdown" | "form-select" | "form-textarea" | "form-textbox" | "form-textbox-lock" | "form-textbox-password" | "gesture-tap-button" | "minus-box" | "minus-box-multiple" | "minus-box-multiple-outline" | "minus-box-outline" | "minus-circle" | "minus-circle-multiple" | "minus-circle-multiple-outline" | "minus-circle-outline" | "radiobox-blank" | "radiobox-indeterminate-variant" | "radiobox-marked" | "signature" | "signature-freehand" | "signature-image" | "signature-text" | "arrow-projectile" | "arrow-projectile-multiple" | "axe-battle" | "bomb" | "bomb-off" | "boomerang" | "bottle-tonic-plus" | "bottle-tonic-plus-outline" | "bottle-tonic-skull" | "bottle-tonic-skull-outline" | "bow-arrow" | "cards" | "cards-club" | "cards-diamond" | "cards-heart" | "cards-outline" | "cards-playing" | "cards-playing-club" | "cards-playing-club-multiple" | "cards-playing-club-multiple-outline" | "cards-playing-club-outline" | "cards-playing-diamond" | "cards-playing-diamond-multiple" | "cards-playing-diamond-multiple-outline" | "cards-playing-diamond-outline" | "cards-playing-heart" | "cards-playing-heart-multiple" | "cards-playing-heart-multiple-outline" | "cards-playing-heart-outline" | "cards-playing-outline" | "cards-playing-spade" | "cards-playing-spade-multiple" | "cards-playing-spade-multiple-outline" | "cards-playing-spade-outline" | "cards-spade" | "cards-spade-outline" | "cards-variant" | "checkerboard" | "chess-bishop" | "chess-king" | "chess-knight" | "chess-pawn" | "chess-queen" | "chess-rook" | "controller" | "controller-classic" | "controller-classic-outline" | "controller-off" | "crown-circle" | "crown-circle-outline" | "crystal-ball" | "dice-1" | "dice-1-outline" | "dice-2" | "dice-2-outline" | "dice-3" | "dice-3-outline" | "dice-4" | "dice-4-outline" | "dice-5" | "dice-5-outline" | "dice-6" | "dice-6-outline" | "dice-d10" | "dice-d10-outline" | "dice-d12" | "dice-d12-outline" | "dice-d20" | "dice-d20-outline" | "dice-d4" | "dice-d4-outline" | "dice-d6" | "dice-d6-outline" | "dice-d8" | "dice-d8-outline" | "dice-multiple" | "dice-multiple-outline" | "expansion-card" | "flask" | "flask-empty" | "flask-empty-outline" | "flask-outline" | "gamepad" | "gamepad-circle" | "gamepad-circle-down" | "gamepad-circle-left" | "gamepad-circle-outline" | "gamepad-circle-right" | "gamepad-circle-up" | "gamepad-down" | "gamepad-left" | "gamepad-outline" | "gamepad-right" | "gamepad-round" | "gamepad-round-down" | "gamepad-round-left" | "gamepad-round-outline" | "gamepad-round-right" | "gamepad-round-up" | "gamepad-square" | "gamepad-square-outline" | "gamepad-up" | "gamepad-variant" | "gamepad-variant-outline" | "ghost" | "ghost-off" | "ghost-off-outline" | "ghost-outline" | "heart" | "heart-half" | "heart-half-full" | "heart-half-outline" | "heart-outline" | "hololens" | "knife-military" | "lambda" | "mace" | "magic-staff" | "medal" | "microsoft-xbox-controller" | "microsoft-xbox-controller-menu" | "microsoft-xbox-controller-off" | "microsoft-xbox-controller-view" | "nintendo-game-boy" | "ocarina" | "one-up" | "pac-man" | "pokeball" | "poker-chip" | "puzzle" | "puzzle-check" | "puzzle-check-outline" | "puzzle-heart" | "puzzle-heart-outline" | "puzzle-minus" | "puzzle-minus-outline" | "puzzle-outline" | "puzzle-plus" | "puzzle-plus-outline" | "puzzle-remove" | "puzzle-remove-outline" | "puzzle-star" | "puzzle-star-outline" | "sack" | "script-outline" | "script-text" | "script-text-outline" | "shield" | "shield-cross" | "shield-cross-outline" | "shield-crown" | "shield-crown-outline" | "shield-outline" | "shield-sword" | "shield-sword-outline" | "skull" | "skull-crossbones" | "skull-crossbones-outline" | "skull-outline" | "space-invaders" | "spear" | "star-face" | "sword" | "sword-cross" | "tangram" | "tournament" | "treasure-chest" | "treasure-chest-outline" | "triforce" | "checkerboard-minus" | "checkerboard-plus" | "checkerboard-remove" | "compass" | "compass-off" | "compass-off-outline" | "compass-outline" | "crosshairs" | "crosshairs-gps" | "crosshairs-off" | "crosshairs-question" | "earth" | "earth-off" | "latitude" | "layers" | "layers-minus" | "layers-off" | "layers-off-outline" | "layers-outline" | "layers-plus" | "layers-remove" | "layers-search" | "layers-search-outline" | "longitude" | "magnify" | "magnify-expand" | "magnify-minus-outline" | "magnify-plus-outline" | "magnify-remove-outline" | "map-check" | "map-check-outline" | "map-legend" | "map-marker" | "map-marker-check" | "map-marker-check-outline" | "map-marker-circle" | "map-marker-distance" | "map-marker-down" | "map-marker-left" | "map-marker-left-outline" | "map-marker-minus" | "map-marker-minus-outline" | "map-marker-multiple" | "map-marker-multiple-outline" | "map-marker-off" | "map-marker-off-outline" | "map-marker-outline" | "map-marker-path" | "map-marker-plus" | "map-marker-plus-outline" | "map-marker-question" | "map-marker-question-outline" | "map-marker-radius" | "map-marker-radius-outline" | "map-marker-remove" | "map-marker-remove-outline" | "map-marker-remove-variant" | "map-marker-right" | "map-marker-right-outline" | "map-marker-up" | "map-minus" | "map-outline" | "map-plus" | "map-search" | "map-search-outline" | "table-large" | "table-large-plus" | "table-large-remove" | "vector-circle" | "vector-combine" | "vector-curve" | "vector-difference" | "vector-difference-ab" | "vector-difference-ba" | "vector-ellipse" | "vector-intersection" | "vector-line" | "vector-link" | "vector-point-select" | "vector-polygon" | "vector-polyline" | "vector-radius" | "vector-rectangle" | "vector-selection" | "vector-square" | "vector-triangle" | "vector-union" | "web-box" | "axe" | "bolt" | "box-cutter" | "bulldozer" | "circular-saw" | "dump-truck" | "excavator" | "factory" | "fire-extinguisher" | "hammer" | "hammer-screwdriver" | "hammer-sickle" | "hammer-wrench" | "hand-saw" | "ladder" | "mower" | "mower-bag" | "mower-bag-on" | "mower-on" | "nail" | "nut" | "pickaxe" | "pipe-wrench" | "pitchfork" | "pliers" | "progress-wrench" | "rake" | "razor-double-edge" | "razor-single-edge" | "rivet" | "robot-industrial" | "robot-industrial-outline" | "robot-mower" | "robot-mower-outline" | "ruler-square-compass" | "saw-blade" | "screw-flat-top" | "screw-lag" | "screw-machine-flat-top" | "screw-machine-round-top" | "screw-round-top" | "screwdriver" | "set-square" | "shovel-off" | "sickle" | "spade" | "spirit-level" | "tape-measure" | "toolbox" | "toolbox-outline" | "tools" | "wheel-barrow" | "wrench" | "wrench-check" | "wrench-check-outline" | "wrench-cog" | "wrench-cog-outline" | "wrench-outline" | "content-cut" | "hair-dryer" | "hair-dryer-outline" | "lipstick" | "lotion" | "lotion-outline" | "medication" | "medication-outline" | "balloon" | "bed" | "bed-double" | "bed-double-outline" | "bed-empty" | "bed-king" | "bed-king-outline" | "bed-outline" | "bed-queen" | "bed-queen-outline" | "bed-single" | "bed-single-outline" | "candelabra" | "candelabra-fire" | "candle" | "coffin" | "cross" | "cross-celtic" | "egg-easter" | "firework" | "gift" | "gift-off" | "gift-off-outline" | "gift-open" | "gift-open-outline" | "gift-outline" | "grave-stone" | "halloween" | "hexagram" | "hexagram-outline" | "menorah" | "menorah-fire" | "ornament" | "ornament-variant" | "party-popper" | "pumpkin" | "snowflake-variant" | "snowman" | "spider-web" | "stocking" | "teddy-bear" | "weather-night" | "air-filter" | "air-humidifier" | "air-humidifier-off" | "air-purifier" | "air-purifier-off" | "alarm-light" | "alarm-light-off" | "alarm-light-off-outline" | "alarm-light-outline" | "alarm-panel" | "alarm-panel-outline" | "amplifier" | "arrow-oscillating" | "arrow-oscillating-off" | "awning" | "awning-outline" | "balcony" | "bathtub" | "bathtub-outline" | "bell" | "bell-outline" | "blinds" | "blinds-horizontal" | "blinds-horizontal-closed" | "blinds-open" | "blinds-vertical" | "blinds-vertical-closed" | "boom-gate" | "boom-gate-outline" | "boom-gate-up" | "boom-gate-up-outline" | "boombox" | "brightness-7" | "buffet" | "bulkhead-light" | "bunk-bed" | "bunk-bed-outline" | "cabin-a-frame" | "camera" | "cast" | "cast-connected" | "cast-off" | "cast-variant" | "cctv" | "cctv-off" | "ceiling-fan" | "ceiling-fan-light" | "ceiling-light" | "ceiling-light-multiple" | "ceiling-light-multiple-outline" | "ceiling-light-outline" | "chair-rolling" | "chandelier" | "coach-lamp" | "coach-lamp-variant" | "coffee-maker-outline" | "connection" | "countertop" | "countertop-outline" | "cradle" | "cradle-outline" | "cupboard" | "cupboard-outline" | "curtains" | "curtains-closed" | "desk-lamp" | "desk-lamp-off" | "desk-lamp-on" | "dishwasher" | "dishwasher-off" | "door" | "door-closed" | "door-closed-cancel" | "door-closed-lock" | "door-open" | "door-sliding" | "door-sliding-lock" | "door-sliding-open" | "doorbell" | "doorbell-video" | "dresser" | "dresser-outline" | "exit-run" | "fan-chevron-down" | "fan-chevron-up" | "fan-minus" | "fan-plus" | "fan-remove" | "fan-speed-1" | "fan-speed-2" | "fan-speed-3" | "faucet" | "faucet-variant" | "fire" | "fire-circle" | "fire-off" | "fireplace" | "fireplace-off" | "flash-triangle" | "flash-triangle-outline" | "floor-lamp" | "floor-lamp-dual" | "floor-lamp-dual-outline" | "floor-lamp-outline" | "floor-lamp-torchiere" | "floor-lamp-torchiere-outline" | "floor-lamp-torchiere-variant" | "floor-lamp-torchiere-variant-outline" | "floor-plan" | "fridge" | "fridge-bottom" | "fridge-industrial" | "fridge-industrial-off" | "fridge-industrial-off-outline" | "fridge-industrial-outline" | "fridge-off" | "fridge-off-outline" | "fridge-outline" | "fridge-top" | "fridge-variant" | "fridge-variant-off" | "fridge-variant-off-outline" | "fridge-variant-outline" | "garage" | "garage-lock" | "garage-open" | "garage-open-variant" | "garage-variant" | "garage-variant-lock" | "gas-burner" | "gate" | "gate-arrow-left" | "gate-arrow-right" | "gate-open" | "generator-mobile" | "generator-portable" | "generator-stationary" | "globe-light" | "globe-light-outline" | "hdmi-port" | "heat-pump" | "heat-pump-outline" | "heating-coil" | "home" | "home-analytics" | "home-automation" | "home-circle" | "home-circle-outline" | "home-city" | "home-city-outline" | "home-export-outline" | "home-flood" | "home-floor-0" | "home-floor-1" | "home-floor-2" | "home-floor-3" | "home-floor-a" | "home-floor-b" | "home-floor-g" | "home-floor-l" | "home-floor-negative-1" | "home-group" | "home-group-minus" | "home-group-plus" | "home-group-remove" | "home-heart" | "home-import-outline" | "home-lightbulb" | "home-lightbulb-outline" | "home-lightning-bolt" | "home-lightning-bolt-outline" | "home-lock" | "home-lock-open" | "home-map-marker" | "home-minus" | "home-minus-outline" | "home-modern" | "home-off" | "home-off-outline" | "home-outline" | "home-percent-outline" | "home-plus" | "home-plus-outline" | "home-remove" | "home-remove-outline" | "home-roof" | "home-search" | "home-search-outline" | "home-sound-in" | "home-sound-in-outline" | "home-sound-out" | "home-sound-out-outline" | "home-switch" | "home-switch-outline" | "home-thermometer" | "home-thermometer-outline" | "home-variant" | "home-variant-outline" | "hvac" | "hvac-off" | "image-frame" | "lamp" | "lamp-outline" | "lamps" | "lamps-outline" | "lava-lamp" | "led-off" | "led-on" | "led-outline" | "led-strip" | "led-strip-variant" | "led-strip-variant-off" | "led-variant-off" | "led-variant-on" | "led-variant-outline" | "light-flood-down" | "light-flood-up" | "light-recessed" | "light-switch" | "light-switch-off" | "lightbulb" | "lightbulb-auto" | "lightbulb-auto-outline" | "lightbulb-cfl" | "lightbulb-cfl-off" | "lightbulb-cfl-spiral" | "lightbulb-cfl-spiral-off" | "lightbulb-fluorescent-tube" | "lightbulb-fluorescent-tube-outline" | "lightbulb-group" | "lightbulb-group-off" | "lightbulb-group-off-outline" | "lightbulb-group-outline" | "lightbulb-multiple" | "lightbulb-multiple-off" | "lightbulb-multiple-off-outline" | "lightbulb-multiple-outline" | "lightbulb-night" | "lightbulb-night-outline" | "lightbulb-off" | "lightbulb-off-outline" | "lightbulb-on" | "lightbulb-on-10" | "lightbulb-on-20" | "lightbulb-on-30" | "lightbulb-on-40" | "lightbulb-on-50" | "lightbulb-on-60" | "lightbulb-on-70" | "lightbulb-on-80" | "lightbulb-on-90" | "lightbulb-on-outline" | "lightbulb-outline" | "lightbulb-question" | "lightbulb-question-outline" | "lightbulb-spot" | "lightbulb-spot-off" | "lightbulb-variant" | "lightbulb-variant-outline" | "lightning-bolt" | "lightning-bolt-circle" | "lightning-bolt-outline" | "location-enter" | "location-exit" | "lock-open-variant" | "lock-open-variant-outline" | "lock-smart" | "meter-electric" | "meter-electric-outline" | "meter-gas" | "meter-gas-outline" | "microwave-off" | "mirror" | "mirror-rectangle" | "mirror-variant" | "molecule-co" | "molecule-co2" | "motion-sensor" | "motion-sensor-off" | "nfc-variant" | "nfc-variant-off" | "outdoor-lamp" | "paper-roll" | "paper-roll-outline" | "patio-heater" | "pause" | "ph" | "pipe" | "pipe-disconnected" | "pipe-leak" | "pipe-valve" | "play" | "play-pause" | "pool" | "pool-thermometer" | "post-lamp" | "power" | "power-plug" | "power-plug-off" | "power-plug-off-outline" | "power-plug-outline" | "power-socket" | "power-socket-au" | "power-socket-ch" | "power-socket-de" | "power-socket-eu" | "power-socket-fr" | "power-socket-jp" | "power-socket-uk" | "power-socket-us" | "printer" | "printer-3d" | "projector-screen-off" | "projector-screen-off-outline" | "projector-screen-outline" | "projector-screen-variant" | "projector-screen-variant-off" | "projector-screen-variant-off-outline" | "projector-screen-variant-outline" | "radiator" | "radiator-disabled" | "radiator-off" | "record" | "record-player" | "record-rec" | "remote" | "robot" | "robot-vacuum-off" | "robot-vacuum-variant" | "robot-vacuum-variant-off" | "roller-shade" | "roller-shade-closed" | "rug" | "run-fast" | "scale-bathroom" | "seat" | "seat-outline" | "set-top-box" | "shield-home" | "shield-home-outline" | "shield-lock" | "shield-lock-open" | "shield-lock-open-outline" | "shield-lock-outline" | "shield-moon" | "shield-moon-outline" | "shower" | "shower-head" | "skip-backward" | "skip-forward" | "skip-next" | "skip-previous" | "smoke-detector-off" | "smoke-detector-off-outline" | "smoke-detector-outline" | "smoke-detector-variant" | "smoke-detector-variant-off" | "snowflake-thermometer" | "sofa" | "sofa-outline" | "sofa-single" | "sofa-single-outline" | "solar-panel" | "solar-panel-large" | "solar-power" | "solar-power-variant" | "solar-power-variant-outline" | "soundbar" | "spotlight" | "spotlight-beam" | "string-lights" | "string-lights-off" | "sun-clock" | "sun-compass" | "sun-snowflake" | "sun-snowflake-variant" | "sun-thermometer" | "sun-thermometer-outline" | "sun-wireless" | "sun-wireless-outline" | "table-chair" | "table-furniture" | "television-ambient-light" | "theater" | "thermometer-auto" | "thermometer-check" | "thermometer-chevron-down" | "thermometer-chevron-up" | "thermometer-high" | "thermometer-lines" | "thermometer-low" | "thermometer-minus" | "thermometer-off" | "thermometer-plus" | "thermometer-water" | "thermostat-auto" | "thermostat-box-auto" | "toaster" | "toaster-off" | "toggle-switch-variant" | "toggle-switch-variant-off" | "toilet" | "track-light" | "transmission-tower" | "transmission-tower-export" | "transmission-tower-import" | "transmission-tower-off" | "tumble-dryer" | "tumble-dryer-off" | "vacuum" | "vacuum-outline" | "valve" | "valve-closed" | "valve-open" | "vanity-light" | "video-off" | "wall-sconce" | "wall-sconce-flat" | "wall-sconce-flat-outline" | "wall-sconce-flat-variant" | "wall-sconce-flat-variant-outline" | "wall-sconce-outline" | "wall-sconce-round" | "wall-sconce-round-outline" | "wall-sconce-round-variant" | "wall-sconce-round-variant-outline" | "wardrobe" | "wardrobe-outline" | "washing-machine" | "washing-machine-off" | "water-boiler" | "water-boiler-auto" | "water-boiler-off" | "water-circle" | "water-outline" | "water-percent" | "water-thermometer" | "water-thermometer-outline" | "waterfall" | "webcam" | "wind-power" | "wind-power-outline" | "wind-turbine" | "wind-turbine-check" | "window-closed" | "window-closed-variant" | "window-open" | "window-open-variant" | "window-shutter" | "window-shutter-auto" | "window-shutter-cog" | "window-shutter-open" | "window-shutter-settings" | "archive-lock" | "archive-lock-open" | "archive-lock-open-outline" | "archive-lock-outline" | "attachment-lock" | "axis-lock" | "book-lock" | "book-lock-open" | "book-lock-open-outline" | "book-lock-outline" | "camera-lock" | "camera-lock-outline" | "download-lock" | "download-lock-outline" | "email-lock" | "email-lock-outline" | "image-lock" | "image-lock-outline" | "link-lock" | "lock-check" | "lock-check-outline" | "lock-minus" | "lock-minus-outline" | "lock-off" | "lock-off-outline" | "lock-open-check" | "lock-open-check-outline" | "lock-open-minus" | "lock-open-minus-outline" | "lock-open-plus" | "lock-open-plus-outline" | "lock-open-remove" | "lock-open-remove-outline" | "lock-plus" | "lock-plus-outline" | "lock-question" | "lock-remove" | "lock-remove-outline" | "lock-reset" | "message-lock" | "message-lock-outline" | "message-text-lock" | "message-text-lock-outline" | "paperclip-lock" | "pen-lock" | "pencil-lock" | "pencil-lock-outline" | "play-box-lock" | "play-box-lock-open" | "play-box-lock-open-outline" | "play-box-lock-outline" | "plus-lock" | "plus-lock-open" | "screen-rotation-lock" | "send-lock" | "send-lock-outline" | "sort-variant-lock" | "sort-variant-lock-open" | "table-lock" | "trackpad-lock" | "upload-lock" | "upload-lock-outline" | "wifi-lock" | "wifi-lock-open" | "wifi-strength-1-lock" | "wifi-strength-1-lock-open" | "wifi-strength-2-lock" | "wifi-strength-2-lock-open" | "wifi-strength-3-lock" | "wifi-strength-3-lock-open" | "wifi-strength-4-lock" | "wifi-strength-4-lock-open" | "wifi-strength-lock-open-outline" | "wifi-strength-lock-outline" | "abacus" | "angle-acute" | "angle-obtuse" | "angle-right" | "approximately-equal" | "approximately-equal-box" | "calculator" | "calculator-variant" | "calculator-variant-outline" | "chart-arc" | "chart-areaspline" | "chart-areaspline-variant" | "chart-bar" | "chart-bar-stacked" | "chart-bell-curve" | "chart-bell-curve-cumulative" | "chart-box" | "chart-box-multiple" | "chart-box-multiple-outline" | "chart-box-outline" | "chart-box-plus-outline" | "chart-bubble" | "chart-donut" | "chart-donut-variant" | "chart-gantt" | "chart-histogram" | "chart-line" | "chart-line-stacked" | "chart-line-variant" | "chart-multiline" | "chart-multiple" | "chart-pie" | "chart-pie-outline" | "chart-ppf" | "chart-sankey" | "chart-sankey-variant" | "chart-scatter-plot" | "chart-scatter-plot-hexbin" | "chart-timeline" | "chart-timeline-variant" | "chart-timeline-variant-shimmer" | "chart-tree" | "chart-waterfall" | "circle-small" | "decimal" | "decimal-comma" | "decimal-comma-decrease" | "decimal-comma-increase" | "decimal-decrease" | "decimal-increase" | "diameter" | "diameter-outline" | "diameter-variant" | "division" | "division-box" | "equal" | "equal-box" | "exclamation" | "exponent" | "exponent-box" | "format-superscript" | "function-variant" | "greater-than" | "greater-than-or-equal" | "infinity" | "less-than" | "less-than-or-equal" | "math-cos" | "math-integral" | "math-integral-box" | "math-log" | "math-sin" | "math-tan" | "minus" | "multiplication" | "multiplication-box" | "not-equal-variant" | "percent" | "percent-box" | "percent-box-outline" | "percent-circle" | "percent-circle-outline" | "percent-outline" | "perspective-less" | "perspective-more" | "pi" | "pi-box" | "plus" | "plus-box" | "plus-box-outline" | "plus-minus" | "plus-minus-box" | "plus-minus-variant" | "plus-thick" | "radius" | "radius-outline" | "sigma" | "skew-less" | "skew-more" | "slash-forward" | "slash-forward-box" | "square-root" | "tally-mark-1" | "tally-mark-2" | "tally-mark-3" | "tally-mark-4" | "tally-mark-5" | "texture-box" | "allergy" | "ambulance" | "bacteria" | "bacteria-outline" | "blood-bag" | "brain" | "cannabis" | "clipboard-pulse" | "clipboard-pulse-outline" | "diabetes" | "doctor" | "ear-hearing" | "ear-hearing-loop" | "ear-hearing-off" | "hand-wash" | "hand-wash-outline" | "hand-water" | "heart-flash" | "heart-off" | "heart-off-outline" | "heart-pulse" | "hospital" | "hospital-box" | "hospital-box-outline" | "hospital-building" | "hospital-marker" | "human-baby-changing-table" | "human-cane" | "human-male-height" | "human-male-height-variant" | "human-walker" | "human-wheelchair" | "human-white-cane" | "iv-bag" | "lotion-plus" | "lotion-plus-outline" | "lungs" | "medical-bag" | "medical-cotton-swab" | "mortar-pestle-plus" | "mother-nurse" | "needle" | "needle-off" | "pill" | "pill-multiple" | "pill-off" | "prescription" | "radiology-box" | "radiology-box-outline" | "reproduction" | "skull-scan" | "skull-scan-outline" | "social-distance-2-meters" | "social-distance-6-feet" | "stethoscope" | "stomach" | "tooth" | "tooth-outline" | "toothbrush" | "toothbrush-electric" | "toothbrush-paste" | "truck-plus" | "truck-plus-outline" | "virus" | "virus-outline" | "wheelchair" | "wheelchair-accessibility" | "archive-music" | "archive-music-outline" | "book-music-outline" | "bookmark-music" | "bookmark-music-outline" | "cassette" | "disc" | "eight-track" | "guitar-acoustic" | "guitar-electric" | "guitar-pick" | "guitar-pick-outline" | "instrument-triangle" | "metronome" | "metronome-tick" | "microphone" | "microphone-off" | "microphone-outline" | "microphone-variant" | "microphone-variant-off" | "midi-port" | "music-accidental-double-flat" | "music-accidental-double-sharp" | "music-accidental-flat" | "music-accidental-natural" | "music-accidental-sharp" | "music-box-multiple" | "music-box-multiple-outline" | "music-clef-alto" | "music-clef-bass" | "music-clef-treble" | "music-note-eighth-dotted" | "music-note-half-dotted" | "music-note-off-outline" | "music-note-outline" | "music-note-quarter-dotted" | "music-note-sixteenth-dotted" | "music-note-whole-dotted" | "music-rest-eighth" | "music-rest-half" | "music-rest-quarter" | "music-rest-sixteenth" | "music-rest-whole" | "piano" | "piano-off" | "playlist-music" | "playlist-music-outline" | "saxophone" | "trumpet" | "violin" | "cactus" | "clover" | "clover-outline" | "feather" | "hexagon-multiple-outline" | "image-filter-hdr" | "image-filter-hdr-outline" | "image-filter-vintage" | "ladybug" | "landslide" | "landslide-outline" | "leaf-maple-off" | "nature-outline" | "palm-tree" | "spa" | "spa-outline" | "terrain" | "tsunami" | "volcano" | "volcano-outline" | "waves-arrow-left" | "waves-arrow-right" | "waves-arrow-up" | "airplane" | "airplane-marker" | "archive-marker" | "archive-marker-outline" | "book-marker" | "book-marker-outline" | "bus" | "bus-marker" | "bus-stop" | "bus-stop-covered" | "bus-stop-uncovered" | "camera-marker" | "camera-marker-outline" | "compass-rose" | "earth-arrow-right" | "earth-box" | "earth-box-minus" | "earth-box-off" | "earth-box-plus" | "earth-box-remove" | "earth-minus" | "earth-plus" | "earth-remove" | "ferry" | "hail" | "image-marker" | "image-marker-outline" | "map-marker-star" | "map-marker-star-outline" | "menu-close" | "navigation" | "navigation-outline" | "navigation-variant" | "navigation-variant-outline" | "office-building-marker" | "office-building-marker-outline" | "select-marker" | "select-multiple-marker" | "selection-marker" | "selection-multiple-marker" | "store-marker" | "store-marker-outline" | "taxi" | "toy-brick-marker" | "toy-brick-marker-outline" | "train" | "tram" | "transit-connection" | "transit-connection-variant" | "transit-detour" | "transit-transfer" | "video-marker" | "video-marker-outline" | "wifi-marker" | "alarm-bell" | "bell-badge" | "bell-badge-outline" | "bell-cancel" | "bell-cancel-outline" | "bell-check" | "bell-check-outline" | "bell-circle" | "bell-circle-outline" | "bell-cog" | "bell-cog-outline" | "bell-minus" | "bell-minus-outline" | "bell-off" | "bell-off-outline" | "bell-plus" | "bell-plus-outline" | "bell-remove" | "bell-remove-outline" | "bell-ring" | "bell-ring-outline" | "bell-sleep" | "bell-sleep-outline" | "message-badge" | "message-badge-outline" | "notification-clear-all" | "square-rounded-badge" | "square-rounded-badge-outline" | "baby" | "baby-bottle" | "baby-bottle-outline" | "baby-buggy" | "baby-buggy-off" | "baby-carriage" | "baby-carriage-off" | "baby-face" | "baby-face-outline" | "biathlon" | "dance-ballroom" | "dance-pole" | "diving" | "face-man" | "face-man-outline" | "face-man-profile" | "face-woman" | "face-woman-outline" | "face-woman-profile" | "family-tree" | "handball" | "hiking" | "human" | "human-child" | "human-dolly" | "human-female" | "human-female-boy" | "human-female-dance" | "human-female-female" | "human-female-female-child" | "human-female-girl" | "human-greeting" | "human-greeting-variant" | "human-handsdown" | "human-handsup" | "human-male" | "human-male-board" | "human-male-board-poll" | "human-male-boy" | "human-male-child" | "human-male-female" | "human-male-female-child" | "human-male-girl" | "human-male-male" | "human-male-male-child" | "human-non-binary" | "human-pregnant" | "human-queue" | "human-scooter" | "kabaddi" | "karate" | "kayaking" | "meditation" | "mother-heart" | "rowing" | "run" | "skateboarding" | "ski" | "ski-cross-country" | "ski-water" | "sledding" | "snowboard" | "walk" | "weight-lifter" | "auto-fix" | "camera-burst" | "camera-control" | "camera-document" | "camera-document-off" | "camera-enhance" | "camera-enhance-outline" | "camera-flip" | "camera-flip-outline" | "camera-front" | "camera-front-variant" | "camera-image" | "camera-iris" | "camera-lock-open" | "camera-lock-open-outline" | "camera-metering-center" | "camera-metering-matrix" | "camera-metering-partial" | "camera-metering-spot" | "camera-off" | "camera-off-outline" | "camera-outline" | "camera-party-mode" | "camera-plus" | "camera-plus-outline" | "camera-rear" | "camera-rear-variant" | "camera-retake" | "camera-retake-outline" | "camera-switch" | "camera-switch-outline" | "camera-wireless" | "camera-wireless-outline" | "face-recognition" | "film" | "focus-auto" | "focus-field" | "focus-field-horizontal" | "focus-field-vertical" | "image-auto-adjust" | "image-filter-black-white" | "image-filter-center-focus" | "image-filter-center-focus-strong" | "image-filter-center-focus-strong-outline" | "image-filter-center-focus-weak" | "image-filter-frames" | "image-filter-none" | "image-filter-tilt-shift" | "image-multiple-outline" | "image-refresh" | "image-refresh-outline" | "image-remove-outline" | "image-sync" | "image-sync-outline" | "orbit-variant" | "panorama" | "panorama-horizontal" | "panorama-horizontal-outline" | "panorama-outline" | "panorama-sphere" | "panorama-sphere-outline" | "panorama-variant" | "panorama-variant-outline" | "panorama-vertical" | "panorama-vertical-outline" | "panorama-wide-angle" | "panorama-wide-angle-outline" | "raw" | "raw-off" | "white-balance-auto" | "white-balance-incandescent" | "white-balance-iridescent" | "white-balance-sunny" | "airport" | "beach" | "bridge" | "castle" | "church" | "church-outline" | "city" | "city-switch" | "city-variant" | "city-variant-outline" | "domain" | "eiffel-tower" | "island" | "library" | "library-outline" | "mosque-outline" | "office-building" | "office-building-cog" | "office-building-cog-outline" | "office-building-outline" | "parking" | "pier" | "pier-crane" | "police-station" | "stadium" | "stadium-outline" | "stadium-variant" | "store" | "store-24-hour" | "store-check" | "store-check-outline" | "store-clock" | "store-cog" | "store-cog-outline" | "store-minus" | "store-minus-outline" | "store-off" | "store-off-outline" | "store-outline" | "store-plus" | "store-plus-outline" | "store-remove" | "store-remove-outline" | "store-search" | "store-search-outline" | "store-settings" | "store-settings-outline" | "storefront" | "storefront-outline" | "synagogue" | "synagogue-outline" | "temple-buddhist" | "temple-buddhist-outline" | "temple-hindu" | "temple-hindu-outline" | "town-hall" | "warehouse" | "printer-3d-nozzle" | "printer-3d-nozzle-heat" | "printer-3d-nozzle-heat-outline" | "printer-3d-nozzle-off" | "printer-3d-nozzle-off-outline" | "printer-3d-nozzle-outline" | "printer-3d-off" | "printer-check" | "printer-eye" | "printer-off" | "printer-off-outline" | "printer-outline" | "printer-pos" | "printer-pos-cancel" | "printer-pos-cancel-outline" | "printer-pos-check" | "printer-pos-check-outline" | "printer-pos-cog" | "printer-pos-cog-outline" | "printer-pos-edit" | "printer-pos-edit-outline" | "printer-pos-minus" | "printer-pos-minus-outline" | "printer-pos-network" | "printer-pos-network-outline" | "printer-pos-off" | "printer-pos-off-outline" | "printer-pos-outline" | "printer-pos-pause" | "printer-pos-pause-outline" | "printer-pos-play" | "printer-pos-play-outline" | "printer-pos-plus" | "printer-pos-plus-outline" | "printer-pos-refresh" | "printer-pos-refresh-outline" | "printer-pos-remove" | "printer-pos-remove-outline" | "printer-pos-star" | "printer-pos-star-outline" | "printer-pos-stop" | "printer-pos-stop-outline" | "printer-pos-sync" | "printer-pos-sync-outline" | "printer-pos-wrench" | "printer-pos-wrench-outline" | "printer-search" | "printer-settings" | "printer-wireless" | "book-cross" | "cross-bolnisi" | "cross-outline" | "dharmachakra" | "khanda" | "mosque" | "om" | "star-crescent" | "star-david" | "atom" | "atom-variant" | "aurora" | "beaker" | "beaker-check" | "beaker-check-outline" | "beaker-minus" | "beaker-minus-outline" | "beaker-outline" | "beaker-plus" | "beaker-plus-outline" | "beaker-question" | "beaker-question-outline" | "beaker-remove" | "beaker-remove-outline" | "biohazard" | "bottle-tonic" | "bottle-tonic-outline" | "dna" | "eyedropper-minus" | "eyedropper-off" | "eyedropper-plus" | "eyedropper-remove" | "flask-empty-minus" | "flask-empty-minus-outline" | "flask-empty-plus" | "flask-empty-plus-outline" | "flask-empty-remove" | "flask-empty-remove-outline" | "flask-minus" | "flask-minus-outline" | "flask-plus" | "flask-plus-outline" | "flask-remove" | "flask-remove-outline" | "flask-round-bottom" | "flask-round-bottom-empty" | "flask-round-bottom-empty-outline" | "flask-round-bottom-outline" | "microscope" | "molecule" | "orbit" | "periodic-table" | "radioactive" | "radioactive-circle" | "radioactive-circle-outline" | "radioactive-off" | "rocket" | "rocket-launch" | "rocket-launch-outline" | "rocket-outline" | "safety-goggles" | "scale-balance" | "scale-off" | "telescope" | "test-tube" | "test-tube-empty" | "test-tube-off" | "virus-off" | "virus-off-outline" | "airplane-cog" | "airplane-settings" | "application-cog" | "application-cog-outline" | "application-settings" | "application-settings-outline" | "archive-cog" | "archive-cog-outline" | "archive-settings" | "archive-settings-outline" | "bluetooth-settings" | "book-cog" | "book-cog-outline" | "book-settings" | "book-settings-outline" | "card-bulleted-settings" | "card-bulleted-settings-outline" | "cog" | "cog-box" | "cog-clockwise" | "cog-counterclockwise" | "cog-off" | "cog-off-outline" | "cog-outline" | "cog-pause" | "cog-pause-outline" | "cog-play" | "cog-play-outline" | "cog-refresh" | "cog-refresh-outline" | "cog-stop" | "cog-stop-outline" | "cog-sync" | "cog-sync-outline" | "cog-transfer" | "cog-transfer-outline" | "cogs" | "content-save-cog" | "content-save-cog-outline" | "content-save-settings" | "content-save-settings-outline" | "eye-settings" | "eye-settings-outline" | "filter-cog" | "filter-cog-outline" | "filter-settings" | "filter-settings-outline" | "head-cog" | "head-cog-outline" | "heart-cog" | "heart-cog-outline" | "heart-settings" | "heart-settings-outline" | "information" | "information-box" | "information-box-outline" | "information-outline" | "information-slab-box" | "information-slab-box-outline" | "information-slab-circle" | "information-slab-circle-outline" | "information-slab-symbol" | "information-symbol" | "information-variant-box" | "information-variant-box-outline" | "information-variant-circle" | "information-variant-circle-outline" | "keyboard-settings" | "keyboard-settings-outline" | "message-cog" | "message-cog-outline" | "message-settings" | "message-settings-outline" | "microphone-settings" | "movie-cog" | "movie-cog-outline" | "movie-open-cog" | "movie-open-cog-outline" | "movie-open-settings" | "movie-open-settings-outline" | "movie-settings" | "movie-settings-outline" | "network-strength-4-cog" | "power-settings" | "router-wireless-settings" | "settings-helper" | "star-cog" | "star-cog-outline" | "star-settings" | "star-settings-outline" | "table-cog" | "table-settings" | "wifi-cog" | "wifi-settings" | "circle-double" | "circle-half" | "circle-half-full" | "circle-outline" | "cone" | "cone-off" | "cube" | "cylinder" | "cylinder-off" | "decagram" | "decagram-outline" | "ellipse-outline" | "hexagon" | "hexagon-multiple" | "hexagon-outline" | "octagon" | "octagon-outline" | "octagram" | "octagram-edit" | "octagram-edit-outline" | "octagram-minus" | "octagram-minus-outline" | "octagram-outline" | "octagram-plus" | "octahedron" | "octahedron-off" | "pentagon" | "pentagon-outline" | "pyramid" | "pyramid-off" | "rectangle" | "rectangle-outline" | "rhombus" | "rhombus-medium" | "rhombus-medium-outline" | "rhombus-outline" | "rhombus-split" | "rhombus-split-outline" | "shape" | "shape-circle-plus" | "shape-outline" | "shape-plus" | "shape-plus-outline" | "shape-polygon-plus" | "shape-rectangle-plus" | "shape-square-plus" | "sphere" | "sphere-off" | "square" | "square-medium" | "square-medium-outline" | "square-outline" | "star" | "star-check" | "star-check-outline" | "star-circle" | "star-circle-outline" | "star-four-points" | "star-four-points-box" | "star-four-points-box-outline" | "star-four-points-circle" | "star-four-points-circle-outline" | "star-four-points-outline" | "star-four-points-small" | "star-half" | "star-minus" | "star-minus-outline" | "star-outline" | "star-plus" | "star-plus-outline" | "star-remove" | "star-remove-outline" | "star-three-points" | "star-three-points-outline" | "triangle" | "triangle-down" | "triangle-down-outline" | "triangle-outline" | "triangle-small-down" | "triangle-small-up" | "basket" | "basket-check" | "basket-check-outline" | "basket-fill" | "basket-minus" | "basket-minus-outline" | "basket-off" | "basket-off-outline" | "basket-outline" | "basket-plus" | "basket-plus-outline" | "basket-remove" | "basket-remove-outline" | "basket-unfill" | "brightness-percent" | "cart" | "cart-arrow-down" | "cart-arrow-right" | "cart-arrow-up" | "cart-check" | "cart-heart" | "cart-minus" | "cart-off" | "cart-outline" | "cart-percent" | "cart-plus" | "cart-remove" | "cart-variant" | "sale" | "sale-outline" | "shopping" | "shopping-music" | "shopping-outline" | "shopping-search" | "shopping-search-outline" | "atv" | "badminton" | "baseball" | "baseball-bat" | "baseball-diamond" | "baseball-diamond-outline" | "baseball-outline" | "basketball" | "basketball-hoop" | "basketball-hoop-outline" | "bicycle" | "bicycle-basket" | "bicycle-cargo" | "bicycle-penny-farthing" | "bike" | "bike-fast" | "bike-pedal" | "bike-pedal-clipless" | "bike-pedal-mountain" | "billiards" | "billiards-rack" | "bowling" | "boxing-glove" | "bullseye" | "bullseye-arrow" | "carabiner" | "cricket" | "curling" | "diving-flippers" | "diving-scuba" | "diving-scuba-mask" | "diving-snorkel" | "dumbbell" | "fencing" | "flag-checkered" | "football" | "football-australian" | "football-helmet" | "go-kart" | "golf" | "golf-cart" | "golf-tee" | "gymnastics" | "hand-cycle" | "hockey-puck" | "hockey-sticks" | "jump-rope" | "kettlebell" | "kite" | "kite-outline" | "medal-outline" | "mixed-martial-arts" | "motorbike" | "paragliding" | "podium" | "podium-bronze" | "podium-gold" | "podium-silver" | "polo" | "racing-helmet" | "racquetball" | "roller-skate" | "roller-skate-off" | "rollerblade" | "rollerblade-off" | "rugby" | "sail-boat" | "scoreboard" | "scoreboard-outline" | "skate" | "skate-off" | "skateboard" | "snowmobile" | "snowshoeing" | "soccer" | "soccer-field" | "strategy" | "swim" | "table-tennis" | "tennis" | "tennis-ball" | "tennis-ball-outline" | "torch" | "trophy" | "trophy-award" | "trophy-broken" | "trophy-outline" | "trophy-variant" | "trophy-variant-outline" | "unicycle" | "volleyball" | "water-polo" | "whistle" | "whistle-outline" | "yoga" | "align-horizontal-distribute" | "align-vertical-distribute" | "border-all" | "border-all-variant" | "border-bottom" | "border-bottom-variant" | "border-horizontal" | "border-inside" | "border-left" | "border-left-variant" | "border-none" | "border-none-variant" | "border-outside" | "border-radius" | "border-right" | "border-right-variant" | "border-style" | "border-top" | "border-top-variant" | "border-vertical" | "caps-lock" | "content-copy" | "content-paste" | "format-align-bottom" | "format-align-center" | "format-align-justify" | "format-align-left" | "format-align-middle" | "format-align-right" | "format-align-top" | "format-annotation-minus" | "format-annotation-plus" | "format-bold" | "format-clear" | "format-columns" | "format-float-center" | "format-float-left" | "format-float-none" | "format-float-right" | "format-font" | "format-font-size-decrease" | "format-font-size-increase" | "format-header-1" | "format-header-2" | "format-header-3" | "format-header-4" | "format-header-5" | "format-header-6" | "format-header-decrease" | "format-header-equal" | "format-header-increase" | "format-header-pound" | "format-horizontal-align-center" | "format-horizontal-align-left" | "format-horizontal-align-right" | "format-indent-decrease" | "format-indent-increase" | "format-italic" | "format-letter-case" | "format-letter-case-lower" | "format-letter-case-upper" | "format-letter-ends-with" | "format-letter-matches" | "format-letter-spacing" | "format-letter-spacing-variant" | "format-letter-starts-with" | "format-line-height" | "format-line-spacing" | "format-list-bulleted" | "format-list-bulleted-square" | "format-list-bulleted-triangle" | "format-list-bulleted-type" | "format-list-checkbox" | "format-list-checks" | "format-list-group" | "format-list-group-plus" | "format-list-numbered" | "format-list-numbered-rtl" | "format-list-text" | "format-overline" | "format-page-break" | "format-page-split" | "format-paragraph" | "format-paragraph-spacing" | "format-pilcrow" | "format-pilcrow-arrow-left" | "format-pilcrow-arrow-right" | "format-quote-close" | "format-quote-close-outline" | "format-quote-open" | "format-quote-open-outline" | "format-rotate-90" | "format-section" | "format-size" | "format-strikethrough" | "format-strikethrough-variant" | "format-subscript" | "format-text" | "format-text-rotation-angle-down" | "format-text-rotation-angle-up" | "format-text-rotation-down" | "format-text-rotation-down-vertical" | "format-text-rotation-none" | "format-text-rotation-up" | "format-text-rotation-vertical" | "format-text-variant" | "format-text-variant-outline" | "format-text-wrapping-clip" | "format-text-wrapping-overflow" | "format-text-wrapping-wrap" | "format-textbox" | "format-title" | "format-underline" | "format-underline-wavy" | "format-vertical-align-bottom" | "format-vertical-align-center" | "format-vertical-align-top" | "format-wrap-inline" | "format-wrap-square" | "format-wrap-tight" | "format-wrap-top-bottom" | "furigana-horizontal" | "furigana-vertical" | "list-status" | "marker-cancel" | "order-alphabetical-ascending" | "order-alphabetical-descending" | "order-bool-ascending" | "order-bool-ascending-variant" | "order-bool-descending" | "order-bool-descending-variant" | "order-numeric-ascending" | "order-numeric-descending" | "sort-alphabetical-ascending" | "sort-alphabetical-ascending-variant" | "sort-alphabetical-descending" | "sort-alphabetical-descending-variant" | "sort-alphabetical-variant" | "sort-ascending" | "sort-bool-ascending" | "sort-bool-ascending-variant" | "sort-bool-descending" | "sort-bool-descending-variant" | "sort-descending" | "sort-numeric-ascending" | "sort-numeric-ascending-variant" | "sort-numeric-descending" | "sort-numeric-descending-variant" | "sort-numeric-variant" | "sort-reverse-variant" | "sort-variant" | "sort-variant-off" | "sort-variant-remove" | "table-border" | "table-column" | "table-column-plus-after" | "table-column-plus-before" | "table-column-remove" | "table-column-width" | "table-merge-cells" | "table-pivot" | "table-plus" | "table-remove" | "table-row" | "table-row-height" | "table-row-plus-after" | "table-row-plus-before" | "table-row-remove" | "table-split-cell" | "tooltip" | "tooltip-check" | "tooltip-check-outline" | "tooltip-image" | "tooltip-image-outline" | "tooltip-minus" | "tooltip-minus-outline" | "tooltip-outline" | "tooltip-plus" | "tooltip-plus-outline" | "tooltip-question" | "tooltip-question-outline" | "tooltip-remove" | "tooltip-remove-outline" | "tooltip-text" | "tooltip-text-outline" | "airballoon" | "airballoon-outline" | "airplane-check" | "airplane-landing" | "airplane-minus" | "airplane-off" | "airplane-plus" | "airplane-remove" | "airplane-search" | "airplane-takeoff" | "bag-carry-on" | "bag-carry-on-check" | "bag-carry-on-off" | "bag-checked" | "bag-personal" | "bag-personal-off" | "bag-personal-off-outline" | "bag-personal-outline" | "bag-suitcase" | "bag-suitcase-off" | "bag-suitcase-off-outline" | "bag-suitcase-outline" | "drone" | "helicopter" | "parachute" | "parachute-outline" | "plane-car" | "plane-train" | "shield-airplane" | "shield-airplane-outline" | "turbine" | "bicycle-electric" | "elevator" | "elevator-down" | "elevator-passenger" | "elevator-passenger-off" | "elevator-passenger-off-outline" | "elevator-passenger-outline" | "elevator-up" | "escalator" | "escalator-down" | "escalator-up" | "gondola" | "moped" | "railroad-light" | "rickshaw" | "rickshaw-electric" | "scooter" | "scooter-electric" | "stairs" | "stairs-down" | "stairs-up" | "subway" | "subway-variant" | "train-car" | "train-car-autorack" | "train-car-box" | "train-car-box-full" | "train-car-box-open" | "train-car-caboose" | "train-car-centerbeam" | "train-car-centerbeam-full" | "train-car-container" | "train-car-flatbed" | "train-car-flatbed-car" | "train-car-flatbed-tank" | "train-car-gondola" | "train-car-gondola-full" | "train-car-hopper" | "train-car-hopper-covered" | "train-car-hopper-full" | "train-car-intermodal" | "train-car-passenger" | "train-car-passenger-door" | "train-car-passenger-door-open" | "train-car-passenger-variant" | "train-car-tank" | "train-variant" | "tram-side" | "transit-connection-horizontal" | "transit-skip" | "truck-off-road" | "truck-off-road-off" | "tunnel" | "tunnel-outline" | "boom-gate-arrow-down" | "boom-gate-arrow-down-outline" | "boom-gate-arrow-up" | "boom-gate-arrow-up-outline" | "bus-articulated-end" | "bus-articulated-front" | "bus-double-decker" | "bus-electric" | "bus-multiple" | "bus-school" | "bus-side" | "cards-diamond-outline" | "fire-truck" | "forklift" | "highway" | "jeepney" | "moped-electric" | "moped-electric-outline" | "moped-outline" | "motorbike-electric" | "motorbike-off" | "road" | "road-variant" | "rv-truck" | "sign-caution" | "sign-yield" | "tanker-truck" | "tow-truck" | "traffic-cone" | "traffic-light" | "traffic-light-outline" | "truck" | "truck-cargo-container" | "truck-check" | "truck-check-outline" | "truck-delivery" | "truck-delivery-outline" | "truck-fast" | "truck-fast-outline" | "truck-minus" | "truck-minus-outline" | "truck-outline" | "truck-remove" | "truck-remove-outline" | "truck-snowflake" | "truck-trailer" | "van-passenger" | "van-utility" | "lifebuoy" | "sail-boat-sink" | "ship-wheel" | "wave" | "vector-bezier" | "vector-circle-variant" | "vector-point" | "vector-point-minus" | "vector-point-plus" | "vector-polygon-variant" | "vector-square-close" | "vector-square-minus" | "vector-square-open" | "vector-square-plus" | "vector-square-remove" | "camcorder" | "camcorder-off" | "filmstrip" | "filmstrip-box-multiple" | "filmstrip-off" | "high-definition" | "high-definition-box" | "message-video" | "motion-pause" | "motion-pause-outline" | "motion-play" | "motion-play-outline" | "movie" | "movie-check" | "movie-check-outline" | "movie-filter" | "movie-filter-outline" | "movie-minus" | "movie-minus-outline" | "movie-off" | "movie-off-outline" | "movie-open" | "movie-open-check" | "movie-open-check-outline" | "movie-open-minus" | "movie-open-minus-outline" | "movie-open-off" | "movie-open-off-outline" | "movie-open-outline" | "movie-open-play" | "movie-open-play-outline" | "movie-open-plus" | "movie-open-plus-outline" | "movie-open-remove" | "movie-open-remove-outline" | "movie-open-star" | "movie-open-star-outline" | "movie-outline" | "movie-play" | "movie-play-outline" | "movie-plus" | "movie-plus-outline" | "movie-remove" | "movie-remove-outline" | "movie-roll" | "movie-search" | "movie-search-outline" | "movie-star" | "movie-star-outline" | "quality-high" | "standard-definition" | "ultra-high-definition" | "vhs" | "video-2d" | "video-3d" | "video-3d-off" | "video-3d-variant" | "video-4k-box" | "video-box" | "video-box-off" | "video-check" | "video-check-outline" | "video-high-definition" | "video-image" | "video-input-antenna" | "video-input-component" | "video-input-hdmi" | "video-input-scart" | "video-input-svideo" | "video-minus" | "video-minus-outline" | "video-off-outline" | "video-outline" | "video-plus" | "video-plus-outline" | "video-stabilization" | "video-standard-definition" | "video-switch" | "video-switch-outline" | "video-vintage" | "video-wireless" | "video-wireless-outline" | "apps" | "view-agenda" | "view-agenda-outline" | "view-array" | "view-array-outline" | "view-carousel" | "view-carousel-outline" | "view-column" | "view-column-outline" | "view-comfy" | "view-comfy-outline" | "view-compact" | "view-compact-outline" | "view-dashboard" | "view-dashboard-outline" | "view-dashboard-variant" | "view-dashboard-variant-outline" | "view-day" | "view-day-outline" | "view-gallery" | "view-gallery-outline" | "view-grid" | "view-grid-outline" | "view-grid-plus" | "view-grid-plus-outline" | "view-headline" | "view-list" | "view-list-outline" | "view-module" | "view-module-outline" | "view-parallel" | "view-parallel-outline" | "view-quilt" | "view-quilt-outline" | "view-sequential" | "view-sequential-outline" | "view-split-horizontal" | "view-split-vertical" | "view-stream" | "view-stream-outline" | "view-week" | "view-week-outline" | "broadcast" | "broadcast-off" | "flash" | "flash-outline" | "moon-first-quarter" | "moon-full" | "moon-last-quarter" | "moon-new" | "moon-waning-crescent" | "moon-waning-gibbous" | "moon-waxing-crescent" | "moon-waxing-gibbous" | "shield-sun" | "shield-sun-outline" | "snowflake-check" | "snowflake-melt" | "snowflake-off" | "sun-angle" | "sun-angle-outline" | "temperature-celsius" | "temperature-fahrenheit" | "temperature-kelvin" | "theme-light-dark" | "umbrella" | "umbrella-beach" | "umbrella-beach-outline" | "umbrella-closed" | "umbrella-closed-outline" | "umbrella-closed-variant" | "umbrella-outline" | "weather-lightning-rainy" | "weather-moonset" | "weather-moonset-down" | "weather-moonset-up" | "weather-partly-lightning" | "weather-partly-rainy" | "weather-partly-snowy" | "weather-partly-snowy-rainy" | "weather-snowy" | "weather-snowy-heavy" | "weather-snowy-rainy" | "weather-sunny" | "weather-sunny-off" | "weather-sunset" | "weather-sunset-down" | "weather-sunset-up" | "weather-tornado" | "weather-windy" | "weather-windy-variant" | "windsock">): import("react").JSX.Element;
|
|
7459
7459
|
displayName: string;
|
|
7460
7460
|
};
|
|
7461
7461
|
export {};
|