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
|
@@ -1411,7 +1411,7 @@ declare const emojione_monotoneIconNames: {
|
|
|
1411
1411
|
};
|
|
1412
1412
|
export type EmojioneMonotoneIconName = keyof typeof emojione_monotoneIconNames;
|
|
1413
1413
|
export declare const EmojioneMonotone: {
|
|
1414
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"scroll" | "link" | "radio" | "key" | "anchor" | "label" | "alien" | "asterisk" | "bookmark" | "briefcase" | "clipboard" | "copyright" | "crown" | "eye" | "ferris-wheel" | "flashlight" | "fleur-de-lis" | "fountain" | "handshake" | "keyboard" | "mouse" | "newspaper" | "notebook" | "package" | "paperclip" | "pistol" | "purse" | "ribbon" | "ring" | "satellite" | "school" | "slot-machine" | "tent" | "ticket" | "yin-yang" | "carrot" | "cow" | "egg" | "horse" | "mushroom" | "pig" | "tractor" | "turkey" | "bat" | "bird" | "bug" | "butterfly" | "cat" | "dog" | "dolphin" | "duck" | "elephant" | "fish" | "koala" | "owl" | "penguin" | "rabbit" | "shark" | "snail" | "snake" | "spider" | "turtle" | "battery" | "snowflake" | "thermometer" | "bank" | "credit-card" | "glasses" | "sunglasses" | "cloud" | "calendar" | "television" | "watch" | "fountain-pen" | "pen" | "pencil" | "file-cabinet" | "candy" | "cookie" | "french-fries" | "hamburger" | "ice-cream" | "pizza" | "popcorn" | "taco" | "bomb" | "crystal-ball" | "ghost" | "shield" | "skull" | "factory" | "hammer" | "wrench" | "lipstick" | "balloon" | "bed" | "candle" | "coffin" | "menorah" | "party-popper" | "snowman" | "spider-web" | "bathtub" | "bell" | "camera" | "door" | "fire" | "printer" | "seat" | "shower" | "toilet" | "ambulance" | "hospital" | "pill" | "microphone" | "saxophone" | "trumpet" | "violin" | "cactus" | "palm-tree" | "volcano" | "airplane" | "bus" | "bus-stop" | "ferry" | "taxi" | "train" | "tram" | "baby" | "baby-bottle" | "castle" | "church" | "office-building" | "stadium" | "synagogue" | "mosque" | "om" | "biohazard" | "microscope" | "radioactive" | "rocket" | "telescope" | "information" | "star" | "badminton" | "baseball" | "basketball" | "bicycle" | "bowling" | "boxing-glove" | "tennis" | "trophy" | "volleyball" | "helicopter" | "umbrella" | "envelope" | "light-bulb" | "megaphone" | "musical-note" | "scissors" | "shopping-cart" | "sparkles" | "sun" | "video-camera" | "alarm-clock" | "amphora" | "backpack" | "baggage-claim" | "banana" | "cigarette" | "construction" | "croissant" | "droplet" | "drum" | "ear" | "footprints" | "graduation-cap" | "guitar" | "handbag" | "hotel" | "house" | "joystick" | "lollipop" | "mountain" | "paintbrush" | "rainbow" | "rat" | "roller-coaster" | "rose" | "sailboat" | "ship" | "shrimp" | "sparkle" | "sunrise" | "sunset" | "syringe" | "thumbs-down" | "thumbs-up" | "tornado" | "bar-chart" | "avocado" | "books" | "bread" | "christmas-tree" | "comet" | "curly-loop" | "deer" | "exclamation-mark" | "joker" | "lemon" | "letter-a" | "letter-b" | "letter-c" | "letter-d" | "letter-e" | "letter-f" | "letter-g" | "letter-h" | "letter-i" | "letter-j" | "letter-k" | "letter-l" | "letter-m" | "letter-n" | "letter-o" | "letter-p" | "letter-q" | "letter-r" | "letter-s" | "letter-t" | "letter-u" | "letter-v" | "letter-w" | "letter-x" | "letter-y" | "letter-z" | "man" | "melon" | "pick" | "ping-pong" | "question-mark" | "registered" | "robot-face" | "rosette" | "seedling" | "speedboat" | "stopwatch" | "woman" | "zzz" | "currency-exchange" | "fuel-pump" | "gear" | "houses" | "person-walking" | "telephone" | "computer-mouse" | "floppy-disk" | "person-biking" | "person-running" | "person-swimming" | "spoon" | "dove" | "dragon" | "motorcycle" | "wine-glass" | "kaaba" | "place-of-worship" | "bacon" | "restroom" | "pager" | "star-and-crescent" | "star-of-david" | "locked" | "radio-button" | "unlocked" | "strawberry" | "warning" | "delivery-truck" | "fog" | "stop-sign" | "american-football" | "musical-notes" | "crayon" | "cucumber" | "eagle" | "fox" | "metro" | "ram" | "rhinoceros" | "blossom" | "hugging-face" | "camping" | "money-bag" | "cooking" | "shaved-ice" | "boy" | "cyclone" | "foggy" | "folded-hands" | "girl" | "waving-hand" | "monorail" | "birthday-cake" | "open-book" | "soccer-ball" | "wolf" | "headphone" | "victory-hand" | "aries" | "burrito" | "cinema" | "dagger" | "dvd" | "gemini" | "goat" | "kiss" | "leo" | "octopus" | "racing-car" | "squid" | "sushi" | "tangerine" | "tomato" | "top-hat" | "dizzy" | "down-arrow" | "left-arrow" | "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" | "ballot-box-with-check" | "beer-mug" | "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" | "deciduous-tree" | "desert-island" | "dizzy-face" | "dog-face" | "dragon-face" | "dress" | "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" | "fork-and-knife" | "four-leaf-clover" | "frog-face" | "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" | "mobile-phone" | "money-mouth-face" | "monkey-face" | "mouse-face" | "mouth" | "movie-camera" | "musical-keyboard" | "musical-score" | "nerd-face" | "neutral-face" | "page-facing-up" | "peach" | "pig-face" | "pile-of-poo" | "pineapple" | "poultry-leg" | "pushpin" | "rabbit-face" | "railway-car" | "raised-back-of-hand" | "raised-hand" | "red-apple" | "roasted-sweet-potato" | "round-pushpin" | "satellite-antenna" | "shamrock" | "shinto-shrine" | "shortcake" | "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" | "thinking-face" | "tiger-face" | "triangular-ruler" | "trolleybus" | "umbrella-on-ground" | "upside-down-face" | "video-game" | "watermelon" | "white-heavy-check-mark" | "wilted-flower" | "winking-face" | "womans-hat" | "writing-hand" | "zipper-mouth-face" | "_1st-place-medal" | "_2nd-place-medal" | "_3rd-place-medal" | "admission-tickets" | "carp-streamer" | "circus-tent" | "cricket-game" | "direct-hit" | "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" | "flag-for-afghanistan" | "flag-for-aland-islands" | "flag-for-albania" | "flag-for-algeria" | "flag-for-american-samoa" | "flag-for-andorra" | "flag-for-angola" | "flag-for-anguilla" | "flag-for-antarctica" | "flag-for-antigua-and-barbuda" | "flag-for-argentina" | "flag-for-armenia" | "flag-for-aruba" | "flag-for-ascension-island" | "flag-for-australia" | "flag-for-austria" | "flag-for-azerbaijan" | "flag-for-bahamas" | "flag-for-bahrain" | "flag-for-bangladesh" | "flag-for-barbados" | "flag-for-belarus" | "flag-for-belgium" | "flag-for-belize" | "flag-for-benin" | "flag-for-bermuda" | "flag-for-bhutan" | "flag-for-black-flag" | "flag-for-bolivia" | "flag-for-bosnia-and-herzegovina" | "flag-for-botswana" | "flag-for-bouvet-island" | "flag-for-brazil" | "flag-for-british-indian-ocean-territory" | "flag-for-british-virgin-islands" | "flag-for-brunei" | "flag-for-bulgaria" | "flag-for-burkina-faso" | "flag-for-burundi" | "flag-for-cambodia" | "flag-for-cameroon" | "flag-for-canada" | "flag-for-canary-islands" | "flag-for-cape-verde" | "flag-for-caribbean-netherlands" | "flag-for-cayman-islands" | "flag-for-central-african-republic" | "flag-for-ceuta-and-melilla" | "flag-for-chad" | "flag-for-chequered-flag" | "flag-for-chile" | "flag-for-china" | "flag-for-christmas-island" | "flag-for-clipperton-island" | "flag-for-cocos-islands" | "flag-for-colombia" | "flag-for-comoros" | "flag-for-congo-brazzaville" | "flag-for-congo-kinshasa" | "flag-for-cook-islands" | "flag-for-costa-rica" | "flag-for-cote-divoire" | "flag-for-croatia" | "flag-for-crossed-flags" | "flag-for-cuba" | "flag-for-curacao" | "flag-for-cyprus" | "flag-for-czechia" | "flag-for-denmark" | "flag-for-diego-garcia" | "flag-for-djibouti" | "flag-for-dominica" | "flag-for-dominican-republic" | "flag-for-ecuador" | "flag-for-egypt" | "flag-for-el-salvador" | "flag-for-equatorial-guinea" | "flag-for-eritrea" | "flag-for-estonia" | "flag-for-ethiopia" | "flag-for-european-union" | "flag-for-falkland-islands" | "flag-for-faroe-islands" | "flag-for-fiji" | "flag-for-finland" | "flag-for-france" | "flag-for-french-guiana" | "flag-for-french-polynesia" | "flag-for-french-southern-territories" | "flag-for-gabon" | "flag-for-gambia" | "flag-for-georgia" | "flag-for-germany" | "flag-for-ghana" | "flag-for-gibraltar" | "flag-for-greece" | "flag-for-greenland" | "flag-for-grenada" | "flag-for-guadeloupe" | "flag-for-guam" | "flag-for-guatemala" | "flag-for-guernsey" | "flag-for-guinea" | "flag-for-guinea-bissau" | "flag-for-guyana" | "flag-for-haiti" | "flag-for-heard-and-mcdonald-islands" | "flag-for-honduras" | "flag-for-hong-kong-sar-china" | "flag-for-hungary" | "flag-for-iceland" | "flag-for-india" | "flag-for-indonesia" | "flag-for-iran" | "flag-for-iraq" | "flag-for-ireland" | "flag-for-isle-of-man" | "flag-for-israel" | "flag-for-italy" | "flag-for-jamaica" | "flag-for-japan" | "flag-for-jersey" | "flag-for-jordan" | "flag-for-kazakhstan" | "flag-for-kenya" | "flag-for-kiribati" | "flag-for-kosovo" | "flag-for-kuwait" | "flag-for-kyrgyzstan" | "flag-for-laos" | "flag-for-latvia" | "flag-for-lebanon" | "flag-for-lesotho" | "flag-for-liberia" | "flag-for-libya" | "flag-for-liechtenstein" | "flag-for-lithuania" | "flag-for-luxembourg" | "flag-for-macau-sar-china" | "flag-for-macedonia" | "flag-for-madagascar" | "flag-for-malawi" | "flag-for-malaysia" | "flag-for-maldives" | "flag-for-mali" | "flag-for-malta" | "flag-for-marshall-islands" | "flag-for-martinique" | "flag-for-mauritania" | "flag-for-mauritius" | "flag-for-mayotte" | "flag-for-mexico" | "flag-for-micronesia" | "flag-for-moldova" | "flag-for-monaco" | "flag-for-mongolia" | "flag-for-montenegro" | "flag-for-montserrat" | "flag-for-morocco" | "flag-for-mozambique" | "flag-for-myanmar" | "flag-for-namibia" | "flag-for-nauru" | "flag-for-nepal" | "flag-for-netherlands" | "flag-for-new-caledonia" | "flag-for-new-zealand" | "flag-for-nicaragua" | "flag-for-niger" | "flag-for-nigeria" | "flag-for-niue" | "flag-for-norfolk-island" | "flag-for-north-korea" | "flag-for-northern-mariana-islands" | "flag-for-norway" | "flag-for-oman" | "flag-for-pakistan" | "flag-for-palau" | "flag-for-palestinian-territories" | "flag-for-panama" | "flag-for-papua-new-guinea" | "flag-for-paraguay" | "flag-for-peru" | "flag-for-philippines" | "flag-for-pitcairn-islands" | "flag-for-poland" | "flag-for-portugal" | "flag-for-puerto-rico" | "flag-for-qatar" | "flag-for-reunion" | "flag-for-romania" | "flag-for-russia" | "flag-for-rwanda" | "flag-for-samoa" | "flag-for-san-marino" | "flag-for-sao-tome-and-principe" | "flag-for-saudi-arabia" | "flag-for-senegal" | "flag-for-serbia" | "flag-for-seychelles" | "flag-for-sierra-leone" | "flag-for-singapore" | "flag-for-sint-maarten" | "flag-for-slovakia" | "flag-for-slovenia" | "flag-for-solomon-islands" | "flag-for-somalia" | "flag-for-south-africa" | "flag-for-south-georgia-and-south-sandwich-islands" | "flag-for-south-korea" | "flag-for-south-sudan" | "flag-for-spain" | "flag-for-sri-lanka" | "flag-for-st-barthelemy" | "flag-for-st-helena" | "flag-for-st-kitts-and-nevis" | "flag-for-st-lucia" | "flag-for-st-martin" | "flag-for-st-pierre-and-miquelon" | "flag-for-st-vincent-and-grenadines" | "flag-for-sudan" | "flag-for-suriname" | "flag-for-svalbard-and-jan-mayen" | "flag-for-swaziland" | "flag-for-sweden" | "flag-for-switzerland" | "flag-for-syria" | "flag-for-taiwan" | "flag-for-tajikistan" | "flag-for-tanzania" | "flag-for-thailand" | "flag-for-timor-leste" | "flag-for-togo" | "flag-for-tokelau" | "flag-for-tonga" | "flag-for-triangular-flag" | "flag-for-trinidad-and-tobago" | "flag-for-tristan-da-cunha" | "flag-for-tunisia" | "flag-for-turkey" | "flag-for-turkmenistan" | "flag-for-turks-and-caicos-islands" | "flag-for-tuvalu" | "flag-for-uganda" | "flag-for-ukraine" | "flag-for-united-arab-emirates" | "flag-for-united-kingdom" | "flag-for-united-states" | "flag-for-uruguay" | "flag-for-us-outlying-islands" | "flag-for-us-virgin-islands" | "flag-for-uzbekistan" | "flag-for-vanuatu" | "flag-for-vatican-city" | "flag-for-venezuela" | "flag-for-vietnam" | "flag-for-wallis-and-futuna" | "flag-for-western-sahara" | "flag-for-white-flag" | "flag-for-yemen" | "flag-for-zambia" | "flag-for-zimbabwe" | "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" | "bear-face" | "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" | "hamster-face" | "hatching-chick" | "hear-no-evil-monkey" | "high-voltage" | "honeybee" | "lady-beetle" | "last-quarter-moon" | "last-quarter-moon-face" | "leaf-fluttering-in-wind" | "leopard" | "lion-face" | "lizard" | "maple-leaf" | "monkey" | "new-moon" | "new-moon-face" | "panda-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" | "unicorn-face" | "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" | "laptop-computer" | "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" | "blond-haired-person" | "bride-with-veil" | "bust-in-silhouette" | "busts-in-silhouette" | "call-me-hand" | "cat-face-with-tears-of-joy" | "cat-face-with-wry-smile" | "clapping-hands" | "closed-umbrella" | "clown-face" | "confounded-face" | "confused-face" | "construction-worker" | "couple-with-heart" | "couple-with-heart-man-man" | "couple-with-heart-woman-woman" | "cowboy-hat-face" | "crossed-fingers" | "crying-cat-face" | "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" | "family" | "family-man-man-boy" | "family-man-man-boy-boy" | "family-man-man-girl" | "family-man-man-girl-boy" | "family-man-man-girl-girl" | "family-man-woman-boy-boy" | "family-man-woman-girl" | "family-man-woman-girl-boy" | "family-man-woman-girl-girl" | "family-woman-woman-boy" | "family-woman-woman-boy-boy" | "family-woman-woman-girl" | "family-woman-woman-girl-boy" | "family-woman-woman-girl-girl" | "fearful-face" | "flexed-biceps" | "flushed-face" | "frowning-face" | "frowning-face-with-open-mouth" | "goblin" | "grimacing-face" | "grinning-cat-face" | "grinning-cat-face-with-smiling-eyes" | "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-man-man" | "kiss-mark" | "kiss-woman-woman" | "kissing-cat-face" | "kissing-face" | "kissing-face-with-closed-eyes" | "kissing-face-with-smiling-eyes" | "left-facing-fist" | "lying-face" | "man-and-woman-holding-hands" | "man-dancing" | "man-in-suit-levitating" | "man-in-tuxedo" | "man-with-chinese-cap" | "mans-shoe" | "middle-finger" | "mrs-claus" | "nail-polish" | "nauseated-face" | "nose" | "ogre" | "ok-hand" | "old-man" | "old-woman" | "oncoming-fist" | "open-hands" | "pensive-face" | "people-with-bunny-ears" | "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-cat-face" | "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-cat-face-with-heart-eyes" | "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" | "two-men-holding-hands" | "two-women-holding-hands" | "unamused-face" | "vulcan-salute" | "weary-cat-face" | "weary-face" | "winking-face-with-tongue" | "woman-dancing" | "womans-boot" | "womans-sandal" | "worried-face" | "a-button" | "ab-button" | "anger-symbol" | "aquarius" | "atm-sign" | "atom-symbol" | "b-button" | "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" | "digit-eight" | "digit-five" | "digit-four" | "digit-nine" | "digit-one" | "digit-seven" | "digit-six" | "digit-three" | "digit-two" | "digit-zero" | "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" | "heavy-check-mark" | "heavy-division-sign" | "heavy-heart-exclamation" | "heavy-large-circle" | "heavy-minus-sign" | "heavy-multiplication-x" | "heavy-plus-sign" | "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" | "keycap-pound" | "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" | "o-button" | "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" | "pound-symbol" | "prohibited" | "purple-heart" | "record-button" | "recycling-symbol" | "red-circle" | "red-heart" | "red-triangle-pointed-down" | "red-triangle-pointed-up" | "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" | "up-text-button" | "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">): import("react").JSX.Element;
|
|
1414
|
+
({ 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" | "asterisk" | "bookmark" | "briefcase" | "clipboard" | "copyright" | "crown" | "eye" | "ferris-wheel" | "flashlight" | "fleur-de-lis" | "fountain" | "handshake" | "keyboard" | "mouse" | "newspaper" | "notebook" | "package" | "paperclip" | "pistol" | "purse" | "ribbon" | "ring" | "satellite" | "school" | "slot-machine" | "tent" | "ticket" | "yin-yang" | "carrot" | "cow" | "egg" | "horse" | "mushroom" | "pig" | "tractor" | "turkey" | "bat" | "bird" | "bug" | "butterfly" | "cat" | "dog" | "dolphin" | "duck" | "elephant" | "fish" | "koala" | "owl" | "penguin" | "rabbit" | "shark" | "snail" | "snake" | "spider" | "turtle" | "battery" | "snowflake" | "thermometer" | "bank" | "credit-card" | "glasses" | "sunglasses" | "cloud" | "calendar" | "television" | "watch" | "fountain-pen" | "pen" | "pencil" | "file-cabinet" | "candy" | "cookie" | "french-fries" | "hamburger" | "ice-cream" | "pizza" | "popcorn" | "taco" | "bomb" | "crystal-ball" | "ghost" | "shield" | "skull" | "factory" | "hammer" | "wrench" | "lipstick" | "balloon" | "bed" | "candle" | "coffin" | "menorah" | "party-popper" | "snowman" | "spider-web" | "bathtub" | "bell" | "camera" | "door" | "fire" | "printer" | "seat" | "shower" | "toilet" | "ambulance" | "hospital" | "pill" | "microphone" | "saxophone" | "trumpet" | "violin" | "cactus" | "palm-tree" | "volcano" | "airplane" | "bus" | "bus-stop" | "ferry" | "taxi" | "train" | "tram" | "baby" | "baby-bottle" | "castle" | "church" | "office-building" | "stadium" | "synagogue" | "mosque" | "om" | "biohazard" | "microscope" | "radioactive" | "rocket" | "telescope" | "information" | "star" | "badminton" | "baseball" | "basketball" | "bicycle" | "bowling" | "boxing-glove" | "tennis" | "trophy" | "volleyball" | "helicopter" | "umbrella" | "envelope" | "light-bulb" | "megaphone" | "musical-note" | "scissors" | "shopping-cart" | "sparkles" | "sun" | "video-camera" | "alarm-clock" | "amphora" | "backpack" | "baggage-claim" | "banana" | "cigarette" | "construction" | "croissant" | "droplet" | "drum" | "ear" | "footprints" | "graduation-cap" | "guitar" | "handbag" | "hotel" | "house" | "joystick" | "lollipop" | "mountain" | "paintbrush" | "rainbow" | "rat" | "roller-coaster" | "rose" | "sailboat" | "ship" | "shrimp" | "sparkle" | "sunrise" | "sunset" | "syringe" | "thumbs-down" | "thumbs-up" | "tornado" | "bar-chart" | "avocado" | "books" | "bread" | "christmas-tree" | "comet" | "curly-loop" | "deer" | "exclamation-mark" | "joker" | "lemon" | "letter-a" | "letter-b" | "letter-c" | "letter-d" | "letter-e" | "letter-f" | "letter-g" | "letter-h" | "letter-i" | "letter-j" | "letter-k" | "letter-l" | "letter-m" | "letter-n" | "letter-o" | "letter-p" | "letter-q" | "letter-r" | "letter-s" | "letter-t" | "letter-u" | "letter-v" | "letter-w" | "letter-x" | "letter-y" | "letter-z" | "man" | "melon" | "pick" | "ping-pong" | "question-mark" | "registered" | "robot-face" | "rosette" | "seedling" | "speedboat" | "stopwatch" | "woman" | "zzz" | "currency-exchange" | "fuel-pump" | "gear" | "houses" | "person-walking" | "telephone" | "computer-mouse" | "floppy-disk" | "person-biking" | "person-running" | "person-swimming" | "spoon" | "dove" | "dragon" | "motorcycle" | "wine-glass" | "kaaba" | "place-of-worship" | "bacon" | "restroom" | "pager" | "star-and-crescent" | "star-of-david" | "locked" | "radio-button" | "unlocked" | "strawberry" | "warning" | "delivery-truck" | "fog" | "stop-sign" | "american-football" | "musical-notes" | "crayon" | "cucumber" | "eagle" | "fox" | "metro" | "ram" | "rhinoceros" | "blossom" | "hugging-face" | "camping" | "money-bag" | "cooking" | "shaved-ice" | "boy" | "cyclone" | "foggy" | "folded-hands" | "girl" | "waving-hand" | "monorail" | "birthday-cake" | "open-book" | "soccer-ball" | "wolf" | "headphone" | "victory-hand" | "aries" | "burrito" | "cinema" | "dagger" | "dvd" | "gemini" | "goat" | "kiss" | "leo" | "octopus" | "racing-car" | "squid" | "sushi" | "tangerine" | "tomato" | "top-hat" | "dizzy" | "down-arrow" | "left-arrow" | "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" | "ballot-box-with-check" | "beer-mug" | "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" | "deciduous-tree" | "desert-island" | "dizzy-face" | "dog-face" | "dragon-face" | "dress" | "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" | "fork-and-knife" | "four-leaf-clover" | "frog-face" | "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" | "mobile-phone" | "money-mouth-face" | "monkey-face" | "mouse-face" | "mouth" | "movie-camera" | "musical-keyboard" | "musical-score" | "nerd-face" | "neutral-face" | "page-facing-up" | "peach" | "pig-face" | "pile-of-poo" | "pineapple" | "poultry-leg" | "pushpin" | "rabbit-face" | "railway-car" | "raised-back-of-hand" | "raised-hand" | "red-apple" | "roasted-sweet-potato" | "round-pushpin" | "satellite-antenna" | "shamrock" | "shinto-shrine" | "shortcake" | "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" | "thinking-face" | "tiger-face" | "triangular-ruler" | "trolleybus" | "umbrella-on-ground" | "upside-down-face" | "video-game" | "watermelon" | "white-heavy-check-mark" | "wilted-flower" | "winking-face" | "womans-hat" | "writing-hand" | "zipper-mouth-face" | "_1st-place-medal" | "_2nd-place-medal" | "_3rd-place-medal" | "admission-tickets" | "carp-streamer" | "circus-tent" | "cricket-game" | "direct-hit" | "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" | "flag-for-afghanistan" | "flag-for-aland-islands" | "flag-for-albania" | "flag-for-algeria" | "flag-for-american-samoa" | "flag-for-andorra" | "flag-for-angola" | "flag-for-anguilla" | "flag-for-antarctica" | "flag-for-antigua-and-barbuda" | "flag-for-argentina" | "flag-for-armenia" | "flag-for-aruba" | "flag-for-ascension-island" | "flag-for-australia" | "flag-for-austria" | "flag-for-azerbaijan" | "flag-for-bahamas" | "flag-for-bahrain" | "flag-for-bangladesh" | "flag-for-barbados" | "flag-for-belarus" | "flag-for-belgium" | "flag-for-belize" | "flag-for-benin" | "flag-for-bermuda" | "flag-for-bhutan" | "flag-for-black-flag" | "flag-for-bolivia" | "flag-for-bosnia-and-herzegovina" | "flag-for-botswana" | "flag-for-bouvet-island" | "flag-for-brazil" | "flag-for-british-indian-ocean-territory" | "flag-for-british-virgin-islands" | "flag-for-brunei" | "flag-for-bulgaria" | "flag-for-burkina-faso" | "flag-for-burundi" | "flag-for-cambodia" | "flag-for-cameroon" | "flag-for-canada" | "flag-for-canary-islands" | "flag-for-cape-verde" | "flag-for-caribbean-netherlands" | "flag-for-cayman-islands" | "flag-for-central-african-republic" | "flag-for-ceuta-and-melilla" | "flag-for-chad" | "flag-for-chequered-flag" | "flag-for-chile" | "flag-for-china" | "flag-for-christmas-island" | "flag-for-clipperton-island" | "flag-for-cocos-islands" | "flag-for-colombia" | "flag-for-comoros" | "flag-for-congo-brazzaville" | "flag-for-congo-kinshasa" | "flag-for-cook-islands" | "flag-for-costa-rica" | "flag-for-cote-divoire" | "flag-for-croatia" | "flag-for-crossed-flags" | "flag-for-cuba" | "flag-for-curacao" | "flag-for-cyprus" | "flag-for-czechia" | "flag-for-denmark" | "flag-for-diego-garcia" | "flag-for-djibouti" | "flag-for-dominica" | "flag-for-dominican-republic" | "flag-for-ecuador" | "flag-for-egypt" | "flag-for-el-salvador" | "flag-for-equatorial-guinea" | "flag-for-eritrea" | "flag-for-estonia" | "flag-for-ethiopia" | "flag-for-european-union" | "flag-for-falkland-islands" | "flag-for-faroe-islands" | "flag-for-fiji" | "flag-for-finland" | "flag-for-france" | "flag-for-french-guiana" | "flag-for-french-polynesia" | "flag-for-french-southern-territories" | "flag-for-gabon" | "flag-for-gambia" | "flag-for-georgia" | "flag-for-germany" | "flag-for-ghana" | "flag-for-gibraltar" | "flag-for-greece" | "flag-for-greenland" | "flag-for-grenada" | "flag-for-guadeloupe" | "flag-for-guam" | "flag-for-guatemala" | "flag-for-guernsey" | "flag-for-guinea" | "flag-for-guinea-bissau" | "flag-for-guyana" | "flag-for-haiti" | "flag-for-heard-and-mcdonald-islands" | "flag-for-honduras" | "flag-for-hong-kong-sar-china" | "flag-for-hungary" | "flag-for-iceland" | "flag-for-india" | "flag-for-indonesia" | "flag-for-iran" | "flag-for-iraq" | "flag-for-ireland" | "flag-for-isle-of-man" | "flag-for-israel" | "flag-for-italy" | "flag-for-jamaica" | "flag-for-japan" | "flag-for-jersey" | "flag-for-jordan" | "flag-for-kazakhstan" | "flag-for-kenya" | "flag-for-kiribati" | "flag-for-kosovo" | "flag-for-kuwait" | "flag-for-kyrgyzstan" | "flag-for-laos" | "flag-for-latvia" | "flag-for-lebanon" | "flag-for-lesotho" | "flag-for-liberia" | "flag-for-libya" | "flag-for-liechtenstein" | "flag-for-lithuania" | "flag-for-luxembourg" | "flag-for-macau-sar-china" | "flag-for-macedonia" | "flag-for-madagascar" | "flag-for-malawi" | "flag-for-malaysia" | "flag-for-maldives" | "flag-for-mali" | "flag-for-malta" | "flag-for-marshall-islands" | "flag-for-martinique" | "flag-for-mauritania" | "flag-for-mauritius" | "flag-for-mayotte" | "flag-for-mexico" | "flag-for-micronesia" | "flag-for-moldova" | "flag-for-monaco" | "flag-for-mongolia" | "flag-for-montenegro" | "flag-for-montserrat" | "flag-for-morocco" | "flag-for-mozambique" | "flag-for-myanmar" | "flag-for-namibia" | "flag-for-nauru" | "flag-for-nepal" | "flag-for-netherlands" | "flag-for-new-caledonia" | "flag-for-new-zealand" | "flag-for-nicaragua" | "flag-for-niger" | "flag-for-nigeria" | "flag-for-niue" | "flag-for-norfolk-island" | "flag-for-north-korea" | "flag-for-northern-mariana-islands" | "flag-for-norway" | "flag-for-oman" | "flag-for-pakistan" | "flag-for-palau" | "flag-for-palestinian-territories" | "flag-for-panama" | "flag-for-papua-new-guinea" | "flag-for-paraguay" | "flag-for-peru" | "flag-for-philippines" | "flag-for-pitcairn-islands" | "flag-for-poland" | "flag-for-portugal" | "flag-for-puerto-rico" | "flag-for-qatar" | "flag-for-reunion" | "flag-for-romania" | "flag-for-russia" | "flag-for-rwanda" | "flag-for-samoa" | "flag-for-san-marino" | "flag-for-sao-tome-and-principe" | "flag-for-saudi-arabia" | "flag-for-senegal" | "flag-for-serbia" | "flag-for-seychelles" | "flag-for-sierra-leone" | "flag-for-singapore" | "flag-for-sint-maarten" | "flag-for-slovakia" | "flag-for-slovenia" | "flag-for-solomon-islands" | "flag-for-somalia" | "flag-for-south-africa" | "flag-for-south-georgia-and-south-sandwich-islands" | "flag-for-south-korea" | "flag-for-south-sudan" | "flag-for-spain" | "flag-for-sri-lanka" | "flag-for-st-barthelemy" | "flag-for-st-helena" | "flag-for-st-kitts-and-nevis" | "flag-for-st-lucia" | "flag-for-st-martin" | "flag-for-st-pierre-and-miquelon" | "flag-for-st-vincent-and-grenadines" | "flag-for-sudan" | "flag-for-suriname" | "flag-for-svalbard-and-jan-mayen" | "flag-for-swaziland" | "flag-for-sweden" | "flag-for-switzerland" | "flag-for-syria" | "flag-for-taiwan" | "flag-for-tajikistan" | "flag-for-tanzania" | "flag-for-thailand" | "flag-for-timor-leste" | "flag-for-togo" | "flag-for-tokelau" | "flag-for-tonga" | "flag-for-triangular-flag" | "flag-for-trinidad-and-tobago" | "flag-for-tristan-da-cunha" | "flag-for-tunisia" | "flag-for-turkey" | "flag-for-turkmenistan" | "flag-for-turks-and-caicos-islands" | "flag-for-tuvalu" | "flag-for-uganda" | "flag-for-ukraine" | "flag-for-united-arab-emirates" | "flag-for-united-kingdom" | "flag-for-united-states" | "flag-for-uruguay" | "flag-for-us-outlying-islands" | "flag-for-us-virgin-islands" | "flag-for-uzbekistan" | "flag-for-vanuatu" | "flag-for-vatican-city" | "flag-for-venezuela" | "flag-for-vietnam" | "flag-for-wallis-and-futuna" | "flag-for-western-sahara" | "flag-for-white-flag" | "flag-for-yemen" | "flag-for-zambia" | "flag-for-zimbabwe" | "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" | "bear-face" | "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" | "hamster-face" | "hatching-chick" | "hear-no-evil-monkey" | "high-voltage" | "honeybee" | "lady-beetle" | "last-quarter-moon" | "last-quarter-moon-face" | "leaf-fluttering-in-wind" | "leopard" | "lion-face" | "lizard" | "maple-leaf" | "monkey" | "new-moon" | "new-moon-face" | "panda-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" | "unicorn-face" | "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" | "laptop-computer" | "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" | "blond-haired-person" | "bride-with-veil" | "bust-in-silhouette" | "busts-in-silhouette" | "call-me-hand" | "cat-face-with-tears-of-joy" | "cat-face-with-wry-smile" | "clapping-hands" | "closed-umbrella" | "clown-face" | "confounded-face" | "confused-face" | "construction-worker" | "couple-with-heart" | "couple-with-heart-man-man" | "couple-with-heart-woman-woman" | "cowboy-hat-face" | "crossed-fingers" | "crying-cat-face" | "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" | "family" | "family-man-man-boy" | "family-man-man-boy-boy" | "family-man-man-girl" | "family-man-man-girl-boy" | "family-man-man-girl-girl" | "family-man-woman-boy-boy" | "family-man-woman-girl" | "family-man-woman-girl-boy" | "family-man-woman-girl-girl" | "family-woman-woman-boy" | "family-woman-woman-boy-boy" | "family-woman-woman-girl" | "family-woman-woman-girl-boy" | "family-woman-woman-girl-girl" | "fearful-face" | "flexed-biceps" | "flushed-face" | "frowning-face" | "frowning-face-with-open-mouth" | "goblin" | "grimacing-face" | "grinning-cat-face" | "grinning-cat-face-with-smiling-eyes" | "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-man-man" | "kiss-mark" | "kiss-woman-woman" | "kissing-cat-face" | "kissing-face" | "kissing-face-with-closed-eyes" | "kissing-face-with-smiling-eyes" | "left-facing-fist" | "lying-face" | "man-and-woman-holding-hands" | "man-dancing" | "man-in-suit-levitating" | "man-in-tuxedo" | "man-with-chinese-cap" | "mans-shoe" | "middle-finger" | "mrs-claus" | "nail-polish" | "nauseated-face" | "nose" | "ogre" | "ok-hand" | "old-man" | "old-woman" | "oncoming-fist" | "open-hands" | "pensive-face" | "people-with-bunny-ears" | "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-cat-face" | "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-cat-face-with-heart-eyes" | "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" | "two-men-holding-hands" | "two-women-holding-hands" | "unamused-face" | "vulcan-salute" | "weary-cat-face" | "weary-face" | "winking-face-with-tongue" | "woman-dancing" | "womans-boot" | "womans-sandal" | "worried-face" | "a-button" | "ab-button" | "anger-symbol" | "aquarius" | "atm-sign" | "atom-symbol" | "b-button" | "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" | "digit-eight" | "digit-five" | "digit-four" | "digit-nine" | "digit-one" | "digit-seven" | "digit-six" | "digit-three" | "digit-two" | "digit-zero" | "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" | "heavy-check-mark" | "heavy-division-sign" | "heavy-heart-exclamation" | "heavy-large-circle" | "heavy-minus-sign" | "heavy-multiplication-x" | "heavy-plus-sign" | "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" | "keycap-pound" | "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" | "o-button" | "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" | "pound-symbol" | "prohibited" | "purple-heart" | "record-button" | "recycling-symbol" | "red-circle" | "red-heart" | "red-triangle-pointed-down" | "red-triangle-pointed-up" | "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" | "up-text-button" | "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">): import("react").JSX.Element;
|
|
1415
1415
|
displayName: string;
|
|
1416
1416
|
};
|
|
1417
1417
|
export {};
|
|
@@ -329,7 +329,7 @@ declare const entypoIconNames: {
|
|
|
329
329
|
};
|
|
330
330
|
export type EntypoIconName = keyof typeof entypoIconNames;
|
|
331
331
|
export declare const Entypo: {
|
|
332
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"map" | "
|
|
332
|
+
({ 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" | "link" | "signal" | "image" | "text" | "menu" | "radio" | "switch" | "list" | "key" | "direction" | "address" | "code" | "video" | "circle" | "mask" | "loop" | "adjust" | "archive" | "attachment" | "book" | "bookmark" | "briefcase" | "bucket" | "chat" | "clipboard" | "download" | "email" | "eraser" | "export" | "eye" | "flag" | "flashlight" | "grid" | "help" | "inbox" | "keyboard" | "login" | "magnet" | "mail" | "merge" | "message" | "mouse" | "network" | "note" | "pin" | "publish" | "rss" | "tag" | "ticket" | "upload" | "voicemail" | "flower" | "leaf" | "tree" | "water" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "forward" | "reply" | "reply-all" | "share" | "shuffle" | "music" | "battery" | "gauge" | "lock" | "lock-open" | "thermometer" | "credit-card" | "wallet" | "box" | "creative-commons" | "phone" | "cloud" | "palette" | "database" | "calendar" | "clock" | "laptop" | "tablet" | "brush" | "pencil" | "ruler" | "folder" | "folder-music" | "bowl" | "cake" | "cup" | "check" | "heart" | "medal" | "shield" | "compass" | "layers" | "tools" | "cross" | "bell" | "camera" | "home" | "power-plug" | "calculator" | "infinity" | "minus" | "plus" | "feather" | "rocket" | "cog" | "star" | "triangle-down" | "trophy" | "traffic-cone" | "lifebuoy" | "flash" | "arrow-long-down" | "arrow-long-left" | "arrow-long-right" | "arrow-long-up" | "document" | "funnel" | "language" | "light-bulb" | "magnifying-glass" | "megaphone" | "moon" | "scissors" | "shopping-bag" | "shopping-cart" | "trash" | "tv" | "user" | "users" | "clapperboard" | "copy" | "globe" | "graduation-cap" | "hand" | "images" | "info" | "log-out" | "mic" | "quote" | "save" | "shopping-basket" | "thumbs-down" | "thumbs-up" | "triangle-right" | "align-left" | "align-right" | "edit" | "pie-chart" | "bookmarks" | "browser" | "location" | "location-pin" | "man" | "news" | "notification" | "stopwatch" | "vinyl" | "align-bottom" | "align-top" | "back" | "emoji-neutral" | "shop" | "suitcase" | "retweet" | "print" | "mobile" | "paper-plane" | "erase" | "popup" | "warning" | "documents" | "game-controller" | "heart-outlined" | "star-outlined" | "air" | "block" | "cycle" | "open-book" | "emoji-sad" | "triangle-left" | "triangle-up" | "blackboard" | "drive" | "drink" | "spreadsheet" | "folder-images" | "folder-video" | "sound-mute" | "creative-commons-remix" | "creative-commons-share" | "drop" | "level-down" | "level-up" | "cw" | "unread" | "add-to-list" | "add-user" | "aircraft" | "aircraft-landing" | "aircraft-take-off" | "align-horizontal-middle" | "align-vertical-middle" | "area-graph" | "arrow-bold-down" | "arrow-bold-left" | "arrow-bold-right" | "arrow-bold-up" | "arrow-with-circle-down" | "arrow-with-circle-left" | "arrow-with-circle-right" | "arrow-with-circle-up" | "awareness-ribbon" | "back-in-time" | "bar-graph" | "beamed-note" | "ccw" | "chevron-small-down" | "chevron-small-left" | "chevron-small-right" | "chevron-small-up" | "chevron-thin-down" | "chevron-thin-left" | "chevron-thin-right" | "chevron-thin-up" | "chevron-with-circle-down" | "chevron-with-circle-left" | "chevron-with-circle-right" | "chevron-with-circle-up" | "circle-with-cross" | "circle-with-minus" | "circle-with-plus" | "circular-graph" | "classic-computer" | "colours" | "controller-fast-backward" | "controller-fast-forward" | "controller-jump-to-start" | "controller-next" | "controller-paus" | "controller-play" | "controller-record" | "controller-stop" | "controller-volume" | "creative-commons-attribution" | "creative-commons-noderivs" | "creative-commons-noncommercial-eu" | "creative-commons-noncommercial-us" | "creative-commons-public-domain" | "creative-commons-sharealike" | "credit" | "dial-pad" | "document-landscape" | "dot-single" | "dots-three-horizontal" | "dots-three-vertical" | "dots-two-horizontal" | "dots-two-vertical" | "emoji-flirt" | "emoji-happy" | "eye-with-line" | "flat-brush" | "flow-branch" | "flow-cascade" | "flow-line" | "flow-parallel" | "flow-tree" | "hair-cross" | "help-with-circle" | "hour-glass" | "image-inverted" | "info-with-circle" | "install" | "lab-flask" | "landline" | "light-down" | "light-up" | "line-graph" | "modern-mic" | "new" | "new-message" | "old-mobile" | "old-phone" | "price-ribbon" | "price-tag" | "progress-empty" | "progress-full" | "progress-one" | "progress-two" | "remove-user" | "resize-100" | "resize-full-screen" | "round-brush" | "select-arrows" | "share-alternitive" | "shareable" | "sound" | "sound-mix" | "sports-club" | "squared-cross" | "squared-minus" | "squared-plus" | "swap" | "sweden" | "text-document" | "text-document-inverted" | "thunder-cloud" | "time-slot" | "typing" | "uninstall" | "untag" | "upload-to-cloud" | "v-card">): import("react").JSX.Element;
|
|
333
333
|
displayName: string;
|
|
334
334
|
};
|
|
335
335
|
export {};
|
|
@@ -84,7 +84,7 @@ declare const entypo_socialIconNames: {
|
|
|
84
84
|
};
|
|
85
85
|
export type EntypoSocialIconName = keyof typeof entypo_socialIconNames;
|
|
86
86
|
export declare const EntypoSocial: {
|
|
87
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"dropbox" | "evernote" | "facebook" | "github" | "google" | "google-drive" | "google-hangouts" | "instagram" | "linkedin" | "pinterest" | "sina-weibo" | "skype" | "soundcloud" | "spotify" | "twitter" | "vimeo" | "youtube" | "dribbble" | "rainbow" | "behance" | "medium" | "paypal" | "yelp" | "_500px" | "basecamp" | "flickr" | "foursquare" | "icloud" | "qq" | "renren" | "scribd" | "slideshare" | "swarm" | "tripadvisor" | "tumblr" | "vk" | "xing" | "flattr" | "lastfm" | "picasa" | "stumbleupon" | "vine" | "_500px-with-circle" | "creative-cloud" | "dribbble-with-circle" | "facebook-with-circle" | "flickr-with-circle" | "github-with-circle" | "google-with-circle" | "grooveshark" | "instagram-with-circle" | "lastfm-with-circle" | "linkedin-with-circle" | "medium-with-circle" | "mixi" | "onedrive" | "pinterest-with-circle" | "qq-with-circle" | "raft" | "raft-with-circle" | "rdio" | "rdio-with-circle" | "skype-with-circle" | "smashing" | "spotify-with-circle" | "stumbleupon-with-circle" | "tumblr-with-circle" | "twitter-with-circle" | "vimeo-with-circle" | "vine-with-circle" | "vk-alternitive" | "vk-with-circle" | "xing-with-circle" | "youko" | "youko-with-circle" | "youtube-with-circle">): import("react").JSX.Element;
|
|
87
|
+
({ 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<"dropbox" | "evernote" | "facebook" | "github" | "google" | "google-drive" | "google-hangouts" | "instagram" | "linkedin" | "pinterest" | "sina-weibo" | "skype" | "soundcloud" | "spotify" | "twitter" | "vimeo" | "youtube" | "dribbble" | "rainbow" | "behance" | "medium" | "paypal" | "yelp" | "_500px" | "basecamp" | "flickr" | "foursquare" | "icloud" | "qq" | "renren" | "scribd" | "slideshare" | "swarm" | "tripadvisor" | "tumblr" | "vk" | "xing" | "flattr" | "lastfm" | "picasa" | "stumbleupon" | "vine" | "_500px-with-circle" | "creative-cloud" | "dribbble-with-circle" | "facebook-with-circle" | "flickr-with-circle" | "github-with-circle" | "google-with-circle" | "grooveshark" | "instagram-with-circle" | "lastfm-with-circle" | "linkedin-with-circle" | "medium-with-circle" | "mixi" | "onedrive" | "pinterest-with-circle" | "qq-with-circle" | "raft" | "raft-with-circle" | "rdio" | "rdio-with-circle" | "skype-with-circle" | "smashing" | "spotify-with-circle" | "stumbleupon-with-circle" | "tumblr-with-circle" | "twitter-with-circle" | "vimeo-with-circle" | "vine-with-circle" | "vk-alternitive" | "vk-with-circle" | "xing-with-circle" | "youko" | "youko-with-circle" | "youtube-with-circle">): import("react").JSX.Element;
|
|
88
88
|
displayName: string;
|
|
89
89
|
};
|
|
90
90
|
export {};
|
|
@@ -261,7 +261,7 @@ declare const eos_iconsIconNames: {
|
|
|
261
261
|
};
|
|
262
262
|
export type EosIconsIconName = keyof typeof eos_iconsIconNames;
|
|
263
263
|
export declare const EosIcons: {
|
|
264
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"loading" | "
|
|
264
|
+
({ 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<"loading" | "timeout" | "container" | "state" | "application" | "augmented-reality" | "dns" | "ip" | "merge" | "network" | "package" | "pin" | "virtual-reality" | "database" | "api" | "flask" | "compass" | "infinity" | "test-tube" | "drone" | "hourglass" | "move" | "route" | "terminal" | "volume" | "ai" | "cloud-computing" | "outbound" | "packages" | "sandbox" | "spinner" | "branch" | "commit" | "deploy" | "fork" | "pull-request" | "machine-learning" | "blockchain" | "constraint" | "kubelet" | "abstract" | "ingress" | "api-outlined" | "cluster-outlined" | "container-outlined" | "database-outlined" | "fork-outlined" | "merge-outlined" | "project-outlined" | "pull-request-outlined" | "science" | "monitoring" | "satellite-alt" | "cleanup" | "cluster" | "service" | "env" | "symlink" | "diff-modified" | "organization" | "project" | "performance" | "products" | "typing" | "_3d-print" | "abstract-incomplete" | "abstract-instance" | "abstract-instance-outlined" | "abstract-outlined" | "action-chains" | "action-chains-outlined" | "activate-subscriptions" | "activate-subscriptions-outlined" | "admin" | "admin-outlined" | "ai-healing" | "ai-healing-outlined" | "ai-operator" | "application-incomplete" | "application-incomplete-outlined" | "application-instance" | "application-instance-outlined" | "application-outlined" | "application-window" | "application-window-outlined" | "arrow-rotate" | "atom-electron" | "autoinstallation" | "background-tasks" | "big-data" | "big-data-outlined" | "bootstrapping" | "bootstrapping-outlined" | "branch-outlined" | "bubble-loading" | "cloud-computing-outlined" | "cloud-controller-manager" | "cluster-management" | "cluster-management-outlined" | "cluster-role" | "cluster-role-binding" | "code-deploy" | "code-deploy-outlined" | "collocation" | "commit-outlined" | "compare-states" | "compare-states-outlined" | "config-map" | "configuration-file" | "configuration-file-outlined" | "content-deleted" | "content-lifecycle-management" | "content-modified" | "content-new" | "counting" | "critical-bug" | "critical-bug-outlined" | "cronjob" | "csv-file" | "daemon" | "daemon-outlined" | "daemon-set" | "daemon-set-outlined" | "data-mining" | "data-scientist" | "data-scientist-outlined" | "database-migration" | "database-migration-outlined" | "diff-modified-outlined" | "edge-computing" | "edge-computing-outlined" | "endpoints" | "endpoints-connected" | "endpoints-disconnected" | "enhancement" | "file-system" | "file-system-outlined" | "genomic" | "hardware-circuit" | "inbound" | "init-container" | "init-container-outlined" | "installing" | "iot" | "ip-outlined" | "job" | "kubelet-outlined" | "locked-env" | "locked-env-outlined" | "machine-learning-outlined" | "master" | "master-outlined" | "miscellaneous" | "miscellaneous-outlined" | "modified-date" | "modified-date-outlined" | "molecules" | "molecules-outlined" | "multistate" | "namespace" | "network-file-system" | "network-file-system-outlined" | "network-policy" | "network-policy-outlined" | "neural-network" | "node" | "node-outlined" | "organisms" | "organisms-outlined" | "organization-outlined" | "package-outlined" | "package-upgrade" | "package-upgrade-outlined" | "packages-outlined" | "patch-fixes" | "patch-fixes-outlined" | "patterns" | "patterns-outlined" | "persistent-volume" | "pin-outlined" | "pipeline" | "pipeline-outlined" | "pod" | "pod-autoscaler" | "pod-autoscaler-outlined" | "pod-outlined" | "pod-security" | "pod-security-outlined" | "primitive" | "product-classes" | "product-classes-outlined" | "product-subscriptions" | "product-subscriptions-outlined" | "products-outlined" | "proxy" | "proxy-outlined" | "push-pin" | "push-pin-outlined" | "quota" | "quota-outlined" | "replica" | "replica-set" | "repositories" | "role-binding" | "role-binding-outlined" | "rotating-gear" | "sandbox-outlined" | "satellite-alt-outlined" | "science-outlined" | "scientist" | "scientist-outlined" | "secret" | "secret-outlined" | "secure-data" | "secure-data-outlined" | "self-healing" | "service-instance" | "service-instance-outlined" | "service-outlined" | "service-plan" | "service-plan-outlined" | "snapshot-rollback" | "software" | "software-outlined" | "stateful-set" | "stateful-set-outlined" | "storage-class" | "storage-class-outlined" | "subscription-management" | "subscriptions-created" | "subscriptions-created-outlined" | "symlink-outlined" | "system-group" | "system-image" | "system-image-outlined" | "system-ok" | "system-ok-outlined" | "system-re-registered" | "system-warning" | "templates" | "templates-outlined" | "terminal-outlined" | "three-dots-loading" | "troubleshooting" | "trusted-organization" | "virtual-guest" | "virtual-host-manager" | "virtual-reality-outlined" | "virtual-space" | "volume-binding" | "volume-binding-outlined" | "volume-outlined" | "workload">): import("react").JSX.Element;
|
|
265
265
|
displayName: string;
|
|
266
266
|
};
|
|
267
267
|
export {};
|
|
@@ -301,7 +301,7 @@ declare const epIconNames: {
|
|
|
301
301
|
};
|
|
302
302
|
export type EpIconName = keyof typeof epIconNames;
|
|
303
303
|
export declare const Ep: {
|
|
304
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"sort" | "filter" | "failed" | "loading" | "
|
|
304
|
+
({ 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<"sort" | "filter" | "failed" | "loading" | "search" | "link" | "pointer" | "menu" | "switch" | "timer" | "list" | "key" | "bottom" | "position" | "right" | "top" | "picture" | "select" | "view" | "finished" | "briefcase" | "comment" | "crop" | "delete" | "download" | "flag" | "grid" | "help" | "magnet" | "message" | "more" | "mouse" | "notebook" | "paperclip" | "school" | "ticket" | "upload" | "arrow-down" | "arrow-down-bold" | "arrow-left" | "arrow-left-bold" | "arrow-right" | "arrow-right-bold" | "arrow-up" | "arrow-up-bold" | "refresh" | "share" | "headset" | "lock" | "smoking" | "credit-card" | "wallet" | "apple" | "box" | "cellphone" | "phone" | "calendar" | "clock" | "monitor" | "watch" | "brush" | "folder" | "folder-remove" | "bowl" | "coffee" | "food" | "ice-cream" | "check" | "close" | "medal" | "compass" | "tools" | "bell" | "camera" | "connection" | "printer" | "wind-power" | "minus" | "plus" | "microphone" | "film" | "office-building" | "star" | "baseball" | "basketball" | "bicycle" | "football" | "soccer" | "trophy" | "umbrella" | "document" | "moon" | "shopping-bag" | "shopping-cart" | "user" | "video-camera" | "alarm-clock" | "cherry" | "circle-check" | "circle-plus" | "cloudy" | "cpu" | "dessert" | "expand" | "files" | "grape" | "handbag" | "house" | "lollipop" | "mic" | "refrigerator" | "ship" | "stamp" | "sunrise" | "sunset" | "tickets" | "zoom-in" | "zoom-out" | "edit" | "pie-chart" | "unlock" | "bell-filled" | "burger" | "camera-filled" | "caret-left" | "caret-right" | "circle-check-filled" | "circle-plus-filled" | "coin" | "discount" | "first-aid-kit" | "fold" | "home-filled" | "location" | "location-filled" | "mug" | "notification" | "phone-filled" | "star-filled" | "stopwatch" | "toilet-paper" | "user-filled" | "back" | "chat-square" | "collection" | "lightning" | "postcard" | "shop" | "sort-down" | "sort-up" | "suitcase" | "map-location" | "suitcase-line" | "money" | "document-add" | "folder-add" | "help-filled" | "warning" | "warning-filled" | "mostly-cloudy" | "partly-cloudy" | "van" | "female" | "male" | "open" | "remove" | "sunny" | "orange" | "chrome-filled" | "delete-filled" | "picture-filled" | "video-camera-filled" | "wallet-filled" | "sell" | "fork-spoon" | "add-location" | "folder-delete" | "hide" | "scissor" | "coffee-cup" | "full-screen" | "aim" | "brush-filled" | "info-filled" | "question-filled" | "service" | "dish" | "pear" | "caret-bottom" | "caret-top" | "mute" | "chicken" | "odometer" | "fries" | "folder-opened" | "memo" | "shopping-trolley" | "watermelon" | "no-smoking" | "price-tag" | "avatar" | "bottom-left" | "bottom-right" | "chat-dot-round" | "chat-dot-square" | "chat-line-round" | "chat-line-square" | "chat-round" | "checked" | "circle-close" | "circle-close-filled" | "close-bold" | "cold-drink" | "collection-tag" | "coordinate" | "copy-document" | "d-arrow-left" | "d-arrow-right" | "d-caret" | "data-analysis" | "data-board" | "data-line" | "delete-location" | "dish-dot" | "document-checked" | "document-copy" | "document-delete" | "document-remove" | "drizzling" | "edit-pen" | "eleme" | "eleme-filled" | "element-plus" | "folder-checked" | "goblet" | "goblet-full" | "goblet-square" | "goblet-square-full" | "gold-medal" | "goods" | "goods-filled" | "guide" | "histogram" | "hot-water" | "ice-cream-round" | "ice-cream-square" | "ice-drink" | "ice-tea" | "iphone" | "knife-fork" | "location-information" | "magic-stick" | "management" | "message-box" | "milk-tea" | "moon-night" | "more-filled" | "mute-notification" | "operation" | "opportunity" | "picture-rounded" | "place" | "platform" | "pouring" | "present" | "promotion" | "quartz-watch" | "rank" | "reading" | "reading-lamp" | "refresh-left" | "refresh-right" | "remove-filled" | "scale-to-original" | "semi-select" | "set-up" | "setting" | "shopping-cart-full" | "sold-out" | "success-filled" | "sugar" | "switch-button" | "switch-filled" | "takeaway-box" | "top-left" | "top-right" | "trend-charts" | "trophy-base" | "turn-off" | "upload-filled" | "video-pause" | "video-play" | "warn-triangle-filled">): import("react").JSX.Element;
|
|
305
305
|
displayName: string;
|
|
306
306
|
};
|
|
307
307
|
export {};
|
|
@@ -108,7 +108,7 @@ declare const etIconNames: {
|
|
|
108
108
|
};
|
|
109
109
|
export type EtIconName = keyof typeof etIconNames;
|
|
110
110
|
export declare const Et: {
|
|
111
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"map" | "search" | "
|
|
111
|
+
({ 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" | "search" | "anchor" | "key" | "picture" | "video" | "book-open" | "briefcase" | "chat" | "clipboard" | "download" | "flag" | "grid" | "newspaper" | "notebook" | "paperclip" | "presentation" | "recycle" | "ribbon" | "rss" | "upload" | "refresh" | "lock" | "speedometer" | "wallet" | "facebook" | "linkedin" | "twitter" | "phone" | "cloud" | "calendar" | "clock" | "laptop" | "tablet" | "pencil" | "heart" | "puzzle" | "shield" | "compass" | "layers" | "toolbox" | "tools" | "gift" | "camera" | "lightbulb" | "printer" | "beaker" | "telescope" | "basket" | "bike" | "strategy" | "trophy" | "document" | "envelope" | "magnifying-glass" | "map-pin" | "megaphone" | "scissors" | "aperture" | "dribbble" | "expand" | "focus" | "globe" | "hourglass" | "mic" | "paintbrush" | "quote" | "wine" | "edit" | "adjustments" | "browser" | "gears" | "mobile" | "desktop" | "lifesaver" | "documents" | "happy" | "pricetags" | "sad" | "genius" | "tumblr" | "googleplus" | "alarmclock" | "attachments" | "bargraph" | "caution" | "circle-compass" | "dial" | "global" | "hazardous" | "hotairballoon" | "linegraph" | "pictures" | "piechart" | "profile-female" | "profile-male" | "scope" | "streetsign" | "tools-2" | "traget">): import("react").JSX.Element;
|
|
112
112
|
displayName: string;
|
|
113
113
|
};
|
|
114
114
|
export {};
|
|
@@ -498,7 +498,7 @@ declare const evaIconNames: {
|
|
|
498
498
|
};
|
|
499
499
|
export type EvaIconName = keyof typeof evaIconNames;
|
|
500
500
|
export declare const Eva: {
|
|
501
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"archive-outline" | "backspace-outline" | "book-open-outline" | "book-outline" | "bookmark-outline" | "briefcase-outline" | "clipboard-outline" | "close-outline" | "download-outline" | "email-outline" | "eye-off-outline" | "eye-outline" | "flag-outline" | "flash-off-outline" | "image-outline" | "inbox-outline" | "pause-circle-outline" | "pin-outline" | "play-circle-outline" | "plus-circle-outline" | "plus-outline" | "shield-off-outline" | "skip-forward-outline" | "stop-circle-outline" | "upload-outline" | "alert-circle-outline" | "share-outline" | "battery-outline" | "car-outline" | "lock-outline" | "credit-card-outline" | "phone-missed-outline" | "phone-off-outline" | "phone-outline" | "cloud-download-outline" | "cloud-upload-outline" | "calendar-outline" | "clock-outline" | "brush-outline" | "file-outline" | "file-remove-outline" | "folder-outline" | "folder-remove-outline" | "cube-outline" | "close-circle-outline" | "minus-circle-outline" | "heart-outline" | "shield-outline" | "compass-outline" | "layers-outline" | "map-outline" | "gift-outline" | "bell-outline" | "home-outline" | "percent-outline" | "navigation-outline" | "bell-off-outline" | "camera-outline" | "printer-outline" | "square-outline" | "star-outline" | "video-off-outline" | "video-outline" | "flash-outline" | "umbrella-outline" | "archive-fill" | "award-fill" | "backspace-fill" | "bar-chart-fill" | "bell-fill" | "book-fill" | "bookmark-fill" | "briefcase-fill" | "brush-fill" | "calendar-fill" | "camera-fill" | "clipboard-fill" | "clock-fill" | "cloud-download-fill" | "cloud-upload-fill" | "compass-fill" | "credit-card-fill" | "droplet-fill" | "eye-fill" | "file-fill" | "file-text-fill" | "flag-fill" | "folder-fill" | "funnel-fill" | "gift-fill" | "grid-fill" | "heart-fill" | "image-fill" | "inbox-fill" | "layers-fill" | "lock-fill" | "map-fill" | "mic-fill" | "moon-fill" | "pause-circle-fill" | "people-fill" | "person-fill" | "phone-fill" | "pie-chart-fill" | "pin-fill" | "play-circle-fill" | "plus-circle-fill" | "plus-square-fill" | "printer-fill" | "save-fill" | "share-fill" | "shield-fill" | "skip-forward-fill" | "speaker-fill" | "square-fill" | "star-fill" | "stop-circle-fill" | "sun-fill" | "trash-fill" | "tv-fill" | "umbrella-fill" | "unlock-fill" | "volume-down-fill" | "volume-mute-fill" | "volume-off-fill" | "volume-up-fill" | "arrow-down-fill" | "arrow-left-fill" | "arrow-right-fill" | "arrow-up-fill" | "corner-down-left-fill" | "corner-down-right-fill" | "corner-left-down-fill" | "corner-left-up-fill" | "corner-right-down-fill" | "corner-right-up-fill" | "corner-up-left-fill" | "corner-up-right-fill" | "home-fill" | "at-fill" | "bar-chart-2-fill" | "pie-chart-2-fill" | "crop-fill" | "edit-2-fill" | "edit-fill" | "layout-fill" | "pantone-fill" | "scissors-fill" | "code-fill" | "battery-fill" | "bluetooth-fill" | "cast-fill" | "hard-drive-fill" | "smartphone-fill" | "wifi-fill" | "wifi-off-fill" | "book-open-fill" | "file-add-fill" | "folder-add-fill" | "percent-fill" | "shopping-bag-fill" | "shopping-cart-fill" | "swap-fill" | "thermometer-fill" | "behance-fill" | "facebook-fill" | "github-fill" | "google-fill" | "linkedin-fill" | "twitter-fill" | "car-fill" | "globe-fill" | "navigation-fill" | "film-fill" | "image-2-fill" | "mic-off-fill" | "music-fill" | "radio-fill" | "repeat-fill" | "shuffle-fill" | "skip-back-fill" | "video-fill" | "video-off-fill" | "close-circle-fill" | "close-fill" | "download-fill" | "external-link-fill" | "eye-off-fill" | "menu-2-fill" | "menu-fill" | "refresh-fill" | "search-fill" | "settings-2-fill" | "settings-fill" | "upload-fill" | "chevron-down-outline" | "chevron-up-outline" | "skip-back-outline" | "text-fill" | "checkmark-outline" | "arrow-back-outline" | "arrow-down-outline" | "arrow-forward-outline" | "arrow-up-outline" | "at-outline" | "attach-outline" | "bar-chart-outline" | "bluetooth-outline" | "bulb-outline" | "checkmark-circle-outline" | "code-download-outline" | "code-outline" | "color-palette-outline" | "copy-outline" | "crop-outline" | "expand-outline" | "film-outline" | "funnel-outline" | "globe-outline" | "grid-outline" | "keypad-outline" | "link-outline" | "list-outline" | "log-in-outline" | "log-out-outline" | "menu-outline" | "mic-off-outline" | "mic-outline" | "moon-outline" | "move-outline" | "options-outline" | "paper-plane-outline" | "people-outline" | "person-add-outline" | "person-outline" | "person-remove-outline" | "pie-chart-outline" | "power-outline" | "pricetags-outline" | "radio-button-off-outline" | "radio-button-on-outline" | "radio-outline" | "recording-outline" | "refresh-outline" | "repeat-outline" | "save-outline" | "search-outline" | "settings-outline" | "shuffle-outline" | "sync-outline" | "text-outline" | "thermometer-outline" | "trash-outline" | "trending-down-outline" | "trending-up-outline" | "tv-outline" | "volume-mute-outline" | "volume-off-outline" | "wifi-outline" | "info-outline" | "volume-down-outline" | "volume-up-outline" | "shopping-bag-outline" | "shopping-cart-outline" | "cast-outline" | "hard-drive-outline" | "headphones-outline" | "speaker-outline" | "edit-outline" | "arrow-circle-down-outline" | "arrow-circle-left-outline" | "arrow-circle-right-outline" | "arrow-circle-up-outline" | "arrow-left-outline" | "arrow-right-outline" | "maximize-outline" | "minimize-outline" | "monitor-outline" | "smartphone-outline" | "close-square-outline" | "minus-square-outline" | "scissors-outline" | "file-text-outline" | "sun-outline" | "info-fill" | "more-horizontal-fill" | "more-vertical-fill" | "npm-fill" | "behance-outline" | "facebook-outline" | "google-outline" | "linkedin-outline" | "twitter-outline" | "collapse-outline" | "layout-outline" | "music-outline" | "award-outline" | "unlock-outline" | "minus-outline" | "more-horizontal-outline" | "more-vertical-outline" | "undo-outline" | "activity-fill" | "activity-outline" | "alert-circle-fill" | "alert-triangle-fill" | "alert-triangle-outline" | "arrow-back-fill" | "arrow-circle-down-fill" | "arrow-circle-left-fill" | "arrow-circle-right-fill" | "arrow-circle-up-fill" | "arrow-downward-fill" | "arrow-downward-outline" | "arrow-forward-fill" | "arrow-ios-back-fill" | "arrow-ios-back-outline" | "arrow-ios-downward-fill" | "arrow-ios-downward-outline" | "arrow-ios-forward-fill" | "arrow-ios-forward-outline" | "arrow-ios-upward-fill" | "arrow-ios-upward-outline" | "arrow-upward-fill" | "arrow-upward-outline" | "arrowhead-down-fill" | "arrowhead-down-outline" | "arrowhead-left-fill" | "arrowhead-left-outline" | "arrowhead-right-fill" | "arrowhead-right-outline" | "arrowhead-up-fill" | "arrowhead-up-outline" | "attach-2-fill" | "attach-2-outline" | "attach-fill" | "bar-chart-2-outline" | "bell-off-fill" | "browser-fill" | "browser-outline" | "bulb-fill" | "charging-fill" | "charging-outline" | "checkmark-circle-2-fill" | "checkmark-circle-2-outline" | "checkmark-circle-fill" | "checkmark-fill" | "checkmark-square-2-fill" | "checkmark-square-2-outline" | "checkmark-square-fill" | "checkmark-square-outline" | "chevron-down-fill" | "chevron-left-fill" | "chevron-left-outline" | "chevron-right-fill" | "chevron-right-outline" | "chevron-up-fill" | "close-square-fill" | "code-download-fill" | "collapse-fill" | "color-palette-fill" | "color-picker-fill" | "color-picker-outline" | "copy-fill" | "corner-down-left-outline" | "corner-down-right-outline" | "corner-left-down-outline" | "corner-left-up-outline" | "corner-right-down-outline" | "corner-right-up-outline" | "corner-up-left-outline" | "corner-up-right-outline" | "cube-fill" | "diagonal-arrow-left-down-fill" | "diagonal-arrow-left-down-outline" | "diagonal-arrow-left-up-fill" | "diagonal-arrow-left-up-outline" | "diagonal-arrow-right-down-fill" | "diagonal-arrow-right-down-outline" | "diagonal-arrow-right-up-fill" | "diagonal-arrow-right-up-outline" | "done-all-fill" | "done-all-outline" | "droplet-off-fill" | "droplet-off-outline" | "droplet-outline" | "edit-2-outline" | "email-fill" | "expand-fill" | "external-link-outline" | "eye-off-2-fill" | "eye-off-2-outline" | "file-add-outline" | "file-remove-fill" | "flash-fill" | "flash-off-fill" | "flip-2-fill" | "flip-2-outline" | "flip-fill" | "flip-outline" | "folder-add-outline" | "folder-remove-fill" | "github-outline" | "globe-2-fill" | "globe-2-outline" | "globe-3-fill" | "hash-fill" | "hash-outline" | "headphones-fill" | "keypad-fill" | "link-2-fill" | "link-2-outline" | "link-fill" | "list-fill" | "loader-outline" | "log-in-fill" | "log-out-fill" | "maximize-fill" | "menu-2-outline" | "menu-arrow-fill" | "menu-arrow-outline" | "message-circle-fill" | "message-circle-outline" | "message-square-fill" | "message-square-outline" | "minimize-fill" | "minus-circle-fill" | "minus-fill" | "minus-square-fill" | "monitor-fill" | "move-fill" | "navigation-2-fill" | "navigation-2-outline" | "npm-outline" | "options-2-fill" | "options-2-outline" | "options-fill" | "pantone-outline" | "paper-plane-fill" | "person-add-fill" | "person-delete-fill" | "person-delete-outline" | "person-done-fill" | "person-done-outline" | "person-remove-fill" | "phone-call-fill" | "phone-call-outline" | "phone-missed-fill" | "phone-off-fill" | "plus-fill" | "plus-square-outline" | "power-fill" | "pricetags-fill" | "question-mark-circle-fill" | "question-mark-circle-outline" | "question-mark-fill" | "question-mark-outline" | "radio-button-off-fill" | "radio-button-on-fill" | "recording-fill" | "rewind-left-fill" | "rewind-left-outline" | "rewind-right-fill" | "rewind-right-outline" | "settings-2-outline" | "shake-fill" | "shake-outline" | "shield-off-fill" | "shuffle-2-fill" | "shuffle-2-outline" | "slash-fill" | "slash-outline" | "smiling-face-fill" | "smiling-face-outline" | "swap-outline" | "sync-fill" | "thermometer-minus-fill" | "thermometer-minus-outline" | "thermometer-plus-fill" | "thermometer-plus-outline" | "toggle-left-fill" | "toggle-left-outline" | "toggle-right-fill" | "toggle-right-outline" | "trash-2-fill" | "trash-2-outline" | "trending-down-fill" | "trending-up-fill" | "undo-fill" | "wifi-off-outline">): import("react").JSX.Element;
|
|
501
|
+
({ 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<"archive-outline" | "backspace-outline" | "book-open-outline" | "book-outline" | "bookmark-outline" | "briefcase-outline" | "clipboard-outline" | "close-outline" | "download-outline" | "email-outline" | "eye-off-outline" | "eye-outline" | "flag-outline" | "flash-off-outline" | "image-outline" | "inbox-outline" | "pause-circle-outline" | "pin-outline" | "play-circle-outline" | "plus-circle-outline" | "plus-outline" | "shield-off-outline" | "skip-forward-outline" | "stop-circle-outline" | "upload-outline" | "alert-circle-outline" | "share-outline" | "battery-outline" | "car-outline" | "lock-outline" | "credit-card-outline" | "phone-missed-outline" | "phone-off-outline" | "phone-outline" | "cloud-download-outline" | "cloud-upload-outline" | "calendar-outline" | "clock-outline" | "brush-outline" | "file-outline" | "file-remove-outline" | "folder-outline" | "folder-remove-outline" | "cube-outline" | "close-circle-outline" | "minus-circle-outline" | "heart-outline" | "shield-outline" | "compass-outline" | "layers-outline" | "map-outline" | "gift-outline" | "bell-outline" | "home-outline" | "percent-outline" | "navigation-outline" | "bell-off-outline" | "camera-outline" | "printer-outline" | "square-outline" | "star-outline" | "video-off-outline" | "video-outline" | "flash-outline" | "umbrella-outline" | "archive-fill" | "award-fill" | "backspace-fill" | "bar-chart-fill" | "bell-fill" | "book-fill" | "bookmark-fill" | "briefcase-fill" | "brush-fill" | "calendar-fill" | "camera-fill" | "clipboard-fill" | "clock-fill" | "cloud-download-fill" | "cloud-upload-fill" | "compass-fill" | "credit-card-fill" | "droplet-fill" | "eye-fill" | "file-fill" | "file-text-fill" | "flag-fill" | "folder-fill" | "funnel-fill" | "gift-fill" | "grid-fill" | "heart-fill" | "image-fill" | "inbox-fill" | "layers-fill" | "lock-fill" | "map-fill" | "mic-fill" | "moon-fill" | "pause-circle-fill" | "people-fill" | "person-fill" | "phone-fill" | "pie-chart-fill" | "pin-fill" | "play-circle-fill" | "plus-circle-fill" | "plus-square-fill" | "printer-fill" | "save-fill" | "share-fill" | "shield-fill" | "skip-forward-fill" | "speaker-fill" | "square-fill" | "star-fill" | "stop-circle-fill" | "sun-fill" | "trash-fill" | "tv-fill" | "umbrella-fill" | "unlock-fill" | "volume-down-fill" | "volume-mute-fill" | "volume-off-fill" | "volume-up-fill" | "arrow-down-fill" | "arrow-left-fill" | "arrow-right-fill" | "arrow-up-fill" | "corner-down-left-fill" | "corner-down-right-fill" | "corner-left-down-fill" | "corner-left-up-fill" | "corner-right-down-fill" | "corner-right-up-fill" | "corner-up-left-fill" | "corner-up-right-fill" | "home-fill" | "at-fill" | "bar-chart-2-fill" | "pie-chart-2-fill" | "crop-fill" | "edit-2-fill" | "edit-fill" | "layout-fill" | "pantone-fill" | "scissors-fill" | "code-fill" | "battery-fill" | "bluetooth-fill" | "cast-fill" | "hard-drive-fill" | "smartphone-fill" | "wifi-fill" | "wifi-off-fill" | "book-open-fill" | "file-add-fill" | "folder-add-fill" | "percent-fill" | "shopping-bag-fill" | "shopping-cart-fill" | "swap-fill" | "thermometer-fill" | "behance-fill" | "facebook-fill" | "github-fill" | "google-fill" | "linkedin-fill" | "twitter-fill" | "car-fill" | "globe-fill" | "navigation-fill" | "film-fill" | "image-2-fill" | "mic-off-fill" | "music-fill" | "radio-fill" | "repeat-fill" | "shuffle-fill" | "skip-back-fill" | "video-fill" | "video-off-fill" | "close-circle-fill" | "close-fill" | "download-fill" | "external-link-fill" | "eye-off-fill" | "menu-2-fill" | "menu-fill" | "refresh-fill" | "search-fill" | "settings-2-fill" | "settings-fill" | "upload-fill" | "chevron-down-outline" | "chevron-up-outline" | "skip-back-outline" | "text-fill" | "checkmark-outline" | "arrow-back-outline" | "arrow-down-outline" | "arrow-forward-outline" | "arrow-up-outline" | "at-outline" | "attach-outline" | "bar-chart-outline" | "bluetooth-outline" | "bulb-outline" | "checkmark-circle-outline" | "code-download-outline" | "code-outline" | "color-palette-outline" | "copy-outline" | "crop-outline" | "expand-outline" | "film-outline" | "funnel-outline" | "globe-outline" | "grid-outline" | "keypad-outline" | "link-outline" | "list-outline" | "log-in-outline" | "log-out-outline" | "menu-outline" | "mic-off-outline" | "mic-outline" | "moon-outline" | "move-outline" | "options-outline" | "paper-plane-outline" | "people-outline" | "person-add-outline" | "person-outline" | "person-remove-outline" | "pie-chart-outline" | "power-outline" | "pricetags-outline" | "radio-button-off-outline" | "radio-button-on-outline" | "radio-outline" | "recording-outline" | "refresh-outline" | "repeat-outline" | "save-outline" | "search-outline" | "settings-outline" | "shuffle-outline" | "sync-outline" | "text-outline" | "thermometer-outline" | "trash-outline" | "trending-down-outline" | "trending-up-outline" | "tv-outline" | "volume-mute-outline" | "volume-off-outline" | "wifi-outline" | "info-outline" | "volume-down-outline" | "volume-up-outline" | "shopping-bag-outline" | "shopping-cart-outline" | "cast-outline" | "hard-drive-outline" | "headphones-outline" | "speaker-outline" | "edit-outline" | "arrow-circle-down-outline" | "arrow-circle-left-outline" | "arrow-circle-right-outline" | "arrow-circle-up-outline" | "arrow-left-outline" | "arrow-right-outline" | "maximize-outline" | "minimize-outline" | "monitor-outline" | "smartphone-outline" | "close-square-outline" | "minus-square-outline" | "scissors-outline" | "file-text-outline" | "sun-outline" | "info-fill" | "more-horizontal-fill" | "more-vertical-fill" | "npm-fill" | "behance-outline" | "facebook-outline" | "google-outline" | "linkedin-outline" | "twitter-outline" | "collapse-outline" | "layout-outline" | "music-outline" | "award-outline" | "unlock-outline" | "minus-outline" | "more-horizontal-outline" | "more-vertical-outline" | "undo-outline" | "activity-fill" | "activity-outline" | "alert-circle-fill" | "alert-triangle-fill" | "alert-triangle-outline" | "arrow-back-fill" | "arrow-circle-down-fill" | "arrow-circle-left-fill" | "arrow-circle-right-fill" | "arrow-circle-up-fill" | "arrow-downward-fill" | "arrow-downward-outline" | "arrow-forward-fill" | "arrow-ios-back-fill" | "arrow-ios-back-outline" | "arrow-ios-downward-fill" | "arrow-ios-downward-outline" | "arrow-ios-forward-fill" | "arrow-ios-forward-outline" | "arrow-ios-upward-fill" | "arrow-ios-upward-outline" | "arrow-upward-fill" | "arrow-upward-outline" | "arrowhead-down-fill" | "arrowhead-down-outline" | "arrowhead-left-fill" | "arrowhead-left-outline" | "arrowhead-right-fill" | "arrowhead-right-outline" | "arrowhead-up-fill" | "arrowhead-up-outline" | "attach-2-fill" | "attach-2-outline" | "attach-fill" | "bar-chart-2-outline" | "bell-off-fill" | "browser-fill" | "browser-outline" | "bulb-fill" | "charging-fill" | "charging-outline" | "checkmark-circle-2-fill" | "checkmark-circle-2-outline" | "checkmark-circle-fill" | "checkmark-fill" | "checkmark-square-2-fill" | "checkmark-square-2-outline" | "checkmark-square-fill" | "checkmark-square-outline" | "chevron-down-fill" | "chevron-left-fill" | "chevron-left-outline" | "chevron-right-fill" | "chevron-right-outline" | "chevron-up-fill" | "close-square-fill" | "code-download-fill" | "collapse-fill" | "color-palette-fill" | "color-picker-fill" | "color-picker-outline" | "copy-fill" | "corner-down-left-outline" | "corner-down-right-outline" | "corner-left-down-outline" | "corner-left-up-outline" | "corner-right-down-outline" | "corner-right-up-outline" | "corner-up-left-outline" | "corner-up-right-outline" | "cube-fill" | "diagonal-arrow-left-down-fill" | "diagonal-arrow-left-down-outline" | "diagonal-arrow-left-up-fill" | "diagonal-arrow-left-up-outline" | "diagonal-arrow-right-down-fill" | "diagonal-arrow-right-down-outline" | "diagonal-arrow-right-up-fill" | "diagonal-arrow-right-up-outline" | "done-all-fill" | "done-all-outline" | "droplet-off-fill" | "droplet-off-outline" | "droplet-outline" | "edit-2-outline" | "email-fill" | "expand-fill" | "external-link-outline" | "eye-off-2-fill" | "eye-off-2-outline" | "file-add-outline" | "file-remove-fill" | "flash-fill" | "flash-off-fill" | "flip-2-fill" | "flip-2-outline" | "flip-fill" | "flip-outline" | "folder-add-outline" | "folder-remove-fill" | "github-outline" | "globe-2-fill" | "globe-2-outline" | "globe-3-fill" | "hash-fill" | "hash-outline" | "headphones-fill" | "keypad-fill" | "link-2-fill" | "link-2-outline" | "link-fill" | "list-fill" | "loader-outline" | "log-in-fill" | "log-out-fill" | "maximize-fill" | "menu-2-outline" | "menu-arrow-fill" | "menu-arrow-outline" | "message-circle-fill" | "message-circle-outline" | "message-square-fill" | "message-square-outline" | "minimize-fill" | "minus-circle-fill" | "minus-fill" | "minus-square-fill" | "monitor-fill" | "move-fill" | "navigation-2-fill" | "navigation-2-outline" | "npm-outline" | "options-2-fill" | "options-2-outline" | "options-fill" | "pantone-outline" | "paper-plane-fill" | "person-add-fill" | "person-delete-fill" | "person-delete-outline" | "person-done-fill" | "person-done-outline" | "person-remove-fill" | "phone-call-fill" | "phone-call-outline" | "phone-missed-fill" | "phone-off-fill" | "plus-fill" | "plus-square-outline" | "power-fill" | "pricetags-fill" | "question-mark-circle-fill" | "question-mark-circle-outline" | "question-mark-fill" | "question-mark-outline" | "radio-button-off-fill" | "radio-button-on-fill" | "recording-fill" | "rewind-left-fill" | "rewind-left-outline" | "rewind-right-fill" | "rewind-right-outline" | "settings-2-outline" | "shake-fill" | "shake-outline" | "shield-off-fill" | "shuffle-2-fill" | "shuffle-2-outline" | "slash-fill" | "slash-outline" | "smiling-face-fill" | "smiling-face-outline" | "swap-outline" | "sync-fill" | "thermometer-minus-fill" | "thermometer-minus-outline" | "thermometer-plus-fill" | "thermometer-plus-outline" | "toggle-left-fill" | "toggle-left-outline" | "toggle-right-fill" | "toggle-right-outline" | "trash-2-fill" | "trash-2-outline" | "trending-down-fill" | "trending-up-fill" | "undo-fill" | "wifi-off-outline">): import("react").JSX.Element;
|
|
502
502
|
displayName: string;
|
|
503
503
|
};
|
|
504
504
|
export {};
|