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
|
@@ -1603,7 +1603,7 @@ declare const fluent_emoji_high_contrastIconNames: {
|
|
|
1603
1603
|
};
|
|
1604
1604
|
export type FluentEmojiHighContrastIconName = keyof typeof fluent_emoji_high_contrastIconNames;
|
|
1605
1605
|
export declare const FluentEmojiHighContrast: {
|
|
1606
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"scroll" | "link" | "radio" | "key" | "anchor" | "label" | "alien" | "bookmark" | "briefcase" | "broom" | "bucket" | "clipboard" | "copyright" | "crown" | "eye" | "ferris-wheel" | "flashlight" | "fleur-de-lis" | "fountain" | "handshake" | "hook" | "keyboard" | "magnet" | "mouse" | "newspaper" | "ninja" | "notebook" | "package" | "paperclip" | "purse" | "ribbon" | "ring" | "satellite" | "school" | "seal" | "slot-machine" | "tent" | "ticket" | "yin-yang" | "carrot" | "cow" | "egg" | "horse" | "mushroom" | "pig" | "tractor" | "turkey" | "bat" | "bird" | "bone" | "bug" | "butterfly" | "cat" | "dog" | "dolphin" | "donkey" | "duck" | "elephant" | "fish" | "jellyfish" | "kangaroo" | "koala" | "owl" | "panda" | "penguin" | "rabbit" | "shark" | "snail" | "snake" | "spider" | "turtle" | "unicorn" | "battery" | "snowflake" | "thermometer" | "bank" | "credit-card" | "receipt" | "glasses" | "sunglasses" | "cloud" | "calendar" | "laptop" | "television" | "watch" | "fountain-pen" | "pen" | "pencil" | "file-cabinet" | "candy" | "cookie" | "cupcake" | "french-fries" | "hamburger" | "ice-cream" | "pizza" | "popcorn" | "pretzel" | "taco" | "bomb" | "boomerang" | "chess-pawn" | "crystal-ball" | "ghost" | "shield" | "skull" | "compass" | "axe" | "factory" | "fire-extinguisher" | "hammer" | "ladder" | "screwdriver" | "toolbox" | "wrench" | "lipstick" | "balloon" | "bed" | "candle" | "coffin" | "menorah" | "party-popper" | "snowman" | "spider-web" | "teddy-bear" | "bathtub" | "bell" | "camera" | "door" | "fire" | "mirror" | "printer" | "robot" | "seat" | "shower" | "toilet" | "abacus" | "infinity" | "minus" | "plus" | "ambulance" | "brain" | "hospital" | "lungs" | "pill" | "stethoscope" | "tooth" | "toothbrush" | "microphone" | "saxophone" | "trumpet" | "violin" | "cactus" | "feather" | "palm-tree" | "volcano" | "airplane" | "bus" | "bus-stop" | "ferry" | "taxi" | "train" | "tram" | "baby" | "baby-bottle" | "castle" | "church" | "office-building" | "stadium" | "synagogue" | "khanda" | "mosque" | "om" | "biohazard" | "dna" | "microscope" | "radioactive" | "rocket" | "telescope" | "test-tube" | "information" | "star" | "basket" | "badminton" | "baseball" | "basketball" | "bicycle" | "bowling" | "boxing-glove" | "bullseye" | "cricket" | "kite" | "roller-skate" | "skateboard" | "tennis" | "trophy" | "volleyball" | "helicopter" | "parachute" | "elevator" | "umbrella" | "divide" | "envelope" | "light-bulb" | "megaphone" | "musical-note" | "puzzle-piece" | "scissors" | "shopping-cart" | "sparkles" | "sun" | "video-camera" | "window" | "alarm-clock" | "amphora" | "backpack" | "baggage-claim" | "banana" | "bubbles" | "cigarette" | "construction" | "croissant" | "droplet" | "drum" | "ear" | "footprints" | "graduation-cap" | "guitar" | "handbag" | "hotel" | "house" | "joystick" | "leafy-green" | "lollipop" | "luggage" | "mountain" | "paintbrush" | "person-standing" | "rainbow" | "rat" | "roller-coaster" | "rose" | "sailboat" | "sandwich" | "ship" | "shrimp" | "sparkle" | "sunrise" | "sunset" | "syringe" | "thumbs-down" | "thumbs-up" | "tornado" | "worm" | "bar-chart" | "avocado" | "books" | "bread" | "bubble-tea" | "christmas-tree" | "coin" | "comet" | "curly-loop" | "deer" | "dumpling" | "heart-exclamation" | "joker" | "lemon" | "man" | "melon" | "pick" | "ping-pong" | "razor" | "registered" | "rosette" | "salt" | "seedling" | "speedboat" | "stopwatch" | "teapot" | "wheel" | "woman" | "wood" | "zzz" | "currency-exchange" | "fuel-pump" | "gear" | "houses" | "person" | "person-walking" | "telephone" | "computer-mouse" | "floppy-disk" | "jar" | "mosquito" | "person-biking" | "person-running" | "person-swimming" | "spoon" | "dove" | "dragon" | "frog" | "otter" | "motorcycle" | "wine-glass" | "kaaba" | "place-of-worship" | "socks" | "bacon" | "chair" | "soap" | "restroom" | "crutch" | "pager" | "x-ray" | "hamsa" | "star-and-crescent" | "star-of-david" | "child" | "locked" | "magic-wand" | "radio-button" | "unlocked" | "strawberry" | "warning" | "delivery-truck" | "fog" | "stop-sign" | "american-football" | "musical-notes" | "crayon" | "cucumber" | "eagle" | "fox" | "metro" | "ram" | "rhinoceros" | "yarn" | "blossom" | "broccoli" | "fly" | "hugging-face" | "waffle" | "camping" | "artist" | "money-bag" | "cooking" | "shaved-ice" | "boy" | "brick" | "cyclone" | "foggy" | "folded-hands" | "girl" | "potted-plant" | "waving-hand" | "monorail" | "birthday-cake" | "open-book" | "soccer-ball" | "wolf" | "scarf" | "white-flag" | "headphone" | "victory-hand" | "accordion" | "aries" | "bison" | "burrito" | "cinema" | "coconut" | "dagger" | "dvd" | "flamingo" | "gemini" | "goat" | "ice" | "leo" | "lime" | "lotus" | "mango" | "octopus" | "peacock" | "raccoon" | "racing-car" | "sponge" | "squid" | "sushi" | "tangerine" | "tomato" | "top-hat" | "dizzy" | "down-arrow" | "female-sign" | "left-arrow" | "male-sign" | "no-entry" | "right-arrow" | "station" | "up-arrow" | "pear" | "shopping-bags" | "t-shirt" | "chicken" | "desktop-computer" | "balance-scale" | "locomotive" | "ewe" | "ant" | "ox" | "alien-monster" | "antenna-bars" | "artist-palette" | "astonished-face" | "automobile" | "banjo" | "beer-mug" | "billed-cap" | "bow-and-arrow" | "broken-heart" | "building-construction" | "cat-face" | "cherries" | "cherry-blossom" | "chestnut" | "clapper-board" | "closed-book" | "confetti-ball" | "cooked-rice" | "cow-face" | "crab" | "crescent-moon" | "cup-with-straw" | "deciduous-tree" | "desert-island" | "dog-face" | "dragon-face" | "dress" | "drop-of-blood" | "evergreen-tree" | "expressionless-face" | "face-screaming-in-fear" | "face-with-head-bandage" | "face-with-medical-mask" | "face-with-tears-of-joy" | "file-folder" | "film-frames" | "flying-saucer" | "fork-and-knife" | "four-leaf-clover" | "game-die" | "gem-stone" | "glowing-star" | "grapes" | "heavy-dollar-sign" | "herb" | "hibiscus" | "high-heeled-shoe" | "high-speed-train" | "horse-face" | "hot-beverage" | "input-numbers" | "jeans" | "keycap-asterisk" | "light-rail" | "loudly-crying-face" | "memo" | "microbe" | "mobile-phone" | "money-mouth-face" | "monkey-face" | "mouse-face" | "mouth" | "movie-camera" | "musical-keyboard" | "musical-score" | "nerd-face" | "neutral-face" | "onion" | "page-facing-up" | "peach" | "petri-dish" | "pig-face" | "pile-of-poo" | "pineapple" | "placard" | "poultry-leg" | "pushpin" | "rabbit-face" | "railway-car" | "raised-back-of-hand" | "raised-hand" | "red-apple" | "roasted-sweet-potato" | "round-pushpin" | "satellite-antenna" | "sauropod" | "shamrock" | "shinto-shrine" | "shortcake" | "shorts" | "sleeping-face" | "slightly-frowning-face" | "slightly-smiling-face" | "smirking-face" | "snow-capped-mountain" | "soft-ice-cream" | "speech-balloon" | "spouting-whale" | "steaming-bowl" | "straight-ruler" | "sunflower" | "suspension-railway" | "swan" | "t-rex" | "thinking-face" | "tiger-face" | "triangular-ruler" | "trolleybus" | "umbrella-on-ground" | "upside-down-face" | "video-game" | "watermelon" | "wilted-flower" | "winking-face" | "wireless" | "womans-hat" | "writing-hand" | "zipper-mouth-face" | "_1st-place-medal" | "_2nd-place-medal" | "_3rd-place-medal" | "admission-tickets" | "carp-streamer" | "circus-tent" | "cricket-game" | "field-hockey" | "fireworks" | "fishing-pole" | "flag-in-hole" | "goal-net" | "horse-racing" | "ice-hockey" | "ice-skate" | "jack-o-lantern" | "japanese-dolls" | "martial-arts-uniform" | "military-medal" | "moon-viewing-ceremony" | "performing-arts" | "person-bouncing-ball" | "person-cartwheeling" | "person-golfing" | "person-juggling" | "person-lifting-weights" | "person-mountain-biking" | "person-playing-water-polo" | "person-rowing-boat" | "person-surfing" | "pine-decoration" | "pool-8-ball" | "reminder-ribbon" | "rugby-football" | "running-shirt" | "skier" | "skis" | "snowboarder" | "sparkler" | "sports-medal" | "tanabata-tree" | "wind-chime" | "wrapped-gift" | "baguette-bread" | "bento-box" | "bottle-with-popping-cork" | "cheese-wedge" | "chocolate-bar" | "clinking-beer-mugs" | "clinking-glasses" | "cocktail-glass" | "curry-rice" | "custard" | "dango" | "doughnut" | "ear-of-corn" | "eggplant" | "fish-cake-with-swirl" | "fork-and-knife-with-plate" | "fried-shrimp" | "glass-of-milk" | "green-apple" | "green-salad" | "honey-pot" | "hot-dog" | "hot-pepper" | "kiwi-fruit" | "meat-on-bone" | "oden" | "pancakes" | "peanuts" | "pot-of-food" | "potato" | "rice-ball" | "rice-cracker" | "sake" | "shallow-pan-of-food" | "spaghetti" | "stuffed-flatbread" | "teacup-without-handle" | "tropical-drink" | "tumbler-glass" | "baby-chick" | "blowfish" | "boar" | "bouquet" | "camel" | "chipmunk" | "cloud-with-lightning" | "cloud-with-lightning-and-rain" | "cloud-with-rain" | "cloud-with-snow" | "collision" | "crocodile" | "dashing-away" | "fallen-leaf" | "first-quarter-moon" | "first-quarter-moon-face" | "front-facing-baby-chick" | "full-moon" | "full-moon-face" | "gorilla" | "hatching-chick" | "hear-no-evil-monkey" | "high-voltage" | "honeybee" | "lady-beetle" | "last-quarter-moon" | "last-quarter-moon-face" | "leaf-fluttering-in-wind" | "leopard" | "lizard" | "maple-leaf" | "monkey" | "new-moon" | "new-moon-face" | "paw-prints" | "pig-nose" | "poodle" | "rooster" | "scorpion" | "see-no-evil-monkey" | "sheaf-of-rice" | "snowman-without-snow" | "speak-no-evil-monkey" | "spiral-shell" | "sun-behind-cloud" | "sun-behind-large-cloud" | "sun-behind-rain-cloud" | "sun-behind-small-cloud" | "sun-with-face" | "sweat-droplets" | "tiger" | "tropical-fish" | "tulip" | "two-hump-camel" | "umbrella-with-rain-drops" | "waning-crescent-moon" | "waning-gibbous-moon" | "water-buffalo" | "water-wave" | "waxing-crescent-moon" | "waxing-gibbous-moon" | "whale" | "wind-face" | "alembic" | "ballot-box-with-ballot" | "barber-pole" | "bellhop-bell" | "bikini" | "black-nib" | "blue-book" | "bookmark-tabs" | "camera-with-flash" | "card-file-box" | "card-index" | "card-index-dividers" | "chains" | "chart-decreasing" | "chart-increasing" | "clamp" | "closed-mailbox-with-lowered-flag" | "closed-mailbox-with-raised-flag" | "clutch-bag" | "computer-disk" | "control-knobs" | "couch-and-lamp" | "crossed-swords" | "dollar-banknote" | "e-mail" | "electric-plug" | "envelope-with-arrow" | "euro-banknote" | "fax-machine" | "film-projector" | "framed-picture" | "funeral-urn" | "green-book" | "hammer-and-pick" | "hammer-and-wrench" | "hole" | "hourglass-done" | "hourglass-not-done" | "inbox-tray" | "incoming-envelope" | "kimono" | "kitchen-knife" | "ledger" | "level-slider" | "linked-paperclips" | "locked-with-key" | "locked-with-pen" | "love-letter" | "magnifying-glass-tilted-left" | "magnifying-glass-tilted-right" | "mantelpiece-clock" | "mobile-phone-with-arrow" | "money-with-wings" | "necktie" | "notebook-with-decorative-cover" | "nut-and-bolt" | "oil-drum" | "old-key" | "open-file-folder" | "open-mailbox-with-lowered-flag" | "open-mailbox-with-raised-flag" | "optical-disk" | "orange-book" | "outbox-tray" | "page-with-curl" | "person-in-bed" | "person-taking-bath" | "postal-horn" | "postbox" | "pound-banknote" | "prayer-beads" | "red-paper-lantern" | "rolled-up-newspaper" | "spiral-calendar" | "spiral-notepad" | "studio-microphone" | "tear-off-calendar" | "telephone-receiver" | "timer-clock" | "trackball" | "videocassette" | "wastebasket" | "womans-clothes" | "yen-banknote" | "angry-face" | "angry-face-with-horns" | "anguished-face" | "anxious-face-with-sweat" | "baby-angel" | "backhand-index-pointing-down" | "backhand-index-pointing-left" | "backhand-index-pointing-right" | "backhand-index-pointing-up" | "beaming-face-with-smiling-eyes" | "bust-in-silhouette" | "busts-in-silhouette" | "call-me-hand" | "clapping-hands" | "closed-umbrella" | "clown-face" | "confounded-face" | "confused-face" | "construction-worker" | "cowboy-hat-face" | "crossed-fingers" | "crying-face" | "detective" | "disappointed-face" | "downcast-face-with-sweat" | "drooling-face" | "eyes" | "face-blowing-a-kiss" | "face-savoring-food" | "face-with-open-mouth" | "face-with-rolling-eyes" | "face-with-steam-from-nose" | "face-with-thermometer" | "face-with-tongue" | "face-without-mouth" | "fearful-face" | "flexed-biceps" | "flushed-face" | "frowning-face" | "frowning-face-with-open-mouth" | "goblin" | "grimacing-face" | "grinning-face" | "grinning-face-with-big-eyes" | "grinning-face-with-smiling-eyes" | "grinning-face-with-sweat" | "grinning-squinting-face" | "guard" | "hand-with-fingers-splayed" | "hushed-face" | "index-pointing-up" | "kiss-mark" | "kissing-face" | "kissing-face-with-closed-eyes" | "kissing-face-with-smiling-eyes" | "left-facing-fist" | "lying-face" | "man-dancing" | "man-in-tuxedo" | "mans-shoe" | "middle-finger" | "mrs-claus" | "nail-polish" | "nauseated-face" | "nose" | "ogre" | "ok-hand" | "old-man" | "old-woman" | "oncoming-fist" | "open-hands" | "pensive-face" | "persevering-face" | "person-bowing" | "person-facepalming" | "person-frowning" | "person-gesturing-no" | "person-gesturing-ok" | "person-getting-haircut" | "person-getting-massage" | "person-pouting" | "person-raising-hand" | "person-shrugging" | "person-tipping-hand" | "person-wearing-turban" | "police-officer" | "pouting-face" | "pregnant-woman" | "prince" | "princess" | "raised-fist" | "raising-hands" | "relieved-face" | "rescue-workers-helmet" | "right-facing-fist" | "rolling-on-the-floor-laughing" | "running-shoe" | "sad-but-relieved-face" | "santa-claus" | "selfie" | "sign-of-the-horns" | "skull-and-crossbones" | "sleepy-face" | "smiling-face" | "smiling-face-with-halo" | "smiling-face-with-heart-eyes" | "smiling-face-with-horns" | "smiling-face-with-smiling-eyes" | "smiling-face-with-sunglasses" | "sneezing-face" | "speaking-head" | "squinting-face-with-tongue" | "tired-face" | "tongue" | "unamused-face" | "vulcan-salute" | "weary-face" | "winking-face-with-tongue" | "woman-dancing" | "womans-boot" | "womans-sandal" | "worried-face" | "anger-symbol" | "aquarius" | "atm-sign" | "atom-symbol" | "baby-symbol" | "back-arrow" | "beating-heart" | "bell-with-slash" | "black-circle" | "black-heart" | "black-large-square" | "black-medium-small-square" | "black-medium-square" | "black-small-square" | "black-square-button" | "blue-circle" | "blue-heart" | "bright-button" | "cancer" | "capricorn" | "chart-increasing-with-yen" | "children-crossing" | "circled-m" | "cl-button" | "clockwise-vertical-arrows" | "club-suit" | "cool-button" | "counterclockwise-arrows-button" | "cross-mark" | "cross-mark-button" | "customs" | "diamond-suit" | "diamond-with-a-dot" | "dim-button" | "dotted-six-pointed-star" | "double-curly-loop" | "double-exclamation-mark" | "down-left-arrow" | "down-right-arrow" | "downwards-button" | "eight-oclock" | "eight-pointed-star" | "eight-spoked-asterisk" | "eight-thirty" | "eject-button" | "eleven-oclock" | "eleven-thirty" | "end-arrow" | "exclamation-question-mark" | "eye-in-speech-bubble" | "fast-down-button" | "fast-forward-button" | "fast-reverse-button" | "fast-up-button" | "five-oclock" | "five-thirty" | "flower-playing-cards" | "four-oclock" | "four-thirty" | "free-button" | "green-heart" | "growing-heart" | "heart-decoration" | "heart-suit" | "heart-with-arrow" | "heart-with-ribbon" | "hot-springs" | "hundred-points" | "id-button" | "input-latin-letters" | "input-latin-lowercase" | "input-latin-uppercase" | "input-symbols" | "japanese-acceptable-button" | "japanese-application-button" | "japanese-bargain-button" | "japanese-congratulations-button" | "japanese-discount-button" | "japanese-free-of-charge-button" | "japanese-here-button" | "japanese-monthly-amount-button" | "japanese-no-vacancy-button" | "japanese-not-free-of-charge-button" | "japanese-open-for-business-button" | "japanese-passing-grade-button" | "japanese-prohibited-button" | "japanese-reserved-button" | "japanese-secret-button" | "japanese-service-charge-button" | "japanese-symbol-for-beginner" | "japanese-vacancy-button" | "keycap-0" | "keycap-1" | "keycap-10" | "keycap-2" | "keycap-3" | "keycap-4" | "keycap-5" | "keycap-6" | "keycap-7" | "keycap-8" | "keycap-9" | "large-blue-diamond" | "large-orange-diamond" | "last-track-button" | "latin-cross" | "left-arrow-curving-right" | "left-luggage" | "left-right-arrow" | "left-speech-bubble" | "libra" | "litter-in-bin-sign" | "loudspeaker" | "mahjong-red-dragon" | "mens-room" | "mobile-phone-off" | "muted-speaker" | "name-badge" | "new-button" | "next-track-button" | "ng-button" | "nine-oclock" | "nine-thirty" | "no-bicycles" | "no-littering" | "no-mobile-phones" | "no-one-under-eighteen" | "no-pedestrians" | "no-smoking" | "non-potable-water" | "ok-button" | "on-arrow" | "one-oclock" | "one-thirty" | "ophiuchus" | "orthodox-cross" | "p-button" | "part-alternation-mark" | "passport-control" | "pause-button" | "peace-symbol" | "pisces" | "play-button" | "play-or-pause-button" | "potable-water" | "prohibited" | "purple-heart" | "record-button" | "recycling-symbol" | "red-circle" | "red-heart" | "red-triangle-pointed-down" | "repeat-button" | "repeat-single-button" | "reverse-button" | "revolving-hearts" | "right-anger-bubble" | "right-arrow-curving-down" | "right-arrow-curving-left" | "right-arrow-curving-up" | "sagittarius" | "scorpio" | "seven-oclock" | "seven-thirty" | "shuffle-tracks-button" | "six-oclock" | "six-thirty" | "small-blue-diamond" | "small-orange-diamond" | "soon-arrow" | "sos-button" | "spade-suit" | "sparkling-heart" | "speaker-high-volume" | "speaker-low-volume" | "speaker-medium-volume" | "stop-button" | "taurus" | "ten-oclock" | "ten-thirty" | "thought-balloon" | "three-oclock" | "three-thirty" | "top-arrow" | "trade-mark" | "trident-emblem" | "twelve-oclock" | "twelve-thirty" | "two-hearts" | "two-oclock" | "two-thirty" | "up-down-arrow" | "up-left-arrow" | "up-right-arrow" | "upwards-button" | "vibration-mode" | "virgo" | "vs-button" | "water-closet" | "wavy-dash" | "wheel-of-dharma" | "wheelchair-symbol" | "white-circle" | "white-exclamation-mark" | "white-flower" | "white-large-square" | "white-medium-small-square" | "white-medium-square" | "white-question-mark" | "white-small-square" | "white-square-button" | "womens-room" | "yellow-heart" | "aerial-tramway" | "airplane-arrival" | "airplane-departure" | "articulated-lorry" | "beach-with-umbrella" | "bridge-at-night" | "bullet-train" | "canoe" | "carousel-horse" | "cityscape" | "cityscape-at-dusk" | "classical-building" | "convenience-store" | "department-store" | "derelict-house" | "desert" | "fire-engine" | "globe-showing-americas" | "globe-showing-asia-australia" | "globe-showing-europe-africa" | "globe-with-meridians" | "horizontal-traffic-light" | "house-with-garden" | "japanese-castle" | "japanese-post-office" | "kick-scooter" | "love-hotel" | "map-of-japan" | "milky-way" | "minibus" | "moai" | "motor-boat" | "motor-scooter" | "motorway" | "mount-fuji" | "mountain-cableway" | "mountain-railway" | "national-park" | "night-with-stars" | "oncoming-automobile" | "oncoming-bus" | "oncoming-police-car" | "oncoming-taxi" | "passenger-ship" | "police-car" | "police-car-light" | "post-office" | "railway-track" | "shooting-star" | "small-airplane" | "sport-utility-vehicle" | "statue-of-liberty" | "sunrise-over-mountains" | "tokyo-tower" | "tram-car" | "vertical-traffic-light" | "wedding" | "world-map" | "scientist" | "multiply" | "parrot" | "a-button-blood-type" | "ab-button-blood-type" | "adhesive-bandage" | "anatomical-heart" | "astronaut" | "auto-rickshaw" | "b-button-blood-type" | "badger" | "bagel" | "ballet-shoes" | "beans" | "bear" | "beaver" | "beetle" | "bell-pepper" | "beverage-box" | "biting-lip" | "black-cat" | "black-flag" | "blackbird" | "blue-square" | "blueberries" | "bowl-with-spoon" | "breast-feeding" | "briefs" | "broken-chain" | "brown-circle" | "brown-heart" | "brown-mushroom" | "brown-square" | "butter" | "canned-food" | "carpentry-saw" | "cat-with-tears-of-joy" | "cat-with-wry-smile" | "check-box-with-check" | "check-mark" | "check-mark-button" | "chequered-flag" | "chopsticks" | "coat" | "cockroach" | "cold-face" | "cook" | "coral" | "crossed-flags" | "crying-cat" | "curling-stone" | "cut-of-meat" | "disguised-face" | "diving-mask" | "diya-lamp" | "dodo" | "dotted-line-face" | "ear-with-hearing-aid" | "empty-nest" | "exploding-head" | "face-exhaling" | "face-holding-back-tears" | "face-in-clouds" | "face-vomiting" | "face-with-diagonal-mouth" | "face-with-hand-over-mouth" | "face-with-monocle" | "face-with-open-eyes-and-hand-over-mouth" | "face-with-peeking-eye" | "face-with-raised-eyebrow" | "face-with-spiral-eyes" | "face-with-symbols-on-mouth" | "factory-worker" | "falafel" | "farmer" | "firecracker" | "firefighter" | "flat-shoe" | "flatbread" | "flute" | "flying-disc" | "folding-hand-fan" | "fondue" | "foot" | "fortune-cookie" | "garlic" | "ginger-root" | "giraffe" | "gloves" | "goggles" | "goose" | "green-circle" | "green-square" | "grey-heart" | "grinning-cat" | "grinning-cat-with-smiling-eyes" | "guide-dog" | "hair-pick" | "hamster" | "hand-with-index-finger-and-thumb-crossed" | "head-shaking-horizontally" | "head-shaking-vertically" | "headstone" | "health-worker" | "heart-hands" | "heart-on-fire" | "heavy-equals-sign" | "hedgehog" | "hiking-boot" | "hindu-temple" | "hippopotamus" | "hollow-red-circle" | "hot-face" | "hut" | "hyacinth" | "identification-card" | "index-pointing-at-the-viewer" | "judge" | "keycap-hashtag" | "kissing-cat" | "knocked-out-face" | "lab-coat" | "lacrosse" | "leftwards-hand" | "leftwards-pushing-hand" | "leg" | "light-blue-heart" | "lion" | "llama" | "lobster" | "long-drum" | "lotion-bottle" | "love-you-gesture" | "low-battery" | "mammoth" | "man-artist" | "man-astronaut" | "man-bald" | "man-beard" | "man-biking" | "man-blonde-hair" | "man-bouncing-ball" | "man-bowing" | "man-cartwheeling" | "man-climbing" | "man-construction-worker" | "man-cook" | "man-deaf" | "man-detective" | "man-elf" | "man-facepalming" | "man-factory-worker" | "man-fairy" | "man-farmer" | "man-feeding-baby" | "man-firefighter" | "man-frowning" | "man-genie" | "man-gesturing-no" | "man-gesturing-ok" | "man-getting-haircut" | "man-getting-massage" | "man-golfing" | "man-guard" | "man-health-worker" | "man-in-lotus-position" | "man-in-manual-wheelchair" | "man-in-manual-wheelchair-facing-right" | "man-in-motorized-wheelchair" | "man-in-motorized-wheelchair-facing-right" | "man-in-steamy-room" | "man-judge" | "man-juggling" | "man-kneeling" | "man-kneeling-facing-right" | "man-lifting-weights" | "man-mage" | "man-mechanic" | "man-merpeople" | "man-mountain-biking" | "man-office-worker" | "man-pilot" | "man-playing-handball" | "man-playing-water-polo" | "man-police-officer" | "man-pouting" | "man-raising-hand" | "man-red-hair" | "man-rowing-boat" | "man-running" | "man-running-facing-right" | "man-scientist" | "man-shrugging" | "man-singer" | "man-standing" | "man-student" | "man-superhero" | "man-supervillain" | "man-surfing" | "man-swimming" | "man-teacher" | "man-technologist" | "man-tipping-hand" | "man-vampire" | "man-walking" | "man-walking-facing-right" | "man-wearing-turban" | "man-white-hair" | "man-with-bunny-ears" | "man-with-veil" | "man-with-white-cane" | "man-with-white-cane-facing-right" | "man-wrestling" | "man-zombie" | "manual-wheelchair" | "maracas" | "mate" | "mechanic" | "mechanical-arm" | "mechanical-leg" | "medical-symbol" | "melting-face" | "mending-heart" | "military-helmet" | "mirror-ball" | "moon-cake" | "moose" | "motorized-wheelchair" | "mouse-trap" | "mx-claus" | "nazar-amulet" | "nest-with-eggs" | "nesting-dolls" | "o-button-blood-type" | "office-worker" | "older-person" | "olive" | "one-piece-swimsuit" | "orange-circle" | "orange-heart" | "orange-square" | "orangutan" | "oyster" | "palm-down-hand" | "palm-up-hand" | "palms-up-together" | "partying-face" | "pea-pod" | "people-hugging" | "person-bald" | "person-beard" | "person-blonde-hair" | "person-climbing" | "person-deaf" | "person-elf" | "person-fairy" | "person-feeding-baby" | "person-fencing" | "person-genie" | "person-in-lotus-position" | "person-in-manual-wheelchair" | "person-in-manual-wheelchair-facing-right" | "person-in-motorized-wheelchair" | "person-in-motorized-wheelchair-facing-right" | "person-in-steamy-room" | "person-in-suit-levitating" | "person-in-tuxedo" | "person-kneeling" | "person-kneeling-facing-right" | "person-mage" | "person-merpeople" | "person-playing-handball" | "person-red-hair" | "person-running-facing-right" | "person-superhero" | "person-supervillain" | "person-vampire" | "person-walking-facing-right" | "person-white-hair" | "person-with-bunny-ears" | "person-with-crown" | "person-with-skullcap" | "person-with-veil" | "person-with-white-cane" | "person-with-white-cane-facing-right" | "person-wrestling" | "person-zombie" | "phoenix-bird" | "piata" | "pickup-truck" | "pie" | "pilot" | "pinched-fingers" | "pinching-hand" | "pink-heart" | "pirate-flag" | "playground-slide" | "pleading-face" | "plunger" | "polar-bear" | "pouring-liquid" | "pouting-cat" | "pregnant-man" | "pregnant-person" | "purple-circle" | "purple-square" | "rainbow-flag" | "red-envelope" | "red-exclamation-mark" | "red-question-mark" | "red-square" | "red-triangle" | "rightwards-hand" | "rightwards-pushing-hand" | "ring-buoy" | "ringed-planet" | "rock" | "roll-of-paper" | "safety-pin" | "safety-vest" | "saluting-face" | "sari" | "service-dog" | "sewing-needle" | "shaking-face" | "shushing-face" | "singer" | "skunk" | "sled" | "sloth" | "smiling-cat-with-heart-eyes" | "smiling-face-with-hearts" | "smiling-face-with-tear" | "softball" | "star-struck" | "student" | "takeout-box" | "tamale" | "teacher" | "technologist" | "thong-sandal" | "thread" | "transgender-flag" | "transgender-symbol" | "triangular-flag" | "troll" | "up-button" | "water-pistol" | "weary-cat" | "white-cane" | "white-heart" | "wing" | "woman-artist" | "woman-astronaut" | "woman-bald" | "woman-beard" | "woman-biking" | "woman-blonde-hair" | "woman-bouncing-ball" | "woman-bowing" | "woman-cartwheeling" | "woman-climbing" | "woman-construction-worker" | "woman-cook" | "woman-deaf" | "woman-detective" | "woman-elf" | "woman-facepalming" | "woman-factory-worker" | "woman-fairy" | "woman-farmer" | "woman-feeding-baby" | "woman-firefighter" | "woman-frowning" | "woman-genie" | "woman-gesturing-no" | "woman-gesturing-ok" | "woman-getting-haircut" | "woman-getting-massage" | "woman-golfing" | "woman-guard" | "woman-health-worker" | "woman-in-lotus-position" | "woman-in-manual-wheelchair" | "woman-in-manual-wheelchair-facing-right" | "woman-in-motorized-wheelchair" | "woman-in-motorized-wheelchair-facing-right" | "woman-in-steamy-room" | "woman-in-tuxedo" | "woman-judge" | "woman-juggling" | "woman-kneeling" | "woman-kneeling-facing-right" | "woman-lifting-weights" | "woman-mage" | "woman-mechanic" | "woman-merpeople" | "woman-mountain-biking" | "woman-office-worker" | "woman-pilot" | "woman-playing-handball" | "woman-playing-water-polo" | "woman-police-officer" | "woman-pouting" | "woman-raising-hand" | "woman-red-hair" | "woman-rowing-boat" | "woman-running" | "woman-running-facing-right" | "woman-scientist" | "woman-shrugging" | "woman-singer" | "woman-standing" | "woman-student" | "woman-superhero" | "woman-supervillain" | "woman-surfing" | "woman-swimming" | "woman-teacher" | "woman-technologist" | "woman-tipping-hand" | "woman-vampire" | "woman-walking" | "woman-walking-facing-right" | "woman-wearing-turban" | "woman-white-hair" | "woman-with-bunny-ears" | "woman-with-headscarf" | "woman-with-veil" | "woman-with-white-cane" | "woman-with-white-cane-facing-right" | "woman-wrestling" | "woman-zombie" | "woozy-face" | "yawning-face" | "yellow-circle" | "yellow-square" | "yo-yo" | "zany-face" | "zebra" | "knot" | "man-curly-hair" | "person-curly-hair" | "woman-curly-hair">): import("react").JSX.Element;
|
|
1606
|
+
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"anchor" | "link" | "scroll" | "radio" | "key" | "label" | "alien" | "bookmark" | "briefcase" | "broom" | "bucket" | "clipboard" | "copyright" | "crown" | "eye" | "ferris-wheel" | "flashlight" | "fleur-de-lis" | "fountain" | "handshake" | "hook" | "keyboard" | "magnet" | "mouse" | "newspaper" | "ninja" | "notebook" | "package" | "paperclip" | "purse" | "ribbon" | "ring" | "satellite" | "school" | "seal" | "slot-machine" | "tent" | "ticket" | "yin-yang" | "carrot" | "cow" | "egg" | "horse" | "mushroom" | "pig" | "tractor" | "turkey" | "bat" | "bird" | "bone" | "bug" | "butterfly" | "cat" | "dog" | "dolphin" | "donkey" | "duck" | "elephant" | "fish" | "jellyfish" | "kangaroo" | "koala" | "owl" | "panda" | "penguin" | "rabbit" | "shark" | "snail" | "snake" | "spider" | "turtle" | "unicorn" | "battery" | "snowflake" | "thermometer" | "bank" | "credit-card" | "receipt" | "glasses" | "sunglasses" | "cloud" | "calendar" | "laptop" | "television" | "watch" | "fountain-pen" | "pen" | "pencil" | "file-cabinet" | "candy" | "cookie" | "cupcake" | "french-fries" | "hamburger" | "ice-cream" | "pizza" | "popcorn" | "pretzel" | "taco" | "bomb" | "boomerang" | "chess-pawn" | "crystal-ball" | "ghost" | "shield" | "skull" | "compass" | "axe" | "factory" | "fire-extinguisher" | "hammer" | "ladder" | "screwdriver" | "toolbox" | "wrench" | "lipstick" | "balloon" | "bed" | "candle" | "coffin" | "menorah" | "party-popper" | "snowman" | "spider-web" | "teddy-bear" | "bathtub" | "bell" | "camera" | "door" | "fire" | "mirror" | "printer" | "robot" | "seat" | "shower" | "toilet" | "abacus" | "infinity" | "minus" | "plus" | "ambulance" | "brain" | "hospital" | "lungs" | "pill" | "stethoscope" | "tooth" | "toothbrush" | "microphone" | "saxophone" | "trumpet" | "violin" | "cactus" | "feather" | "palm-tree" | "volcano" | "airplane" | "bus" | "bus-stop" | "ferry" | "taxi" | "train" | "tram" | "baby" | "baby-bottle" | "castle" | "church" | "office-building" | "stadium" | "synagogue" | "khanda" | "mosque" | "om" | "biohazard" | "dna" | "microscope" | "radioactive" | "rocket" | "telescope" | "test-tube" | "information" | "star" | "basket" | "badminton" | "baseball" | "basketball" | "bicycle" | "bowling" | "boxing-glove" | "bullseye" | "cricket" | "kite" | "roller-skate" | "skateboard" | "tennis" | "trophy" | "volleyball" | "helicopter" | "parachute" | "elevator" | "umbrella" | "divide" | "envelope" | "light-bulb" | "megaphone" | "musical-note" | "puzzle-piece" | "scissors" | "shopping-cart" | "sparkles" | "sun" | "video-camera" | "window" | "alarm-clock" | "amphora" | "backpack" | "baggage-claim" | "banana" | "bubbles" | "cigarette" | "construction" | "croissant" | "droplet" | "drum" | "ear" | "footprints" | "graduation-cap" | "guitar" | "handbag" | "hotel" | "house" | "joystick" | "leafy-green" | "lollipop" | "luggage" | "mountain" | "paintbrush" | "person-standing" | "rainbow" | "rat" | "roller-coaster" | "rose" | "sailboat" | "sandwich" | "ship" | "shrimp" | "sparkle" | "sunrise" | "sunset" | "syringe" | "thumbs-down" | "thumbs-up" | "tornado" | "worm" | "bar-chart" | "avocado" | "books" | "bread" | "bubble-tea" | "christmas-tree" | "coin" | "comet" | "curly-loop" | "deer" | "dumpling" | "heart-exclamation" | "joker" | "lemon" | "man" | "melon" | "pick" | "ping-pong" | "razor" | "registered" | "rosette" | "salt" | "seedling" | "speedboat" | "stopwatch" | "teapot" | "wheel" | "woman" | "wood" | "zzz" | "currency-exchange" | "fuel-pump" | "gear" | "houses" | "person" | "person-walking" | "telephone" | "computer-mouse" | "floppy-disk" | "jar" | "mosquito" | "person-biking" | "person-running" | "person-swimming" | "spoon" | "dove" | "dragon" | "frog" | "otter" | "motorcycle" | "wine-glass" | "kaaba" | "place-of-worship" | "socks" | "bacon" | "chair" | "soap" | "restroom" | "crutch" | "pager" | "x-ray" | "hamsa" | "star-and-crescent" | "star-of-david" | "child" | "locked" | "magic-wand" | "radio-button" | "unlocked" | "strawberry" | "warning" | "delivery-truck" | "fog" | "stop-sign" | "american-football" | "musical-notes" | "crayon" | "cucumber" | "eagle" | "fox" | "metro" | "ram" | "rhinoceros" | "yarn" | "blossom" | "broccoli" | "fly" | "hugging-face" | "waffle" | "camping" | "artist" | "money-bag" | "cooking" | "shaved-ice" | "boy" | "brick" | "cyclone" | "foggy" | "folded-hands" | "girl" | "potted-plant" | "waving-hand" | "monorail" | "birthday-cake" | "open-book" | "soccer-ball" | "wolf" | "scarf" | "white-flag" | "headphone" | "victory-hand" | "accordion" | "aries" | "bison" | "burrito" | "cinema" | "coconut" | "dagger" | "dvd" | "flamingo" | "gemini" | "goat" | "ice" | "leo" | "lime" | "lotus" | "mango" | "octopus" | "peacock" | "raccoon" | "racing-car" | "sponge" | "squid" | "sushi" | "tangerine" | "tomato" | "top-hat" | "dizzy" | "down-arrow" | "female-sign" | "left-arrow" | "male-sign" | "no-entry" | "right-arrow" | "station" | "up-arrow" | "pear" | "shopping-bags" | "t-shirt" | "chicken" | "desktop-computer" | "balance-scale" | "locomotive" | "ewe" | "ant" | "ox" | "alien-monster" | "antenna-bars" | "artist-palette" | "astonished-face" | "automobile" | "banjo" | "beer-mug" | "billed-cap" | "bow-and-arrow" | "broken-heart" | "building-construction" | "cat-face" | "cherries" | "cherry-blossom" | "chestnut" | "clapper-board" | "closed-book" | "confetti-ball" | "cooked-rice" | "cow-face" | "crab" | "crescent-moon" | "cup-with-straw" | "deciduous-tree" | "desert-island" | "dog-face" | "dragon-face" | "dress" | "drop-of-blood" | "evergreen-tree" | "expressionless-face" | "face-screaming-in-fear" | "face-with-head-bandage" | "face-with-medical-mask" | "face-with-tears-of-joy" | "file-folder" | "film-frames" | "flying-saucer" | "fork-and-knife" | "four-leaf-clover" | "game-die" | "gem-stone" | "glowing-star" | "grapes" | "heavy-dollar-sign" | "herb" | "hibiscus" | "high-heeled-shoe" | "high-speed-train" | "horse-face" | "hot-beverage" | "input-numbers" | "jeans" | "keycap-asterisk" | "light-rail" | "loudly-crying-face" | "memo" | "microbe" | "mobile-phone" | "money-mouth-face" | "monkey-face" | "mouse-face" | "mouth" | "movie-camera" | "musical-keyboard" | "musical-score" | "nerd-face" | "neutral-face" | "onion" | "page-facing-up" | "peach" | "petri-dish" | "pig-face" | "pile-of-poo" | "pineapple" | "placard" | "poultry-leg" | "pushpin" | "rabbit-face" | "railway-car" | "raised-back-of-hand" | "raised-hand" | "red-apple" | "roasted-sweet-potato" | "round-pushpin" | "satellite-antenna" | "sauropod" | "shamrock" | "shinto-shrine" | "shortcake" | "shorts" | "sleeping-face" | "slightly-frowning-face" | "slightly-smiling-face" | "smirking-face" | "snow-capped-mountain" | "soft-ice-cream" | "speech-balloon" | "spouting-whale" | "steaming-bowl" | "straight-ruler" | "sunflower" | "suspension-railway" | "swan" | "t-rex" | "thinking-face" | "tiger-face" | "triangular-ruler" | "trolleybus" | "umbrella-on-ground" | "upside-down-face" | "video-game" | "watermelon" | "wilted-flower" | "winking-face" | "wireless" | "womans-hat" | "writing-hand" | "zipper-mouth-face" | "_1st-place-medal" | "_2nd-place-medal" | "_3rd-place-medal" | "admission-tickets" | "carp-streamer" | "circus-tent" | "cricket-game" | "field-hockey" | "fireworks" | "fishing-pole" | "flag-in-hole" | "goal-net" | "horse-racing" | "ice-hockey" | "ice-skate" | "jack-o-lantern" | "japanese-dolls" | "martial-arts-uniform" | "military-medal" | "moon-viewing-ceremony" | "performing-arts" | "person-bouncing-ball" | "person-cartwheeling" | "person-golfing" | "person-juggling" | "person-lifting-weights" | "person-mountain-biking" | "person-playing-water-polo" | "person-rowing-boat" | "person-surfing" | "pine-decoration" | "pool-8-ball" | "reminder-ribbon" | "rugby-football" | "running-shirt" | "skier" | "skis" | "snowboarder" | "sparkler" | "sports-medal" | "tanabata-tree" | "wind-chime" | "wrapped-gift" | "baguette-bread" | "bento-box" | "bottle-with-popping-cork" | "cheese-wedge" | "chocolate-bar" | "clinking-beer-mugs" | "clinking-glasses" | "cocktail-glass" | "curry-rice" | "custard" | "dango" | "doughnut" | "ear-of-corn" | "eggplant" | "fish-cake-with-swirl" | "fork-and-knife-with-plate" | "fried-shrimp" | "glass-of-milk" | "green-apple" | "green-salad" | "honey-pot" | "hot-dog" | "hot-pepper" | "kiwi-fruit" | "meat-on-bone" | "oden" | "pancakes" | "peanuts" | "pot-of-food" | "potato" | "rice-ball" | "rice-cracker" | "sake" | "shallow-pan-of-food" | "spaghetti" | "stuffed-flatbread" | "teacup-without-handle" | "tropical-drink" | "tumbler-glass" | "baby-chick" | "blowfish" | "boar" | "bouquet" | "camel" | "chipmunk" | "cloud-with-lightning" | "cloud-with-lightning-and-rain" | "cloud-with-rain" | "cloud-with-snow" | "collision" | "crocodile" | "dashing-away" | "fallen-leaf" | "first-quarter-moon" | "first-quarter-moon-face" | "front-facing-baby-chick" | "full-moon" | "full-moon-face" | "gorilla" | "hatching-chick" | "hear-no-evil-monkey" | "high-voltage" | "honeybee" | "lady-beetle" | "last-quarter-moon" | "last-quarter-moon-face" | "leaf-fluttering-in-wind" | "leopard" | "lizard" | "maple-leaf" | "monkey" | "new-moon" | "new-moon-face" | "paw-prints" | "pig-nose" | "poodle" | "rooster" | "scorpion" | "see-no-evil-monkey" | "sheaf-of-rice" | "snowman-without-snow" | "speak-no-evil-monkey" | "spiral-shell" | "sun-behind-cloud" | "sun-behind-large-cloud" | "sun-behind-rain-cloud" | "sun-behind-small-cloud" | "sun-with-face" | "sweat-droplets" | "tiger" | "tropical-fish" | "tulip" | "two-hump-camel" | "umbrella-with-rain-drops" | "waning-crescent-moon" | "waning-gibbous-moon" | "water-buffalo" | "water-wave" | "waxing-crescent-moon" | "waxing-gibbous-moon" | "whale" | "wind-face" | "alembic" | "ballot-box-with-ballot" | "barber-pole" | "bellhop-bell" | "bikini" | "black-nib" | "blue-book" | "bookmark-tabs" | "camera-with-flash" | "card-file-box" | "card-index" | "card-index-dividers" | "chains" | "chart-decreasing" | "chart-increasing" | "clamp" | "closed-mailbox-with-lowered-flag" | "closed-mailbox-with-raised-flag" | "clutch-bag" | "computer-disk" | "control-knobs" | "couch-and-lamp" | "crossed-swords" | "dollar-banknote" | "e-mail" | "electric-plug" | "envelope-with-arrow" | "euro-banknote" | "fax-machine" | "film-projector" | "framed-picture" | "funeral-urn" | "green-book" | "hammer-and-pick" | "hammer-and-wrench" | "hole" | "hourglass-done" | "hourglass-not-done" | "inbox-tray" | "incoming-envelope" | "kimono" | "kitchen-knife" | "ledger" | "level-slider" | "linked-paperclips" | "locked-with-key" | "locked-with-pen" | "love-letter" | "magnifying-glass-tilted-left" | "magnifying-glass-tilted-right" | "mantelpiece-clock" | "mobile-phone-with-arrow" | "money-with-wings" | "necktie" | "notebook-with-decorative-cover" | "nut-and-bolt" | "oil-drum" | "old-key" | "open-file-folder" | "open-mailbox-with-lowered-flag" | "open-mailbox-with-raised-flag" | "optical-disk" | "orange-book" | "outbox-tray" | "page-with-curl" | "person-in-bed" | "person-taking-bath" | "postal-horn" | "postbox" | "pound-banknote" | "prayer-beads" | "red-paper-lantern" | "rolled-up-newspaper" | "spiral-calendar" | "spiral-notepad" | "studio-microphone" | "tear-off-calendar" | "telephone-receiver" | "timer-clock" | "trackball" | "videocassette" | "wastebasket" | "womans-clothes" | "yen-banknote" | "angry-face" | "angry-face-with-horns" | "anguished-face" | "anxious-face-with-sweat" | "baby-angel" | "backhand-index-pointing-down" | "backhand-index-pointing-left" | "backhand-index-pointing-right" | "backhand-index-pointing-up" | "beaming-face-with-smiling-eyes" | "bust-in-silhouette" | "busts-in-silhouette" | "call-me-hand" | "clapping-hands" | "closed-umbrella" | "clown-face" | "confounded-face" | "confused-face" | "construction-worker" | "cowboy-hat-face" | "crossed-fingers" | "crying-face" | "detective" | "disappointed-face" | "downcast-face-with-sweat" | "drooling-face" | "eyes" | "face-blowing-a-kiss" | "face-savoring-food" | "face-with-open-mouth" | "face-with-rolling-eyes" | "face-with-steam-from-nose" | "face-with-thermometer" | "face-with-tongue" | "face-without-mouth" | "fearful-face" | "flexed-biceps" | "flushed-face" | "frowning-face" | "frowning-face-with-open-mouth" | "goblin" | "grimacing-face" | "grinning-face" | "grinning-face-with-big-eyes" | "grinning-face-with-smiling-eyes" | "grinning-face-with-sweat" | "grinning-squinting-face" | "guard" | "hand-with-fingers-splayed" | "hushed-face" | "index-pointing-up" | "kiss-mark" | "kissing-face" | "kissing-face-with-closed-eyes" | "kissing-face-with-smiling-eyes" | "left-facing-fist" | "lying-face" | "man-dancing" | "man-in-tuxedo" | "mans-shoe" | "middle-finger" | "mrs-claus" | "nail-polish" | "nauseated-face" | "nose" | "ogre" | "ok-hand" | "old-man" | "old-woman" | "oncoming-fist" | "open-hands" | "pensive-face" | "persevering-face" | "person-bowing" | "person-facepalming" | "person-frowning" | "person-gesturing-no" | "person-gesturing-ok" | "person-getting-haircut" | "person-getting-massage" | "person-pouting" | "person-raising-hand" | "person-shrugging" | "person-tipping-hand" | "person-wearing-turban" | "police-officer" | "pouting-face" | "pregnant-woman" | "prince" | "princess" | "raised-fist" | "raising-hands" | "relieved-face" | "rescue-workers-helmet" | "right-facing-fist" | "rolling-on-the-floor-laughing" | "running-shoe" | "sad-but-relieved-face" | "santa-claus" | "selfie" | "sign-of-the-horns" | "skull-and-crossbones" | "sleepy-face" | "smiling-face" | "smiling-face-with-halo" | "smiling-face-with-heart-eyes" | "smiling-face-with-horns" | "smiling-face-with-smiling-eyes" | "smiling-face-with-sunglasses" | "sneezing-face" | "speaking-head" | "squinting-face-with-tongue" | "tired-face" | "tongue" | "unamused-face" | "vulcan-salute" | "weary-face" | "winking-face-with-tongue" | "woman-dancing" | "womans-boot" | "womans-sandal" | "worried-face" | "anger-symbol" | "aquarius" | "atm-sign" | "atom-symbol" | "baby-symbol" | "back-arrow" | "beating-heart" | "bell-with-slash" | "black-circle" | "black-heart" | "black-large-square" | "black-medium-small-square" | "black-medium-square" | "black-small-square" | "black-square-button" | "blue-circle" | "blue-heart" | "bright-button" | "cancer" | "capricorn" | "chart-increasing-with-yen" | "children-crossing" | "circled-m" | "cl-button" | "clockwise-vertical-arrows" | "club-suit" | "cool-button" | "counterclockwise-arrows-button" | "cross-mark" | "cross-mark-button" | "customs" | "diamond-suit" | "diamond-with-a-dot" | "dim-button" | "dotted-six-pointed-star" | "double-curly-loop" | "double-exclamation-mark" | "down-left-arrow" | "down-right-arrow" | "downwards-button" | "eight-oclock" | "eight-pointed-star" | "eight-spoked-asterisk" | "eight-thirty" | "eject-button" | "eleven-oclock" | "eleven-thirty" | "end-arrow" | "exclamation-question-mark" | "eye-in-speech-bubble" | "fast-down-button" | "fast-forward-button" | "fast-reverse-button" | "fast-up-button" | "five-oclock" | "five-thirty" | "flower-playing-cards" | "four-oclock" | "four-thirty" | "free-button" | "green-heart" | "growing-heart" | "heart-decoration" | "heart-suit" | "heart-with-arrow" | "heart-with-ribbon" | "hot-springs" | "hundred-points" | "id-button" | "input-latin-letters" | "input-latin-lowercase" | "input-latin-uppercase" | "input-symbols" | "japanese-acceptable-button" | "japanese-application-button" | "japanese-bargain-button" | "japanese-congratulations-button" | "japanese-discount-button" | "japanese-free-of-charge-button" | "japanese-here-button" | "japanese-monthly-amount-button" | "japanese-no-vacancy-button" | "japanese-not-free-of-charge-button" | "japanese-open-for-business-button" | "japanese-passing-grade-button" | "japanese-prohibited-button" | "japanese-reserved-button" | "japanese-secret-button" | "japanese-service-charge-button" | "japanese-symbol-for-beginner" | "japanese-vacancy-button" | "keycap-0" | "keycap-1" | "keycap-10" | "keycap-2" | "keycap-3" | "keycap-4" | "keycap-5" | "keycap-6" | "keycap-7" | "keycap-8" | "keycap-9" | "large-blue-diamond" | "large-orange-diamond" | "last-track-button" | "latin-cross" | "left-arrow-curving-right" | "left-luggage" | "left-right-arrow" | "left-speech-bubble" | "libra" | "litter-in-bin-sign" | "loudspeaker" | "mahjong-red-dragon" | "mens-room" | "mobile-phone-off" | "muted-speaker" | "name-badge" | "new-button" | "next-track-button" | "ng-button" | "nine-oclock" | "nine-thirty" | "no-bicycles" | "no-littering" | "no-mobile-phones" | "no-one-under-eighteen" | "no-pedestrians" | "no-smoking" | "non-potable-water" | "ok-button" | "on-arrow" | "one-oclock" | "one-thirty" | "ophiuchus" | "orthodox-cross" | "p-button" | "part-alternation-mark" | "passport-control" | "pause-button" | "peace-symbol" | "pisces" | "play-button" | "play-or-pause-button" | "potable-water" | "prohibited" | "purple-heart" | "record-button" | "recycling-symbol" | "red-circle" | "red-heart" | "red-triangle-pointed-down" | "repeat-button" | "repeat-single-button" | "reverse-button" | "revolving-hearts" | "right-anger-bubble" | "right-arrow-curving-down" | "right-arrow-curving-left" | "right-arrow-curving-up" | "sagittarius" | "scorpio" | "seven-oclock" | "seven-thirty" | "shuffle-tracks-button" | "six-oclock" | "six-thirty" | "small-blue-diamond" | "small-orange-diamond" | "soon-arrow" | "sos-button" | "spade-suit" | "sparkling-heart" | "speaker-high-volume" | "speaker-low-volume" | "speaker-medium-volume" | "stop-button" | "taurus" | "ten-oclock" | "ten-thirty" | "thought-balloon" | "three-oclock" | "three-thirty" | "top-arrow" | "trade-mark" | "trident-emblem" | "twelve-oclock" | "twelve-thirty" | "two-hearts" | "two-oclock" | "two-thirty" | "up-down-arrow" | "up-left-arrow" | "up-right-arrow" | "upwards-button" | "vibration-mode" | "virgo" | "vs-button" | "water-closet" | "wavy-dash" | "wheel-of-dharma" | "wheelchair-symbol" | "white-circle" | "white-exclamation-mark" | "white-flower" | "white-large-square" | "white-medium-small-square" | "white-medium-square" | "white-question-mark" | "white-small-square" | "white-square-button" | "womens-room" | "yellow-heart" | "aerial-tramway" | "airplane-arrival" | "airplane-departure" | "articulated-lorry" | "beach-with-umbrella" | "bridge-at-night" | "bullet-train" | "canoe" | "carousel-horse" | "cityscape" | "cityscape-at-dusk" | "classical-building" | "convenience-store" | "department-store" | "derelict-house" | "desert" | "fire-engine" | "globe-showing-americas" | "globe-showing-asia-australia" | "globe-showing-europe-africa" | "globe-with-meridians" | "horizontal-traffic-light" | "house-with-garden" | "japanese-castle" | "japanese-post-office" | "kick-scooter" | "love-hotel" | "map-of-japan" | "milky-way" | "minibus" | "moai" | "motor-boat" | "motor-scooter" | "motorway" | "mount-fuji" | "mountain-cableway" | "mountain-railway" | "national-park" | "night-with-stars" | "oncoming-automobile" | "oncoming-bus" | "oncoming-police-car" | "oncoming-taxi" | "passenger-ship" | "police-car" | "police-car-light" | "post-office" | "railway-track" | "shooting-star" | "small-airplane" | "sport-utility-vehicle" | "statue-of-liberty" | "sunrise-over-mountains" | "tokyo-tower" | "tram-car" | "vertical-traffic-light" | "wedding" | "world-map" | "scientist" | "multiply" | "parrot" | "a-button-blood-type" | "ab-button-blood-type" | "adhesive-bandage" | "anatomical-heart" | "astronaut" | "auto-rickshaw" | "b-button-blood-type" | "badger" | "bagel" | "ballet-shoes" | "beans" | "bear" | "beaver" | "beetle" | "bell-pepper" | "beverage-box" | "biting-lip" | "black-cat" | "black-flag" | "blackbird" | "blue-square" | "blueberries" | "bowl-with-spoon" | "breast-feeding" | "briefs" | "broken-chain" | "brown-circle" | "brown-heart" | "brown-mushroom" | "brown-square" | "butter" | "canned-food" | "carpentry-saw" | "cat-with-tears-of-joy" | "cat-with-wry-smile" | "check-box-with-check" | "check-mark" | "check-mark-button" | "chequered-flag" | "chopsticks" | "coat" | "cockroach" | "cold-face" | "cook" | "coral" | "crossed-flags" | "crying-cat" | "curling-stone" | "cut-of-meat" | "disguised-face" | "diving-mask" | "diya-lamp" | "dodo" | "dotted-line-face" | "ear-with-hearing-aid" | "empty-nest" | "exploding-head" | "face-exhaling" | "face-holding-back-tears" | "face-in-clouds" | "face-vomiting" | "face-with-diagonal-mouth" | "face-with-hand-over-mouth" | "face-with-monocle" | "face-with-open-eyes-and-hand-over-mouth" | "face-with-peeking-eye" | "face-with-raised-eyebrow" | "face-with-spiral-eyes" | "face-with-symbols-on-mouth" | "factory-worker" | "falafel" | "farmer" | "firecracker" | "firefighter" | "flat-shoe" | "flatbread" | "flute" | "flying-disc" | "folding-hand-fan" | "fondue" | "foot" | "fortune-cookie" | "garlic" | "ginger-root" | "giraffe" | "gloves" | "goggles" | "goose" | "green-circle" | "green-square" | "grey-heart" | "grinning-cat" | "grinning-cat-with-smiling-eyes" | "guide-dog" | "hair-pick" | "hamster" | "hand-with-index-finger-and-thumb-crossed" | "head-shaking-horizontally" | "head-shaking-vertically" | "headstone" | "health-worker" | "heart-hands" | "heart-on-fire" | "heavy-equals-sign" | "hedgehog" | "hiking-boot" | "hindu-temple" | "hippopotamus" | "hollow-red-circle" | "hot-face" | "hut" | "hyacinth" | "identification-card" | "index-pointing-at-the-viewer" | "judge" | "keycap-hashtag" | "kissing-cat" | "knocked-out-face" | "lab-coat" | "lacrosse" | "leftwards-hand" | "leftwards-pushing-hand" | "leg" | "light-blue-heart" | "lion" | "llama" | "lobster" | "long-drum" | "lotion-bottle" | "love-you-gesture" | "low-battery" | "mammoth" | "man-artist" | "man-astronaut" | "man-bald" | "man-beard" | "man-biking" | "man-blonde-hair" | "man-bouncing-ball" | "man-bowing" | "man-cartwheeling" | "man-climbing" | "man-construction-worker" | "man-cook" | "man-deaf" | "man-detective" | "man-elf" | "man-facepalming" | "man-factory-worker" | "man-fairy" | "man-farmer" | "man-feeding-baby" | "man-firefighter" | "man-frowning" | "man-genie" | "man-gesturing-no" | "man-gesturing-ok" | "man-getting-haircut" | "man-getting-massage" | "man-golfing" | "man-guard" | "man-health-worker" | "man-in-lotus-position" | "man-in-manual-wheelchair" | "man-in-manual-wheelchair-facing-right" | "man-in-motorized-wheelchair" | "man-in-motorized-wheelchair-facing-right" | "man-in-steamy-room" | "man-judge" | "man-juggling" | "man-kneeling" | "man-kneeling-facing-right" | "man-lifting-weights" | "man-mage" | "man-mechanic" | "man-merpeople" | "man-mountain-biking" | "man-office-worker" | "man-pilot" | "man-playing-handball" | "man-playing-water-polo" | "man-police-officer" | "man-pouting" | "man-raising-hand" | "man-red-hair" | "man-rowing-boat" | "man-running" | "man-running-facing-right" | "man-scientist" | "man-shrugging" | "man-singer" | "man-standing" | "man-student" | "man-superhero" | "man-supervillain" | "man-surfing" | "man-swimming" | "man-teacher" | "man-technologist" | "man-tipping-hand" | "man-vampire" | "man-walking" | "man-walking-facing-right" | "man-wearing-turban" | "man-white-hair" | "man-with-bunny-ears" | "man-with-veil" | "man-with-white-cane" | "man-with-white-cane-facing-right" | "man-wrestling" | "man-zombie" | "manual-wheelchair" | "maracas" | "mate" | "mechanic" | "mechanical-arm" | "mechanical-leg" | "medical-symbol" | "melting-face" | "mending-heart" | "military-helmet" | "mirror-ball" | "moon-cake" | "moose" | "motorized-wheelchair" | "mouse-trap" | "mx-claus" | "nazar-amulet" | "nest-with-eggs" | "nesting-dolls" | "o-button-blood-type" | "office-worker" | "older-person" | "olive" | "one-piece-swimsuit" | "orange-circle" | "orange-heart" | "orange-square" | "orangutan" | "oyster" | "palm-down-hand" | "palm-up-hand" | "palms-up-together" | "partying-face" | "pea-pod" | "people-hugging" | "person-bald" | "person-beard" | "person-blonde-hair" | "person-climbing" | "person-deaf" | "person-elf" | "person-fairy" | "person-feeding-baby" | "person-fencing" | "person-genie" | "person-in-lotus-position" | "person-in-manual-wheelchair" | "person-in-manual-wheelchair-facing-right" | "person-in-motorized-wheelchair" | "person-in-motorized-wheelchair-facing-right" | "person-in-steamy-room" | "person-in-suit-levitating" | "person-in-tuxedo" | "person-kneeling" | "person-kneeling-facing-right" | "person-mage" | "person-merpeople" | "person-playing-handball" | "person-red-hair" | "person-running-facing-right" | "person-superhero" | "person-supervillain" | "person-vampire" | "person-walking-facing-right" | "person-white-hair" | "person-with-bunny-ears" | "person-with-crown" | "person-with-skullcap" | "person-with-veil" | "person-with-white-cane" | "person-with-white-cane-facing-right" | "person-wrestling" | "person-zombie" | "phoenix-bird" | "piata" | "pickup-truck" | "pie" | "pilot" | "pinched-fingers" | "pinching-hand" | "pink-heart" | "pirate-flag" | "playground-slide" | "pleading-face" | "plunger" | "polar-bear" | "pouring-liquid" | "pouting-cat" | "pregnant-man" | "pregnant-person" | "purple-circle" | "purple-square" | "rainbow-flag" | "red-envelope" | "red-exclamation-mark" | "red-question-mark" | "red-square" | "red-triangle" | "rightwards-hand" | "rightwards-pushing-hand" | "ring-buoy" | "ringed-planet" | "rock" | "roll-of-paper" | "safety-pin" | "safety-vest" | "saluting-face" | "sari" | "service-dog" | "sewing-needle" | "shaking-face" | "shushing-face" | "singer" | "skunk" | "sled" | "sloth" | "smiling-cat-with-heart-eyes" | "smiling-face-with-hearts" | "smiling-face-with-tear" | "softball" | "star-struck" | "student" | "takeout-box" | "tamale" | "teacher" | "technologist" | "thong-sandal" | "thread" | "transgender-flag" | "transgender-symbol" | "triangular-flag" | "troll" | "up-button" | "water-pistol" | "weary-cat" | "white-cane" | "white-heart" | "wing" | "woman-artist" | "woman-astronaut" | "woman-bald" | "woman-beard" | "woman-biking" | "woman-blonde-hair" | "woman-bouncing-ball" | "woman-bowing" | "woman-cartwheeling" | "woman-climbing" | "woman-construction-worker" | "woman-cook" | "woman-deaf" | "woman-detective" | "woman-elf" | "woman-facepalming" | "woman-factory-worker" | "woman-fairy" | "woman-farmer" | "woman-feeding-baby" | "woman-firefighter" | "woman-frowning" | "woman-genie" | "woman-gesturing-no" | "woman-gesturing-ok" | "woman-getting-haircut" | "woman-getting-massage" | "woman-golfing" | "woman-guard" | "woman-health-worker" | "woman-in-lotus-position" | "woman-in-manual-wheelchair" | "woman-in-manual-wheelchair-facing-right" | "woman-in-motorized-wheelchair" | "woman-in-motorized-wheelchair-facing-right" | "woman-in-steamy-room" | "woman-in-tuxedo" | "woman-judge" | "woman-juggling" | "woman-kneeling" | "woman-kneeling-facing-right" | "woman-lifting-weights" | "woman-mage" | "woman-mechanic" | "woman-merpeople" | "woman-mountain-biking" | "woman-office-worker" | "woman-pilot" | "woman-playing-handball" | "woman-playing-water-polo" | "woman-police-officer" | "woman-pouting" | "woman-raising-hand" | "woman-red-hair" | "woman-rowing-boat" | "woman-running" | "woman-running-facing-right" | "woman-scientist" | "woman-shrugging" | "woman-singer" | "woman-standing" | "woman-student" | "woman-superhero" | "woman-supervillain" | "woman-surfing" | "woman-swimming" | "woman-teacher" | "woman-technologist" | "woman-tipping-hand" | "woman-vampire" | "woman-walking" | "woman-walking-facing-right" | "woman-wearing-turban" | "woman-white-hair" | "woman-with-bunny-ears" | "woman-with-headscarf" | "woman-with-veil" | "woman-with-white-cane" | "woman-with-white-cane-facing-right" | "woman-wrestling" | "woman-zombie" | "woozy-face" | "yawning-face" | "yellow-circle" | "yellow-square" | "yo-yo" | "zany-face" | "zebra" | "knot" | "man-curly-hair" | "person-curly-hair" | "woman-curly-hair">): import("react").JSX.Element;
|
|
1607
1607
|
displayName: string;
|
|
1608
1608
|
};
|
|
1609
1609
|
export {};
|
|
@@ -1743,7 +1743,7 @@ declare const fluent_mdl2IconNames: {
|
|
|
1743
1743
|
};
|
|
1744
1744
|
export type FluentMdl2IconName = keyof typeof fluent_mdl2IconNames;
|
|
1745
1745
|
export declare const FluentMdl2: {
|
|
1746
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"number" | "sort" | "filter" | "error" | "color" | "rotate" | "column" | "link" | "search" | "header" | "checkbox" | "combobox" | "switch" | "tab" | "timer" | "list" | "split" | "trim" | "bold" | "code" | "embed" | "footer" | "label" | "picture" | "script" | "section" | "source" | "table" | "video" | "ellipse" | "line" | "stop" | "view" | "align-horizontal-center" | "align-horizontal-left" | "align-horizontal-right" | "align-vertical-bottom" | "align-vertical-center" | "align-vertical-top" | "archive" | "arrow-up-right" | "aspect-ratio" | "asterisk" | "blur" | "broom" | "cancel" | "certificate" | "chat" | "clipboard-list" | "closed-caption" | "comment" | "compare" | "contrast" | "crop" | "crown" | "delete" | "dialpad" | "diamond" | "dock-left" | "dock-right" | "download" | "export" | "fast-forward" | "fingerprint" | "flag" | "flash-auto" | "flash-off" | "flashlight" | "forum" | "group" | "heart-broken" | "help" | "image-search" | "import" | "inbox" | "mail" | "merge" | "message" | "more" | "package" | "pin" | "presentation" | "read" | "redo" | "rewind" | "ribbon" | "select-all" | "send" | "server" | "sync" | "tag" | "text-recognition" | "ticket" | "timeline" | "transition" | "translate" | "undo" | "upload" | "flower" | "bug" | "cat" | "arrange-bring-forward" | "arrange-bring-to-front" | "arrange-send-backward" | "arrange-send-to-back" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "forward" | "refresh" | "reply" | "reply-all" | "share" | "album" | "equalizer" | "headset" | "music-note" | "car" | "lock" | "snowflake" | "bank" | "fax" | "phone" | "glasses" | "eyedropper" | "database" | "database-sync" | "calendar" | "calendar-week" | "clock" | "history" | "file-code" | "variable" | "tablet" | "brush" | "rename" | "file-image" | "folder" | "folder-open" | "folder-search" | "text-box" | "cake" | "coffee" | "heart" | "medal" | "puzzle" | "toolbox" | "camera" | "door" | "home" | "home-group" | "lamp" | "lightbulb" | "lightning-bolt" | "pause" | "play" | "remote" | "robot" | "video-off" | "calculator" | "hospital" | "pill" | "wheelchair" | "microphone" | "airplane" | "bus" | "ferry" | "taxi" | "train" | "library" | "rocket" | "filter-settings" | "circle-half-full" | "hexagon" | "octagon" | "pentagon" | "baseball" | "bullseye" | "cricket" | "golf" | "rugby" | "soccer" | "tennis" | "trophy" | "parachute" | "view-dashboard" | "view-list" | "umbrella" | "clipboard-solid" | "document" | "home-solid" | "italic" | "map-pin" | "map-pin-solid" | "megaphone" | "megaphone-solid" | "numbered-list" | "photo" | "play-solid" | "shopping-cart" | "shopping-cart-solid" | "stop-solid" | "strikethrough" | "tag-solid" | "underline" | "alarm-clock" | "badge" | "circle-pause" | "circle-plus" | "circle-stop" | "cloudy" | "combine" | "contact" | "copy" | "currency" | "file-symlink" | "focus" | "git-fork" | "git-graph" | "globe" | "guitar" | "hard-drive" | "hotel" | "info" | "mail-check" | "mic-off" | "move" | "plug" | "save" | "save-all" | "settings" | "shapes" | "shirt" | "subscript" | "superscript" | "toggle-left" | "toggle-right" | "volume-1" | "volume-2" | "zoom-in" | "zoom-out" | "align-center" | "align-justify" | "align-left" | "align-right" | "edit" | "more-vertical" | "unlock" | "bookmarks" | "brightness" | "caret-right" | "clear-formatting" | "cut" | "devices-2" | "favicon" | "file-off" | "filters" | "gift-card" | "highlight" | "location" | "lock-share" | "mail-forward" | "mail-pause" | "news" | "packages" | "pinned" | "plug-connected" | "separator" | "slideshow" | "stack" | "stopwatch" | "user-pause" | "volume-3" | "world" | "zoom" | "back" | "calendar-day" | "circle-fill" | "emoji-neutral" | "folder-fill" | "heart-fill" | "people" | "shop" | "snow" | "sort-down" | "sort-up" | "suitcase" | "anchor-lock" | "location-dot" | "r" | "paste" | "print" | "font" | "blog" | "teeth" | "mail-fill" | "message-fill" | "flow-chart" | "font-color" | "font-size" | "font-size-2" | "checkbox-fill" | "add" | "checkbox-indeterminate" | "deploy" | "diamond-solid" | "drill-down" | "drill-through" | "insert" | "light" | "repeat-one" | "reset" | "tag-group" | "triangle-solid" | "machine-learning" | "money" | "document-set" | "documentation" | "encryption" | "flow" | "important" | "parameter" | "product" | "unknown" | "warning" | "education" | "running" | "cafe" | "calendar-settings" | "delivery-truck" | "event" | "fog" | "lifesaver" | "partly-cloudy-night" | "rain" | "snooze" | "chat-bot" | "mail-reply" | "attach" | "build" | "location-outline" | "medical" | "remove" | "sad" | "sunny" | "go" | "org" | "toll" | "brunch" | "processing" | "teamwork" | "waffle" | "feedback" | "manufacturing" | "preview" | "save-as" | "phishing" | "sprint" | "video-search" | "area-chart" | "payment-card" | "savings" | "sell" | "stacked-bar-chart" | "stacked-line-chart" | "work" | "unsubscribe" | "transition-push" | "add-home" | "add-reaction" | "partly-cloudy-day" | "waving-hand" | "add-link" | "add-notes" | "dictionary" | "document-search" | "edit-note" | "fit-page" | "fit-width" | "line-style" | "padding" | "page-header" | "turn-right" | "collapse-content" | "dropdown" | "hide" | "open-with" | "step" | "birthday-cake" | "cycling" | "medal-solid" | "mail-solid" | "bug-solid" | "page" | "page-edit" | "task-list" | "emoji" | "headset-solid" | "page-left" | "page-right" | "filter-solid" | "ascending" | "chevron-down-small" | "chevron-left-small" | "chevron-right-small" | "chevron-up-small" | "comment-add" | "descending" | "full-screen" | "health" | "sign-out" | "next" | "reading-mode" | "streaming" | "total" | "world-clock" | "chat-solid" | "comment-solid" | "dislike-solid" | "like-solid" | "video-solid" | "bank-solid" | "lock-solid" | "unlock-solid" | "chart" | "dislike" | "game" | "like" | "line-chart" | "scatter-chart" | "slider" | "c-plus-plus" | "coupon" | "jenkins-logo" | "user-remove" | "drop" | "line-spacing" | "room" | "info-solid" | "warning-solid" | "alert-solid" | "asterisk-solid" | "flame-solid" | "pinned-solid" | "crown-solid" | "airplane-solid" | "ferry-solid" | "chrome-close" | "chrome-minimize" | "chrome-restore" | "new-folder" | "repo" | "variable-group" | "database-view" | "annotation" | "beer-mug" | "memo" | "return-key" | "website" | "family" | "hour-glass" | "text-document" | "untag" | "file-system" | "clear" | "decrease-indent" | "increase-indent" | "location-circle" | "location-fill" | "mail-reply-all" | "contact-card" | "touch" | "gift-box-solid" | "circle-pause-solid" | "check-mark" | "chopsticks" | "accept" | "accept-medium" | "access-logo" | "accessibilty-checker" | "account-activity" | "account-browser" | "account-management" | "accounts" | "action-center" | "activate-orders" | "activity-feed" | "add-bookmark" | "add-event" | "add-favorite" | "add-favorite-fill" | "add-friend" | "add-group" | "add-in" | "add-online-meeting" | "add-phone" | "add-space-after" | "add-space-before" | "add-to" | "add-to-shopping-list" | "add-work" | "air-tickets" | "album-remove" | "alert-settings" | "all-apps" | "all-apps-mirrored" | "all-currency" | "alt-text" | "amazon-web-services-logo" | "analytics-query" | "analytics-report" | "analytics-view" | "android-logo" | "apache-ivy-logo-32" | "apache-maven-logo" | "archive-undo" | "arrange-by-from" | "arrivals" | "arrow-down-right-8" | "arrow-down-right-mirrored-8" | "arrow-tall-down-left" | "arrow-tall-down-right" | "arrow-tall-up-left" | "arrow-tall-up-right" | "arrow-up-right-8" | "arrow-up-right-mirrored-8" | "articles" | "assessment-group" | "assessment-group-template" | "asset-library" | "assign" | "assign-policy" | "australian-rules" | "auto-deploy-settings" | "auto-enhance-off" | "auto-enhance-on" | "auto-fill-template" | "auto-fit-contents" | "auto-fit-window" | "auto-height" | "auto-racing" | "automate-flow" | "away-status" | "b-i-dashboard" | "back-to-window" | "background-color" | "backlog" | "backlog-board" | "backlog-list" | "balloons" | "bar-chart-4" | "bar-chart-horizontal" | "bar-chart-vertical" | "bar-chart-vertical-edit" | "bar-chart-vertical-fill" | "bar-chart-vertical-filter" | "bar-chart-vertical-filter-solid" | "bidi-ltr" | "bidi-rtl" | "bitbucket-logo-32" | "blob-storage" | "block-contact" | "blocked" | "blocked-12" | "blocked-2" | "blocked-2-solid" | "blocked-site" | "blocked-site-solid-12" | "blocked-solid" | "blowing-snow" | "boards" | "book-answers" | "bookmark-report" | "bookmarks-mirrored" | "border-dash" | "border-dot" | "box-addition-solid" | "box-checkmark-solid" | "box-logo" | "box-multiply-solid" | "box-play-solid" | "box-subtract-solid" | "branch-commit" | "branch-compare" | "branch-fork" | "branch-fork-2" | "branch-locked" | "branch-merge" | "branch-pull-request" | "branch-search" | "branch-shelveset" | "breadcrumb" | "breakfast" | "browser-screen-shot" | "browser-tab" | "browser-tab-screenshot" | "bucket-color" | "bucket-color-fill" | "buffer-time-after" | "buffer-time-before" | "buffer-time-both" | "bug-block" | "bug-sync" | "build-definition" | "build-issue" | "build-queue" | "build-queue-new" | "bulk-upload" | "bulleted-list" | "bulleted-list-2" | "bulleted-list-2-mirrored" | "bulleted-list-bullet" | "bulleted-list-bullet-mirrored" | "bulleted-list-mirrored" | "bulleted-list-text" | "bulleted-list-text-mirrored" | "bulleted-tree-list" | "bullseye-target" | "bullseye-target-edit" | "bus-solid" | "business-hours-sign" | "button-control" | "c-plus-plus-language" | "c-r-m-processes" | "c-r-m-report" | "c-r-m-services" | "c-s-s" | "calculator-addition" | "calculator-delta" | "calculator-equal-to" | "calculator-group" | "calculator-multiply" | "calculator-not-equal-to" | "calculator-percentage" | "calculator-subtract" | "calendar-agenda" | "calendar-mirrored" | "calendar-reply" | "calendar-settings-mirrored" | "calendar-work-week" | "calendar-year" | "calories" | "calories-add" | "campaign-template" | "canned-chat" | "caret-bottom-left-center-8" | "caret-bottom-left-solid-8" | "caret-bottom-right-center-8" | "caret-bottom-right-solid-8" | "caret-down-8" | "caret-down-solid-8" | "caret-hollow" | "caret-hollow-mirrored" | "caret-left-8" | "caret-left-solid-8" | "caret-right-8" | "caret-right-solid-8" | "caret-solid" | "caret-solid-16" | "caret-solid-down" | "caret-solid-left" | "caret-solid-mirrored" | "caret-solid-right" | "caret-solid-up" | "caret-top-left-center-8" | "caret-top-left-solid-8" | "caret-top-right-center-8" | "caret-top-right-solid-8" | "caret-up-8" | "caret-up-solid-8" | "cell-phone" | "certified-database" | "change-entitlements" | "chart-series" | "chart-template" | "chart-x-angle" | "chart-y-angle" | "chat-invite-friend" | "check-list" | "check-list-check" | "check-list-check-mirrored" | "check-list-text" | "check-list-text-mirrored" | "checkbox-composite" | "checkbox-composite-reversed" | "checked-out-by-other-12" | "checked-out-by-you-12" | "chevron-down-end-6" | "chevron-down-med" | "chevron-fold-10" | "chevron-left-end-6" | "chevron-left-med" | "chevron-right-end-6" | "chevron-right-med" | "chevron-unfold-10" | "chevron-up-end-6" | "chevron-up-med" | "childof" | "chrome-back" | "chrome-back-mirrored" | "chrome-full-screen" | "chronos-logo" | "circle-addition" | "circle-addition-solid" | "circle-ring" | "circle-shape" | "circle-shape-solid" | "circle-stop-solid" | "city-next" | "city-next-2" | "clear-filter" | "clear-formatting-a" | "clear-formatting-eraser" | "clear-night" | "clear-selection" | "clear-selection-mirrored" | "clipboard-list-mirrored" | "clone-to-desktop" | "close-pane" | "close-pane-mirrored" | "cloud-weather" | "cocktails" | "code-edit" | "coffee-script" | "collapse-content-single" | "collapse-menu" | "college-football" | "college-hoops" | "color-solid" | "column-left-two-thirds" | "column-left-two-thirds-edit" | "column-options" | "column-right-two-thirds" | "column-right-two-thirds-edit" | "column-vertical-section" | "column-vertical-section-edit" | "command-prompt" | "comment-active" | "comment-next" | "comment-previous" | "comment-urgent" | "commitments" | "common-data-service-c-d-s" | "communications" | "company-directory" | "company-directory-mirrored" | "compare-uneven" | "compass-n-w" | "completed" | "completed-solid" | "compliance-audit" | "configuration-solid" | "connect-contacts" | "connect-virtual-machine" | "construction-cone" | "construction-cone-solid" | "contact-card-settings" | "contact-card-settings-mirrored" | "contact-heart" | "contact-info" | "contact-link" | "contact-list" | "contact-lock" | "content-feed" | "content-settings" | "context-menu" | "copy-edit" | "cotton" | "create-mail-rule" | "cube-shape" | "cube-shape-solid" | "custom-list" | "custom-list-mirrored" | "customize-toolbar" | "d-o-m" | "d-r-m" | "dashboard-add" | "data-connection-library" | "data-management-settings" | "dataflows" | "dataflows-link" | "date-time" | "date-time-12" | "date-time-2" | "date-time-mirrored" | "deactivate-orders" | "decimals" | "decision-solid" | "decline-call" | "decrease-indent-arrow" | "decrease-indent-arrow-mirrored" | "decrease-indent-legacy" | "decrease-indent-mirrored" | "decrease-indent-text" | "decrease-indent-text-mirrored" | "default-ratio" | "defect-solid" | "delete-columns" | "delete-rows" | "delete-rows-mirrored" | "delete-table" | "dependency-add" | "dependency-remove" | "design" | "desktop-screenshot" | "developer-tools" | "device-bug" | "device-off" | "device-run" | "devices-3" | "devices-4" | "diagnostic" | "diagnostic-data-bar-tooltip" | "dictionary-remove" | "diet-plan-notebook" | "diff-inline" | "diff-side-by-side" | "disable-updates" | "disconnect-virtual-machine" | "distribute-down" | "doc-library" | "dock-left-mirrored" | "docker-logo" | "document-approval" | "document-management" | "document-reply" | "donut-chart" | "double-bookmark" | "double-chevron-down" | "double-chevron-down-12" | "double-chevron-down-8" | "double-chevron-left" | "double-chevron-left-12" | "double-chevron-left-8" | "double-chevron-left-med" | "double-chevron-left-med-mirrored" | "double-chevron-right" | "double-chevron-right-12" | "double-chevron-right-8" | "double-chevron-up" | "double-chevron-up-12" | "double-chevron-up-8" | "double-column" | "double-column-edit" | "double-down-arrow" | "down" | "download-document" | "drag-object" | "drill-down-solid" | "drill-expand" | "drill-show" | "driver-off" | "drop-shape" | "drop-shape-solid" | "dropbox-logo" | "duplicate-row" | "duststorm" | "e-discovery" | "e-m-i" | "eat-drink" | "edit-contact" | "edit-create" | "edit-mail" | "edit-mirrored" | "edit-photo" | "edit-solid-12" | "edit-solid-mirrored-12" | "edit-style" | "egnyte-logo" | "emoji-2" | "emoji-disappointed" | "emoji-tab-symbols" | "empty-recycle-bin" | "end-point-solid" | "engineering-group" | "entitlement-policy" | "entitlement-redemption" | "entry-decline" | "entry-view" | "erase-tool" | "error-badge" | "event-12" | "event-accepted" | "event-date" | "event-date-missed-12" | "event-declined" | "event-info" | "event-tentative" | "event-tentative-mirrored" | "event-to-do-logo" | "exercise-tracker" | "expand-menu" | "explore-content" | "explore-content-single" | "explore-data" | "export-mirrored" | "external-build" | "external-git" | "external-t-f-v-c" | "external-x-a-m-l" | "eye-shadow" | "f-12-dev-tools" | "facebook-logo" | "fang-body" | "fast-forward-eight-x" | "fast-forward-four-x" | "fast-forward-one-five-x" | "fast-forward-one-x" | "fast-forward-point-five-x" | "fast-forward-two-x" | "fast-mode" | "favorite-list" | "favorite-star" | "favorite-star-fill" | "feedback-request-mirrored-solid" | "feedback-request-solid" | "feedback-response-solid" | "field-changed" | "field-empty" | "field-filled" | "field-not-changed" | "field-read-only" | "field-required" | "file-a-s-p-x" | "file-bug" | "file-c-s-s" | "file-comment" | "file-h-t-m-l" | "file-j-a-v-a" | "file-less" | "file-p-d-b" | "file-request" | "file-s-q-l" | "file-sass" | "file-template" | "file-y-m-l" | "filter-ascending" | "filter-descending" | "filters-solid" | "financial" | "financial-mirrored-solid" | "financial-solid" | "five-tile-grid" | "fixed-asset-management" | "fixed-column-width" | "flick-down" | "flick-left" | "flick-right" | "flick-up" | "focal-point" | "focus-view" | "folder-horizontal" | "folder-list" | "folder-list-mirrored" | "folder-query" | "follow-user" | "font-color-a" | "font-color-swatch" | "font-decrease" | "font-increase" | "form-library" | "form-library-mirrored" | "format-painter" | "forward-event" | "freezing" | "frigid" | "front-camera" | "full-circle-mask" | "full-history" | "full-view" | "full-width" | "full-width-edit" | "functional-manager-dashboard" | "funnel-chart" | "g-i-f" | "g-u-i-d" | "gather" | "generate" | "generic-scan" | "generic-scan-filled" | "giftbox" | "giftbox-open" | "git-hub-logo" | "git-logo" | "glimmer" | "global-nav-button" | "global-nav-button-active" | "globe-2" | "globe-favorite" | "go-mirrored" | "go-to-dashboard" | "google-drive-logo" | "google-drive-logo-bottom-blue" | "google-drive-logo-left-green" | "google-drive-logo-right-yellow" | "goto-today" | "gradle-logo-32" | "greeting-card" | "grid-view-large" | "grid-view-medium" | "grid-view-small" | "gripper-bar-horizontal" | "gripper-bar-vertical" | "gripper-dots-vertical" | "gripper-tool" | "group-list" | "group-object" | "grouped-ascending" | "grouped-descending" | "grouped-list" | "hail-day" | "hail-night" | "half-alpha" | "half-circle" | "hands-free" | "handwriting" | "hard-drive-group" | "hard-drive-lock" | "hard-drive-unlock" | "header-1" | "header-2" | "header-3" | "header-4" | "health-refresh" | "health-solid" | "help-mirrored" | "hexadite-investigation" | "hexadite-investigation-cancel" | "hexadite-investigation-semi-auto" | "hide-2" | "hide-3" | "highlight-mapped-shapes" | "hint-text" | "historical-weather" | "home-dropdown" | "home-verify" | "horizontal-distribute-center" | "horizontal-tab-key" | "i-d-badge" | "i-o-s-app-store-logo" | "i-o-t" | "i-r-m-forward" | "i-r-m-forward-mirrored" | "i-r-m-reply" | "i-r-m-reply-mirrored" | "icon-sets-flag" | "ignore-conversation" | "image-crosshair" | "image-diff" | "image-in-a-r" | "image-pixel" | "import-all-mirrored" | "import-mirrored" | "inbox-check" | "incident-triangle" | "incoming-call" | "increase-indent-arrow" | "increase-indent-arrow-mirrored" | "increase-indent-hanging" | "increase-indent-hanging-mirrored" | "increase-indent-legacy" | "increase-indent-mirrored" | "increase-indent-text" | "increase-indent-text-mirrored" | "indent-first-line" | "info-2" | "information-barriers" | "inking-tool" | "input-address" | "insert-columns-left" | "insert-columns-right" | "insert-rows-above" | "insert-rows-below" | "insert-signature-line" | "insert-text-box" | "insights" | "install-to-drive" | "installation" | "internal-investigation" | "internet-sharing" | "issue-solid" | "issue-tracking" | "issue-tracking-mirrored" | "j-s" | "java-logo" | "java-script-language" | "join-online-meeting" | "keubernetes-logo" | "key-phrase-extraction" | "keyboard-classic" | "knowledge-article" | "ladybug-solid" | "landscape-orientation" | "laptop-secure" | "laptop-selected" | "large-grid" | "learning-tools" | "leave" | "leave-user" | "lifesaver-lock" | "light-weight" | "lightning-bolt-solid" | "line-thickness" | "link-12" | "linked-database" | "linux-logo-32" | "list-mirrored" | "live-site" | "locale-language" | "lock-12" | "log-remove" | "lookup-entities" | "lower-brightness" | "mail-alert" | "mail-attached" | "mail-forward-mirrored" | "mail-low-importance" | "mail-options" | "mail-reminder" | "mail-repeat" | "mail-reply-all-mirrored" | "mail-reply-mirrored" | "mail-schedule" | "mail-tentative" | "mail-tentative-mirrored" | "mail-undelivered" | "manager-self-service" | "map-directions" | "map-layers" | "map-pin-12" | "mark-as-protected" | "mark-down-language" | "market" | "market-down" | "master-database" | "maximum-value" | "media" | "media-add" | "merge-duplicate" | "message-friend-request" | "mic-off-2" | "mini-contract" | "mini-contract-mirrored" | "mini-expand" | "mini-expand-mirrored" | "mini-link" | "minimum-value" | "miracast-logo-large" | "mobile-angled" | "mobile-report" | "mobile-selected" | "modeling-view" | "more-sports" | "mountain-climbing" | "move-to-folder" | "movers" | "multi-select" | "multi-select-mirrored" | "music-in-collection" | "music-in-collection-fill" | "mute-chat" | "my-movies-t-v" | "my-network" | "n-p-m-logo" | "nav-2-d-map-view" | "navigate-back" | "navigate-back-mirrored" | "navigate-external-inline" | "navigate-forward" | "navigate-forward-mirrored" | "navigation-flipper" | "network-tower" | "new-analytics-query" | "new-mail" | "new-team-project" | "news-search" | "nonprofit-logo-32" | "normal-weight" | "not-executed" | "not-impacted-solid" | "note-forward" | "note-pinned" | "note-reply" | "number-field" | "number-sequence" | "number-symbol" | "numbered-list-mirrored" | "numbered-list-number" | "numbered-list-number-mirrored" | "numbered-list-text" | "numbered-list-text-mirrored" | "o-e-m" | "office-chat" | "office-chat-solid" | "offline-storage" | "offline-storage-solid" | "onboarding" | "open-enrollment" | "open-file" | "open-folder-horizontal" | "open-in-new-tab" | "open-in-new-window" | "open-pane" | "open-pane-mirrored" | "open-source" | "open-with-mirrored" | "orientation" | "orientation-2" | "out-of-office" | "p-c-1" | "p-d-f" | "p-o-i" | "p-o-i-solid" | "p-y" | "padding-bottom" | "padding-left" | "padding-right" | "padding-top" | "page-add" | "page-arrow-right" | "page-checked-out" | "page-checkedin" | "page-data" | "page-header-edit" | "page-link" | "page-list" | "page-list-filter" | "page-list-mirrored-solid" | "page-list-solid" | "page-lock" | "page-remove" | "page-shared" | "page-solid" | "pano-indicator" | "parachute-solid" | "parature-logo" | "parking-location" | "parking-location-mirrored" | "parking-mirrored-solid" | "parking-solid" | "party-leader" | "passive-authentication" | "password-field" | "paste-as-code" | "paste-as-text" | "pen-workspace" | "pencil-reply" | "people-add" | "people-alert" | "people-block" | "people-pause" | "people-repeat" | "permissions" | "permissions-solid" | "personalize" | "photo-2" | "photo-2-add" | "photo-2-fill" | "photo-2-remove" | "photo-collection" | "photo-error" | "photo-video-media" | "picture-center" | "picture-fill" | "picture-library" | "picture-position" | "picture-stretch" | "picture-tile" | "pie-double" | "pie-single" | "pie-single-solid" | "pin-solid-12" | "pin-solid-off-12" | "pinned-fill" | "pivot-chart" | "plain-text" | "plan-view" | "play-resume" | "play-reverse" | "play-reverse-resume" | "playback-rate-1x" | "player-settings" | "plug-disconnected" | "plug-solid" | "poll-results" | "post-update" | "power-button" | "precipitation" | "presence-chicklet-video" | "presentation-12" | "preview-link" | "previous" | "primary-calendar" | "printfax-printer-file" | "pro-football" | "pro-hockey" | "process-meta-task" | "processing-cancel" | "processing-pause" | "processing-run" | "product-catalog" | "product-list" | "product-release" | "product-variant" | "production-floor-management" | "profile-search" | "progress-loop-inner" | "progress-loop-outer" | "progress-ring-dots" | "promoted-database" | "protect-restrict" | "protected-document" | "provisioning-package" | "public-calendar" | "public-contact-card" | "public-contact-card-mirrored" | "public-email" | "public-folder" | "publish-content" | "publish-course" | "python-language" | "python-logo-blue" | "python-logo-yellow" | "q-r-code" | "qand-a" | "qand-a-mirror" | "quad-column" | "quantity" | "quarter-circle" | "query-list" | "questionnaire" | "questionnaire-mirrored" | "quick-note" | "quick-note-solid" | "radio-btn-off" | "radio-btn-on" | "radio-bullet" | "rain-showers-day" | "rain-showers-night" | "rain-snow" | "raw-source" | "react-logo" | "read-out-loud" | "reading-mode-solid" | "real-estate" | "receipt-check" | "receipt-forward" | "receipt-reply" | "receipt-tentative" | "receipt-tentative-mirrored" | "receipt-undelivered" | "recent" | "record-2" | "recruitment-management" | "rectangle-shape" | "rectangle-shape-solid" | "rectangular-clipping" | "recurring-event" | "recurring-task" | "red-eye" | "red-eye-12" | "redeploy" | "registry-editor" | "relationship" | "release-definition" | "release-gate" | "release-gate-check" | "release-gate-error" | "reminder-group" | "reminder-person" | "reminder-time" | "remove-content" | "remove-event" | "remove-filter" | "remove-from-shopping-list" | "remove-from-trash" | "remove-link" | "remove-link-chain" | "remove-link-x" | "remove-occurrence" | "renewal-current" | "renewal-future" | "reopen-pages" | "repair" | "repeat-all" | "repeat-header-rows" | "reply-all-alt" | "reply-all-mirrored" | "reply-alt" | "reply-mirrored" | "repo-solid" | "report-add" | "report-document" | "report-hacked" | "report-library" | "report-library-mirrored" | "report-lock" | "report-warning" | "rerun" | "reservation-orders" | "reset-device" | "responses-menu" | "return-to-session" | "rev-toggle-key" | "review-request-mirrored-solid" | "review-request-solid" | "review-response-solid" | "review-solid" | "rewind-eight-x" | "rewind-four-x" | "rewind-one-five-x" | "rewind-one-x" | "rewind-point-five-x" | "rewind-two-x" | "ribbon-solid" | "right-double-quote" | "right-triangle" | "ringer" | "ringer-off" | "ringer-remove" | "ringer-solid" | "rotate-90-clockwise" | "rotate-90-counter-clockwise" | "rows-child" | "rows-group" | "ruby-gems-logo" | "rust-language-logo" | "s-d-card" | "s-i-p-move" | "s-q-l-analytics-pool" | "s-v-n-logo" | "sad-solid" | "save-and-close" | "save-template" | "save-to-mobile" | "scale-up" | "scale-volume" | "schedule-event-action" | "scope-template" | "screen-cast" | "screen-time" | "scroll-up-down" | "search-and-apps" | "search-bookmark" | "search-calendar" | "search-data" | "search-issue" | "search-issue-mirrored" | "search-nearby" | "secondary-nav" | "sections" | "security-group" | "see-do" | "semibold-weight" | "send-mirrored" | "sentiment-analysis" | "server-enviroment" | "server-processes" | "service-off" | "set-action" | "shake-device" | "shape-solid" | "shared-database" | "sharei-o-s" | "shop-server" | "show-grid" | "show-results" | "show-results-mirrored" | "show-time-as" | "side-panel" | "side-panel-mirrored" | "signin" | "single-bookmark" | "single-bookmark-solid" | "single-column" | "single-column-edit" | "site-scan" | "six-point-star" | "size-legacy" | "ski-resorts" | "skip-back-10" | "skip-forward-30" | "skype-arrow" | "skype-check" | "skype-clock" | "skype-minus" | "slider-handle-size" | "slider-thumb" | "smart-glass-remote" | "snap-to-grid" | "snow-shower-day" | "snow-shower-night" | "sort-lines" | "sort-lines-ascending" | "spacer" | "speakers" | "special-event" | "speed-high" | "spelling" | "split-object" | "squalls" | "square-shape" | "square-shape-solid" | "stack-column-chart" | "stack-indicator" | "stacked-column-chart-2" | "stacked-column-chart-2-fill" | "starburst" | "starburst-solid" | "status-circle-block" | "status-circle-block-2" | "status-circle-checkmark" | "status-circle-error-x" | "status-circle-exclamation" | "status-circle-info" | "status-circle-inner" | "status-circle-outer" | "status-circle-question-mark" | "status-circle-ring" | "status-circle-sync" | "status-error-full" | "status-triangle" | "status-triangle-exclamation" | "status-triangle-inner" | "status-triangle-outer" | "step-insert" | "step-shared" | "step-shared-add" | "step-shared-insert" | "stock-down" | "stock-up" | "storage-acount" | "storage-optical" | "storyboard" | "streaming-off" | "street" | "streetside-split-minimize" | "subscribe" | "substitutions-in" | "sun-add" | "sun-question-mark" | "survey-questions" | "swift-logo" | "switch-user" | "switcher-start-end" | "sync-folder" | "sync-occurence" | "sync-status" | "sync-status-solid" | "sync-to-p-c" | "system" | "t-v-monitor" | "t-v-monitor-selected" | "tab-center" | "tab-one-column" | "tab-three-column" | "tab-two-column" | "table-branded-column" | "table-branded-row" | "table-computed" | "table-first-column" | "table-group" | "table-header-row" | "table-last-column" | "table-link" | "table-total-row" | "tablet-mode" | "tablet-selected" | "tag-unknown" | "tag-unknown-12" | "tag-unknown-12-mirror" | "tag-unknown-mirror" | "task-group" | "task-group-mirrored" | "task-manager" | "task-manager-mirrored" | "task-solid" | "taskboard" | "team-favorite" | "telemarketer" | "temporary-user" | "test-auto-solid" | "test-beaker" | "test-beaker-solid" | "test-case" | "test-explore-solid" | "test-impact-solid" | "test-parameter" | "test-plan" | "test-step" | "test-suite" | "test-user-solid" | "text-align-bottom" | "text-align-middle" | "text-align-top" | "text-callout" | "text-document-edit" | "text-document-settings" | "text-document-shared" | "text-field" | "text-overflow" | "text-paragraph-option" | "text-rotate-270-degrees" | "text-rotate-90-degrees" | "text-rotate-horizontal" | "text-rotation" | "this-p-c" | "three-quarter-circle" | "thumbnail-view" | "thumbnail-view-mirrored" | "thunderstorms" | "tiles" | "tiles-2" | "time-entry" | "time-picker" | "time-sheet" | "timeline-delivery" | "timeline-matrix-view" | "timeline-progress" | "toggle-border" | "toggle-filled" | "toggle-thumb" | "touch-pointer" | "trackers" | "trackers-mirrored" | "train-solid" | "transfer-call" | "transition-effect" | "transition-pop" | "trending-12" | "triangle-down-12" | "triangle-left-12" | "triangle-right-12" | "triangle-shape" | "triangle-shape-solid" | "triangle-solid-down-12" | "triangle-solid-left-12" | "triangle-solid-right-12" | "triangle-solid-up-12" | "triangle-up-12" | "trigger-approval" | "trigger-auto" | "trigger-user" | "trim-end" | "trim-start" | "triple-column" | "triple-column-edit" | "triple-column-wide" | "trophy-2" | "trophy-2-solid" | "twelve-point-star" | "twitter-logo" | "u-r-l-block" | "u-s-b" | "un-set-color" | "uneditable" | "uneditable-2" | "uneditable-2-mirrored" | "uneditable-mirrored" | "uneditable-solid-12" | "uneditable-solid-mirrored-12" | "unfavorite" | "ungroup-object" | "unknown-call" | "unknown-mirrored" | "unknown-mirrored-solid" | "unknown-solid" | "unpin" | "unpublish-content" | "unstack-selected" | "unsync-folder" | "unsync-occurence" | "up" | "update-restore" | "upgrade-analysis" | "user-event" | "user-followed" | "user-gauge" | "user-optional" | "user-sync" | "user-warning" | "v-b" | "vacation" | "vaccination" | "variable-2" | "venn-diagram" | "verified-brand" | "verified-brand-solid" | "version-control-push" | "vertical-distribute-center" | "video-360-generic" | "video-light-off" | "video-off-2" | "view-all" | "view-all-2" | "view-in-a-r" | "view-list-group" | "view-list-tree" | "view-original" | "visually-impaired" | "visuals-folder" | "visuals-store" | "voicemail-forward" | "voicemail-i-r-m" | "voicemail-reply" | "volume-0" | "volume-disabled" | "waitlist-confirm" | "waitlist-confirm-mirrored" | "warning-12" | "web-components" | "web-environment" | "web-publish" | "web-template" | "webcam-2" | "webcam-2-off" | "weights" | "wifi-ethernet" | "wifi-warning-4" | "wind-direction" | "window-edit" | "wines" | "wipe-phone" | "work-flow" | "work-item" | "work-item-alert" | "work-item-bar" | "work-item-bar-solid" | "work-item-bug" | "workforce-management" | "xamarin-logo" | "xbox-controller" | "zip-folder" | "zoom-to-fit">): import("react").JSX.Element;
|
|
1746
|
+
({ 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<"number" | "sort" | "filter" | "color" | "rotate" | "translate" | "running" | "completed" | "error" | "search" | "split" | "trim" | "bold" | "link" | "total" | "header" | "checkbox" | "combobox" | "switch" | "tab" | "timer" | "list" | "padding" | "column" | "code" | "embed" | "footer" | "label" | "picture" | "script" | "section" | "source" | "table" | "video" | "ellipse" | "line" | "stop" | "view" | "align-horizontal-center" | "align-horizontal-left" | "align-horizontal-right" | "align-vertical-bottom" | "align-vertical-center" | "align-vertical-top" | "archive" | "arrow-up-right" | "aspect-ratio" | "asterisk" | "blur" | "broom" | "cancel" | "certificate" | "chat" | "clipboard-list" | "closed-caption" | "comment" | "compare" | "contrast" | "crop" | "crown" | "delete" | "dialpad" | "diamond" | "dock-left" | "dock-right" | "download" | "export" | "fast-forward" | "fingerprint" | "flag" | "flash-auto" | "flash-off" | "flashlight" | "forum" | "group" | "heart-broken" | "help" | "image-search" | "import" | "inbox" | "mail" | "merge" | "message" | "more" | "package" | "pin" | "presentation" | "read" | "redo" | "rewind" | "ribbon" | "select-all" | "send" | "server" | "sync" | "tag" | "text-recognition" | "ticket" | "timeline" | "transition" | "undo" | "upload" | "flower" | "bug" | "cat" | "arrange-bring-forward" | "arrange-bring-to-front" | "arrange-send-backward" | "arrange-send-to-back" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "forward" | "refresh" | "reply" | "reply-all" | "share" | "album" | "equalizer" | "headset" | "music-note" | "car" | "lock" | "snowflake" | "bank" | "fax" | "phone" | "glasses" | "eyedropper" | "database" | "database-sync" | "calendar" | "calendar-week" | "clock" | "history" | "file-code" | "variable" | "tablet" | "brush" | "rename" | "file-image" | "folder" | "folder-open" | "folder-search" | "text-box" | "cake" | "coffee" | "heart" | "medal" | "puzzle" | "toolbox" | "camera" | "door" | "home" | "home-group" | "lamp" | "lightbulb" | "lightning-bolt" | "pause" | "play" | "remote" | "robot" | "video-off" | "calculator" | "hospital" | "pill" | "wheelchair" | "microphone" | "airplane" | "bus" | "ferry" | "taxi" | "train" | "library" | "rocket" | "filter-settings" | "circle-half-full" | "hexagon" | "octagon" | "pentagon" | "baseball" | "bullseye" | "cricket" | "golf" | "rugby" | "soccer" | "tennis" | "trophy" | "parachute" | "view-dashboard" | "view-list" | "umbrella" | "clipboard-solid" | "document" | "home-solid" | "italic" | "map-pin" | "map-pin-solid" | "megaphone" | "megaphone-solid" | "numbered-list" | "photo" | "play-solid" | "shopping-cart" | "shopping-cart-solid" | "stop-solid" | "strikethrough" | "tag-solid" | "underline" | "alarm-clock" | "badge" | "circle-pause" | "circle-plus" | "circle-stop" | "cloudy" | "combine" | "contact" | "copy" | "currency" | "file-symlink" | "focus" | "git-fork" | "git-graph" | "globe" | "guitar" | "hard-drive" | "hotel" | "info" | "mail-check" | "mic-off" | "move" | "plug" | "save" | "save-all" | "settings" | "shapes" | "shirt" | "subscript" | "superscript" | "toggle-left" | "toggle-right" | "volume-1" | "volume-2" | "zoom-in" | "zoom-out" | "align-center" | "align-justify" | "align-left" | "align-right" | "edit" | "more-vertical" | "unlock" | "bookmarks" | "brightness" | "caret-right" | "clear-formatting" | "cut" | "devices-2" | "favicon" | "file-off" | "filters" | "gift-card" | "highlight" | "location" | "lock-share" | "mail-forward" | "mail-pause" | "news" | "packages" | "pinned" | "plug-connected" | "separator" | "slideshow" | "stack" | "stopwatch" | "user-pause" | "volume-3" | "world" | "zoom" | "back" | "calendar-day" | "circle-fill" | "emoji-neutral" | "folder-fill" | "heart-fill" | "people" | "shop" | "snow" | "sort-down" | "sort-up" | "suitcase" | "anchor-lock" | "location-dot" | "r" | "paste" | "print" | "font" | "blog" | "teeth" | "mail-fill" | "message-fill" | "flow-chart" | "font-color" | "font-size" | "font-size-2" | "checkbox-fill" | "add" | "checkbox-indeterminate" | "deploy" | "diamond-solid" | "drill-down" | "drill-through" | "insert" | "light" | "repeat-one" | "reset" | "tag-group" | "triangle-solid" | "machine-learning" | "money" | "document-set" | "documentation" | "encryption" | "flow" | "important" | "parameter" | "product" | "unknown" | "warning" | "education" | "cafe" | "calendar-settings" | "delivery-truck" | "event" | "fog" | "lifesaver" | "partly-cloudy-night" | "rain" | "snooze" | "chat-bot" | "mail-reply" | "attach" | "build" | "location-outline" | "medical" | "remove" | "sad" | "sunny" | "go" | "org" | "toll" | "brunch" | "processing" | "teamwork" | "waffle" | "feedback" | "manufacturing" | "preview" | "save-as" | "phishing" | "sprint" | "video-search" | "area-chart" | "payment-card" | "savings" | "sell" | "stacked-bar-chart" | "stacked-line-chart" | "work" | "unsubscribe" | "transition-push" | "add-home" | "add-reaction" | "partly-cloudy-day" | "waving-hand" | "add-link" | "add-notes" | "dictionary" | "document-search" | "edit-note" | "fit-page" | "fit-width" | "line-style" | "page-header" | "turn-right" | "collapse-content" | "dropdown" | "hide" | "open-with" | "step" | "birthday-cake" | "cycling" | "medal-solid" | "mail-solid" | "bug-solid" | "page" | "page-edit" | "task-list" | "emoji" | "headset-solid" | "page-left" | "page-right" | "filter-solid" | "ascending" | "chevron-down-small" | "chevron-left-small" | "chevron-right-small" | "chevron-up-small" | "comment-add" | "descending" | "full-screen" | "health" | "sign-out" | "next" | "reading-mode" | "streaming" | "world-clock" | "chat-solid" | "comment-solid" | "dislike-solid" | "like-solid" | "video-solid" | "bank-solid" | "lock-solid" | "unlock-solid" | "chart" | "dislike" | "game" | "like" | "line-chart" | "scatter-chart" | "slider" | "c-plus-plus" | "coupon" | "jenkins-logo" | "user-remove" | "drop" | "line-spacing" | "room" | "info-solid" | "warning-solid" | "alert-solid" | "asterisk-solid" | "flame-solid" | "pinned-solid" | "crown-solid" | "airplane-solid" | "ferry-solid" | "chrome-close" | "chrome-minimize" | "chrome-restore" | "new-folder" | "repo" | "variable-group" | "database-view" | "annotation" | "beer-mug" | "memo" | "return-key" | "website" | "family" | "hour-glass" | "text-document" | "untag" | "file-system" | "clear" | "decrease-indent" | "increase-indent" | "location-circle" | "location-fill" | "mail-reply-all" | "contact-card" | "touch" | "gift-box-solid" | "circle-pause-solid" | "check-mark" | "chopsticks" | "accept" | "accept-medium" | "access-logo" | "accessibilty-checker" | "account-activity" | "account-browser" | "account-management" | "accounts" | "action-center" | "activate-orders" | "activity-feed" | "add-bookmark" | "add-event" | "add-favorite" | "add-favorite-fill" | "add-friend" | "add-group" | "add-in" | "add-online-meeting" | "add-phone" | "add-space-after" | "add-space-before" | "add-to" | "add-to-shopping-list" | "add-work" | "air-tickets" | "album-remove" | "alert-settings" | "all-apps" | "all-apps-mirrored" | "all-currency" | "alt-text" | "amazon-web-services-logo" | "analytics-query" | "analytics-report" | "analytics-view" | "android-logo" | "apache-ivy-logo-32" | "apache-maven-logo" | "archive-undo" | "arrange-by-from" | "arrivals" | "arrow-down-right-8" | "arrow-down-right-mirrored-8" | "arrow-tall-down-left" | "arrow-tall-down-right" | "arrow-tall-up-left" | "arrow-tall-up-right" | "arrow-up-right-8" | "arrow-up-right-mirrored-8" | "articles" | "assessment-group" | "assessment-group-template" | "asset-library" | "assign" | "assign-policy" | "australian-rules" | "auto-deploy-settings" | "auto-enhance-off" | "auto-enhance-on" | "auto-fill-template" | "auto-fit-contents" | "auto-fit-window" | "auto-height" | "auto-racing" | "automate-flow" | "away-status" | "b-i-dashboard" | "back-to-window" | "background-color" | "backlog" | "backlog-board" | "backlog-list" | "balloons" | "bar-chart-4" | "bar-chart-horizontal" | "bar-chart-vertical" | "bar-chart-vertical-edit" | "bar-chart-vertical-fill" | "bar-chart-vertical-filter" | "bar-chart-vertical-filter-solid" | "bidi-ltr" | "bidi-rtl" | "bitbucket-logo-32" | "blob-storage" | "block-contact" | "blocked" | "blocked-12" | "blocked-2" | "blocked-2-solid" | "blocked-site" | "blocked-site-solid-12" | "blocked-solid" | "blowing-snow" | "boards" | "book-answers" | "bookmark-report" | "bookmarks-mirrored" | "border-dash" | "border-dot" | "box-addition-solid" | "box-checkmark-solid" | "box-logo" | "box-multiply-solid" | "box-play-solid" | "box-subtract-solid" | "branch-commit" | "branch-compare" | "branch-fork" | "branch-fork-2" | "branch-locked" | "branch-merge" | "branch-pull-request" | "branch-search" | "branch-shelveset" | "breadcrumb" | "breakfast" | "browser-screen-shot" | "browser-tab" | "browser-tab-screenshot" | "bucket-color" | "bucket-color-fill" | "buffer-time-after" | "buffer-time-before" | "buffer-time-both" | "bug-block" | "bug-sync" | "build-definition" | "build-issue" | "build-queue" | "build-queue-new" | "bulk-upload" | "bulleted-list" | "bulleted-list-2" | "bulleted-list-2-mirrored" | "bulleted-list-bullet" | "bulleted-list-bullet-mirrored" | "bulleted-list-mirrored" | "bulleted-list-text" | "bulleted-list-text-mirrored" | "bulleted-tree-list" | "bullseye-target" | "bullseye-target-edit" | "bus-solid" | "business-hours-sign" | "button-control" | "c-plus-plus-language" | "c-r-m-processes" | "c-r-m-report" | "c-r-m-services" | "c-s-s" | "calculator-addition" | "calculator-delta" | "calculator-equal-to" | "calculator-group" | "calculator-multiply" | "calculator-not-equal-to" | "calculator-percentage" | "calculator-subtract" | "calendar-agenda" | "calendar-mirrored" | "calendar-reply" | "calendar-settings-mirrored" | "calendar-work-week" | "calendar-year" | "calories" | "calories-add" | "campaign-template" | "canned-chat" | "caret-bottom-left-center-8" | "caret-bottom-left-solid-8" | "caret-bottom-right-center-8" | "caret-bottom-right-solid-8" | "caret-down-8" | "caret-down-solid-8" | "caret-hollow" | "caret-hollow-mirrored" | "caret-left-8" | "caret-left-solid-8" | "caret-right-8" | "caret-right-solid-8" | "caret-solid" | "caret-solid-16" | "caret-solid-down" | "caret-solid-left" | "caret-solid-mirrored" | "caret-solid-right" | "caret-solid-up" | "caret-top-left-center-8" | "caret-top-left-solid-8" | "caret-top-right-center-8" | "caret-top-right-solid-8" | "caret-up-8" | "caret-up-solid-8" | "cell-phone" | "certified-database" | "change-entitlements" | "chart-series" | "chart-template" | "chart-x-angle" | "chart-y-angle" | "chat-invite-friend" | "check-list" | "check-list-check" | "check-list-check-mirrored" | "check-list-text" | "check-list-text-mirrored" | "checkbox-composite" | "checkbox-composite-reversed" | "checked-out-by-other-12" | "checked-out-by-you-12" | "chevron-down-end-6" | "chevron-down-med" | "chevron-fold-10" | "chevron-left-end-6" | "chevron-left-med" | "chevron-right-end-6" | "chevron-right-med" | "chevron-unfold-10" | "chevron-up-end-6" | "chevron-up-med" | "childof" | "chrome-back" | "chrome-back-mirrored" | "chrome-full-screen" | "chronos-logo" | "circle-addition" | "circle-addition-solid" | "circle-ring" | "circle-shape" | "circle-shape-solid" | "circle-stop-solid" | "city-next" | "city-next-2" | "clear-filter" | "clear-formatting-a" | "clear-formatting-eraser" | "clear-night" | "clear-selection" | "clear-selection-mirrored" | "clipboard-list-mirrored" | "clone-to-desktop" | "close-pane" | "close-pane-mirrored" | "cloud-weather" | "cocktails" | "code-edit" | "coffee-script" | "collapse-content-single" | "collapse-menu" | "college-football" | "college-hoops" | "color-solid" | "column-left-two-thirds" | "column-left-two-thirds-edit" | "column-options" | "column-right-two-thirds" | "column-right-two-thirds-edit" | "column-vertical-section" | "column-vertical-section-edit" | "command-prompt" | "comment-active" | "comment-next" | "comment-previous" | "comment-urgent" | "commitments" | "common-data-service-c-d-s" | "communications" | "company-directory" | "company-directory-mirrored" | "compare-uneven" | "compass-n-w" | "completed-solid" | "compliance-audit" | "configuration-solid" | "connect-contacts" | "connect-virtual-machine" | "construction-cone" | "construction-cone-solid" | "contact-card-settings" | "contact-card-settings-mirrored" | "contact-heart" | "contact-info" | "contact-link" | "contact-list" | "contact-lock" | "content-feed" | "content-settings" | "context-menu" | "copy-edit" | "cotton" | "create-mail-rule" | "cube-shape" | "cube-shape-solid" | "custom-list" | "custom-list-mirrored" | "customize-toolbar" | "d-o-m" | "d-r-m" | "dashboard-add" | "data-connection-library" | "data-management-settings" | "dataflows" | "dataflows-link" | "date-time" | "date-time-12" | "date-time-2" | "date-time-mirrored" | "deactivate-orders" | "decimals" | "decision-solid" | "decline-call" | "decrease-indent-arrow" | "decrease-indent-arrow-mirrored" | "decrease-indent-legacy" | "decrease-indent-mirrored" | "decrease-indent-text" | "decrease-indent-text-mirrored" | "default-ratio" | "defect-solid" | "delete-columns" | "delete-rows" | "delete-rows-mirrored" | "delete-table" | "dependency-add" | "dependency-remove" | "design" | "desktop-screenshot" | "developer-tools" | "device-bug" | "device-off" | "device-run" | "devices-3" | "devices-4" | "diagnostic" | "diagnostic-data-bar-tooltip" | "dictionary-remove" | "diet-plan-notebook" | "diff-inline" | "diff-side-by-side" | "disable-updates" | "disconnect-virtual-machine" | "distribute-down" | "doc-library" | "dock-left-mirrored" | "docker-logo" | "document-approval" | "document-management" | "document-reply" | "donut-chart" | "double-bookmark" | "double-chevron-down" | "double-chevron-down-12" | "double-chevron-down-8" | "double-chevron-left" | "double-chevron-left-12" | "double-chevron-left-8" | "double-chevron-left-med" | "double-chevron-left-med-mirrored" | "double-chevron-right" | "double-chevron-right-12" | "double-chevron-right-8" | "double-chevron-up" | "double-chevron-up-12" | "double-chevron-up-8" | "double-column" | "double-column-edit" | "double-down-arrow" | "down" | "download-document" | "drag-object" | "drill-down-solid" | "drill-expand" | "drill-show" | "driver-off" | "drop-shape" | "drop-shape-solid" | "dropbox-logo" | "duplicate-row" | "duststorm" | "e-discovery" | "e-m-i" | "eat-drink" | "edit-contact" | "edit-create" | "edit-mail" | "edit-mirrored" | "edit-photo" | "edit-solid-12" | "edit-solid-mirrored-12" | "edit-style" | "egnyte-logo" | "emoji-2" | "emoji-disappointed" | "emoji-tab-symbols" | "empty-recycle-bin" | "end-point-solid" | "engineering-group" | "entitlement-policy" | "entitlement-redemption" | "entry-decline" | "entry-view" | "erase-tool" | "error-badge" | "event-12" | "event-accepted" | "event-date" | "event-date-missed-12" | "event-declined" | "event-info" | "event-tentative" | "event-tentative-mirrored" | "event-to-do-logo" | "exercise-tracker" | "expand-menu" | "explore-content" | "explore-content-single" | "explore-data" | "export-mirrored" | "external-build" | "external-git" | "external-t-f-v-c" | "external-x-a-m-l" | "eye-shadow" | "f-12-dev-tools" | "facebook-logo" | "fang-body" | "fast-forward-eight-x" | "fast-forward-four-x" | "fast-forward-one-five-x" | "fast-forward-one-x" | "fast-forward-point-five-x" | "fast-forward-two-x" | "fast-mode" | "favorite-list" | "favorite-star" | "favorite-star-fill" | "feedback-request-mirrored-solid" | "feedback-request-solid" | "feedback-response-solid" | "field-changed" | "field-empty" | "field-filled" | "field-not-changed" | "field-read-only" | "field-required" | "file-a-s-p-x" | "file-bug" | "file-c-s-s" | "file-comment" | "file-h-t-m-l" | "file-j-a-v-a" | "file-less" | "file-p-d-b" | "file-request" | "file-s-q-l" | "file-sass" | "file-template" | "file-y-m-l" | "filter-ascending" | "filter-descending" | "filters-solid" | "financial" | "financial-mirrored-solid" | "financial-solid" | "five-tile-grid" | "fixed-asset-management" | "fixed-column-width" | "flick-down" | "flick-left" | "flick-right" | "flick-up" | "focal-point" | "focus-view" | "folder-horizontal" | "folder-list" | "folder-list-mirrored" | "folder-query" | "follow-user" | "font-color-a" | "font-color-swatch" | "font-decrease" | "font-increase" | "form-library" | "form-library-mirrored" | "format-painter" | "forward-event" | "freezing" | "frigid" | "front-camera" | "full-circle-mask" | "full-history" | "full-view" | "full-width" | "full-width-edit" | "functional-manager-dashboard" | "funnel-chart" | "g-i-f" | "g-u-i-d" | "gather" | "generate" | "generic-scan" | "generic-scan-filled" | "giftbox" | "giftbox-open" | "git-hub-logo" | "git-logo" | "glimmer" | "global-nav-button" | "global-nav-button-active" | "globe-2" | "globe-favorite" | "go-mirrored" | "go-to-dashboard" | "google-drive-logo" | "google-drive-logo-bottom-blue" | "google-drive-logo-left-green" | "google-drive-logo-right-yellow" | "goto-today" | "gradle-logo-32" | "greeting-card" | "grid-view-large" | "grid-view-medium" | "grid-view-small" | "gripper-bar-horizontal" | "gripper-bar-vertical" | "gripper-dots-vertical" | "gripper-tool" | "group-list" | "group-object" | "grouped-ascending" | "grouped-descending" | "grouped-list" | "hail-day" | "hail-night" | "half-alpha" | "half-circle" | "hands-free" | "handwriting" | "hard-drive-group" | "hard-drive-lock" | "hard-drive-unlock" | "header-1" | "header-2" | "header-3" | "header-4" | "health-refresh" | "health-solid" | "help-mirrored" | "hexadite-investigation" | "hexadite-investigation-cancel" | "hexadite-investigation-semi-auto" | "hide-2" | "hide-3" | "highlight-mapped-shapes" | "hint-text" | "historical-weather" | "home-dropdown" | "home-verify" | "horizontal-distribute-center" | "horizontal-tab-key" | "i-d-badge" | "i-o-s-app-store-logo" | "i-o-t" | "i-r-m-forward" | "i-r-m-forward-mirrored" | "i-r-m-reply" | "i-r-m-reply-mirrored" | "icon-sets-flag" | "ignore-conversation" | "image-crosshair" | "image-diff" | "image-in-a-r" | "image-pixel" | "import-all-mirrored" | "import-mirrored" | "inbox-check" | "incident-triangle" | "incoming-call" | "increase-indent-arrow" | "increase-indent-arrow-mirrored" | "increase-indent-hanging" | "increase-indent-hanging-mirrored" | "increase-indent-legacy" | "increase-indent-mirrored" | "increase-indent-text" | "increase-indent-text-mirrored" | "indent-first-line" | "info-2" | "information-barriers" | "inking-tool" | "input-address" | "insert-columns-left" | "insert-columns-right" | "insert-rows-above" | "insert-rows-below" | "insert-signature-line" | "insert-text-box" | "insights" | "install-to-drive" | "installation" | "internal-investigation" | "internet-sharing" | "issue-solid" | "issue-tracking" | "issue-tracking-mirrored" | "j-s" | "java-logo" | "java-script-language" | "join-online-meeting" | "keubernetes-logo" | "key-phrase-extraction" | "keyboard-classic" | "knowledge-article" | "ladybug-solid" | "landscape-orientation" | "laptop-secure" | "laptop-selected" | "large-grid" | "learning-tools" | "leave" | "leave-user" | "lifesaver-lock" | "light-weight" | "lightning-bolt-solid" | "line-thickness" | "link-12" | "linked-database" | "linux-logo-32" | "list-mirrored" | "live-site" | "locale-language" | "lock-12" | "log-remove" | "lookup-entities" | "lower-brightness" | "mail-alert" | "mail-attached" | "mail-forward-mirrored" | "mail-low-importance" | "mail-options" | "mail-reminder" | "mail-repeat" | "mail-reply-all-mirrored" | "mail-reply-mirrored" | "mail-schedule" | "mail-tentative" | "mail-tentative-mirrored" | "mail-undelivered" | "manager-self-service" | "map-directions" | "map-layers" | "map-pin-12" | "mark-as-protected" | "mark-down-language" | "market" | "market-down" | "master-database" | "maximum-value" | "media" | "media-add" | "merge-duplicate" | "message-friend-request" | "mic-off-2" | "mini-contract" | "mini-contract-mirrored" | "mini-expand" | "mini-expand-mirrored" | "mini-link" | "minimum-value" | "miracast-logo-large" | "mobile-angled" | "mobile-report" | "mobile-selected" | "modeling-view" | "more-sports" | "mountain-climbing" | "move-to-folder" | "movers" | "multi-select" | "multi-select-mirrored" | "music-in-collection" | "music-in-collection-fill" | "mute-chat" | "my-movies-t-v" | "my-network" | "n-p-m-logo" | "nav-2-d-map-view" | "navigate-back" | "navigate-back-mirrored" | "navigate-external-inline" | "navigate-forward" | "navigate-forward-mirrored" | "navigation-flipper" | "network-tower" | "new-analytics-query" | "new-mail" | "new-team-project" | "news-search" | "nonprofit-logo-32" | "normal-weight" | "not-executed" | "not-impacted-solid" | "note-forward" | "note-pinned" | "note-reply" | "number-field" | "number-sequence" | "number-symbol" | "numbered-list-mirrored" | "numbered-list-number" | "numbered-list-number-mirrored" | "numbered-list-text" | "numbered-list-text-mirrored" | "o-e-m" | "office-chat" | "office-chat-solid" | "offline-storage" | "offline-storage-solid" | "onboarding" | "open-enrollment" | "open-file" | "open-folder-horizontal" | "open-in-new-tab" | "open-in-new-window" | "open-pane" | "open-pane-mirrored" | "open-source" | "open-with-mirrored" | "orientation" | "orientation-2" | "out-of-office" | "p-c-1" | "p-d-f" | "p-o-i" | "p-o-i-solid" | "p-y" | "padding-bottom" | "padding-left" | "padding-right" | "padding-top" | "page-add" | "page-arrow-right" | "page-checked-out" | "page-checkedin" | "page-data" | "page-header-edit" | "page-link" | "page-list" | "page-list-filter" | "page-list-mirrored-solid" | "page-list-solid" | "page-lock" | "page-remove" | "page-shared" | "page-solid" | "pano-indicator" | "parachute-solid" | "parature-logo" | "parking-location" | "parking-location-mirrored" | "parking-mirrored-solid" | "parking-solid" | "party-leader" | "passive-authentication" | "password-field" | "paste-as-code" | "paste-as-text" | "pen-workspace" | "pencil-reply" | "people-add" | "people-alert" | "people-block" | "people-pause" | "people-repeat" | "permissions" | "permissions-solid" | "personalize" | "photo-2" | "photo-2-add" | "photo-2-fill" | "photo-2-remove" | "photo-collection" | "photo-error" | "photo-video-media" | "picture-center" | "picture-fill" | "picture-library" | "picture-position" | "picture-stretch" | "picture-tile" | "pie-double" | "pie-single" | "pie-single-solid" | "pin-solid-12" | "pin-solid-off-12" | "pinned-fill" | "pivot-chart" | "plain-text" | "plan-view" | "play-resume" | "play-reverse" | "play-reverse-resume" | "playback-rate-1x" | "player-settings" | "plug-disconnected" | "plug-solid" | "poll-results" | "post-update" | "power-button" | "precipitation" | "presence-chicklet-video" | "presentation-12" | "preview-link" | "previous" | "primary-calendar" | "printfax-printer-file" | "pro-football" | "pro-hockey" | "process-meta-task" | "processing-cancel" | "processing-pause" | "processing-run" | "product-catalog" | "product-list" | "product-release" | "product-variant" | "production-floor-management" | "profile-search" | "progress-loop-inner" | "progress-loop-outer" | "progress-ring-dots" | "promoted-database" | "protect-restrict" | "protected-document" | "provisioning-package" | "public-calendar" | "public-contact-card" | "public-contact-card-mirrored" | "public-email" | "public-folder" | "publish-content" | "publish-course" | "python-language" | "python-logo-blue" | "python-logo-yellow" | "q-r-code" | "qand-a" | "qand-a-mirror" | "quad-column" | "quantity" | "quarter-circle" | "query-list" | "questionnaire" | "questionnaire-mirrored" | "quick-note" | "quick-note-solid" | "radio-btn-off" | "radio-btn-on" | "radio-bullet" | "rain-showers-day" | "rain-showers-night" | "rain-snow" | "raw-source" | "react-logo" | "read-out-loud" | "reading-mode-solid" | "real-estate" | "receipt-check" | "receipt-forward" | "receipt-reply" | "receipt-tentative" | "receipt-tentative-mirrored" | "receipt-undelivered" | "recent" | "record-2" | "recruitment-management" | "rectangle-shape" | "rectangle-shape-solid" | "rectangular-clipping" | "recurring-event" | "recurring-task" | "red-eye" | "red-eye-12" | "redeploy" | "registry-editor" | "relationship" | "release-definition" | "release-gate" | "release-gate-check" | "release-gate-error" | "reminder-group" | "reminder-person" | "reminder-time" | "remove-content" | "remove-event" | "remove-filter" | "remove-from-shopping-list" | "remove-from-trash" | "remove-link" | "remove-link-chain" | "remove-link-x" | "remove-occurrence" | "renewal-current" | "renewal-future" | "reopen-pages" | "repair" | "repeat-all" | "repeat-header-rows" | "reply-all-alt" | "reply-all-mirrored" | "reply-alt" | "reply-mirrored" | "repo-solid" | "report-add" | "report-document" | "report-hacked" | "report-library" | "report-library-mirrored" | "report-lock" | "report-warning" | "rerun" | "reservation-orders" | "reset-device" | "responses-menu" | "return-to-session" | "rev-toggle-key" | "review-request-mirrored-solid" | "review-request-solid" | "review-response-solid" | "review-solid" | "rewind-eight-x" | "rewind-four-x" | "rewind-one-five-x" | "rewind-one-x" | "rewind-point-five-x" | "rewind-two-x" | "ribbon-solid" | "right-double-quote" | "right-triangle" | "ringer" | "ringer-off" | "ringer-remove" | "ringer-solid" | "rotate-90-clockwise" | "rotate-90-counter-clockwise" | "rows-child" | "rows-group" | "ruby-gems-logo" | "rust-language-logo" | "s-d-card" | "s-i-p-move" | "s-q-l-analytics-pool" | "s-v-n-logo" | "sad-solid" | "save-and-close" | "save-template" | "save-to-mobile" | "scale-up" | "scale-volume" | "schedule-event-action" | "scope-template" | "screen-cast" | "screen-time" | "scroll-up-down" | "search-and-apps" | "search-bookmark" | "search-calendar" | "search-data" | "search-issue" | "search-issue-mirrored" | "search-nearby" | "secondary-nav" | "sections" | "security-group" | "see-do" | "semibold-weight" | "send-mirrored" | "sentiment-analysis" | "server-enviroment" | "server-processes" | "service-off" | "set-action" | "shake-device" | "shape-solid" | "shared-database" | "sharei-o-s" | "shop-server" | "show-grid" | "show-results" | "show-results-mirrored" | "show-time-as" | "side-panel" | "side-panel-mirrored" | "signin" | "single-bookmark" | "single-bookmark-solid" | "single-column" | "single-column-edit" | "site-scan" | "six-point-star" | "size-legacy" | "ski-resorts" | "skip-back-10" | "skip-forward-30" | "skype-arrow" | "skype-check" | "skype-clock" | "skype-minus" | "slider-handle-size" | "slider-thumb" | "smart-glass-remote" | "snap-to-grid" | "snow-shower-day" | "snow-shower-night" | "sort-lines" | "sort-lines-ascending" | "spacer" | "speakers" | "special-event" | "speed-high" | "spelling" | "split-object" | "squalls" | "square-shape" | "square-shape-solid" | "stack-column-chart" | "stack-indicator" | "stacked-column-chart-2" | "stacked-column-chart-2-fill" | "starburst" | "starburst-solid" | "status-circle-block" | "status-circle-block-2" | "status-circle-checkmark" | "status-circle-error-x" | "status-circle-exclamation" | "status-circle-info" | "status-circle-inner" | "status-circle-outer" | "status-circle-question-mark" | "status-circle-ring" | "status-circle-sync" | "status-error-full" | "status-triangle" | "status-triangle-exclamation" | "status-triangle-inner" | "status-triangle-outer" | "step-insert" | "step-shared" | "step-shared-add" | "step-shared-insert" | "stock-down" | "stock-up" | "storage-acount" | "storage-optical" | "storyboard" | "streaming-off" | "street" | "streetside-split-minimize" | "subscribe" | "substitutions-in" | "sun-add" | "sun-question-mark" | "survey-questions" | "swift-logo" | "switch-user" | "switcher-start-end" | "sync-folder" | "sync-occurence" | "sync-status" | "sync-status-solid" | "sync-to-p-c" | "system" | "t-v-monitor" | "t-v-monitor-selected" | "tab-center" | "tab-one-column" | "tab-three-column" | "tab-two-column" | "table-branded-column" | "table-branded-row" | "table-computed" | "table-first-column" | "table-group" | "table-header-row" | "table-last-column" | "table-link" | "table-total-row" | "tablet-mode" | "tablet-selected" | "tag-unknown" | "tag-unknown-12" | "tag-unknown-12-mirror" | "tag-unknown-mirror" | "task-group" | "task-group-mirrored" | "task-manager" | "task-manager-mirrored" | "task-solid" | "taskboard" | "team-favorite" | "telemarketer" | "temporary-user" | "test-auto-solid" | "test-beaker" | "test-beaker-solid" | "test-case" | "test-explore-solid" | "test-impact-solid" | "test-parameter" | "test-plan" | "test-step" | "test-suite" | "test-user-solid" | "text-align-bottom" | "text-align-middle" | "text-align-top" | "text-callout" | "text-document-edit" | "text-document-settings" | "text-document-shared" | "text-field" | "text-overflow" | "text-paragraph-option" | "text-rotate-270-degrees" | "text-rotate-90-degrees" | "text-rotate-horizontal" | "text-rotation" | "this-p-c" | "three-quarter-circle" | "thumbnail-view" | "thumbnail-view-mirrored" | "thunderstorms" | "tiles" | "tiles-2" | "time-entry" | "time-picker" | "time-sheet" | "timeline-delivery" | "timeline-matrix-view" | "timeline-progress" | "toggle-border" | "toggle-filled" | "toggle-thumb" | "touch-pointer" | "trackers" | "trackers-mirrored" | "train-solid" | "transfer-call" | "transition-effect" | "transition-pop" | "trending-12" | "triangle-down-12" | "triangle-left-12" | "triangle-right-12" | "triangle-shape" | "triangle-shape-solid" | "triangle-solid-down-12" | "triangle-solid-left-12" | "triangle-solid-right-12" | "triangle-solid-up-12" | "triangle-up-12" | "trigger-approval" | "trigger-auto" | "trigger-user" | "trim-end" | "trim-start" | "triple-column" | "triple-column-edit" | "triple-column-wide" | "trophy-2" | "trophy-2-solid" | "twelve-point-star" | "twitter-logo" | "u-r-l-block" | "u-s-b" | "un-set-color" | "uneditable" | "uneditable-2" | "uneditable-2-mirrored" | "uneditable-mirrored" | "uneditable-solid-12" | "uneditable-solid-mirrored-12" | "unfavorite" | "ungroup-object" | "unknown-call" | "unknown-mirrored" | "unknown-mirrored-solid" | "unknown-solid" | "unpin" | "unpublish-content" | "unstack-selected" | "unsync-folder" | "unsync-occurence" | "up" | "update-restore" | "upgrade-analysis" | "user-event" | "user-followed" | "user-gauge" | "user-optional" | "user-sync" | "user-warning" | "v-b" | "vacation" | "vaccination" | "variable-2" | "venn-diagram" | "verified-brand" | "verified-brand-solid" | "version-control-push" | "vertical-distribute-center" | "video-360-generic" | "video-light-off" | "video-off-2" | "view-all" | "view-all-2" | "view-in-a-r" | "view-list-group" | "view-list-tree" | "view-original" | "visually-impaired" | "visuals-folder" | "visuals-store" | "voicemail-forward" | "voicemail-i-r-m" | "voicemail-reply" | "volume-0" | "volume-disabled" | "waitlist-confirm" | "waitlist-confirm-mirrored" | "warning-12" | "web-components" | "web-environment" | "web-publish" | "web-template" | "webcam-2" | "webcam-2-off" | "weights" | "wifi-ethernet" | "wifi-warning-4" | "wind-direction" | "window-edit" | "wines" | "wipe-phone" | "work-flow" | "work-item" | "work-item-alert" | "work-item-bar" | "work-item-bar-solid" | "work-item-bug" | "workforce-management" | "xamarin-logo" | "xbox-controller" | "zip-folder" | "zoom-to-fit">): import("react").JSX.Element;
|
|
1747
1747
|
displayName: string;
|
|
1748
1748
|
};
|
|
1749
1749
|
export {};
|
|
@@ -42,7 +42,7 @@ declare const fontelicoIconNames: {
|
|
|
42
42
|
};
|
|
43
43
|
export type FontelicoIconName = keyof typeof fontelicoIconNames;
|
|
44
44
|
export declare const Fontelico: {
|
|
45
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"crown" | "firefox" | "opera" | "chrome" | "marquee" | "ie" | "crown-minus" | "crown-plus" | "emo-angry" | "emo-beer" | "emo-coffee" | "emo-cry" | "emo-devil" | "emo-displeased" | "emo-grin" | "emo-happy" | "emo-laugh" | "emo-saint" | "emo-shoot" | "emo-sleep" | "emo-squint" | "emo-sunglasses" | "emo-surprised" | "emo-thumbsup" | "emo-tongue" | "emo-unhappy" | "emo-wink" | "emo-wink2" | "spin1" | "spin2" | "spin3" | "spin4" | "spin5" | "spin6">): import("react").JSX.Element;
|
|
45
|
+
({ 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<"crown" | "firefox" | "opera" | "chrome" | "marquee" | "ie" | "crown-minus" | "crown-plus" | "emo-angry" | "emo-beer" | "emo-coffee" | "emo-cry" | "emo-devil" | "emo-displeased" | "emo-grin" | "emo-happy" | "emo-laugh" | "emo-saint" | "emo-shoot" | "emo-sleep" | "emo-squint" | "emo-sunglasses" | "emo-surprised" | "emo-thumbsup" | "emo-tongue" | "emo-unhappy" | "emo-wink" | "emo-wink2" | "spin1" | "spin2" | "spin3" | "spin4" | "spin5" | "spin6">): import("react").JSX.Element;
|
|
46
46
|
displayName: string;
|
|
47
47
|
};
|
|
48
48
|
export {};
|
|
@@ -623,7 +623,7 @@ declare const fontistoIconNames: {
|
|
|
623
623
|
};
|
|
624
624
|
export type FontistoIconName = keyof typeof fontistoIconNames;
|
|
625
625
|
export declare const Fontisto: {
|
|
626
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"map" | "filter" | "android" | "windows" | "
|
|
626
|
+
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"map" | "filter" | "android" | "windows" | "pulse" | "search" | "anchor" | "bold" | "link" | "key" | "cursor" | "code" | "picture" | "ruby" | "ellipse" | "line" | "stop" | "adjust" | "archive" | "asterisk" | "at" | "bandage" | "bookmark" | "braille" | "comment" | "crop" | "download" | "eject" | "email" | "eraser" | "export" | "eye" | "flag" | "import" | "keyboard" | "magnet" | "paperclip" | "passport" | "podcast" | "qrcode" | "quora" | "raspberry-pi" | "recycle" | "redo" | "rss" | "sitemap" | "step-forward" | "tent" | "ticket" | "undo" | "upload" | "usb" | "wifi" | "bug" | "linux" | "paw" | "arrow-down" | "arrow-expand" | "arrow-left" | "arrow-right" | "arrow-up" | "forward" | "reply" | "share" | "equalizer" | "music-note" | "volume-mute" | "volume-off" | "car" | "snowflake" | "thermometer" | "bitcoin" | "credit-card" | "wallet" | "angularjs" | "apple" | "atlassian" | "aws" | "babel" | "bitbucket" | "codepen" | "deviantart" | "disqus" | "docker" | "dropbox" | "ember" | "facebook" | "firefox" | "git" | "github" | "gitlab" | "google" | "google-drive" | "google-play" | "google-plus" | "graphql" | "instagram" | "jira" | "jquery" | "jsfiddle" | "kickstarter" | "laravel" | "linkedin" | "meteor" | "microsoft" | "netflix" | "nodejs" | "npm" | "odnoklassniki" | "opera" | "origin" | "pinterest" | "react" | "reddit" | "sass" | "sina-weibo" | "skype" | "slack" | "snapchat" | "soundcloud" | "spotify" | "stack-overflow" | "steam" | "trello" | "twitch" | "twitter" | "ubuntu" | "unity" | "vimeo" | "vuejs" | "webpack" | "whatsapp" | "wikipedia" | "wordpress" | "yahoo" | "phone" | "sunglasses" | "cloud-refresh" | "database" | "calendar" | "clock" | "history" | "laptop" | "tablet" | "file" | "folder" | "check" | "close" | "heart" | "shield" | "compass" | "crosshairs" | "earth" | "map-marker" | "bell" | "camera" | "fire" | "home" | "lightbulb" | "pause" | "play" | "power" | "record" | "angle-right" | "calculator" | "ambulance" | "doctor" | "hospital" | "prescription" | "stethoscope" | "wheelchair" | "bus" | "taxi" | "train" | "film" | "island" | "atom" | "dna" | "rocket" | "test-tube" | "rectangle" | "star" | "star-half" | "bicycle" | "helicopter" | "subway" | "truck" | "flash" | "umbrella" | "backward" | "hashtag" | "italic" | "language" | "scissors" | "shopping-bag" | "strikethrough" | "sun" | "trash" | "tv" | "underline" | "airplay" | "ban" | "battery-full" | "cloudy" | "copy" | "dribbble" | "euro" | "hotel" | "hourglass" | "info" | "mars" | "mars-stroke" | "mic" | "plane" | "rainbow" | "save" | "ship" | "shopping-basket" | "subscript" | "superscript" | "table-2" | "tablets" | "transgender" | "venus" | "wind" | "bar-chart" | "chrome" | "columns" | "caret-down" | "caret-left" | "caret-right" | "caret-up" | "cloud-down" | "cloud-up" | "direction-sign" | "heartbeat" | "json" | "nurse" | "pills" | "stopwatch" | "world" | "zoom" | "amazon" | "apple-music" | "arrow-return-left" | "arrow-return-right" | "battery-half" | "behance" | "bing" | "discord" | "indent" | "justify" | "lightning" | "medium" | "messenger" | "paragraph" | "paypal" | "person" | "playstation" | "question" | "snow" | "suitcase" | "telegram" | "toggle-off" | "toggle-on" | "volume-down" | "volume-up" | "xbox" | "yelp" | "audio-description" | "tty" | "angle-down" | "angle-left" | "angle-up" | "text-height" | "text-width" | "motorcycle" | "paste" | "print" | "comments" | "quote-left" | "quote-right" | "user-secret" | "mobile" | "paper-plane" | "desktop" | "hourglass-end" | "hourglass-half" | "hourglass-start" | "font" | "outdent" | "battery-empty" | "battery-quarter" | "battery-three-quarters" | "genderless" | "mars-double" | "mercury" | "neuter" | "venus-double" | "venus-mars" | "spinner" | "favorite" | "locked" | "unlocked" | "mysql" | "fog" | "rain" | "train-ticket" | "male" | "navigate" | "_500px" | "algolia" | "baidu" | "blogger" | "bower" | "cloudflare" | "cocoapods" | "coffeescript" | "composer" | "cpanel" | "dailymotion" | "digg" | "discourse" | "discover" | "envato" | "fi" | "flickr" | "flipboard" | "foursquare" | "grunt" | "gulp" | "hexo" | "houzz" | "html5" | "icq" | "imdb" | "invision" | "jcb" | "jekyll" | "jenkins" | "joomla" | "less" | "mastercard" | "meetup" | "metro" | "mongodb" | "nginx" | "php" | "pinboard" | "pingdom" | "python" | "redis" | "redux" | "safari" | "saucelabs" | "sentry" | "shazam" | "shopify" | "slides" | "sourcetree" | "stylus" | "swarm" | "swift" | "ted" | "tesla" | "tinder" | "treehouse" | "tripadvisor" | "tumblr" | "uber" | "udacity" | "viber" | "visa" | "vk" | "webstorm" | "wetransfer" | "wix" | "yarn" | "adobe" | "apple-pay" | "java" | "opencart" | "oracle" | "rails" | "visual-studio" | "preview" | "area-chart" | "blind" | "holiday-village" | "center-align" | "css3" | "dollar" | "yen" | "app-store" | "hot-air-balloon" | "headphone" | "aids" | "curve" | "edge" | "google-wallet" | "horizon" | "product-hunt" | "wink" | "yandex" | "bookmark-alt" | "confused" | "dislike" | "dizzy" | "like" | "line-chart" | "low-vision" | "mobile-alt" | "internet-explorer" | "magento" | "periscope" | "american-express" | "bluetooth-b" | "delicious" | "gg" | "hipchat" | "livestream" | "maxcdn" | "stumbleupon" | "sublime-text" | "twoo" | "unreal-engine" | "vine" | "tl" | "deaf" | "room" | "arrow-swap" | "smiley" | "gbp" | "travis" | "automobile" | "compass-alt" | "heart-alt" | "map-marker-alt" | "random" | "tongue" | "onedrive" | "american-sign-language-interpreting" | "circle-o-notch" | "commenting" | "hacker-news" | "ils" | "inr" | "intersex" | "krw" | "mars-stroke-h" | "mars-stroke-v" | "rouble" | "skyatlas" | "transgender-alt" | "youtube-play" | "deskpro" | "yandex-international" | "cocktail" | "tablet-alt" | "ticket-alt" | "open-mouth" | "rage" | "svn" | "player-settings" | "if-question-circle" | "universal-acces" | "acrobat-reader" | "ampproject" | "angelist" | "electronjs" | "hangout" | "onenote" | "scorp" | "wifi-logo" | "pie-chart-1" | "pie-chart-2" | "angle-dobule-down" | "angle-dobule-left" | "angle-dobule-right" | "angle-dobule-up" | "arrow-down-l" | "arrow-h" | "arrow-left-l" | "arrow-move" | "arrow-resize" | "arrow-right-l" | "arrow-up-l" | "arrow-v" | "broken-link" | "file-1" | "left-align" | "list-1" | "list-2" | "right-align" | "save-1" | "table-1" | "expressionless" | "frowning" | "heart-eyes" | "laughing" | "mad" | "nervous" | "neutral" | "slightly-smile" | "smiling" | "stuck-out-tongue" | "surprised" | "zipper-mouth" | "fontisto" | "checkbox-active" | "checkbox-passive" | "radio-btn-active" | "radio-btn-passive" | "bell-alt" | "close-a" | "date" | "famale" | "minus-a" | "more-v" | "more-v-a" | "move-h" | "move-h-a" | "nav-icon" | "nav-icon-a" | "nav-icon-grid" | "nav-icon-grid-a" | "nav-icon-list" | "nav-icon-list-a" | "persons" | "plus-a" | "quote-a-left" | "quote-a-right" | "share-a" | "world-o" | "zoom-minus" | "zoom-plus" | "bed-patient" | "blood" | "blood-drop" | "blood-test" | "drug-pack" | "first-aid-alt" | "heartbeat-alt" | "helicopter-ambulance" | "injection-syringe" | "laboratory" | "nursing-home" | "paralysis-disability" | "surgical-knife" | "test-bottle" | "test-tube-alt" | "thermometer-alt" | "dinners-club" | "iyzigo" | "paypal-p" | "payu" | "troy" | "play-list" | "step-backwrad" | "shopping-bag-1" | "shopping-barcode" | "shopping-basket-add" | "shopping-basket-remove" | "shopping-package" | "shopping-pos-machine" | "shopping-sale" | "shopping-store" | "snowflake-1" | "snowflake-2" | "snowflake-3" | "snowflake-4" | "snowflake-5" | "snowflake-6" | "snowflake-7" | "snowflake-8" | "propeller-1" | "propeller-2" | "propeller-3" | "propeller-4" | "spinner-cog" | "spinner-fidget" | "spinner-refresh" | "spinner-rotate-forward" | "yacht" | "beach-slipper" | "bus-ticket" | "do-not-disturb" | "flotation-ring" | "hotel-alt" | "money-symbol" | "parasol" | "passport-alt" | "photograph" | "plane-ticket" | "sait-boat" | "snorkel" | "suitcase-alt" | "sunglasses-alt" | "swimsuit" | "cloudy-gusts" | "day-cloudy" | "day-haze" | "day-lightning" | "day-rain" | "day-snow" | "day-sunny" | "horizon-alt" | "lightnings" | "night-alt-cloudy" | "night-alt-lightning" | "night-alt-rain" | "night-alt-snow" | "night-clear" | "rains" | "snows">): import("react").JSX.Element;
|
|
627
627
|
displayName: string;
|
|
628
628
|
};
|
|
629
629
|
export {};
|
|
@@ -152,7 +152,7 @@ declare const formkitIconNames: {
|
|
|
152
152
|
};
|
|
153
153
|
export type FormkitIconName = keyof typeof formkitIconNames;
|
|
154
154
|
export declare const Formkit: {
|
|
155
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"number" | "android" | "color" | "
|
|
155
|
+
({ 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<"number" | "android" | "color" | "search" | "link" | "hidden" | "button" | "text" | "checkbox" | "radio" | "list" | "left" | "right" | "start" | "select" | "table" | "textarea" | "time" | "circle" | "stop" | "bookmark" | "download" | "email" | "export" | "eye" | "flag" | "group" | "help" | "pound" | "rewind" | "tag" | "upload" | "refresh" | "reply" | "share" | "bitcoin" | "apple" | "ethereum" | "facebook" | "github" | "google" | "instagram" | "linkedin" | "pinterest" | "reddit" | "skype" | "snapchat" | "twitter" | "vimeo" | "whatsapp" | "wordpress" | "youtube" | "file" | "folder" | "check" | "close" | "heart" | "tools" | "pause" | "play" | "star" | "megaphone" | "trash" | "currency" | "euro" | "expand" | "info" | "minimize" | "settings" | "password" | "reorder" | "zip" | "medium" | "paypal" | "people" | "stripe" | "telephone" | "tiktok" | "compress" | "spinner" | "add" | "url" | "warning" | "happy" | "open" | "sad" | "cardano" | "discover" | "dogecoin" | "mastercard" | "solana" | "tether" | "visa" | "amex" | "dollar" | "yen" | "lira" | "ruble" | "rupee" | "shekel" | "won" | "bnb" | "usdc" | "down" | "up" | "date" | "arrowdown" | "arrowleft" | "arrowright" | "arrowup" | "avatarman" | "avatarwoman" | "caretdown" | "caretleft" | "caretright" | "caretup" | "datetime" | "downloadcloud" | "draghandle" | "eyeclosed" | "fastforward" | "fileaudio" | "filedoc" | "fileimage" | "filepdf" | "filevideo" | "franc" | "krona" | "linkexternal" | "month" | "multicurrency" | "peso" | "playcircle" | "range" | "repeater" | "stepback" | "stepforward" | "submit" | "unit" | "uploadcloud" | "volumedown" | "volumeup" | "week" | "yuan">): import("react").JSX.Element;
|
|
156
156
|
displayName: string;
|
|
157
157
|
};
|
|
158
158
|
export {};
|