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
|
@@ -1003,7 +1003,7 @@ declare const deviconIconNames: {
|
|
|
1003
1003
|
};
|
|
1004
1004
|
export type DeviconIconName = keyof typeof deviconIconNames;
|
|
1005
1005
|
export declare const Devicon: {
|
|
1006
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"android" | "ruby" | "polygon" | "rect" | "xml" | "passport" | "powershell" | "ssh" | "linux" | "angular" | "angularjs" | "ansible" | "apple" | "babel" | "bitbucket" | "bootstrap" | "centos" | "codepen" | "cordova" | "debian" | "docker" | "dot-net" | "drupal" | "ember" | "eslint" | "facebook" | "fedora" | "firebase" | "firefox" | "gatsby" | "gentoo" | "git" | "github" | "gitlab" | "google" | "jira" | "jquery" | "kubernetes" | "laravel" | "linkedin" | "mapbox" | "meteor" | "nodejs" | "npm" | "nuxt" | "opera" | "react" | "redhat" | "salesforce" | "sass" | "slack" | "symfony" | "terraform" | "trello" | "twitter" | "ubuntu" | "unity" | "vuejs" | "vuetify" | "webpack" | "wordpress" | "xamarin" | "zend" | "bash" | "blender" | "flask" | "ghost" | "atom" | "eclipse" | "figma" | "vault" | "chrome" | "json" | "markdown" | "tex" | "xd" | "behance" | "javascript" | "typescript" | "c" | "r" | "carbon" | "mysql" | "harbor" | "adonisjs" | "aerospike" | "aframe" | "algolia" | "almalinux" | "anaconda" | "androidstudio" | "ansys" | "antdesign" | "apache" | "apacheairflow" | "apachekafka" | "apachespark" | "apollographql" | "appwrite" | "archlinux" | "arduino" | "artixlinux" | "astro" | "bamboo" | "bazel" | "beats" | "biome" | "blazor" | "bower" | "bruno" | "bun" | "burpsuite" | "cakephp" | "canva" | "capacitor" | "ceph" | "chakraui" | "clickhouse" | "clion" | "clojure" | "cloudflare" | "cloudflareworkers" | "cmake" | "codeberg" | "coffeescript" | "composer" | "confluence" | "consul" | "contao" | "couchbase" | "cpanel" | "cplusplus" | "crystal" | "dart" | "datadog" | "datagrip" | "dbeaver" | "delphi" | "digitalocean" | "doctrine" | "dovecot" | "duckdb" | "dynatrace" | "elasticsearch" | "electron" | "eleventy" | "elixir" | "elm" | "erlang" | "expo" | "express" | "fastapi" | "fastify" | "filezilla" | "flutter" | "forgejo" | "fortran" | "framework7" | "fsharp" | "gatling" | "gimp" | "gitbook" | "gitea" | "githubactions" | "githubcopilot" | "gitkraken" | "gitpod" | "gleam" | "glitch" | "go" | "goland" | "googlecloud" | "googlecolab" | "gradle" | "grafana" | "grunt" | "haskell" | "haxe" | "helix" | "helm" | "heroku" | "hibernate" | "homebrew" | "hoppscotch" | "html5" | "htmx" | "hugo" | "hyprland" | "ifttt" | "influxdb" | "inkscape" | "insomnia" | "ionic" | "istio" | "jamstack" | "jasmine" | "jenkins" | "jetbrains" | "jetpackcompose" | "jhipster" | "julia" | "jupyter" | "k3s" | "k6" | "kaggle" | "kalilinux" | "kdeneon" | "keras" | "kibana" | "kotlin" | "ktor" | "labview" | "latex" | "leetcode" | "linuxmint" | "liquibase" | "livewire" | "llvm" | "lodash" | "logstash" | "lua" | "luau" | "lumen" | "mariadb" | "mattermost" | "mercurial" | "mobx" | "mocha" | "modx" | "moleculer" | "mongodb" | "mongoose" | "monogame" | "moodle" | "nano" | "neo4j" | "neovim" | "nestjs" | "netlify" | "newrelic" | "nginx" | "ngrok" | "ngrx" | "nim" | "nixos" | "nodemon" | "nodered" | "nomad" | "notion" | "nuget" | "numpy" | "ocaml" | "okta" | "opencv" | "opengl" | "openstack" | "opensuse" | "opentelemetry" | "opnsense" | "packer" | "pandas" | "perl" | "pfsense" | "php" | "phpstorm" | "plotly" | "pm2" | "pnpm" | "podman" | "poetry" | "portainer" | "postcss" | "postgresql" | "postman" | "primeng" | "prisma" | "processwire" | "prometheus" | "protractor" | "proxmox" | "pug" | "pulumi" | "puppeteer" | "purescript" | "pycharm" | "pypi" | "pytest" | "python" | "pytorch" | "qt" | "quarkus" | "quasar" | "qwik" | "rabbitmq" | "racket" | "radstudio" | "railway" | "rancher" | "raspberrypi" | "reactbootstrap" | "reactrouter" | "readthedocs" | "redis" | "redux" | "remix" | "renpy" | "replit" | "rider" | "rocksdb" | "rockylinux" | "ros" | "rubymine" | "rust" | "safari" | "sanity" | "scala" | "scikitlearn" | "selenium" | "sentry" | "sequelize" | "sfml" | "shopware" | "sketch" | "solidity" | "sourceengine" | "sourcetree" | "spring" | "sqlalchemy" | "sqlite" | "stackblitz" | "stackoverflow" | "storybook" | "streamlit" | "styledcomponents" | "stylus" | "subversion" | "supabase" | "surrealdb" | "svelte" | "svgo" | "swagger" | "swift" | "swiper" | "tailwindcss" | "talos" | "tauri" | "teamcity" | "tensorflow" | "thealgorithms" | "thymeleaf" | "tmux" | "traefikmesh" | "traefikproxy" | "trpc" | "turbo" | "twilio" | "typeorm" | "typo3" | "unrealengine" | "uv" | "v8" | "vaadin" | "vagrant" | "vala" | "vapor" | "vercel" | "vim" | "vite" | "vitess" | "vitest" | "vscodium" | "vulkan" | "webflow" | "webgpu" | "weblate" | "webstorm" | "wolfram" | "woocommerce" | "xcode" | "yaml" | "yarn" | "yii" | "yunohost" | "zig" | "zsh" | "akka" | "alpinejs" | "browserstack" | "cassandra" | "ceylon" | "chartjs" | "couchdb" | "dataspell" | "emacs" | "envoy" | "feathersjs" | "foundation" | "godot" | "grails" | "grpc" | "hadoop" | "handlebars" | "hardhat" | "java" | "karma" | "krakenjs" | "materializecss" | "matplotlib" | "maven" | "memcached" | "mithril" | "nasm" | "nats" | "netbeans" | "nextjs" | "nodewebkit" | "oauth" | "openapi" | "oracle" | "p5js" | "phalcon" | "phoenix" | "pixijs" | "playwright" | "processing" | "realm" | "solidjs" | "sonarqube" | "stenciljs" | "threejs" | "tomcat" | "uwsgi" | "vitejs" | "web3js" | "youtrack" | "css3" | "apex" | "csharp" | "gcc" | "matlab" | "maya" | "pulsar" | "magento" | "cobol" | "groovy" | "jule" | "prolog" | "rollup" | "vscode" | "rstudio" | "clarity" | "azure" | "aarch64" | "adonisjs-wordmark" | "aerospike-wordmark" | "aframe-wordmark" | "aftereffects" | "akka-wordmark" | "algolia-wordmark" | "almalinux-wordmark" | "alpinejs-wordmark" | "amazonwebservices" | "anaconda-wordmark" | "android-wordmark" | "androidstudio-wordmark" | "angular-wordmark" | "angularjs-wordmark" | "angularmaterial" | "ansible-wordmark" | "ansys-wordmark" | "antdesign-wordmark" | "apache-wordmark" | "apacheairflow-wordmark" | "apacheignite" | "apacheignite-wordmark" | "apachekafka-wordmark" | "apachespark-wordmark" | "apify" | "apify-wordmark" | "apl" | "apollographql-wordmark" | "appcelerator" | "appcelerator-wordmark" | "appwrite-wordmark" | "archlinux-wordmark" | "arduino-wordmark" | "argocd" | "argocd-wordmark" | "artixlinux-wordmark" | "astro-wordmark" | "atom-wordmark" | "awk" | "awk-wordmark" | "azure-wordmark" | "azuredatafactory" | "azuredevops" | "azuresqldatabase" | "babylonjs" | "babylonjs-wordmark" | "backbonejs" | "backbonejs-wordmark" | "ballerina" | "ballerina-wordmark" | "bamboo-wordmark" | "bazel-wordmark" | "behance-wordmark" | "bevyengine" | "bevyengine-wordmark" | "biome-wordmark" | "bitbucket-wordmark" | "blender-wordmark" | "bootstrap-wordmark" | "bower-wordmark" | "browserstack-wordmark" | "bruno-wordmark" | "burpsuite-wordmark" | "cairo" | "cairo-wordmark" | "cakephp-wordmark" | "capacitor-wordmark" | "cassandra-wordmark" | "centos-wordmark" | "ceph-wordmark" | "ceylon-wordmark" | "chakraui-wordmark" | "chartjs-wordmark" | "chrome-wordmark" | "clarity-wordmark" | "clion-wordmark" | "clojurescript" | "cloudflare-wordmark" | "cloudflareworkers-wordmark" | "cloudrun" | "cmake-wordmark" | "codeac" | "codeberg-wordmark" | "codepen-wordmark" | "coffeescript-wordmark" | "confluence-wordmark" | "consul-wordmark" | "contao-wordmark" | "cordova-wordmark" | "corejs" | "corejs-wordmark" | "cosmosdb" | "cosmosdb-wordmark" | "couchbase-wordmark" | "couchdb-wordmark" | "cpanel-wordmark" | "crystal-wordmark" | "css3-wordmark" | "cypressio" | "cypressio-wordmark" | "d3js" | "dart-wordmark" | "datadog-wordmark" | "datagrip-wordmark" | "dataspell-wordmark" | "datatables" | "debian-wordmark" | "denojs" | "denojs-wordmark" | "detaspace" | "detaspace-wordmark" | "devicon" | "devicon-wordmark" | "digitalocean-wordmark" | "discloud" | "discloud-wordmark" | "discordjs" | "discordjs-wordmark" | "djangorest" | "djangorest-wordmark" | "docker-wordmark" | "doctrine-wordmark" | "dot-net-wordmark" | "dotnetcore" | "dreamweaver" | "dropwizard" | "drupal-wordmark" | "dyalog" | "dynamodb" | "dynatrace-wordmark" | "eclipse-wordmark" | "ecto" | "ecto-wordmark" | "elasticsearch-wordmark" | "electron-wordmark" | "elixir-wordmark" | "elm-wordmark" | "embeddedc" | "embeddedc-wordmark" | "ember-wordmark" | "entityframeworkcore" | "envoy-wordmark" | "erlang-wordmark" | "eslint-wordmark" | "expo-wordmark" | "express-wordmark" | "fastapi-wordmark" | "fastify-wordmark" | "faunadb" | "faunadb-wordmark" | "fiber" | "filamentphp" | "filezilla-wordmark" | "firebase-wordmark" | "firebird" | "firefox-wordmark" | "flask-wordmark" | "forgejo-wordmark" | "foundation-wordmark" | "framermotion" | "framermotion-wordmark" | "framework7-wordmark" | "fusion" | "gardener" | "gatling-wordmark" | "gatsby-wordmark" | "gazebo" | "gazebo-wordmark" | "gentoo-wordmark" | "ghost-wordmark" | "gimp-wordmark" | "git-wordmark" | "gitbook-wordmark" | "gitea-wordmark" | "github-wordmark" | "githubactions-wordmark" | "githubcodespaces" | "githubcopilot-wordmark" | "gitkraken-wordmark" | "gitlab-wordmark" | "gitpod-wordmark" | "gnuradio" | "gnuradio-wordmark" | "go-wordmark" | "godot-wordmark" | "goland-wordmark" | "google-wordmark" | "googlecloud-wordmark" | "gradle-wordmark" | "grafana-wordmark" | "grunt-wordmark" | "hadoop-wordmark" | "handlebars-wordmark" | "haproxy" | "haproxy-wordmark" | "harbor-wordmark" | "hardhat-wordmark" | "harvester" | "harvester-wordmark" | "haskell-wordmark" | "heroku-wordmark" | "hibernate-wordmark" | "homebrew-wordmark" | "html5-wordmark" | "htmx-wordmark" | "hugo-wordmark" | "hyperv" | "hyperv-wordmark" | "hyprland-wordmark" | "ie10" | "illustrator" | "inertiajs" | "inertiajs-wordmark" | "influxdb-wordmark" | "inkscape-wordmark" | "insomnia-wordmark" | "intellij" | "intellij-wordmark" | "ionic-wordmark" | "istio-wordmark" | "jaegertracing" | "jaegertracing-wordmark" | "jamstack-wordmark" | "jasmine-wordmark" | "java-wordmark" | "jeet" | "jeet-wordmark" | "jetpackcompose-wordmark" | "jhipster-wordmark" | "jira-wordmark" | "jiraalign" | "jiraalign-wordmark" | "jquery-wordmark" | "jule-wordmark" | "julia-wordmark" | "junie" | "junie-wordmark" | "junit" | "junit-wordmark" | "jupyter-wordmark" | "k3os" | "k3os-wordmark" | "k3s-wordmark" | "kaggle-wordmark" | "kaldi" | "kaldi-wordmark" | "kalilinux-wordmark" | "karatelabs" | "karatelabs-wordmark" | "keras-wordmark" | "kibana-wordmark" | "knexjs" | "knexjs-wordmark" | "kotlin-wordmark" | "krakenjs-wordmark" | "ktor-wordmark" | "kubeflow" | "kubeflow-wordmark" | "kubernetes-wordmark" | "labview-wordmark" | "laminas" | "laminas-wordmark" | "laravel-wordmark" | "laraveljetstream" | "laraveljetstream-wordmark" | "leetcode-wordmark" | "libgdx" | "linkedin-wordmark" | "linuxmint-wordmark" | "liquibase-wordmark" | "livewire-wordmark" | "logstash-wordmark" | "love2d" | "magento-wordmark" | "mariadb-wordmark" | "materialui" | "matplotlib-wordmark" | "mattermost-wordmark" | "maven-wordmark" | "maya-wordmark" | "memcached-wordmark" | "mercurial-wordmark" | "meteor-wordmark" | "microsoftsqlserver" | "microsoftsqlserver-wordmark" | "minitab" | "modx-wordmark" | "moleculer-wordmark" | "mongock" | "mongodb-wordmark" | "mongoose-wordmark" | "monogame-wordmark" | "moodle-wordmark" | "msdos" | "mysql-wordmark" | "nasm-wordmark" | "neo4j-wordmark" | "neovim-wordmark" | "nestjs-wordmark" | "netbeans-wordmark" | "netbox" | "netbox-wordmark" | "netlify-wordmark" | "networkx" | "networkx-wordmark" | "nextjs-wordmark" | "nhibernate" | "nhibernate-wordmark" | "nim-wordmark" | "nimble" | "nixos-wordmark" | "nodejs-wordmark" | "nodewebkit-wordmark" | "nomad-wordmark" | "norg" | "npm-wordmark" | "npss" | "nuget-wordmark" | "numpy-wordmark" | "nuxt-wordmark" | "nuxtjs" | "nuxtjs-wordmark" | "ocaml-wordmark" | "ohmyzsh" | "okta-wordmark" | "openal" | "openapi-wordmark" | "opencl" | "opencv-wordmark" | "openstack-wordmark" | "opensuse-wordmark" | "opentelemetry-wordmark" | "opera-wordmark" | "opnsense-wordmark" | "ory" | "ory-wordmark" | "packer-wordmark" | "pandas-wordmark" | "passport-wordmark" | "pfsense-wordmark" | "phoenix-wordmark" | "photonengine" | "photoshop" | "phpstorm-wordmark" | "pixijs-wordmark" | "plotly-wordmark" | "pm2-wordmark" | "pnpm-wordmark" | "podman-wordmark" | "polygon-wordmark" | "portainer-wordmark" | "positron" | "postcss-wordmark" | "postgresql-wordmark" | "postman-wordmark" | "premierepro" | "prisma-wordmark" | "processwire-wordmark" | "prolog-wordmark" | "prometheus-wordmark" | "protractor-wordmark" | "proxmox-wordmark" | "pulsar-wordmark" | "pulumi-wordmark" | "purescript-wordmark" | "putty" | "pycharm-wordmark" | "pypi-wordmark" | "pyscript-wordmark" | "pytest-wordmark" | "python-wordmark" | "pytorch-wordmark" | "qodana" | "qtest" | "qtest-wordmark" | "quarkus-wordmark" | "quasar-wordmark" | "qwik-wordmark" | "rabbitmq-wordmark" | "rails-wordmark" | "railway-wordmark" | "rancher-wordmark" | "raspberrypi-wordmark" | "ravendb" | "ravendb-wordmark" | "reach" | "react-wordmark" | "reactnative" | "reactnative-wordmark" | "reactnavigation" | "reactrouter-wordmark" | "readthedocs-wordmark" | "realm-wordmark" | "redhat-wordmark" | "redis-wordmark" | "reflex" | "reflex-wordmark" | "remix-wordmark" | "replit-wordmark" | "rexx" | "rexx-wordmark" | "rider-wordmark" | "rockylinux-wordmark" | "rollup-wordmark" | "ros-wordmark" | "rspec" | "rspec-wordmark" | "ruby-wordmark" | "rubymine-wordmark" | "rxjs" | "safari-wordmark" | "scala-wordmark" | "scalingo" | "scalingo-wordmark" | "sdl" | "sema" | "sema-wordmark" | "sentry-wordmark" | "sequelize-wordmark" | "shopware-wordmark" | "shotgrid" | "shotgrid-wordmark" | "sketch-wordmark" | "slack-wordmark" | "socketio" | "socketio-wordmark" | "solidjs-wordmark" | "sonarqube-wordmark" | "sourceengine-wordmark" | "sourcetree-wordmark" | "spack" | "spicedb" | "splunk-wordmark" | "spring-wordmark" | "spss" | "spyder" | "spyder-wordmark" | "sqlalchemy-wordmark" | "sqldeveloper" | "sqlite-wordmark" | "ssh-wordmark" | "stackblitz-wordmark" | "stackoverflow-wordmark" | "stata-wordmark" | "stenciljs-wordmark" | "storybook-wordmark" | "streamlit-wordmark" | "styledcomponents-wordmark" | "subversion-wordmark" | "sulu" | "sulu-wordmark" | "supabase-wordmark" | "surrealdb-wordmark" | "svelte-wordmark" | "svgo-wordmark" | "swagger-wordmark" | "swift-wordmark" | "symfony-wordmark" | "tailwindcss-wordmark" | "tauri-wordmark" | "teamcity-wordmark" | "teleport" | "teleport-wordmark" | "tensorflow-wordmark" | "tenzir" | "tenzir-wordmark" | "terraform-wordmark" | "terramate" | "terramate-wordmark" | "thealgorithms-wordmark" | "threedsmax" | "threejs-wordmark" | "thymeleaf-wordmark" | "tigerbeetle" | "tigerbeetle-wordmark" | "titaniumsdk" | "tmux-wordmark" | "tomcat-wordmark" | "tortoisegit" | "towergit" | "towergit-wordmark" | "traefikmesh-wordmark" | "traefikproxy-wordmark" | "travis" | "travis-wordmark" | "trello-wordmark" | "trpc-wordmark" | "turbo-wordmark" | "twilio-wordmark" | "typeorm-wordmark" | "typo3-wordmark" | "ubuntu-wordmark" | "unifiedmodelinglanguage" | "unifiedmodelinglanguage-wordmark" | "unity-wordmark" | "unix" | "unrealengine-wordmark" | "vaadin-wordmark" | "vagrant-wordmark" | "vala-wordmark" | "vapor-wordmark" | "vault-wordmark" | "veevalidate" | "vercel-wordmark" | "vertx" | "vertx-wordmark" | "visualbasic" | "visualstudio" | "visualstudio-wordmark" | "vite-wordmark" | "vitess-wordmark" | "vscode-wordmark" | "vsphere" | "vsphere-wordmark" | "vuejs-wordmark" | "vuestorefront" | "vyper" | "vyper-wordmark" | "waku" | "wasm" | "wasm-wordmark" | "webgpu-wordmark" | "weblate-wordmark" | "webpack-wordmark" | "webstorm-wordmark" | "windows11" | "windows11-wordmark" | "windows8" | "windows8-wordmark" | "wolfram-wordmark" | "woocommerce-wordmark" | "xamarin-wordmark" | "yarn-wordmark" | "yii-wordmark" | "youtrack-wordmark" | "yugabytedb" | "yugabytedb-wordmark" | "zed" | "zend-wordmark" | "zig-wordmark" | "zsh-wordmark" | "zustand">): import("react").JSX.Element;
|
|
1006
|
+
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"android" | "ruby" | "polygon" | "rect" | "xml" | "passport" | "powershell" | "ssh" | "linux" | "angular" | "angularjs" | "ansible" | "apple" | "babel" | "bitbucket" | "bootstrap" | "centos" | "codepen" | "cordova" | "debian" | "docker" | "dot-net" | "drupal" | "ember" | "eslint" | "facebook" | "fedora" | "firebase" | "firefox" | "gatsby" | "gentoo" | "git" | "github" | "gitlab" | "google" | "jira" | "jquery" | "kubernetes" | "laravel" | "linkedin" | "mapbox" | "meteor" | "nodejs" | "npm" | "nuxt" | "opera" | "react" | "redhat" | "salesforce" | "sass" | "slack" | "symfony" | "terraform" | "trello" | "twitter" | "ubuntu" | "unity" | "vuejs" | "vuetify" | "webpack" | "wordpress" | "xamarin" | "zend" | "bash" | "blender" | "flask" | "ghost" | "atom" | "eclipse" | "figma" | "vault" | "chrome" | "json" | "markdown" | "tex" | "xd" | "behance" | "javascript" | "typescript" | "c" | "r" | "carbon" | "mysql" | "harbor" | "adonisjs" | "aerospike" | "aframe" | "algolia" | "almalinux" | "anaconda" | "androidstudio" | "ansys" | "antdesign" | "apache" | "apacheairflow" | "apachekafka" | "apachespark" | "apollographql" | "appwrite" | "archlinux" | "arduino" | "artixlinux" | "astro" | "bamboo" | "bazel" | "beats" | "biome" | "blazor" | "bower" | "bruno" | "bun" | "burpsuite" | "cakephp" | "canva" | "capacitor" | "ceph" | "chakraui" | "clickhouse" | "clion" | "clojure" | "cloudflare" | "cloudflareworkers" | "cmake" | "codeberg" | "coffeescript" | "composer" | "confluence" | "consul" | "contao" | "couchbase" | "cpanel" | "cplusplus" | "crystal" | "dart" | "datadog" | "datagrip" | "dbeaver" | "delphi" | "digitalocean" | "doctrine" | "dovecot" | "duckdb" | "dynatrace" | "elasticsearch" | "electron" | "eleventy" | "elixir" | "elm" | "erlang" | "expo" | "express" | "fastapi" | "fastify" | "filezilla" | "flutter" | "forgejo" | "fortran" | "framework7" | "fsharp" | "gatling" | "gimp" | "gitbook" | "gitea" | "githubactions" | "githubcopilot" | "gitkraken" | "gitpod" | "gleam" | "glitch" | "go" | "goland" | "googlecloud" | "googlecolab" | "gradle" | "grafana" | "grunt" | "haskell" | "haxe" | "helix" | "helm" | "heroku" | "hibernate" | "homebrew" | "hoppscotch" | "html5" | "htmx" | "hugo" | "hyprland" | "ifttt" | "influxdb" | "inkscape" | "insomnia" | "ionic" | "istio" | "jamstack" | "jasmine" | "jenkins" | "jetbrains" | "jetpackcompose" | "jhipster" | "julia" | "jupyter" | "k3s" | "k6" | "kaggle" | "kalilinux" | "kdeneon" | "keras" | "kibana" | "kotlin" | "ktor" | "labview" | "latex" | "leetcode" | "linuxmint" | "liquibase" | "livewire" | "llvm" | "lodash" | "logstash" | "lua" | "luau" | "lumen" | "mariadb" | "mattermost" | "mercurial" | "mobx" | "mocha" | "modx" | "moleculer" | "mongodb" | "mongoose" | "monogame" | "moodle" | "nano" | "neo4j" | "neovim" | "nestjs" | "netlify" | "newrelic" | "nginx" | "ngrok" | "ngrx" | "nim" | "nixos" | "nodemon" | "nodered" | "nomad" | "notion" | "nuget" | "numpy" | "ocaml" | "okta" | "opencv" | "opengl" | "openstack" | "opensuse" | "opentelemetry" | "opnsense" | "packer" | "pandas" | "perl" | "pfsense" | "php" | "phpstorm" | "plotly" | "pm2" | "pnpm" | "podman" | "poetry" | "portainer" | "postcss" | "postgresql" | "postman" | "primeng" | "prisma" | "processwire" | "prometheus" | "protractor" | "proxmox" | "pug" | "pulumi" | "puppeteer" | "purescript" | "pycharm" | "pypi" | "pytest" | "python" | "pytorch" | "qt" | "quarkus" | "quasar" | "qwik" | "rabbitmq" | "racket" | "radstudio" | "railway" | "rancher" | "raspberrypi" | "reactbootstrap" | "reactrouter" | "readthedocs" | "redis" | "redux" | "remix" | "renpy" | "replit" | "rider" | "rocksdb" | "rockylinux" | "ros" | "rubymine" | "rust" | "safari" | "sanity" | "scala" | "scikitlearn" | "selenium" | "sentry" | "sequelize" | "sfml" | "shopware" | "sketch" | "solidity" | "sourceengine" | "sourcetree" | "spring" | "sqlalchemy" | "sqlite" | "stackblitz" | "stackoverflow" | "storybook" | "streamlit" | "styledcomponents" | "stylus" | "subversion" | "supabase" | "surrealdb" | "svelte" | "svgo" | "swagger" | "swift" | "swiper" | "tailwindcss" | "talos" | "tauri" | "teamcity" | "tensorflow" | "thealgorithms" | "thymeleaf" | "tmux" | "traefikmesh" | "traefikproxy" | "trpc" | "turbo" | "twilio" | "typeorm" | "typo3" | "unrealengine" | "uv" | "v8" | "vaadin" | "vagrant" | "vala" | "vapor" | "vercel" | "vim" | "vite" | "vitess" | "vitest" | "vscodium" | "vulkan" | "webflow" | "webgpu" | "weblate" | "webstorm" | "wolfram" | "woocommerce" | "xcode" | "yaml" | "yarn" | "yii" | "yunohost" | "zig" | "zsh" | "akka" | "alpinejs" | "browserstack" | "cassandra" | "ceylon" | "chartjs" | "couchdb" | "dataspell" | "emacs" | "envoy" | "feathersjs" | "foundation" | "godot" | "grails" | "grpc" | "hadoop" | "handlebars" | "hardhat" | "java" | "karma" | "krakenjs" | "materializecss" | "matplotlib" | "maven" | "memcached" | "mithril" | "nasm" | "nats" | "netbeans" | "nextjs" | "nodewebkit" | "oauth" | "openapi" | "oracle" | "p5js" | "phalcon" | "phoenix" | "pixijs" | "playwright" | "processing" | "realm" | "solidjs" | "sonarqube" | "stenciljs" | "threejs" | "tomcat" | "uwsgi" | "vitejs" | "web3js" | "youtrack" | "css3" | "apex" | "csharp" | "gcc" | "matlab" | "maya" | "pulsar" | "magento" | "cobol" | "groovy" | "jule" | "prolog" | "rollup" | "vscode" | "rstudio" | "clarity" | "azure" | "aarch64" | "adonisjs-wordmark" | "aerospike-wordmark" | "aframe-wordmark" | "aftereffects" | "akka-wordmark" | "algolia-wordmark" | "almalinux-wordmark" | "alpinejs-wordmark" | "amazonwebservices" | "anaconda-wordmark" | "android-wordmark" | "androidstudio-wordmark" | "angular-wordmark" | "angularjs-wordmark" | "angularmaterial" | "ansible-wordmark" | "ansys-wordmark" | "antdesign-wordmark" | "apache-wordmark" | "apacheairflow-wordmark" | "apacheignite" | "apacheignite-wordmark" | "apachekafka-wordmark" | "apachespark-wordmark" | "apify" | "apify-wordmark" | "apl" | "apollographql-wordmark" | "appcelerator" | "appcelerator-wordmark" | "appwrite-wordmark" | "archlinux-wordmark" | "arduino-wordmark" | "argocd" | "argocd-wordmark" | "artixlinux-wordmark" | "astro-wordmark" | "atom-wordmark" | "awk" | "awk-wordmark" | "azure-wordmark" | "azuredatafactory" | "azuredevops" | "azuresqldatabase" | "babylonjs" | "babylonjs-wordmark" | "backbonejs" | "backbonejs-wordmark" | "ballerina" | "ballerina-wordmark" | "bamboo-wordmark" | "bazel-wordmark" | "behance-wordmark" | "bevyengine" | "bevyengine-wordmark" | "biome-wordmark" | "bitbucket-wordmark" | "blender-wordmark" | "bootstrap-wordmark" | "bower-wordmark" | "browserstack-wordmark" | "bruno-wordmark" | "burpsuite-wordmark" | "cairo" | "cairo-wordmark" | "cakephp-wordmark" | "capacitor-wordmark" | "cassandra-wordmark" | "centos-wordmark" | "ceph-wordmark" | "ceylon-wordmark" | "chakraui-wordmark" | "chartjs-wordmark" | "chrome-wordmark" | "clarity-wordmark" | "clion-wordmark" | "clojurescript" | "cloudflare-wordmark" | "cloudflareworkers-wordmark" | "cloudrun" | "cmake-wordmark" | "codeac" | "codeberg-wordmark" | "codepen-wordmark" | "coffeescript-wordmark" | "confluence-wordmark" | "consul-wordmark" | "contao-wordmark" | "cordova-wordmark" | "corejs" | "corejs-wordmark" | "cosmosdb" | "cosmosdb-wordmark" | "couchbase-wordmark" | "couchdb-wordmark" | "cpanel-wordmark" | "crystal-wordmark" | "css3-wordmark" | "cypressio" | "cypressio-wordmark" | "d3js" | "dart-wordmark" | "datadog-wordmark" | "datagrip-wordmark" | "dataspell-wordmark" | "datatables" | "debian-wordmark" | "denojs" | "denojs-wordmark" | "detaspace" | "detaspace-wordmark" | "devicon" | "devicon-wordmark" | "digitalocean-wordmark" | "discloud" | "discloud-wordmark" | "discordjs" | "discordjs-wordmark" | "djangorest" | "djangorest-wordmark" | "docker-wordmark" | "doctrine-wordmark" | "dot-net-wordmark" | "dotnetcore" | "dreamweaver" | "dropwizard" | "drupal-wordmark" | "dyalog" | "dynamodb" | "dynatrace-wordmark" | "eclipse-wordmark" | "ecto" | "ecto-wordmark" | "elasticsearch-wordmark" | "electron-wordmark" | "elixir-wordmark" | "elm-wordmark" | "embeddedc" | "embeddedc-wordmark" | "ember-wordmark" | "entityframeworkcore" | "envoy-wordmark" | "erlang-wordmark" | "eslint-wordmark" | "expo-wordmark" | "express-wordmark" | "fastapi-wordmark" | "fastify-wordmark" | "faunadb" | "faunadb-wordmark" | "fiber" | "filamentphp" | "filezilla-wordmark" | "firebase-wordmark" | "firebird" | "firefox-wordmark" | "flask-wordmark" | "forgejo-wordmark" | "foundation-wordmark" | "framermotion" | "framermotion-wordmark" | "framework7-wordmark" | "fusion" | "gardener" | "gatling-wordmark" | "gatsby-wordmark" | "gazebo" | "gazebo-wordmark" | "gentoo-wordmark" | "ghost-wordmark" | "gimp-wordmark" | "git-wordmark" | "gitbook-wordmark" | "gitea-wordmark" | "github-wordmark" | "githubactions-wordmark" | "githubcodespaces" | "githubcopilot-wordmark" | "gitkraken-wordmark" | "gitlab-wordmark" | "gitpod-wordmark" | "gnuradio" | "gnuradio-wordmark" | "go-wordmark" | "godot-wordmark" | "goland-wordmark" | "google-wordmark" | "googlecloud-wordmark" | "gradle-wordmark" | "grafana-wordmark" | "grunt-wordmark" | "hadoop-wordmark" | "handlebars-wordmark" | "haproxy" | "haproxy-wordmark" | "harbor-wordmark" | "hardhat-wordmark" | "harvester" | "harvester-wordmark" | "haskell-wordmark" | "heroku-wordmark" | "hibernate-wordmark" | "homebrew-wordmark" | "html5-wordmark" | "htmx-wordmark" | "hugo-wordmark" | "hyperv" | "hyperv-wordmark" | "hyprland-wordmark" | "ie10" | "illustrator" | "inertiajs" | "inertiajs-wordmark" | "influxdb-wordmark" | "inkscape-wordmark" | "insomnia-wordmark" | "intellij" | "intellij-wordmark" | "ionic-wordmark" | "istio-wordmark" | "jaegertracing" | "jaegertracing-wordmark" | "jamstack-wordmark" | "jasmine-wordmark" | "java-wordmark" | "jeet" | "jeet-wordmark" | "jetpackcompose-wordmark" | "jhipster-wordmark" | "jira-wordmark" | "jiraalign" | "jiraalign-wordmark" | "jquery-wordmark" | "jule-wordmark" | "julia-wordmark" | "junie" | "junie-wordmark" | "junit" | "junit-wordmark" | "jupyter-wordmark" | "k3os" | "k3os-wordmark" | "k3s-wordmark" | "kaggle-wordmark" | "kaldi" | "kaldi-wordmark" | "kalilinux-wordmark" | "karatelabs" | "karatelabs-wordmark" | "keras-wordmark" | "kibana-wordmark" | "knexjs" | "knexjs-wordmark" | "kotlin-wordmark" | "krakenjs-wordmark" | "ktor-wordmark" | "kubeflow" | "kubeflow-wordmark" | "kubernetes-wordmark" | "labview-wordmark" | "laminas" | "laminas-wordmark" | "laravel-wordmark" | "laraveljetstream" | "laraveljetstream-wordmark" | "leetcode-wordmark" | "libgdx" | "linkedin-wordmark" | "linuxmint-wordmark" | "liquibase-wordmark" | "livewire-wordmark" | "logstash-wordmark" | "love2d" | "magento-wordmark" | "mariadb-wordmark" | "materialui" | "matplotlib-wordmark" | "mattermost-wordmark" | "maven-wordmark" | "maya-wordmark" | "memcached-wordmark" | "mercurial-wordmark" | "meteor-wordmark" | "microsoftsqlserver" | "microsoftsqlserver-wordmark" | "minitab" | "modx-wordmark" | "moleculer-wordmark" | "mongock" | "mongodb-wordmark" | "mongoose-wordmark" | "monogame-wordmark" | "moodle-wordmark" | "msdos" | "mysql-wordmark" | "nasm-wordmark" | "neo4j-wordmark" | "neovim-wordmark" | "nestjs-wordmark" | "netbeans-wordmark" | "netbox" | "netbox-wordmark" | "netlify-wordmark" | "networkx" | "networkx-wordmark" | "nextjs-wordmark" | "nhibernate" | "nhibernate-wordmark" | "nim-wordmark" | "nimble" | "nixos-wordmark" | "nodejs-wordmark" | "nodewebkit-wordmark" | "nomad-wordmark" | "norg" | "npm-wordmark" | "npss" | "nuget-wordmark" | "numpy-wordmark" | "nuxt-wordmark" | "nuxtjs" | "nuxtjs-wordmark" | "ocaml-wordmark" | "ohmyzsh" | "okta-wordmark" | "openal" | "openapi-wordmark" | "opencl" | "opencv-wordmark" | "openstack-wordmark" | "opensuse-wordmark" | "opentelemetry-wordmark" | "opera-wordmark" | "opnsense-wordmark" | "ory" | "ory-wordmark" | "packer-wordmark" | "pandas-wordmark" | "passport-wordmark" | "pfsense-wordmark" | "phoenix-wordmark" | "photonengine" | "photoshop" | "phpstorm-wordmark" | "pixijs-wordmark" | "plotly-wordmark" | "pm2-wordmark" | "pnpm-wordmark" | "podman-wordmark" | "polygon-wordmark" | "portainer-wordmark" | "positron" | "postcss-wordmark" | "postgresql-wordmark" | "postman-wordmark" | "premierepro" | "prisma-wordmark" | "processwire-wordmark" | "prolog-wordmark" | "prometheus-wordmark" | "protractor-wordmark" | "proxmox-wordmark" | "pulsar-wordmark" | "pulumi-wordmark" | "purescript-wordmark" | "putty" | "pycharm-wordmark" | "pypi-wordmark" | "pyscript-wordmark" | "pytest-wordmark" | "python-wordmark" | "pytorch-wordmark" | "qodana" | "qtest" | "qtest-wordmark" | "quarkus-wordmark" | "quasar-wordmark" | "qwik-wordmark" | "rabbitmq-wordmark" | "rails-wordmark" | "railway-wordmark" | "rancher-wordmark" | "raspberrypi-wordmark" | "ravendb" | "ravendb-wordmark" | "reach" | "react-wordmark" | "reactnative" | "reactnative-wordmark" | "reactnavigation" | "reactrouter-wordmark" | "readthedocs-wordmark" | "realm-wordmark" | "redhat-wordmark" | "redis-wordmark" | "reflex" | "reflex-wordmark" | "remix-wordmark" | "replit-wordmark" | "rexx" | "rexx-wordmark" | "rider-wordmark" | "rockylinux-wordmark" | "rollup-wordmark" | "ros-wordmark" | "rspec" | "rspec-wordmark" | "ruby-wordmark" | "rubymine-wordmark" | "rxjs" | "safari-wordmark" | "scala-wordmark" | "scalingo" | "scalingo-wordmark" | "sdl" | "sema" | "sema-wordmark" | "sentry-wordmark" | "sequelize-wordmark" | "shopware-wordmark" | "shotgrid" | "shotgrid-wordmark" | "sketch-wordmark" | "slack-wordmark" | "socketio" | "socketio-wordmark" | "solidjs-wordmark" | "sonarqube-wordmark" | "sourceengine-wordmark" | "sourcetree-wordmark" | "spack" | "spicedb" | "splunk-wordmark" | "spring-wordmark" | "spss" | "spyder" | "spyder-wordmark" | "sqlalchemy-wordmark" | "sqldeveloper" | "sqlite-wordmark" | "ssh-wordmark" | "stackblitz-wordmark" | "stackoverflow-wordmark" | "stata-wordmark" | "stenciljs-wordmark" | "storybook-wordmark" | "streamlit-wordmark" | "styledcomponents-wordmark" | "subversion-wordmark" | "sulu" | "sulu-wordmark" | "supabase-wordmark" | "surrealdb-wordmark" | "svelte-wordmark" | "svgo-wordmark" | "swagger-wordmark" | "swift-wordmark" | "symfony-wordmark" | "tailwindcss-wordmark" | "tauri-wordmark" | "teamcity-wordmark" | "teleport" | "teleport-wordmark" | "tensorflow-wordmark" | "tenzir" | "tenzir-wordmark" | "terraform-wordmark" | "terramate" | "terramate-wordmark" | "thealgorithms-wordmark" | "threedsmax" | "threejs-wordmark" | "thymeleaf-wordmark" | "tigerbeetle" | "tigerbeetle-wordmark" | "titaniumsdk" | "tmux-wordmark" | "tomcat-wordmark" | "tortoisegit" | "towergit" | "towergit-wordmark" | "traefikmesh-wordmark" | "traefikproxy-wordmark" | "travis" | "travis-wordmark" | "trello-wordmark" | "trpc-wordmark" | "turbo-wordmark" | "twilio-wordmark" | "typeorm-wordmark" | "typo3-wordmark" | "ubuntu-wordmark" | "unifiedmodelinglanguage" | "unifiedmodelinglanguage-wordmark" | "unity-wordmark" | "unix" | "unrealengine-wordmark" | "vaadin-wordmark" | "vagrant-wordmark" | "vala-wordmark" | "vapor-wordmark" | "vault-wordmark" | "veevalidate" | "vercel-wordmark" | "vertx" | "vertx-wordmark" | "visualbasic" | "visualstudio" | "visualstudio-wordmark" | "vite-wordmark" | "vitess-wordmark" | "vscode-wordmark" | "vsphere" | "vsphere-wordmark" | "vuejs-wordmark" | "vuestorefront" | "vyper" | "vyper-wordmark" | "waku" | "wasm" | "wasm-wordmark" | "webgpu-wordmark" | "weblate-wordmark" | "webpack-wordmark" | "webstorm-wordmark" | "windows11" | "windows11-wordmark" | "windows8" | "windows8-wordmark" | "wolfram-wordmark" | "woocommerce-wordmark" | "xamarin-wordmark" | "yarn-wordmark" | "yii-wordmark" | "youtrack-wordmark" | "yugabytedb" | "yugabytedb-wordmark" | "zed" | "zend-wordmark" | "zig-wordmark" | "zsh-wordmark" | "zustand">): import("react").JSX.Element;
|
|
1007
1007
|
displayName: string;
|
|
1008
1008
|
};
|
|
1009
1009
|
export {};
|
|
@@ -734,7 +734,7 @@ declare const devicon_plainIconNames: {
|
|
|
734
734
|
};
|
|
735
735
|
export type DeviconPlainIconName = keyof typeof devicon_plainIconNames;
|
|
736
736
|
export declare const DeviconPlain: {
|
|
737
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"android" | "ruby" | "polygon" | "rect" | "xml" | "passport" | "powershell" | "linux" | "angular" | "angularjs" | "ansible" | "babel" | "bootstrap" | "bulma" | "centos" | "cordova" | "debian" | "docker" | "dot-net" | "drupal" | "ember" | "eslint" | "facebook" | "fedora" | "firebase" | "firefox" | "gentoo" | "git" | "gitlab" | "google" | "graphql" | "jira" | "jquery" | "kubernetes" | "linkedin" | "meteor" | "nodejs" | "npm" | "opera" | "redhat" | "salesforce" | "slack" | "terraform" | "trello" | "ubuntu" | "unity" | "vuejs" | "vuetify" | "webpack" | "wordpress" | "bash" | "eclipse" | "figma" | "chrome" | "json" | "xd" | "behance" | "javascript" | "typescript" | "r" | "harbor" | "aframe" | "almalinux" | "androidstudio" | "ansys" | "apache" | "apacheairflow" | "archlinux" | "arduino" | "artixlinux" | "astro" | "axios" | "bazel" | "beats" | "bower" | "bruno" | "bun" | "burpsuite" | "cakephp" | "capacitor" | "chakraui" | "circleci" | "clickhouse" | "clion" | "cloudflare" | "cloudflareworkers" | "cmake" | "codeberg" | "codecov" | "codeigniter" | "confluence" | "cplusplus" | "cucumber" | "dart" | "datagrip" | "dbeaver" | "delphi" | "django" | "doctrine" | "dovecot" | "duckdb" | "dynatrace" | "elasticsearch" | "eleventy" | "elixir" | "elm" | "erlang" | "fastapi" | "fastify" | "filezilla" | "flutter" | "forgejo" | "fsharp" | "gimp" | "githubactions" | "githubcopilot" | "gitpod" | "gitter" | "gleam" | "glitch" | "go" | "goland" | "googlecloud" | "googlecolab" | "grafana" | "grunt" | "gulp" | "haskell" | "haxe" | "helix" | "heroku" | "hibernate" | "homebrew" | "hoppscotch" | "html5" | "htmx" | "hugo" | "hyprland" | "inkscape" | "insomnia" | "jekyll" | "jenkins" | "jest" | "jetbrains" | "jetpackcompose" | "jhipster" | "julia" | "jupyter" | "kdeneon" | "keras" | "kibana" | "kotlin" | "ktor" | "labview" | "leetcode" | "linuxmint" | "livewire" | "llvm" | "lodash" | "logstash" | "lua" | "luau" | "mercurial" | "mobx" | "mocha" | "modx" | "mongodb" | "moodle" | "nano" | "neo4j" | "neovim" | "netlify" | "newrelic" | "ngrx" | "nim" | "nixos" | "nodemon" | "nodered" | "notion" | "numpy" | "ocaml" | "okta" | "opencv" | "opengl" | "opentelemetry" | "packer" | "pandas" | "perl" | "php" | "phpstorm" | "plotly" | "pm2" | "pnpm" | "podman" | "poetry" | "postgresql" | "postman" | "primeng" | "protractor" | "proxmox" | "pug" | "pulumi" | "puppeteer" | "pycharm" | "pypi" | "pytest" | "python" | "quarkus" | "quasar" | "qwik" | "racket" | "radstudio" | "raspberrypi" | "reactrouter" | "redis" | "renpy" | "rider" | "rocksdb" | "rubymine" | "safari" | "sanity" | "scala" | "scikitlearn" | "sequelize" | "sfml" | "sketch" | "solidity" | "sourceengine" | "sqlalchemy" | "sqlite" | "stackoverflow" | "storybook" | "streamlit" | "styledcomponents" | "supabase" | "surrealdb" | "svelte" | "svgo" | "swagger" | "swift" | "talos" | "tauri" | "teamcity" | "thealgorithms" | "thymeleaf" | "tmux" | "trpc" | "typeorm" | "v8" | "vagrant" | "vala" | "vapor" | "vim" | "vitess" | "vitest" | "vscodium" | "webgpu" | "weblate" | "webstorm" | "wolfram" | "woocommerce" | "xcode" | "yaml" | "yii" | "yunohost" | "zsh" | "akka" | "browserstack" | "cassandra" | "ceylon" | "couchdb" | "dataspell" | "envoy" | "foundation" | "godot" | "grails" | "grpc" | "hadoop" | "hardhat" | "java" | "karma" | "krakenjs" | "materializecss" | "matplotlib" | "maven" | "memcached" | "nasm" | "nats" | "netbeans" | "nextjs" | "nodewebkit" | "oauth" | "openapi" | "phalcon" | "pixijs" | "playwright" | "processing" | "rails" | "realm" | "solidjs" | "stenciljs" | "uwsgi" | "vitejs" | "web3js" | "youtrack" | "css3" | "csharp" | "gcc" | "matlab" | "maya" | "groovy" | "prolog" | "rollup" | "vscode" | "rstudio" | "clarity" | "azure" | "aarch64" | "aftereffects" | "akka-wordmark" | "almalinux-wordmark" | "amazonwebservices" | "android-wordmark" | "androidstudio-wordmark" | "angular-wordmark" | "angularjs-wordmark" | "angularmaterial" | "ansible-wordmark" | "ansys-wordmark" | "apache-wordmark" | "apacheairflow-wordmark" | "apacheignite-wordmark" | "apachespark-wordmark" | "apify" | "apify-wordmark" | "apl" | "appcelerator-wordmark" | "appwrite-wordmark" | "archlinux-wordmark" | "arduino-wordmark" | "argocd" | "argocd-wordmark" | "artixlinux-wordmark" | "astro-wordmark" | "awk-wordmark" | "azure-wordmark" | "azuredatafactory" | "azuredevops" | "azuresqldatabase" | "babylonjs" | "babylonjs-wordmark" | "backbonejs" | "backbonejs-wordmark" | "bazel-wordmark" | "behance-wordmark" | "bevyengine" | "bevyengine-wordmark" | "biome-wordmark" | "bootstrap-wordmark" | "bower-wordmark" | "browserstack-wordmark" | "bruno-wordmark" | "burpsuite-wordmark" | "cairo" | "cairo-wordmark" | "cakephp-wordmark" | "capacitor-wordmark" | "cassandra-wordmark" | "centos-wordmark" | "ceph-wordmark" | "ceylon-wordmark" | "chakraui-wordmark" | "chrome-wordmark" | "clarity-wordmark" | "clion-wordmark" | "cloudflare-wordmark" | "cloudflareworkers-wordmark" | "cloudrun" | "cmake-wordmark" | "codeberg-wordmark" | "confluence-wordmark" | "consul-wordmark" | "cordova-wordmark" | "cosmosdb" | "cosmosdb-wordmark" | "couchbase-wordmark" | "couchdb-wordmark" | "css3-wordmark" | "cypressio" | "cypressio-wordmark" | "dart-wordmark" | "datagrip-wordmark" | "dataspell-wordmark" | "debian-wordmark" | "devicon" | "devicon-wordmark" | "discloud-wordmark" | "discordjs" | "discordjs-wordmark" | "djangorest" | "djangorest-wordmark" | "docker-wordmark" | "doctrine-wordmark" | "dot-net-wordmark" | "dotnetcore" | "dreamweaver" | "dropwizard" | "drupal-wordmark" | "dyalog" | "dynamodb" | "dynatrace-wordmark" | "eclipse-wordmark" | "ecto-wordmark" | "elasticsearch-wordmark" | "elixir-wordmark" | "elm-wordmark" | "embeddedc" | "embeddedc-wordmark" | "entityframeworkcore" | "envoy-wordmark" | "erlang-wordmark" | "eslint-wordmark" | "fastapi-wordmark" | "fastify-wordmark" | "fiber" | "filezilla-wordmark" | "firebase-wordmark" | "firebird" | "firefox-wordmark" | "forgejo-wordmark" | "foundation-wordmark" | "fusion" | "gardener" | "gatling-wordmark" | "gatsby-wordmark" | "gazebo" | "gazebo-wordmark" | "gentoo-wordmark" | "gimp-wordmark" | "git-wordmark" | "gitea-wordmark" | "githubactions-wordmark" | "githubcodespaces" | "githubcopilot-wordmark" | "gitkraken-wordmark" | "gitlab-wordmark" | "gitpod-wordmark" | "gnuradio-wordmark" | "godot-wordmark" | "goland-wordmark" | "google-wordmark" | "googlecloud-wordmark" | "grafana-wordmark" | "grunt-wordmark" | "hadoop-wordmark" | "haproxy" | "haproxy-wordmark" | "harbor-wordmark" | "hardhat-wordmark" | "harvester-wordmark" | "haskell-wordmark" | "heroku-wordmark" | "hibernate-wordmark" | "homebrew-wordmark" | "html5-wordmark" | "htmx-wordmark" | "hugo-wordmark" | "hyperv" | "hyprland-wordmark" | "illustrator" | "inertiajs" | "inertiajs-wordmark" | "inkscape-wordmark" | "insomnia-wordmark" | "intellij" | "intellij-wordmark" | "jaegertracing" | "jaegertracing-wordmark" | "jamstack-wordmark" | "java-wordmark" | "jeet" | "jeet-wordmark" | "jetpackcompose-wordmark" | "jhipster-wordmark" | "jira-wordmark" | "jiraalign" | "jiraalign-wordmark" | "jquery-wordmark" | "julia-wordmark" | "junie-wordmark" | "junit" | "junit-wordmark" | "jupyter-wordmark" | "k3os-wordmark" | "k3s-wordmark" | "kaldi" | "kaldi-wordmark" | "kalilinux-wordmark" | "karatelabs" | "karatelabs-wordmark" | "keras-wordmark" | "kibana-wordmark" | "knexjs-wordmark" | "kotlin-wordmark" | "krakenjs-wordmark" | "ktor-wordmark" | "kubeflow" | "kubeflow-wordmark" | "kubernetes-wordmark" | "labview-wordmark" | "laraveljetstream-wordmark" | "leetcode-wordmark" | "libgdx" | "linkedin-wordmark" | "linuxmint-wordmark" | "livewire-wordmark" | "logstash-wordmark" | "love2d" | "magento-wordmark" | "materialui" | "matplotlib-wordmark" | "maven-wordmark" | "maya-wordmark" | "memcached-wordmark" | "mercurial-wordmark" | "meteor-wordmark" | "microsoftsqlserver" | "microsoftsqlserver-wordmark" | "minitab" | "modx-wordmark" | "mongock" | "mongodb-wordmark" | "monogame-wordmark" | "moodle-wordmark" | "msdos" | "mysql-wordmark" | "nasm-wordmark" | "neo4j-wordmark" | "neovim-wordmark" | "netbeans-wordmark" | "netbox" | "netbox-wordmark" | "netlify-wordmark" | "networkx" | "networkx-wordmark" | "nhibernate" | "nhibernate-wordmark" | "nim-wordmark" | "nimble" | "nixos-wordmark" | "nodejs-wordmark" | "nodewebkit-wordmark" | "nomad-wordmark" | "norg" | "npss" | "numpy-wordmark" | "nuxt-wordmark" | "nuxtjs" | "nuxtjs-wordmark" | "ocaml-wordmark" | "ohmyzsh" | "okta-wordmark" | "openal" | "openapi-wordmark" | "opencl" | "opencv-wordmark" | "openstack-wordmark" | "opentelemetry-wordmark" | "opera-wordmark" | "opnsense-wordmark" | "packer-wordmark" | "pandas-wordmark" | "phoenix-wordmark" | "photonengine" | "photoshop" | "phpstorm-wordmark" | "pixijs-wordmark" | "plotly-wordmark" | "pm2-wordmark" | "pnpm-wordmark" | "podman-wordmark" | "polygon-wordmark" | "positron" | "postcss-wordmark" | "postgresql-wordmark" | "postman-wordmark" | "premierepro" | "processwire-wordmark" | "prolog-wordmark" | "prometheus-wordmark" | "protractor-wordmark" | "proxmox-wordmark" | "pulumi-wordmark" | "putty" | "pycharm-wordmark" | "pypi-wordmark" | "pyscript-wordmark" | "pytest-wordmark" | "python-wordmark" | "pytorch-wordmark" | "qodana" | "quarkus-wordmark" | "quasar-wordmark" | "qwik-wordmark" | "rabbitmq-wordmark" | "rails-wordmark" | "rancher-wordmark" | "raspberrypi-wordmark" | "reach" | "reactrouter-wordmark" | "realm-wordmark" | "redhat-wordmark" | "redis-wordmark" | "reflex" | "reflex-wordmark" | "replit-wordmark" | "rexx" | "rexx-wordmark" | "rider-wordmark" | "rockylinux-wordmark" | "rollup-wordmark" | "rspec" | "rspec-wordmark" | "ruby-wordmark" | "rubymine-wordmark" | "rxjs" | "safari-wordmark" | "scala-wordmark" | "scalingo" | "scalingo-wordmark" | "sdl" | "sequelize-wordmark" | "shotgrid" | "sketch-wordmark" | "slack-wordmark" | "solidjs-wordmark" | "sonarqube-wordmark" | "sourceengine-wordmark" | "spack" | "spicedb" | "spss" | "spyder" | "spyder-wordmark" | "sqlalchemy-wordmark" | "sqldeveloper" | "sqlite-wordmark" | "stackblitz-wordmark" | "stackoverflow-wordmark" | "stenciljs-wordmark" | "storybook-wordmark" | "streamlit-wordmark" | "styledcomponents-wordmark" | "subversion-wordmark" | "supabase-wordmark" | "surrealdb-wordmark" | "svelte-wordmark" | "svgo-wordmark" | "swagger-wordmark" | "swift-wordmark" | "tailwindcss-wordmark" | "tauri-wordmark" | "teamcity-wordmark" | "terraform-wordmark" | "thealgorithms-wordmark" | "threedsmax" | "thymeleaf-wordmark" | "tmux-wordmark" | "tortoisegit" | "towergit-wordmark" | "traefikmesh-wordmark" | "traefikproxy-wordmark" | "travis" | "travis-wordmark" | "trello-wordmark" | "trpc-wordmark" | "turbo-wordmark" | "typeorm-wordmark" | "typo3-wordmark" | "ubuntu-wordmark" | "unifiedmodelinglanguage" | "unifiedmodelinglanguage-wordmark" | "unity-wordmark" | "vagrant-wordmark" | "vala-wordmark" | "vapor-wordmark" | "vault-wordmark" | "vertx" | "vertx-wordmark" | "visualbasic" | "visualstudio" | "visualstudio-wordmark" | "vitess-wordmark" | "vscode-wordmark" | "vsphere" | "vsphere-wordmark" | "vuejs-wordmark" | "vuestorefront" | "waku" | "wasm-wordmark" | "webgpu-wordmark" | "weblate-wordmark" | "webpack-wordmark" | "webstorm-wordmark" | "wolfram-wordmark" | "woocommerce-wordmark" | "yii-wordmark" | "youtrack-wordmark" | "yugabytedb" | "yugabytedb-wordmark" | "zig-wordmark" | "zsh-wordmark" | "zustand" | "axios-wordmark" | "circleci-wordmark" | "codeigniter-wordmark" | "cucumber-wordmark" | "django-wordmark" | "gitter-wordmark" | "graphql-wordmark" | "jekyll-wordmark" | "knockout-wordmark" | "less-wordmark" | "nano-wordmark" | "objectivec" | "qodana-wordmark" | "wordpress-wordmark">): import("react").JSX.Element;
|
|
737
|
+
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"android" | "ruby" | "polygon" | "rect" | "xml" | "passport" | "powershell" | "linux" | "angular" | "angularjs" | "ansible" | "babel" | "bootstrap" | "bulma" | "centos" | "cordova" | "debian" | "docker" | "dot-net" | "drupal" | "ember" | "eslint" | "facebook" | "fedora" | "firebase" | "firefox" | "gentoo" | "git" | "gitlab" | "google" | "graphql" | "jira" | "jquery" | "kubernetes" | "linkedin" | "meteor" | "nodejs" | "npm" | "opera" | "redhat" | "salesforce" | "slack" | "terraform" | "trello" | "ubuntu" | "unity" | "vuejs" | "vuetify" | "webpack" | "wordpress" | "bash" | "eclipse" | "figma" | "chrome" | "json" | "xd" | "behance" | "javascript" | "typescript" | "r" | "harbor" | "aframe" | "almalinux" | "androidstudio" | "ansys" | "apache" | "apacheairflow" | "archlinux" | "arduino" | "artixlinux" | "astro" | "axios" | "bazel" | "beats" | "bower" | "bruno" | "bun" | "burpsuite" | "cakephp" | "capacitor" | "chakraui" | "circleci" | "clickhouse" | "clion" | "cloudflare" | "cloudflareworkers" | "cmake" | "codeberg" | "codecov" | "codeigniter" | "confluence" | "cplusplus" | "cucumber" | "dart" | "datagrip" | "dbeaver" | "delphi" | "django" | "doctrine" | "dovecot" | "duckdb" | "dynatrace" | "elasticsearch" | "eleventy" | "elixir" | "elm" | "erlang" | "fastapi" | "fastify" | "filezilla" | "flutter" | "forgejo" | "fsharp" | "gimp" | "githubactions" | "githubcopilot" | "gitpod" | "gitter" | "gleam" | "glitch" | "go" | "goland" | "googlecloud" | "googlecolab" | "grafana" | "grunt" | "gulp" | "haskell" | "haxe" | "helix" | "heroku" | "hibernate" | "homebrew" | "hoppscotch" | "html5" | "htmx" | "hugo" | "hyprland" | "inkscape" | "insomnia" | "jekyll" | "jenkins" | "jest" | "jetbrains" | "jetpackcompose" | "jhipster" | "julia" | "jupyter" | "kdeneon" | "keras" | "kibana" | "kotlin" | "ktor" | "labview" | "leetcode" | "linuxmint" | "livewire" | "llvm" | "lodash" | "logstash" | "lua" | "luau" | "mercurial" | "mobx" | "mocha" | "modx" | "mongodb" | "moodle" | "nano" | "neo4j" | "neovim" | "netlify" | "newrelic" | "ngrx" | "nim" | "nixos" | "nodemon" | "nodered" | "notion" | "numpy" | "ocaml" | "okta" | "opencv" | "opengl" | "opentelemetry" | "packer" | "pandas" | "perl" | "php" | "phpstorm" | "plotly" | "pm2" | "pnpm" | "podman" | "poetry" | "postgresql" | "postman" | "primeng" | "protractor" | "proxmox" | "pug" | "pulumi" | "puppeteer" | "pycharm" | "pypi" | "pytest" | "python" | "quarkus" | "quasar" | "qwik" | "racket" | "radstudio" | "raspberrypi" | "reactrouter" | "redis" | "renpy" | "rider" | "rocksdb" | "rubymine" | "safari" | "sanity" | "scala" | "scikitlearn" | "sequelize" | "sfml" | "sketch" | "solidity" | "sourceengine" | "sqlalchemy" | "sqlite" | "stackoverflow" | "storybook" | "streamlit" | "styledcomponents" | "supabase" | "surrealdb" | "svelte" | "svgo" | "swagger" | "swift" | "talos" | "tauri" | "teamcity" | "thealgorithms" | "thymeleaf" | "tmux" | "trpc" | "typeorm" | "v8" | "vagrant" | "vala" | "vapor" | "vim" | "vitess" | "vitest" | "vscodium" | "webgpu" | "weblate" | "webstorm" | "wolfram" | "woocommerce" | "xcode" | "yaml" | "yii" | "yunohost" | "zsh" | "akka" | "browserstack" | "cassandra" | "ceylon" | "couchdb" | "dataspell" | "envoy" | "foundation" | "godot" | "grails" | "grpc" | "hadoop" | "hardhat" | "java" | "karma" | "krakenjs" | "materializecss" | "matplotlib" | "maven" | "memcached" | "nasm" | "nats" | "netbeans" | "nextjs" | "nodewebkit" | "oauth" | "openapi" | "phalcon" | "pixijs" | "playwright" | "processing" | "rails" | "realm" | "solidjs" | "stenciljs" | "uwsgi" | "vitejs" | "web3js" | "youtrack" | "css3" | "csharp" | "gcc" | "matlab" | "maya" | "groovy" | "prolog" | "rollup" | "vscode" | "rstudio" | "clarity" | "azure" | "aarch64" | "aftereffects" | "akka-wordmark" | "almalinux-wordmark" | "amazonwebservices" | "android-wordmark" | "androidstudio-wordmark" | "angular-wordmark" | "angularjs-wordmark" | "angularmaterial" | "ansible-wordmark" | "ansys-wordmark" | "apache-wordmark" | "apacheairflow-wordmark" | "apacheignite-wordmark" | "apachespark-wordmark" | "apify" | "apify-wordmark" | "apl" | "appcelerator-wordmark" | "appwrite-wordmark" | "archlinux-wordmark" | "arduino-wordmark" | "argocd" | "argocd-wordmark" | "artixlinux-wordmark" | "astro-wordmark" | "awk-wordmark" | "azure-wordmark" | "azuredatafactory" | "azuredevops" | "azuresqldatabase" | "babylonjs" | "babylonjs-wordmark" | "backbonejs" | "backbonejs-wordmark" | "bazel-wordmark" | "behance-wordmark" | "bevyengine" | "bevyengine-wordmark" | "biome-wordmark" | "bootstrap-wordmark" | "bower-wordmark" | "browserstack-wordmark" | "bruno-wordmark" | "burpsuite-wordmark" | "cairo" | "cairo-wordmark" | "cakephp-wordmark" | "capacitor-wordmark" | "cassandra-wordmark" | "centos-wordmark" | "ceph-wordmark" | "ceylon-wordmark" | "chakraui-wordmark" | "chrome-wordmark" | "clarity-wordmark" | "clion-wordmark" | "cloudflare-wordmark" | "cloudflareworkers-wordmark" | "cloudrun" | "cmake-wordmark" | "codeberg-wordmark" | "confluence-wordmark" | "consul-wordmark" | "cordova-wordmark" | "cosmosdb" | "cosmosdb-wordmark" | "couchbase-wordmark" | "couchdb-wordmark" | "css3-wordmark" | "cypressio" | "cypressio-wordmark" | "dart-wordmark" | "datagrip-wordmark" | "dataspell-wordmark" | "debian-wordmark" | "devicon" | "devicon-wordmark" | "discloud-wordmark" | "discordjs" | "discordjs-wordmark" | "djangorest" | "djangorest-wordmark" | "docker-wordmark" | "doctrine-wordmark" | "dot-net-wordmark" | "dotnetcore" | "dreamweaver" | "dropwizard" | "drupal-wordmark" | "dyalog" | "dynamodb" | "dynatrace-wordmark" | "eclipse-wordmark" | "ecto-wordmark" | "elasticsearch-wordmark" | "elixir-wordmark" | "elm-wordmark" | "embeddedc" | "embeddedc-wordmark" | "entityframeworkcore" | "envoy-wordmark" | "erlang-wordmark" | "eslint-wordmark" | "fastapi-wordmark" | "fastify-wordmark" | "fiber" | "filezilla-wordmark" | "firebase-wordmark" | "firebird" | "firefox-wordmark" | "forgejo-wordmark" | "foundation-wordmark" | "fusion" | "gardener" | "gatling-wordmark" | "gatsby-wordmark" | "gazebo" | "gazebo-wordmark" | "gentoo-wordmark" | "gimp-wordmark" | "git-wordmark" | "gitea-wordmark" | "githubactions-wordmark" | "githubcodespaces" | "githubcopilot-wordmark" | "gitkraken-wordmark" | "gitlab-wordmark" | "gitpod-wordmark" | "gnuradio-wordmark" | "godot-wordmark" | "goland-wordmark" | "google-wordmark" | "googlecloud-wordmark" | "grafana-wordmark" | "grunt-wordmark" | "hadoop-wordmark" | "haproxy" | "haproxy-wordmark" | "harbor-wordmark" | "hardhat-wordmark" | "harvester-wordmark" | "haskell-wordmark" | "heroku-wordmark" | "hibernate-wordmark" | "homebrew-wordmark" | "html5-wordmark" | "htmx-wordmark" | "hugo-wordmark" | "hyperv" | "hyprland-wordmark" | "illustrator" | "inertiajs" | "inertiajs-wordmark" | "inkscape-wordmark" | "insomnia-wordmark" | "intellij" | "intellij-wordmark" | "jaegertracing" | "jaegertracing-wordmark" | "jamstack-wordmark" | "java-wordmark" | "jeet" | "jeet-wordmark" | "jetpackcompose-wordmark" | "jhipster-wordmark" | "jira-wordmark" | "jiraalign" | "jiraalign-wordmark" | "jquery-wordmark" | "julia-wordmark" | "junie-wordmark" | "junit" | "junit-wordmark" | "jupyter-wordmark" | "k3os-wordmark" | "k3s-wordmark" | "kaldi" | "kaldi-wordmark" | "kalilinux-wordmark" | "karatelabs" | "karatelabs-wordmark" | "keras-wordmark" | "kibana-wordmark" | "knexjs-wordmark" | "kotlin-wordmark" | "krakenjs-wordmark" | "ktor-wordmark" | "kubeflow" | "kubeflow-wordmark" | "kubernetes-wordmark" | "labview-wordmark" | "laraveljetstream-wordmark" | "leetcode-wordmark" | "libgdx" | "linkedin-wordmark" | "linuxmint-wordmark" | "livewire-wordmark" | "logstash-wordmark" | "love2d" | "magento-wordmark" | "materialui" | "matplotlib-wordmark" | "maven-wordmark" | "maya-wordmark" | "memcached-wordmark" | "mercurial-wordmark" | "meteor-wordmark" | "microsoftsqlserver" | "microsoftsqlserver-wordmark" | "minitab" | "modx-wordmark" | "mongock" | "mongodb-wordmark" | "monogame-wordmark" | "moodle-wordmark" | "msdos" | "mysql-wordmark" | "nasm-wordmark" | "neo4j-wordmark" | "neovim-wordmark" | "netbeans-wordmark" | "netbox" | "netbox-wordmark" | "netlify-wordmark" | "networkx" | "networkx-wordmark" | "nhibernate" | "nhibernate-wordmark" | "nim-wordmark" | "nimble" | "nixos-wordmark" | "nodejs-wordmark" | "nodewebkit-wordmark" | "nomad-wordmark" | "norg" | "npss" | "numpy-wordmark" | "nuxt-wordmark" | "nuxtjs" | "nuxtjs-wordmark" | "ocaml-wordmark" | "ohmyzsh" | "okta-wordmark" | "openal" | "openapi-wordmark" | "opencl" | "opencv-wordmark" | "openstack-wordmark" | "opentelemetry-wordmark" | "opera-wordmark" | "opnsense-wordmark" | "packer-wordmark" | "pandas-wordmark" | "phoenix-wordmark" | "photonengine" | "photoshop" | "phpstorm-wordmark" | "pixijs-wordmark" | "plotly-wordmark" | "pm2-wordmark" | "pnpm-wordmark" | "podman-wordmark" | "polygon-wordmark" | "positron" | "postcss-wordmark" | "postgresql-wordmark" | "postman-wordmark" | "premierepro" | "processwire-wordmark" | "prolog-wordmark" | "prometheus-wordmark" | "protractor-wordmark" | "proxmox-wordmark" | "pulumi-wordmark" | "putty" | "pycharm-wordmark" | "pypi-wordmark" | "pyscript-wordmark" | "pytest-wordmark" | "python-wordmark" | "pytorch-wordmark" | "qodana" | "quarkus-wordmark" | "quasar-wordmark" | "qwik-wordmark" | "rabbitmq-wordmark" | "rails-wordmark" | "rancher-wordmark" | "raspberrypi-wordmark" | "reach" | "reactrouter-wordmark" | "realm-wordmark" | "redhat-wordmark" | "redis-wordmark" | "reflex" | "reflex-wordmark" | "replit-wordmark" | "rexx" | "rexx-wordmark" | "rider-wordmark" | "rockylinux-wordmark" | "rollup-wordmark" | "rspec" | "rspec-wordmark" | "ruby-wordmark" | "rubymine-wordmark" | "rxjs" | "safari-wordmark" | "scala-wordmark" | "scalingo" | "scalingo-wordmark" | "sdl" | "sequelize-wordmark" | "shotgrid" | "sketch-wordmark" | "slack-wordmark" | "solidjs-wordmark" | "sonarqube-wordmark" | "sourceengine-wordmark" | "spack" | "spicedb" | "spss" | "spyder" | "spyder-wordmark" | "sqlalchemy-wordmark" | "sqldeveloper" | "sqlite-wordmark" | "stackblitz-wordmark" | "stackoverflow-wordmark" | "stenciljs-wordmark" | "storybook-wordmark" | "streamlit-wordmark" | "styledcomponents-wordmark" | "subversion-wordmark" | "supabase-wordmark" | "surrealdb-wordmark" | "svelte-wordmark" | "svgo-wordmark" | "swagger-wordmark" | "swift-wordmark" | "tailwindcss-wordmark" | "tauri-wordmark" | "teamcity-wordmark" | "terraform-wordmark" | "thealgorithms-wordmark" | "threedsmax" | "thymeleaf-wordmark" | "tmux-wordmark" | "tortoisegit" | "towergit-wordmark" | "traefikmesh-wordmark" | "traefikproxy-wordmark" | "travis" | "travis-wordmark" | "trello-wordmark" | "trpc-wordmark" | "turbo-wordmark" | "typeorm-wordmark" | "typo3-wordmark" | "ubuntu-wordmark" | "unifiedmodelinglanguage" | "unifiedmodelinglanguage-wordmark" | "unity-wordmark" | "vagrant-wordmark" | "vala-wordmark" | "vapor-wordmark" | "vault-wordmark" | "vertx" | "vertx-wordmark" | "visualbasic" | "visualstudio" | "visualstudio-wordmark" | "vitess-wordmark" | "vscode-wordmark" | "vsphere" | "vsphere-wordmark" | "vuejs-wordmark" | "vuestorefront" | "waku" | "wasm-wordmark" | "webgpu-wordmark" | "weblate-wordmark" | "webpack-wordmark" | "webstorm-wordmark" | "wolfram-wordmark" | "woocommerce-wordmark" | "yii-wordmark" | "youtrack-wordmark" | "yugabytedb" | "yugabytedb-wordmark" | "zig-wordmark" | "zsh-wordmark" | "zustand" | "axios-wordmark" | "circleci-wordmark" | "codeigniter-wordmark" | "cucumber-wordmark" | "django-wordmark" | "gitter-wordmark" | "graphql-wordmark" | "jekyll-wordmark" | "knockout-wordmark" | "less-wordmark" | "nano-wordmark" | "objectivec" | "qodana-wordmark" | "wordpress-wordmark">): import("react").JSX.Element;
|
|
738
738
|
displayName: string;
|
|
739
739
|
};
|
|
740
740
|
export {};
|
|
@@ -1206,7 +1206,7 @@ declare const dinkie_iconsIconNames: {
|
|
|
1206
1206
|
};
|
|
1207
1207
|
export type DinkieIconsIconName = keyof typeof dinkie_iconsIconNames;
|
|
1208
1208
|
export declare const DinkieIcons: {
|
|
1209
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"filter" | "android" | "windows" | "menu" | "anchor" | "code" | "label" | "circle" | "briefcase" | "clipboard" | "contrast" | "crown" | "cursor-text" | "download" | "eye" | "ferris-wheel" | "grid" | "handshake" | "hook" | "keyboard" | "magnet" | "newspaper" | "paperclip" | "pistol" | "podcast" | "ribbon" | "satellite" | "slot-machine" | "tent" | "carrot" | "mushroom" | "bird" | "bug" | "elephant" | "fish" | "shark" | "snail" | "snake" | "spider" | "turtle" | "share" | "speaker" | "battery" | "lock" | "snowflake" | "thermometer" | "apple" | "facebook" | "github" | "instagram" | "nintendo-switch" | "sina-weibo" | "steam" | "twitter" | "unicode" | "wechat" | "cloud" | "calendar" | "clock" | "television" | "watch" | "brush" | "pencil" | "file-cabinet" | "cookie" | "hamburger" | "bomb" | "flask" | "ghost" | "shield" | "skull" | "compass" | "axe" | "factory" | "hammer" | "wrench" | "balloon" | "candle" | "party-popper" | "bell" | "camera" | "fire" | "robot" | "toilet" | "webcam" | "abacus" | "circle-small" | "pill" | "microphone" | "saxophone" | "trumpet" | "violin" | "palm-tree" | "volcano" | "airplane" | "bus" | "train" | "atom" | "beaker" | "biohazard" | "microscope" | "radioactive" | "rocket" | "test-tube" | "cube" | "basket" | "kite" | "podium" | "torch" | "trophy" | "helicopter" | "elevator" | "view-grid" | "view-list" | "umbrella" | "envelope" | "hashtag" | "musical-note" | "shopping-bag" | "sparkles" | "alarm-clock" | "banana" | "droplet" | "figma" | "graduation-cap" | "guitar" | "hourglass" | "joystick" | "leafy-green" | "mic" | "mountain" | "rose" | "sandwich" | "scan" | "ship" | "syringe" | "zoom-in" | "zoom-out" | "address-book" | "adjustments" | "adjustments-filled" | "apple-filled" | "arrows-maximize" | "arrows-minimize" | "balloon-filled" | "battery-filled" | "bell-filled" | "bomb-filled" | "bread" | "christmas-tree" | "circle-filled" | "clipboard-filled" | "clock-filled" | "compass-filled" | "contrast-filled" | "cookie-filled" | "elevator-filled" | "file-vector" | "file-vector-filled" | "flask-filled" | "keyboard-filled" | "label-filled" | "lemon" | "line-height" | "location-pin" | "lock-filled" | "magnet-filled" | "microphone-filled" | "pill-filled" | "robot-face" | "seedling" | "stopwatch" | "zoom-in-filled" | "zoom-out-filled" | "alipay" | "bezier" | "eyeglasses" | "file-font" | "gear" | "paypal" | "playstation" | "telegram" | "tiktok" | "floppy-disk" | "wine-glass" | "restroom" | "pager" | "exit" | "fork" | "magic-wand" | "radio-button" | "strawberry" | "delivery-truck" | "scales" | "duplicate" | "bilibili" | "buddy" | "metro" | "notion" | "qq" | "unsplash" | "xiaohongshu" | "adobe-after-effects" | "adobe-animate" | "adobe-illustrator" | "adobe-photoshop" | "adobe-premiere" | "code-filled" | "pushpin-filled" | "robot-filled" | "wechat-filled" | "money-bag" | "boy" | "girl" | "potted-plant" | "glyphs" | "birthday-cake" | "open-book" | "app-store" | "finder" | "headphone" | "parallelogram" | "victory-hand" | "accordion" | "coconut" | "mango" | "octopus" | "shrug" | "tangerine" | "tomato" | "top-hat" | "address-book-filled" | "gear-filled" | "calendar-alt" | "grid-small" | "pear" | "t-shirt" | "desktop-computer" | "adobe-audition" | "bus-alt" | "menu-small" | "circle-small-filled" | "doge" | "facebook-alt" | "twitter-alt" | "accept-circle" | "accept-circle-filled" | "address-book-small" | "address-book-small-filled" | "adobe-after-effects-filled" | "adobe-animate-filled" | "adobe-audition-filled" | "adobe-illustrator-filled" | "adobe-in-design" | "adobe-in-design-filled" | "adobe-photoshop-filled" | "adobe-premiere-filled" | "adult" | "adult-filled" | "adult-small" | "adult-small-filled" | "advantage-circle" | "advantage-circle-filled" | "alarm-clock-filled" | "alarm-clock-small-filled" | "alien-monster" | "alien-monster-small" | "alipay-filled" | "alipay-small" | "alipay-small-filled" | "anchor-small" | "annotation" | "antenna-bars" | "antenna-bars-filled" | "anyway-fm" | "app-notifacation" | "app-notifacation-small" | "app-store-filled" | "apple-small" | "apple-small-filled" | "artist-palette" | "astonished-face" | "automobile" | "automobile-filled" | "automobile-small" | "autumn-mahjong" | "axe-filled" | "back-mahjong" | "back-mahjong-filled" | "ballot-box-with-check" | "ballot-box-with-check-filled" | "ballot-box-with-check-small" | "ballot-box-with-check-small-filled" | "bamboo-mahjong" | "banjo" | "battery-small" | "battery-small-filled" | "beaker-filled" | "beer-mug" | "bell-with-cancellation-stroke" | "bell-with-cancellation-stroke-filled" | "bezier-small" | "bigger" | "bigger-small" | "bilibili-small" | "billed-cap" | "billed-cap-small" | "bird-filled" | "black-circle-for-record" | "black-circle-for-record-filled" | "black-cross-square" | "black-cross-square-filled" | "black-cross-square-small" | "black-cross-square-small-filled" | "black-joker-cards" | "black-left-double-triangle" | "black-left-double-triangle-filled" | "black-left-double-triangle-with-vertical-bar" | "black-left-double-triangle-with-vertical-bar-filled" | "black-right-double-triangle" | "black-right-double-triangle-filled" | "black-right-double-triangle-with-vertical-bar" | "black-right-double-triangle-with-vertical-bar-filled" | "black-right-triangle-with-double-vertical-bar" | "black-right-triangle-with-double-vertical-bar-filled" | "black-scissors" | "black-scissors-filled" | "black-square-for-stop" | "black-square-for-stop-filled" | "black-sun-with-rays" | "black-sun-with-rays-filled" | "black-sun-with-rays-small" | "black-sun-with-rays-small-filled" | "bo-blog" | "bow-and-arrow" | "boy-filled" | "boy-small" | "boy-small-filled" | "briefcase-small" | "broken-heart" | "broken-heart-filled" | "building-construction" | "bye-face" | "calendar-small" | "cat-face" | "cat-face-small" | "checkmark-circled" | "checkmark-circled-filled" | "checkmark-circled-small" | "checkmark-circled-small-filled" | "cherries" | "cherries-filled" | "cherries-small" | "cherry-blossom" | "chestnut" | "chrysanthemum-mahjong" | "circled-information-source" | "circled-information-source-filled" | "circled-information-source-small" | "circled-information-source-small-filled" | "clapper-board" | "clapping-hands-sign" | "clipboard-small" | "clipboard-small-filled" | "clock-small-filled" | "closed-book" | "closed-book-filled" | "closed-book-small" | "closed-book-small-filled" | "closed-mailbox-lowered-flag" | "closed-mailbox-raised-flag" | "code-small" | "compass-small" | "compass-small-filled" | "confetti-ball" | "contrast-small" | "contrast-small-filled" | "cooked-rice" | "cool-box" | "cool-box-filled" | "copies" | "copies-filled" | "copies-small" | "copies-small-filled" | "cow-face" | "crab" | "crescent-moon" | "crescent-moon-filled" | "crescent-moon-small" | "crescent-moon-small-filled" | "cube-small" | "cup-with-straw" | "cup-with-straw-filled" | "cursing-face" | "cursor-arrow" | "cursor-arrow-filled" | "cursor-arrow-small" | "cursor-arrow-small-filled" | "cursor-text-small" | "dagger-knife" | "dagger-knife-filled" | "dagger-knife-small" | "dark-sunglasses" | "deciduous-tree" | "delivery-truck-filled" | "delivery-truck-small" | "delivery-truck-small-filled" | "desert-island" | "desktop-computer-filled" | "desktop-computer-small" | "desktop-computer-small-filled" | "device-rotate" | "diagonal-cross" | "diagonal-cross-small" | "die-face1" | "die-face1-filled" | "die-face1-small" | "die-face1-small-filled" | "die-face2" | "die-face2-filled" | "die-face2-small" | "die-face2-small-filled" | "die-face3" | "die-face3-filled" | "die-face3-small" | "die-face3-small-filled" | "die-face4" | "die-face4-filled" | "die-face4-small" | "die-face4-small-filled" | "die-face5" | "die-face5-filled" | "die-face5-small" | "die-face5-small-filled" | "die-face6" | "die-face6-filled" | "die-face6-small" | "die-face6-small-filled" | "directions-sign" | "display-dot-matrix" | "display-dot-matrix-small" | "dizzy-face" | "dna-double-helix" | "dog-face" | "doge-small" | "double-vertical-bar" | "double-vertical-bar-filled" | "download-small" | "dragon-face" | "dress" | "drop-of-blood" | "drum-with-drumsticks" | "duplicate-filled" | "duplicate-small" | "duplicate-small-filled" | "earth-globe-asia-australia" | "east-wind-mahjong" | "eight-of-bamboos-mahjong" | "eight-of-bamboos-mahjong-filled" | "eight-of-characters-mahjong" | "eight-of-circles-mahjong" | "eight-of-circles-mahjong-filled" | "ejectsymbol" | "ejectsymbol-filled" | "electric-light-bulb" | "electric-light-bulb-filled" | "electric-light-bulb-small" | "electric-light-bulb-small-filled" | "elevator-small-filled" | "entry" | "envelope-filled" | "envelope-small" | "envelope-small-filled" | "evergreen-tree" | "expressionless-face" | "extraterrestrial-alien" | "eye-small" | "face-eating-melon" | "face-savouring-delicious-food" | "face-screaming-in-fear" | "face-split" | "face-throwing-a-kiss" | "face-with-cold-sweat" | "face-with-head-bandage" | "face-with-medical-mask" | "face-with-no-good-gesture" | "face-with-ok-gesture" | "face-with-open-mouth-vomiting" | "face-with-open-mouth-zerowidthjoiner-dash-symbol" | "face-with-party-horn-and-party-hat" | "face-with-pleading-eyes" | "face-with-stuck-out-tongue-and-tightly-closed-eyes" | "face-with-tears-of-joy" | "facebook-alt-small" | "facebook-small" | "factory-small" | "file-folder" | "file-folder-filled" | "file-folder-small" | "file-folder-small-filled" | "file-font-filled" | "file-font-small-filled" | "file-graphics" | "file-graphics-filled" | "file-graphics-small-filled" | "file-otf" | "file-otf-filled" | "file-otf-small-filled" | "file-ttf" | "file-ttf-filled" | "file-ttf-small-filled" | "file-vector-small-filled" | "file-woff" | "file-woff-filled" | "file-woff-small-filled" | "file-woff2" | "file-woff2-filled" | "file-woff2-small-filled" | "film-frames" | "film-frames-small" | "filter-small" | "finder-small" | "fire-small" | "first-quarter-moon-symbol" | "fist-palm-salute" | "fisted-hand-sign" | "five-of-bamboos-mahjong" | "five-of-bamboos-mahjong-filled" | "five-of-characters-mahjong" | "five-of-circles-mahjong" | "five-of-circles-mahjong-filled" | "floppy-disk-filled" | "floppy-disk-small" | "floppy-disk-small-filled" | "flying-saucer" | "fork-and-knife" | "four-leaf-clover" | "four-of-bamboos-mahjong" | "four-of-bamboos-mahjong-filled" | "four-of-characters-mahjong" | "four-of-circles-mahjong" | "four-of-circles-mahjong-filled" | "fox-face" | "frog-face" | "full-moon-symbol" | "game-die" | "game-die-small" | "gem-stone" | "girl-filled" | "girl-small" | "girl-small-filled" | "github-small" | "globe-meridians" | "globe-meridians-small" | "glowing-star" | "glyphs-filled" | "grapes" | "grass-cao-symbol" | "green-dragon-mahjong" | "grid-disabled" | "grid-enabled" | "grinning-face-with-star-eyes" | "grinningfacewithonelargeandoneeye" | "gyroscope" | "hamburger-small" | "hammer-filled" | "happy-person-raising-one-hand" | "hashtag-small" | "headphone-filled" | "heart-black-suit" | "heart-black-suit-circled" | "heart-black-suit-circled-small" | "heart-black-suit-small" | "heart-white-suit" | "heart-white-suit-circled" | "heart-white-suit-circled-filled" | "heart-white-suit-circled-small" | "heart-white-suit-circled-small-filled" | "heart-white-suit-small" | "heavy-dollar-sign" | "heavy-dollar-sign-small" | "herb" | "hibiscus" | "high-heeled-shoe" | "high-speed-train" | "high-voltage-sign" | "hocho" | "hocho-filled" | "hocho-small" | "hocho-small-filled" | "horse-face" | "hot-beverage" | "hourglass-with-flowing-sand" | "house-building" | "house-building-small" | "house-buildings" | "house-buildings-small" | "hundred-points-symbol" | "information-desk-person" | "informationsource" | "informationsource-filled" | "informationsource-small" | "informationsource-small-filled" | "input-latin-capital-letters" | "input-latin-capital-letters-filled" | "input-latin-lower-letters" | "input-latin-lower-letters-filled" | "input-numbers" | "input-numbers-filled" | "instagram-small" | "invert" | "invert-small" | "java-sparrow-silver" | "java-sparrow-white" | "jeans" | "jigsaw-puzzle" | "jigsaw-puzzle-piece" | "jigsaw-puzzle-piece-small" | "joker-mahjong" | "keyboard-small-filled" | "keycap-asterisk" | "keycap-asterisk-filled" | "keycap-asterisk-small" | "keycap-asterisk-small-filled" | "keycap-command" | "keycap-command-filled" | "keycap-command-small" | "keycap-command-small-filled" | "keycap-control" | "keycap-control-filled" | "keycap-control-small" | "keycap-control-small-filled" | "keycap-digit-eight" | "keycap-digit-eight-filled" | "keycap-digit-eight-small" | "keycap-digit-eight-small-filled" | "keycap-digit-five" | "keycap-digit-five-filled" | "keycap-digit-five-small" | "keycap-digit-five-small-filled" | "keycap-digit-four" | "keycap-digit-four-filled" | "keycap-digit-four-small" | "keycap-digit-four-small-filled" | "keycap-digit-nine" | "keycap-digit-nine-filled" | "keycap-digit-nine-small" | "keycap-digit-nine-small-filled" | "keycap-digit-one" | "keycap-digit-one-filled" | "keycap-digit-one-small" | "keycap-digit-one-small-filled" | "keycap-digit-seven" | "keycap-digit-seven-filled" | "keycap-digit-seven-small" | "keycap-digit-seven-small-filled" | "keycap-digit-six" | "keycap-digit-six-filled" | "keycap-digit-six-small" | "keycap-digit-six-small-filled" | "keycap-digit-three" | "keycap-digit-three-filled" | "keycap-digit-three-small" | "keycap-digit-three-small-filled" | "keycap-digit-two" | "keycap-digit-two-filled" | "keycap-digit-two-small" | "keycap-digit-two-small-filled" | "keycap-digit-zero" | "keycap-digit-zero-filled" | "keycap-digit-zero-small" | "keycap-digit-zero-small-filled" | "keycap-eleven" | "keycap-eleven-filled" | "keycap-eleven-small" | "keycap-eleven-small-filled" | "keycap-fn" | "keycap-fn-filled" | "keycap-fn-small" | "keycap-fn-small-filled" | "keycap-number-sign" | "keycap-number-sign-filled" | "keycap-number-sign-small" | "keycap-number-sign-small-filled" | "keycap-option" | "keycap-option-filled" | "keycap-option-small" | "keycap-option-small-filled" | "keycap-return" | "keycap-return-filled" | "keycap-return-small" | "keycap-return-small-filled" | "keycap-shift" | "keycap-shift-filled" | "keycap-shift-small" | "keycap-shift-small-filled" | "keycap-tab" | "keycap-tab-filled" | "keycap-tab-small" | "keycap-tab-small-filled" | "keycap-ten" | "keycap-ten-filled" | "keycap-ten-small" | "keycap-ten-small-filled" | "keycap-windows" | "keycap-windows-filled" | "keycap-windows-small" | "keycap-windows-small-filled" | "ko-ko-kata-box" | "ko-ko-kata-box-filled" | "label-small" | "label-small-filled" | "language-cyrillic" | "language-cyrillic-filled" | "language-cyrillic-small" | "language-cyrillic-small-filled" | "language-greek" | "language-greek-filled" | "language-greek-small" | "language-greek-small-filled" | "language-han" | "language-han-filled" | "language-han-small" | "language-han-small-filled" | "language-hangul" | "language-hangul-filled" | "language-hangul-small" | "language-hangul-small-filled" | "language-hebrew" | "language-hebrew-filled" | "language-hebrew-small" | "language-hebrew-small-filled" | "language-hira" | "language-hira-filled" | "language-hira-small" | "language-hira-small-filled" | "language-latin" | "language-latin-filled" | "language-latin-small" | "language-latin-small-filled" | "language-thai" | "language-thai-filled" | "language-thai-small" | "language-thai-small-filled" | "large-question-face" | "last-quarter-moon-symbol" | "left-arrow-circled" | "left-arrow-circled-filled" | "left-arrow-circled-small" | "left-arrow-circled-small-filled" | "left-hook-arrow" | "left-hook-arrow-filled" | "left-hook-arrow-small" | "left-hook-arrow-small-filled" | "left-magnifying-glass" | "left-magnifying-glass-filled" | "left-magnifying-glass-small" | "left-magnifying-glass-small-filled" | "light-rail" | "line-gap" | "line-gap-small" | "line-height-small" | "link-symbol" | "link-symbol-small" | "location-pin-filled" | "location-pin-small" | "location-pin-small-filled" | "lock-small-filled" | "loudly-crying-face" | "love" | "memo" | "memo-filled" | "memo-small" | "memo-small-filled" | "mic-mv51" | "mic-small" | "microbe" | "milk-package" | "milk-package-small" | "mobile-phone" | "mobile-phone-alt" | "mobile-phone-alt2" | "mobile-phone-alt2-small" | "money-bag-cny" | "money-bag-eur" | "money-bag-filled" | "money-bag-frf" | "money-bag-gbp" | "money-bag-small" | "money-bag-usd" | "money-mouth-face" | "monkey-face" | "monospaced" | "mouse-face" | "mouth" | "movie-camera" | "multiple-musical-notes" | "musical-keyboard" | "musical-keyboard-filled" | "musical-note-small" | "musical-score" | "nerd-face" | "netease-music" | "netease-music-small" | "neutral-face" | "new-moon-symbol" | "nine-of-bamboos-mahjong" | "nine-of-bamboos-mahjong-filled" | "nine-of-characters-mahjong" | "nine-of-circles-mahjong" | "nine-of-circles-mahjong-filled" | "no-entry-sign" | "no-one-under-eighteen-symbol" | "no-one-under-eighteen-symbol-filled" | "no-smoking-symbol" | "north-wind-mahjong" | "ok-box" | "ok-box-filled" | "ok-hand-sign" | "ok-hand-sign-small" | "one-of-bamboos-mahjong" | "one-of-bamboos-mahjong-ss02" | "one-of-characters-mahjong" | "one-of-circles-mahjong" | "one-of-circles-mahjong-filled" | "onion" | "open-book-small" | "open-lock" | "open-lock-filled" | "open-lock-small-filled" | "open-mailbox-lowered-flag" | "open-mailbox-raised-flag" | "optical-disc" | "option-key" | "orchid-mahjong" | "orthogon7x7" | "orthogon7x9" | "orthogon9x7" | "orthogon9x9" | "otfeature-acps" | "otfeature-acps-small-filled" | "otfeature-c2sc" | "otfeature-c2sc-small-filled" | "otfeature-calt" | "otfeature-calt-small-filled" | "otfeature-ccmp" | "otfeature-ccmp-small-filled" | "otfeature-dlig" | "otfeature-dlig-small-filled" | "otfeature-frac" | "otfeature-frac-small-filled" | "otfeature-fwid" | "otfeature-fwid-small-filled" | "otfeature-hrzt" | "otfeature-hrzt-small-filled" | "otfeature-hwid" | "otfeature-hwid-small-filled" | "otfeature-liga" | "otfeature-liga-small-filled" | "otfeature-onum" | "otfeature-onum-small-filled" | "otfeature-ordn" | "otfeature-ordn-small-filled" | "otfeature-smcp" | "otfeature-smcp-small-filled" | "otfeature-ss01" | "otfeature-ss01-small-filled" | "otfeature-ss02" | "otfeature-ss02-small-filled" | "otfeature-ss03" | "otfeature-ss03-small-filled" | "otfeature-subs" | "otfeature-subs-small-filled" | "otfeature-sups" | "otfeature-sups-small-filled" | "otfeature-vert" | "otfeature-vert-small-filled" | "otfeature-zero" | "otfeature-zero-small-filled" | "page-curl" | "page-curl-filled" | "page-curl-small" | "page-curl-small-filled" | "page-facing-up" | "page-facing-up-filled" | "page-facing-up-small" | "page-facing-up-small-filled" | "page-graphics" | "page-graphics-filled" | "page-graphics-small-filled" | "palm-face" | "paperclip-small" | "party-popper-small" | "peach" | "pear-logo" | "pear-logo-filled" | "pear-logo-small" | "pear-logo-small-filled" | "peek-face" | "pencil-small" | "person-with-folded-hands" | "person-with-folded-hands-filled" | "personal-computer" | "petri-dish" | "pig-face" | "pile-of-poo" | "pineapple" | "pistol-filled" | "placard" | "placard-alt" | "placard-small" | "plum-mahjong" | "podcast-small" | "potable-water-symbol" | "poultry-leg" | "poultry-leg-filled" | "propellor" | "public-address-loudspeaker" | "public-address-loudspeaker-small" | "pushpin" | "pushpin-small" | "pushpin-small-filled" | "qq-filled" | "question-face" | "rabbit-face" | "radio-button-small" | "radioactive-small" | "railway-car" | "raised-back-of-hand" | "raised-back-of-hand-small" | "raised-hand" | "raised-hand-small" | "red-apple" | "red-apple-small" | "red-dragon-mahjong" | "red-dragon-mahjong-filled" | "repeat-arrow" | "repeat-arrow-filled" | "restroom-filled" | "restroom-small-filled" | "revert" | "right-arrow-circled" | "right-arrow-circled-filled" | "right-arrow-circled-small" | "right-arrow-circled-small-filled" | "right-black-triangle" | "right-black-triangle-filled" | "right-hook-arrow" | "right-hook-arrow-filled" | "right-hook-arrow-small" | "right-hook-arrow-small-filled" | "right-magnifying-glass" | "right-magnifying-glass-filled" | "right-magnifying-glass-small" | "right-magnifying-glass-small-filled" | "right-then-curving-down-arrow" | "right-then-curving-down-arrow-filled" | "right-then-curving-down-arrow-small" | "right-then-curving-down-arrow-small-filled" | "right-then-curving-up-arrow" | "right-then-curving-up-arrow-filled" | "right-then-curving-up-arrow-small" | "right-then-curving-up-arrow-small-filled" | "roasted-sweet-potato" | "rostrum" | "round-pushpin" | "round-pushpin-filled" | "round-pushpin-small" | "round-pushpin-small-filled" | "ruler-right-angle" | "satellite-antenna" | "sauropod" | "saxophone-filled" | "scan-small" | "secret-han-circled" | "secret-han-circled-filled" | "seven-of-bamboos-mahjong" | "seven-of-bamboos-mahjong-filled" | "seven-of-characters-mahjong" | "seven-of-circles-mahjong" | "seven-of-circles-mahjong-filled" | "shamrock" | "shinto-shrine" | "shocked-face-with-exploding-head" | "shopping-trolley" | "shopping-trolley-small" | "shortcake" | "shorts" | "shuffle-arrows" | "shuffle-arrows-filled" | "sina-weibo-small" | "six-of-bamboos-mahjong" | "six-of-bamboos-mahjong-filled" | "six-of-characters-mahjong" | "six-of-circles-mahjong" | "six-of-circles-mahjong-filled" | "size-emoji" | "size-emoji-small" | "size-text" | "size-text-filled" | "size-text-small" | "size-text-small-filled" | "sleeping-face" | "slice-of-pizza" | "slightly-frowning-face" | "slightly-frowning-face-filled" | "slightly-frowning-face-small" | "slightly-frowning-face-small-filled" | "slightly-smiling-face" | "slightly-smiling-face-filled" | "slightly-smiling-face-small" | "slightly-smiling-face-small-filled" | "smaller" | "smaller-small" | "smiling-face-with-heart-shaped-eyes" | "smiling-face-with-open-mouth" | "smiling-face-with-open-mouth-and-cold-sweat" | "smiling-face-with-open-mouth-and-smiling-eyes" | "smirking-face" | "smoking-symbol" | "snow-capped-mountain" | "soft-ice-cream" | "south-wind-mahjong" | "speaker-with-cancellation-stroke" | "speaker-with-one-sound-wave" | "speaker-with-three-sound-waves" | "speech-balloon" | "speech-balloon-empty" | "speech-balloon-empty-small" | "speech-balloon-empty-small-filled" | "speech-balloon-heart" | "speech-balloon-heart-small-filled" | "speech-balloon-info" | "speech-balloon-info-small-filled" | "speech-balloon-question" | "speech-balloon-question-small-filled" | "speech-balloon-small" | "speech-balloon-small-filled" | "spouting-whale" | "spring-mahjong" | "squint-smiling-face" | "squint-smiling-face-small" | "steam-locomotive" | "steaming-bowl" | "stopwatch-filled" | "stopwatch-small-filled" | "straight-ruler" | "summer-mahjong" | "sunflower" | "suspension-railway" | "swan" | "t-rex" | "t-rex-filled" | "t-rex-small" | "t-rex-small-filled" | "table-tennis-paddle-and-ball" | "telegram-alt" | "telegram-alt-small" | "television-filled" | "test-tube-filled" | "text-edit" | "text-edit-small" | "thinking-face" | "three-button-mouse" | "three-button-mouse-alt" | "three-networked-computers" | "three-of-bamboos-mahjong" | "three-of-bamboos-mahjong-filled" | "three-of-characters-mahjong" | "three-of-circles-mahjong" | "three-of-circles-mahjong-filled" | "thumb-up-face" | "thumbs-up-sign" | "thumbs-up-sign-filled" | "tiger-face" | "tiktok-small" | "top-hat-small" | "train-small" | "translate-arabic-latin" | "translate-cyrillic-latin" | "translate-greek-latin" | "translate-han-latin" | "translate-hangul-latin" | "translate-hebrew-latin" | "translate-hira-latin" | "translate-latin-han" | "translate-thai-latin" | "triangular-ruler" | "trolleybus" | "twitter-alt-small" | "twitter-small" | "two-button-mouse" | "two-button-mouse-filled" | "two-button-mouse-small" | "two-of-bamboos-mahjong" | "two-of-bamboos-mahjong-filled" | "two-of-characters-mahjong" | "two-of-circles-mahjong" | "two-of-circles-mahjong-filled" | "u1faaa" | "u1faaa-small" | "u1faab" | "u1faab-small" | "u1fad9" | "u1fae0" | "u1fae4" | "u1fae5" | "u1fae5-small" | "u1fae7" | "umbrella-on-ground" | "uni5475-box" | "uni5475-box-filled" | "uni54c8-box" | "uni54c8-box-filled" | "uni597d-box" | "uni597d-box-filled" | "uni5f3a-box" | "uni5f3a-box-filled" | "uni5f97-box" | "uni5f97-box-filled" | "uni6709-box" | "uni6709-box-filled" | "uni7121-box" | "uni7121-box-filled" | "uni7981-box" | "uni7981-box-filled" | "uni8279-circled" | "uni8279-circled-filled" | "uni8349-circled" | "uni8349-circled-filled" | "uni8d5e-box" | "uni8d5e-box-filled" | "unicode-small" | "unsplash-filled" | "upside-down-face" | "upside-down-face-filled" | "upside-down-face-small" | "upside-down-face-small-filled" | "video-game" | "video-game-filled" | "video-game-small" | "view-grid-alt" | "view-grid-small" | "view-list-small" | "waning-crescent-moon-symbol" | "waning-gibbous-moon-symbol" | "watermelon" | "waxing-crescent-moon-symbol" | "waxing-gibbous-moon-symbol" | "webcam-small" | "wechat-moments" | "wechat-moments-small" | "wechat-small" | "wechat-small-filled" | "west-wind-mahjong" | "whats-app" | "white-down-backhand-index" | "white-dragon-mahjong" | "white-dragon-mahjong-filled" | "white-heavy-check-mark" | "white-heavy-check-mark-filled" | "white-heavy-check-mark-small" | "white-heavy-check-mark-small-filled" | "white-left-backhand-index" | "white-medium-star" | "white-medium-star-filled" | "white-medium-star-small" | "white-medium-star-small-filled" | "white-right-backhand-index" | "white-up-backhand-index" | "whitesquare" | "whitesquare-small" | "wilted-flower" | "window-browser" | "window-browser-small" | "windows-alt" | "windows-alt2" | "windows-alt3" | "windows-small" | "wine-glass-filled" | "winking-face" | "winter-mahjong" | "wireless" | "wireless-filled" | "wireless-small" | "womans-boots" | "womans-hat" | "wrapped-present" | "wrench-filled" | "wrench-small-filled" | "writing-hand" | "xiaoyuzhou" | "zhubai" | "zipper-mouth-face" | "zoom-in-small" | "zoom-in-small-filled" | "zoom-out-small" | "zoom-out-small-filled">): import("react").JSX.Element;
|
|
1209
|
+
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"filter" | "android" | "windows" | "anchor" | "menu" | "code" | "label" | "circle" | "briefcase" | "clipboard" | "contrast" | "crown" | "cursor-text" | "download" | "eye" | "ferris-wheel" | "grid" | "handshake" | "hook" | "keyboard" | "magnet" | "newspaper" | "paperclip" | "pistol" | "podcast" | "ribbon" | "satellite" | "slot-machine" | "tent" | "carrot" | "mushroom" | "bird" | "bug" | "elephant" | "fish" | "shark" | "snail" | "snake" | "spider" | "turtle" | "share" | "speaker" | "battery" | "lock" | "snowflake" | "thermometer" | "apple" | "facebook" | "github" | "instagram" | "nintendo-switch" | "sina-weibo" | "steam" | "twitter" | "unicode" | "wechat" | "cloud" | "calendar" | "clock" | "television" | "watch" | "brush" | "pencil" | "file-cabinet" | "cookie" | "hamburger" | "bomb" | "flask" | "ghost" | "shield" | "skull" | "compass" | "axe" | "factory" | "hammer" | "wrench" | "balloon" | "candle" | "party-popper" | "bell" | "camera" | "fire" | "robot" | "toilet" | "webcam" | "abacus" | "circle-small" | "pill" | "microphone" | "saxophone" | "trumpet" | "violin" | "palm-tree" | "volcano" | "airplane" | "bus" | "train" | "atom" | "beaker" | "biohazard" | "microscope" | "radioactive" | "rocket" | "test-tube" | "cube" | "basket" | "kite" | "podium" | "torch" | "trophy" | "helicopter" | "elevator" | "view-grid" | "view-list" | "umbrella" | "envelope" | "hashtag" | "musical-note" | "shopping-bag" | "sparkles" | "alarm-clock" | "banana" | "droplet" | "figma" | "graduation-cap" | "guitar" | "hourglass" | "joystick" | "leafy-green" | "mic" | "mountain" | "rose" | "sandwich" | "scan" | "ship" | "syringe" | "zoom-in" | "zoom-out" | "address-book" | "adjustments" | "adjustments-filled" | "apple-filled" | "arrows-maximize" | "arrows-minimize" | "balloon-filled" | "battery-filled" | "bell-filled" | "bomb-filled" | "bread" | "christmas-tree" | "circle-filled" | "clipboard-filled" | "clock-filled" | "compass-filled" | "contrast-filled" | "cookie-filled" | "elevator-filled" | "file-vector" | "file-vector-filled" | "flask-filled" | "keyboard-filled" | "label-filled" | "lemon" | "line-height" | "location-pin" | "lock-filled" | "magnet-filled" | "microphone-filled" | "pill-filled" | "robot-face" | "seedling" | "stopwatch" | "zoom-in-filled" | "zoom-out-filled" | "alipay" | "bezier" | "eyeglasses" | "file-font" | "gear" | "paypal" | "playstation" | "telegram" | "tiktok" | "floppy-disk" | "wine-glass" | "restroom" | "pager" | "exit" | "fork" | "magic-wand" | "radio-button" | "strawberry" | "delivery-truck" | "scales" | "duplicate" | "bilibili" | "buddy" | "metro" | "notion" | "qq" | "unsplash" | "xiaohongshu" | "adobe-after-effects" | "adobe-animate" | "adobe-illustrator" | "adobe-photoshop" | "adobe-premiere" | "code-filled" | "pushpin-filled" | "robot-filled" | "wechat-filled" | "money-bag" | "boy" | "girl" | "potted-plant" | "glyphs" | "birthday-cake" | "open-book" | "app-store" | "finder" | "headphone" | "parallelogram" | "victory-hand" | "accordion" | "coconut" | "mango" | "octopus" | "shrug" | "tangerine" | "tomato" | "top-hat" | "address-book-filled" | "gear-filled" | "calendar-alt" | "grid-small" | "pear" | "t-shirt" | "desktop-computer" | "adobe-audition" | "bus-alt" | "menu-small" | "circle-small-filled" | "doge" | "facebook-alt" | "twitter-alt" | "accept-circle" | "accept-circle-filled" | "address-book-small" | "address-book-small-filled" | "adobe-after-effects-filled" | "adobe-animate-filled" | "adobe-audition-filled" | "adobe-illustrator-filled" | "adobe-in-design" | "adobe-in-design-filled" | "adobe-photoshop-filled" | "adobe-premiere-filled" | "adult" | "adult-filled" | "adult-small" | "adult-small-filled" | "advantage-circle" | "advantage-circle-filled" | "alarm-clock-filled" | "alarm-clock-small-filled" | "alien-monster" | "alien-monster-small" | "alipay-filled" | "alipay-small" | "alipay-small-filled" | "anchor-small" | "annotation" | "antenna-bars" | "antenna-bars-filled" | "anyway-fm" | "app-notifacation" | "app-notifacation-small" | "app-store-filled" | "apple-small" | "apple-small-filled" | "artist-palette" | "astonished-face" | "automobile" | "automobile-filled" | "automobile-small" | "autumn-mahjong" | "axe-filled" | "back-mahjong" | "back-mahjong-filled" | "ballot-box-with-check" | "ballot-box-with-check-filled" | "ballot-box-with-check-small" | "ballot-box-with-check-small-filled" | "bamboo-mahjong" | "banjo" | "battery-small" | "battery-small-filled" | "beaker-filled" | "beer-mug" | "bell-with-cancellation-stroke" | "bell-with-cancellation-stroke-filled" | "bezier-small" | "bigger" | "bigger-small" | "bilibili-small" | "billed-cap" | "billed-cap-small" | "bird-filled" | "black-circle-for-record" | "black-circle-for-record-filled" | "black-cross-square" | "black-cross-square-filled" | "black-cross-square-small" | "black-cross-square-small-filled" | "black-joker-cards" | "black-left-double-triangle" | "black-left-double-triangle-filled" | "black-left-double-triangle-with-vertical-bar" | "black-left-double-triangle-with-vertical-bar-filled" | "black-right-double-triangle" | "black-right-double-triangle-filled" | "black-right-double-triangle-with-vertical-bar" | "black-right-double-triangle-with-vertical-bar-filled" | "black-right-triangle-with-double-vertical-bar" | "black-right-triangle-with-double-vertical-bar-filled" | "black-scissors" | "black-scissors-filled" | "black-square-for-stop" | "black-square-for-stop-filled" | "black-sun-with-rays" | "black-sun-with-rays-filled" | "black-sun-with-rays-small" | "black-sun-with-rays-small-filled" | "bo-blog" | "bow-and-arrow" | "boy-filled" | "boy-small" | "boy-small-filled" | "briefcase-small" | "broken-heart" | "broken-heart-filled" | "building-construction" | "bye-face" | "calendar-small" | "cat-face" | "cat-face-small" | "checkmark-circled" | "checkmark-circled-filled" | "checkmark-circled-small" | "checkmark-circled-small-filled" | "cherries" | "cherries-filled" | "cherries-small" | "cherry-blossom" | "chestnut" | "chrysanthemum-mahjong" | "circled-information-source" | "circled-information-source-filled" | "circled-information-source-small" | "circled-information-source-small-filled" | "clapper-board" | "clapping-hands-sign" | "clipboard-small" | "clipboard-small-filled" | "clock-small-filled" | "closed-book" | "closed-book-filled" | "closed-book-small" | "closed-book-small-filled" | "closed-mailbox-lowered-flag" | "closed-mailbox-raised-flag" | "code-small" | "compass-small" | "compass-small-filled" | "confetti-ball" | "contrast-small" | "contrast-small-filled" | "cooked-rice" | "cool-box" | "cool-box-filled" | "copies" | "copies-filled" | "copies-small" | "copies-small-filled" | "cow-face" | "crab" | "crescent-moon" | "crescent-moon-filled" | "crescent-moon-small" | "crescent-moon-small-filled" | "cube-small" | "cup-with-straw" | "cup-with-straw-filled" | "cursing-face" | "cursor-arrow" | "cursor-arrow-filled" | "cursor-arrow-small" | "cursor-arrow-small-filled" | "cursor-text-small" | "dagger-knife" | "dagger-knife-filled" | "dagger-knife-small" | "dark-sunglasses" | "deciduous-tree" | "delivery-truck-filled" | "delivery-truck-small" | "delivery-truck-small-filled" | "desert-island" | "desktop-computer-filled" | "desktop-computer-small" | "desktop-computer-small-filled" | "device-rotate" | "diagonal-cross" | "diagonal-cross-small" | "die-face1" | "die-face1-filled" | "die-face1-small" | "die-face1-small-filled" | "die-face2" | "die-face2-filled" | "die-face2-small" | "die-face2-small-filled" | "die-face3" | "die-face3-filled" | "die-face3-small" | "die-face3-small-filled" | "die-face4" | "die-face4-filled" | "die-face4-small" | "die-face4-small-filled" | "die-face5" | "die-face5-filled" | "die-face5-small" | "die-face5-small-filled" | "die-face6" | "die-face6-filled" | "die-face6-small" | "die-face6-small-filled" | "directions-sign" | "display-dot-matrix" | "display-dot-matrix-small" | "dizzy-face" | "dna-double-helix" | "dog-face" | "doge-small" | "double-vertical-bar" | "double-vertical-bar-filled" | "download-small" | "dragon-face" | "dress" | "drop-of-blood" | "drum-with-drumsticks" | "duplicate-filled" | "duplicate-small" | "duplicate-small-filled" | "earth-globe-asia-australia" | "east-wind-mahjong" | "eight-of-bamboos-mahjong" | "eight-of-bamboos-mahjong-filled" | "eight-of-characters-mahjong" | "eight-of-circles-mahjong" | "eight-of-circles-mahjong-filled" | "ejectsymbol" | "ejectsymbol-filled" | "electric-light-bulb" | "electric-light-bulb-filled" | "electric-light-bulb-small" | "electric-light-bulb-small-filled" | "elevator-small-filled" | "entry" | "envelope-filled" | "envelope-small" | "envelope-small-filled" | "evergreen-tree" | "expressionless-face" | "extraterrestrial-alien" | "eye-small" | "face-eating-melon" | "face-savouring-delicious-food" | "face-screaming-in-fear" | "face-split" | "face-throwing-a-kiss" | "face-with-cold-sweat" | "face-with-head-bandage" | "face-with-medical-mask" | "face-with-no-good-gesture" | "face-with-ok-gesture" | "face-with-open-mouth-vomiting" | "face-with-open-mouth-zerowidthjoiner-dash-symbol" | "face-with-party-horn-and-party-hat" | "face-with-pleading-eyes" | "face-with-stuck-out-tongue-and-tightly-closed-eyes" | "face-with-tears-of-joy" | "facebook-alt-small" | "facebook-small" | "factory-small" | "file-folder" | "file-folder-filled" | "file-folder-small" | "file-folder-small-filled" | "file-font-filled" | "file-font-small-filled" | "file-graphics" | "file-graphics-filled" | "file-graphics-small-filled" | "file-otf" | "file-otf-filled" | "file-otf-small-filled" | "file-ttf" | "file-ttf-filled" | "file-ttf-small-filled" | "file-vector-small-filled" | "file-woff" | "file-woff-filled" | "file-woff-small-filled" | "file-woff2" | "file-woff2-filled" | "file-woff2-small-filled" | "film-frames" | "film-frames-small" | "filter-small" | "finder-small" | "fire-small" | "first-quarter-moon-symbol" | "fist-palm-salute" | "fisted-hand-sign" | "five-of-bamboos-mahjong" | "five-of-bamboos-mahjong-filled" | "five-of-characters-mahjong" | "five-of-circles-mahjong" | "five-of-circles-mahjong-filled" | "floppy-disk-filled" | "floppy-disk-small" | "floppy-disk-small-filled" | "flying-saucer" | "fork-and-knife" | "four-leaf-clover" | "four-of-bamboos-mahjong" | "four-of-bamboos-mahjong-filled" | "four-of-characters-mahjong" | "four-of-circles-mahjong" | "four-of-circles-mahjong-filled" | "fox-face" | "frog-face" | "full-moon-symbol" | "game-die" | "game-die-small" | "gem-stone" | "girl-filled" | "girl-small" | "girl-small-filled" | "github-small" | "globe-meridians" | "globe-meridians-small" | "glowing-star" | "glyphs-filled" | "grapes" | "grass-cao-symbol" | "green-dragon-mahjong" | "grid-disabled" | "grid-enabled" | "grinning-face-with-star-eyes" | "grinningfacewithonelargeandoneeye" | "gyroscope" | "hamburger-small" | "hammer-filled" | "happy-person-raising-one-hand" | "hashtag-small" | "headphone-filled" | "heart-black-suit" | "heart-black-suit-circled" | "heart-black-suit-circled-small" | "heart-black-suit-small" | "heart-white-suit" | "heart-white-suit-circled" | "heart-white-suit-circled-filled" | "heart-white-suit-circled-small" | "heart-white-suit-circled-small-filled" | "heart-white-suit-small" | "heavy-dollar-sign" | "heavy-dollar-sign-small" | "herb" | "hibiscus" | "high-heeled-shoe" | "high-speed-train" | "high-voltage-sign" | "hocho" | "hocho-filled" | "hocho-small" | "hocho-small-filled" | "horse-face" | "hot-beverage" | "hourglass-with-flowing-sand" | "house-building" | "house-building-small" | "house-buildings" | "house-buildings-small" | "hundred-points-symbol" | "information-desk-person" | "informationsource" | "informationsource-filled" | "informationsource-small" | "informationsource-small-filled" | "input-latin-capital-letters" | "input-latin-capital-letters-filled" | "input-latin-lower-letters" | "input-latin-lower-letters-filled" | "input-numbers" | "input-numbers-filled" | "instagram-small" | "invert" | "invert-small" | "java-sparrow-silver" | "java-sparrow-white" | "jeans" | "jigsaw-puzzle" | "jigsaw-puzzle-piece" | "jigsaw-puzzle-piece-small" | "joker-mahjong" | "keyboard-small-filled" | "keycap-asterisk" | "keycap-asterisk-filled" | "keycap-asterisk-small" | "keycap-asterisk-small-filled" | "keycap-command" | "keycap-command-filled" | "keycap-command-small" | "keycap-command-small-filled" | "keycap-control" | "keycap-control-filled" | "keycap-control-small" | "keycap-control-small-filled" | "keycap-digit-eight" | "keycap-digit-eight-filled" | "keycap-digit-eight-small" | "keycap-digit-eight-small-filled" | "keycap-digit-five" | "keycap-digit-five-filled" | "keycap-digit-five-small" | "keycap-digit-five-small-filled" | "keycap-digit-four" | "keycap-digit-four-filled" | "keycap-digit-four-small" | "keycap-digit-four-small-filled" | "keycap-digit-nine" | "keycap-digit-nine-filled" | "keycap-digit-nine-small" | "keycap-digit-nine-small-filled" | "keycap-digit-one" | "keycap-digit-one-filled" | "keycap-digit-one-small" | "keycap-digit-one-small-filled" | "keycap-digit-seven" | "keycap-digit-seven-filled" | "keycap-digit-seven-small" | "keycap-digit-seven-small-filled" | "keycap-digit-six" | "keycap-digit-six-filled" | "keycap-digit-six-small" | "keycap-digit-six-small-filled" | "keycap-digit-three" | "keycap-digit-three-filled" | "keycap-digit-three-small" | "keycap-digit-three-small-filled" | "keycap-digit-two" | "keycap-digit-two-filled" | "keycap-digit-two-small" | "keycap-digit-two-small-filled" | "keycap-digit-zero" | "keycap-digit-zero-filled" | "keycap-digit-zero-small" | "keycap-digit-zero-small-filled" | "keycap-eleven" | "keycap-eleven-filled" | "keycap-eleven-small" | "keycap-eleven-small-filled" | "keycap-fn" | "keycap-fn-filled" | "keycap-fn-small" | "keycap-fn-small-filled" | "keycap-number-sign" | "keycap-number-sign-filled" | "keycap-number-sign-small" | "keycap-number-sign-small-filled" | "keycap-option" | "keycap-option-filled" | "keycap-option-small" | "keycap-option-small-filled" | "keycap-return" | "keycap-return-filled" | "keycap-return-small" | "keycap-return-small-filled" | "keycap-shift" | "keycap-shift-filled" | "keycap-shift-small" | "keycap-shift-small-filled" | "keycap-tab" | "keycap-tab-filled" | "keycap-tab-small" | "keycap-tab-small-filled" | "keycap-ten" | "keycap-ten-filled" | "keycap-ten-small" | "keycap-ten-small-filled" | "keycap-windows" | "keycap-windows-filled" | "keycap-windows-small" | "keycap-windows-small-filled" | "ko-ko-kata-box" | "ko-ko-kata-box-filled" | "label-small" | "label-small-filled" | "language-cyrillic" | "language-cyrillic-filled" | "language-cyrillic-small" | "language-cyrillic-small-filled" | "language-greek" | "language-greek-filled" | "language-greek-small" | "language-greek-small-filled" | "language-han" | "language-han-filled" | "language-han-small" | "language-han-small-filled" | "language-hangul" | "language-hangul-filled" | "language-hangul-small" | "language-hangul-small-filled" | "language-hebrew" | "language-hebrew-filled" | "language-hebrew-small" | "language-hebrew-small-filled" | "language-hira" | "language-hira-filled" | "language-hira-small" | "language-hira-small-filled" | "language-latin" | "language-latin-filled" | "language-latin-small" | "language-latin-small-filled" | "language-thai" | "language-thai-filled" | "language-thai-small" | "language-thai-small-filled" | "large-question-face" | "last-quarter-moon-symbol" | "left-arrow-circled" | "left-arrow-circled-filled" | "left-arrow-circled-small" | "left-arrow-circled-small-filled" | "left-hook-arrow" | "left-hook-arrow-filled" | "left-hook-arrow-small" | "left-hook-arrow-small-filled" | "left-magnifying-glass" | "left-magnifying-glass-filled" | "left-magnifying-glass-small" | "left-magnifying-glass-small-filled" | "light-rail" | "line-gap" | "line-gap-small" | "line-height-small" | "link-symbol" | "link-symbol-small" | "location-pin-filled" | "location-pin-small" | "location-pin-small-filled" | "lock-small-filled" | "loudly-crying-face" | "love" | "memo" | "memo-filled" | "memo-small" | "memo-small-filled" | "mic-mv51" | "mic-small" | "microbe" | "milk-package" | "milk-package-small" | "mobile-phone" | "mobile-phone-alt" | "mobile-phone-alt2" | "mobile-phone-alt2-small" | "money-bag-cny" | "money-bag-eur" | "money-bag-filled" | "money-bag-frf" | "money-bag-gbp" | "money-bag-small" | "money-bag-usd" | "money-mouth-face" | "monkey-face" | "monospaced" | "mouse-face" | "mouth" | "movie-camera" | "multiple-musical-notes" | "musical-keyboard" | "musical-keyboard-filled" | "musical-note-small" | "musical-score" | "nerd-face" | "netease-music" | "netease-music-small" | "neutral-face" | "new-moon-symbol" | "nine-of-bamboos-mahjong" | "nine-of-bamboos-mahjong-filled" | "nine-of-characters-mahjong" | "nine-of-circles-mahjong" | "nine-of-circles-mahjong-filled" | "no-entry-sign" | "no-one-under-eighteen-symbol" | "no-one-under-eighteen-symbol-filled" | "no-smoking-symbol" | "north-wind-mahjong" | "ok-box" | "ok-box-filled" | "ok-hand-sign" | "ok-hand-sign-small" | "one-of-bamboos-mahjong" | "one-of-bamboos-mahjong-ss02" | "one-of-characters-mahjong" | "one-of-circles-mahjong" | "one-of-circles-mahjong-filled" | "onion" | "open-book-small" | "open-lock" | "open-lock-filled" | "open-lock-small-filled" | "open-mailbox-lowered-flag" | "open-mailbox-raised-flag" | "optical-disc" | "option-key" | "orchid-mahjong" | "orthogon7x7" | "orthogon7x9" | "orthogon9x7" | "orthogon9x9" | "otfeature-acps" | "otfeature-acps-small-filled" | "otfeature-c2sc" | "otfeature-c2sc-small-filled" | "otfeature-calt" | "otfeature-calt-small-filled" | "otfeature-ccmp" | "otfeature-ccmp-small-filled" | "otfeature-dlig" | "otfeature-dlig-small-filled" | "otfeature-frac" | "otfeature-frac-small-filled" | "otfeature-fwid" | "otfeature-fwid-small-filled" | "otfeature-hrzt" | "otfeature-hrzt-small-filled" | "otfeature-hwid" | "otfeature-hwid-small-filled" | "otfeature-liga" | "otfeature-liga-small-filled" | "otfeature-onum" | "otfeature-onum-small-filled" | "otfeature-ordn" | "otfeature-ordn-small-filled" | "otfeature-smcp" | "otfeature-smcp-small-filled" | "otfeature-ss01" | "otfeature-ss01-small-filled" | "otfeature-ss02" | "otfeature-ss02-small-filled" | "otfeature-ss03" | "otfeature-ss03-small-filled" | "otfeature-subs" | "otfeature-subs-small-filled" | "otfeature-sups" | "otfeature-sups-small-filled" | "otfeature-vert" | "otfeature-vert-small-filled" | "otfeature-zero" | "otfeature-zero-small-filled" | "page-curl" | "page-curl-filled" | "page-curl-small" | "page-curl-small-filled" | "page-facing-up" | "page-facing-up-filled" | "page-facing-up-small" | "page-facing-up-small-filled" | "page-graphics" | "page-graphics-filled" | "page-graphics-small-filled" | "palm-face" | "paperclip-small" | "party-popper-small" | "peach" | "pear-logo" | "pear-logo-filled" | "pear-logo-small" | "pear-logo-small-filled" | "peek-face" | "pencil-small" | "person-with-folded-hands" | "person-with-folded-hands-filled" | "personal-computer" | "petri-dish" | "pig-face" | "pile-of-poo" | "pineapple" | "pistol-filled" | "placard" | "placard-alt" | "placard-small" | "plum-mahjong" | "podcast-small" | "potable-water-symbol" | "poultry-leg" | "poultry-leg-filled" | "propellor" | "public-address-loudspeaker" | "public-address-loudspeaker-small" | "pushpin" | "pushpin-small" | "pushpin-small-filled" | "qq-filled" | "question-face" | "rabbit-face" | "radio-button-small" | "radioactive-small" | "railway-car" | "raised-back-of-hand" | "raised-back-of-hand-small" | "raised-hand" | "raised-hand-small" | "red-apple" | "red-apple-small" | "red-dragon-mahjong" | "red-dragon-mahjong-filled" | "repeat-arrow" | "repeat-arrow-filled" | "restroom-filled" | "restroom-small-filled" | "revert" | "right-arrow-circled" | "right-arrow-circled-filled" | "right-arrow-circled-small" | "right-arrow-circled-small-filled" | "right-black-triangle" | "right-black-triangle-filled" | "right-hook-arrow" | "right-hook-arrow-filled" | "right-hook-arrow-small" | "right-hook-arrow-small-filled" | "right-magnifying-glass" | "right-magnifying-glass-filled" | "right-magnifying-glass-small" | "right-magnifying-glass-small-filled" | "right-then-curving-down-arrow" | "right-then-curving-down-arrow-filled" | "right-then-curving-down-arrow-small" | "right-then-curving-down-arrow-small-filled" | "right-then-curving-up-arrow" | "right-then-curving-up-arrow-filled" | "right-then-curving-up-arrow-small" | "right-then-curving-up-arrow-small-filled" | "roasted-sweet-potato" | "rostrum" | "round-pushpin" | "round-pushpin-filled" | "round-pushpin-small" | "round-pushpin-small-filled" | "ruler-right-angle" | "satellite-antenna" | "sauropod" | "saxophone-filled" | "scan-small" | "secret-han-circled" | "secret-han-circled-filled" | "seven-of-bamboos-mahjong" | "seven-of-bamboos-mahjong-filled" | "seven-of-characters-mahjong" | "seven-of-circles-mahjong" | "seven-of-circles-mahjong-filled" | "shamrock" | "shinto-shrine" | "shocked-face-with-exploding-head" | "shopping-trolley" | "shopping-trolley-small" | "shortcake" | "shorts" | "shuffle-arrows" | "shuffle-arrows-filled" | "sina-weibo-small" | "six-of-bamboos-mahjong" | "six-of-bamboos-mahjong-filled" | "six-of-characters-mahjong" | "six-of-circles-mahjong" | "six-of-circles-mahjong-filled" | "size-emoji" | "size-emoji-small" | "size-text" | "size-text-filled" | "size-text-small" | "size-text-small-filled" | "sleeping-face" | "slice-of-pizza" | "slightly-frowning-face" | "slightly-frowning-face-filled" | "slightly-frowning-face-small" | "slightly-frowning-face-small-filled" | "slightly-smiling-face" | "slightly-smiling-face-filled" | "slightly-smiling-face-small" | "slightly-smiling-face-small-filled" | "smaller" | "smaller-small" | "smiling-face-with-heart-shaped-eyes" | "smiling-face-with-open-mouth" | "smiling-face-with-open-mouth-and-cold-sweat" | "smiling-face-with-open-mouth-and-smiling-eyes" | "smirking-face" | "smoking-symbol" | "snow-capped-mountain" | "soft-ice-cream" | "south-wind-mahjong" | "speaker-with-cancellation-stroke" | "speaker-with-one-sound-wave" | "speaker-with-three-sound-waves" | "speech-balloon" | "speech-balloon-empty" | "speech-balloon-empty-small" | "speech-balloon-empty-small-filled" | "speech-balloon-heart" | "speech-balloon-heart-small-filled" | "speech-balloon-info" | "speech-balloon-info-small-filled" | "speech-balloon-question" | "speech-balloon-question-small-filled" | "speech-balloon-small" | "speech-balloon-small-filled" | "spouting-whale" | "spring-mahjong" | "squint-smiling-face" | "squint-smiling-face-small" | "steam-locomotive" | "steaming-bowl" | "stopwatch-filled" | "stopwatch-small-filled" | "straight-ruler" | "summer-mahjong" | "sunflower" | "suspension-railway" | "swan" | "t-rex" | "t-rex-filled" | "t-rex-small" | "t-rex-small-filled" | "table-tennis-paddle-and-ball" | "telegram-alt" | "telegram-alt-small" | "television-filled" | "test-tube-filled" | "text-edit" | "text-edit-small" | "thinking-face" | "three-button-mouse" | "three-button-mouse-alt" | "three-networked-computers" | "three-of-bamboos-mahjong" | "three-of-bamboos-mahjong-filled" | "three-of-characters-mahjong" | "three-of-circles-mahjong" | "three-of-circles-mahjong-filled" | "thumb-up-face" | "thumbs-up-sign" | "thumbs-up-sign-filled" | "tiger-face" | "tiktok-small" | "top-hat-small" | "train-small" | "translate-arabic-latin" | "translate-cyrillic-latin" | "translate-greek-latin" | "translate-han-latin" | "translate-hangul-latin" | "translate-hebrew-latin" | "translate-hira-latin" | "translate-latin-han" | "translate-thai-latin" | "triangular-ruler" | "trolleybus" | "twitter-alt-small" | "twitter-small" | "two-button-mouse" | "two-button-mouse-filled" | "two-button-mouse-small" | "two-of-bamboos-mahjong" | "two-of-bamboos-mahjong-filled" | "two-of-characters-mahjong" | "two-of-circles-mahjong" | "two-of-circles-mahjong-filled" | "u1faaa" | "u1faaa-small" | "u1faab" | "u1faab-small" | "u1fad9" | "u1fae0" | "u1fae4" | "u1fae5" | "u1fae5-small" | "u1fae7" | "umbrella-on-ground" | "uni5475-box" | "uni5475-box-filled" | "uni54c8-box" | "uni54c8-box-filled" | "uni597d-box" | "uni597d-box-filled" | "uni5f3a-box" | "uni5f3a-box-filled" | "uni5f97-box" | "uni5f97-box-filled" | "uni6709-box" | "uni6709-box-filled" | "uni7121-box" | "uni7121-box-filled" | "uni7981-box" | "uni7981-box-filled" | "uni8279-circled" | "uni8279-circled-filled" | "uni8349-circled" | "uni8349-circled-filled" | "uni8d5e-box" | "uni8d5e-box-filled" | "unicode-small" | "unsplash-filled" | "upside-down-face" | "upside-down-face-filled" | "upside-down-face-small" | "upside-down-face-small-filled" | "video-game" | "video-game-filled" | "video-game-small" | "view-grid-alt" | "view-grid-small" | "view-list-small" | "waning-crescent-moon-symbol" | "waning-gibbous-moon-symbol" | "watermelon" | "waxing-crescent-moon-symbol" | "waxing-gibbous-moon-symbol" | "webcam-small" | "wechat-moments" | "wechat-moments-small" | "wechat-small" | "wechat-small-filled" | "west-wind-mahjong" | "whats-app" | "white-down-backhand-index" | "white-dragon-mahjong" | "white-dragon-mahjong-filled" | "white-heavy-check-mark" | "white-heavy-check-mark-filled" | "white-heavy-check-mark-small" | "white-heavy-check-mark-small-filled" | "white-left-backhand-index" | "white-medium-star" | "white-medium-star-filled" | "white-medium-star-small" | "white-medium-star-small-filled" | "white-right-backhand-index" | "white-up-backhand-index" | "whitesquare" | "whitesquare-small" | "wilted-flower" | "window-browser" | "window-browser-small" | "windows-alt" | "windows-alt2" | "windows-alt3" | "windows-small" | "wine-glass-filled" | "winking-face" | "winter-mahjong" | "wireless" | "wireless-filled" | "wireless-small" | "womans-boots" | "womans-hat" | "wrapped-present" | "wrench-filled" | "wrench-small-filled" | "writing-hand" | "xiaoyuzhou" | "zhubai" | "zipper-mouth-face" | "zoom-in-small" | "zoom-in-small-filled" | "zoom-out-small" | "zoom-out-small-filled">): import("react").JSX.Element;
|
|
1210
1210
|
displayName: string;
|
|
1211
1211
|
};
|
|
1212
1212
|
export {};
|
|
@@ -99,7 +99,7 @@ declare const duo_iconsIconNames: {
|
|
|
99
99
|
};
|
|
100
100
|
export type DuoIconsIconName = keyof typeof duo_iconsIconNames;
|
|
101
101
|
export declare const DuoIcons: {
|
|
102
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"android" | "menu" | "marker" | "book" | "bookmark" | "briefcase" | "certificate" | "chip" | "clipboard" | "id-card" | "message" | "target" | "alert-octagon" | "bug" | "battery" | "car" | "bank" | "credit-card" | "apple" | "box" | "palette" | "calendar" | "clock" | "brush" | "file" | "folder-open" | "folder-upload" | "cake" | "check-circle" | "compass" | "candle" | "bell" | "camera" | "fire" | "lamp" | "chart-pie" | "bus" | "bell-badge" | "baby-carriage" | "bridge" | "rocket" | "currency-euro" | "shopping-bag" | "sun" | "user" | "airplay" | "award" | "building" | "clapperboard" | "cloud-lightning" | "cloud-snow" | "info" | "settings" | "smartphone" | "alert-triangle" | "align-center" | "book-2" | "bread" | "confetti" | "dashboard" | "discount" | "lamp-2" | "location" | "message-2" | "moon-2" | "moon-stars" | "slideshow" | "world" | "align-bottom" | "app" | "smartwatch" | "campground" | "add-circle" | "toggle" | "appstore" | "upload-file" | "g-translate" | "book-3" | "box-2" | "coin-stack" | "translation" | "app-dots" | "approved" | "brush-2" | "camera-square" | "computer-camera" | "computer-camera-off" | "disk" | "message-3" | "smartphone-vibration" | "user-card">): import("react").JSX.Element;
|
|
102
|
+
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"android" | "menu" | "marker" | "book" | "bookmark" | "briefcase" | "certificate" | "chip" | "clipboard" | "id-card" | "message" | "target" | "alert-octagon" | "bug" | "battery" | "car" | "bank" | "credit-card" | "apple" | "box" | "palette" | "calendar" | "clock" | "brush" | "file" | "folder-open" | "folder-upload" | "cake" | "check-circle" | "compass" | "candle" | "bell" | "camera" | "fire" | "lamp" | "chart-pie" | "bus" | "bell-badge" | "baby-carriage" | "bridge" | "rocket" | "currency-euro" | "shopping-bag" | "sun" | "user" | "airplay" | "award" | "building" | "clapperboard" | "cloud-lightning" | "cloud-snow" | "info" | "settings" | "smartphone" | "alert-triangle" | "align-center" | "book-2" | "bread" | "confetti" | "dashboard" | "discount" | "lamp-2" | "location" | "message-2" | "moon-2" | "moon-stars" | "slideshow" | "world" | "align-bottom" | "app" | "smartwatch" | "campground" | "add-circle" | "toggle" | "appstore" | "upload-file" | "g-translate" | "book-3" | "box-2" | "coin-stack" | "translation" | "app-dots" | "approved" | "brush-2" | "camera-square" | "computer-camera" | "computer-camera-off" | "disk" | "message-3" | "smartphone-vibration" | "user-card">): import("react").JSX.Element;
|
|
103
103
|
displayName: string;
|
|
104
104
|
};
|
|
105
105
|
export {};
|
|
@@ -78,7 +78,7 @@ declare const eiIconNames: {
|
|
|
78
78
|
};
|
|
79
79
|
export type EiIconName = keyof typeof eiIconNames;
|
|
80
80
|
export declare const Ei: {
|
|
81
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"
|
|
81
|
+
({ 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<"search" | "link" | "pointer" | "image" | "archive" | "comment" | "eye" | "paperclip" | "redo" | "tag" | "undo" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "refresh" | "lock" | "credit-card" | "calendar" | "clock" | "pencil" | "check" | "close" | "heart" | "bell" | "camera" | "play" | "exclamation" | "minus" | "plus" | "star" | "cart" | "trophy" | "envelope" | "trash" | "user" | "external-link" | "unlock" | "location" | "gear" | "question" | "retweet" | "spinner" | "navicon" | "chart" | "like" | "close-o" | "sc-facebook" | "sc-github" | "sc-google-plus" | "sc-instagram" | "sc-linkedin" | "sc-odnoklassniki" | "sc-pinterest" | "sc-skype" | "sc-soundcloud" | "sc-telegram" | "sc-tumblr" | "sc-twitter" | "sc-vimeo" | "sc-vk" | "sc-youtube" | "share-apple" | "share-google" | "spinner-2" | "spinner-3">): import("react").JSX.Element;
|
|
82
82
|
displayName: string;
|
|
83
83
|
};
|
|
84
84
|
export {};
|
|
@@ -312,7 +312,7 @@ declare const elIconNames: {
|
|
|
312
312
|
};
|
|
313
313
|
export type ElIconName = keyof typeof elIconNames;
|
|
314
314
|
export declare const El: {
|
|
315
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"filter" | "error" | "
|
|
315
|
+
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"filter" | "error" | "search" | "repeat" | "bold" | "fontsize" | "link" | "signal" | "list" | "key" | "picture" | "th" | "time" | "video" | "path" | "stop" | "adjust" | "asterisk" | "barcode" | "book" | "bookmark" | "braille" | "briefcase" | "broom" | "bullhorn" | "certificate" | "comment" | "download" | "eject" | "fast-forward" | "flag" | "fullscreen" | "graph" | "group" | "inbox" | "magnet" | "network" | "play-circle" | "podcast" | "qrcode" | "rss" | "step-backward" | "step-forward" | "tag" | "upload" | "leaf" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "forward" | "refresh" | "share" | "headphones" | "music" | "speaker" | "volume-off" | "car" | "lock" | "credit-card" | "deviantart" | "facebook" | "github" | "instagram" | "linkedin" | "pinterest" | "reddit" | "skype" | "soundcloud" | "spotify" | "twitter" | "vimeo" | "wordpress" | "youtube" | "phone" | "glasses" | "cloud" | "calendar" | "laptop" | "brush" | "pencil" | "file-edit" | "file" | "folder" | "folder-open" | "check" | "heart" | "puzzle" | "compass" | "map-marker" | "wrench" | "gift" | "bell" | "camera" | "fire" | "home" | "pause" | "play" | "record" | "minus" | "plus" | "wheelchair" | "film" | "cog" | "cogs" | "star" | "road" | "backward" | "envelope" | "globe-alt" | "italic" | "paper-clip" | "photo" | "scissors" | "shopping-cart" | "trash" | "user" | "circle-arrow-down" | "circle-arrow-left" | "circle-arrow-right" | "circle-arrow-up" | "dribbble" | "globe" | "hourglass" | "mic" | "move" | "plane" | "tags" | "thumbs-down" | "thumbs-up" | "zoom-in" | "zoom-out" | "align-center" | "align-justify" | "align-left" | "align-right" | "edit" | "unlock" | "address-book" | "bulb" | "caret-down" | "caret-left" | "caret-right" | "caret-up" | "dashboard" | "glass" | "info-circle" | "quotes" | "screenshot" | "behance" | "css" | "hdd" | "magic" | "person" | "question" | "universal-access" | "volume-down" | "volume-up" | "retweet" | "text-height" | "text-width" | "print" | "quote-right" | "font" | "child" | "fork" | "screen" | "video-chat" | "idea" | "female" | "hand-left" | "hand-right" | "male" | "remove" | "remove-circle" | "blogger" | "digg" | "flickr" | "foursquare" | "livejournal" | "myspace" | "plurk" | "redux" | "slideshare" | "stackoverflow" | "tumblr" | "viadeo" | "lastfm" | "opensource" | "w3c" | "blind" | "list-alt" | "home-alt" | "eye-open" | "lines" | "ok" | "tasks" | "friendfeed" | "friendfeed-rect" | "github-text" | "picasa" | "error-alt" | "lock-alt" | "search-alt" | "share-alt" | "trash-alt" | "adjust-alt" | "flag-alt" | "hand-down" | "hand-up" | "folder-close" | "delicious" | "stumbleupon" | "cc" | "smiley" | "star-empty" | "eur" | "gbp" | "usd" | "googleplus" | "video-alt" | "adult" | "address-book-alt" | "asl" | "ban-circle" | "bookmark-empty" | "calendar-sign" | "check-empty" | "cloud-alt" | "cog-alt" | "comment-alt" | "compass-alt" | "download-alt" | "envelope-alt" | "exclamation-sign" | "eye-close" | "facetime-video" | "fast-backward" | "file-alt" | "file-edit-alt" | "file-new" | "file-new-alt" | "folder-sign" | "forward-alt" | "graph-alt" | "group-alt" | "guidedog" | "hearing-impaired" | "heart-alt" | "heart-empty" | "idea-alt" | "inbox-alt" | "inbox-box" | "indent-left" | "indent-right" | "iphone-home" | "laptop-alt" | "map-marker-alt" | "mic-alt" | "minus-sign" | "off" | "ok-circle" | "ok-sign" | "paper-clip-alt" | "pause-alt" | "pencil-alt" | "phone-alt" | "photo-alt" | "play-alt" | "plurk-alt" | "plus-sign" | "question-sign" | "quote-alt" | "quote-right-alt" | "random" | "remove-sign" | "repeat-alt" | "resize-full" | "resize-horizontal" | "resize-small" | "resize-vertical" | "return-key" | "reverse-alt" | "screen-alt" | "shopping-cart-sign" | "smiley-alt" | "star-alt" | "stop-alt" | "th-large" | "th-list" | "time-alt" | "tint" | "torso" | "unlock-alt" | "view-mode" | "vkontakte" | "warning-sign" | "website" | "website-alt" | "wrench-alt">): import("react").JSX.Element;
|
|
316
316
|
displayName: string;
|
|
317
317
|
};
|
|
318
318
|
export {};
|