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
|
@@ -378,7 +378,7 @@ declare const oouiIconNames: {
|
|
|
378
378
|
};
|
|
379
379
|
export type OouiIconName = keyof typeof oouiIconNames;
|
|
380
380
|
export declare const Ooui: {
|
|
381
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"function" | "success" | "error" | "
|
|
381
|
+
({ 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<"function" | "success" | "error" | "search" | "link" | "image" | "alert" | "menu" | "key" | "code" | "table" | "stop" | "attachment" | "bookmark" | "bookmark-outline" | "cancel" | "check-all" | "download" | "eye" | "eye-closed" | "image-broken" | "keyboard" | "message" | "network" | "network-off" | "ocr" | "tray" | "upload" | "arrow-down" | "arrow-up" | "reload" | "restore" | "share" | "lock" | "database" | "calendar" | "clock" | "history" | "check" | "close" | "heart" | "bell" | "bell-outline" | "camera" | "home" | "lightbulb" | "pause" | "play" | "power" | "printer" | "robot" | "star" | "table-merge-cells" | "view-compact" | "language" | "map-pin" | "moon" | "qr-code" | "trash" | "window" | "ellipsis" | "expand" | "globe" | "hand" | "info" | "move" | "settings" | "zoom-in" | "zoom-out" | "align-center" | "align-left" | "align-right" | "edit" | "highlight" | "sandbox" | "subtract" | "draggable" | "add" | "user-avatar" | "strikethrough-s" | "special-character" | "block" | "collapse" | "full-screen" | "info-filled" | "chart" | "exit-fullscreen" | "list-numbered-rtl" | "bigger" | "musical-score" | "smaller" | "lab-flask" | "push-pin" | "clear" | "notice" | "text-style" | "reference" | "article-search" | "appearance" | "arrow-next-ltr" | "arrow-next-rtl" | "arrow-previous-ltr" | "arrow-previous-rtl" | "article-add" | "article-check" | "article-disambiguation-ltr" | "article-disambiguation-rtl" | "article-ltr" | "article-not-found-ltr" | "article-not-found-rtl" | "article-redirect-ltr" | "article-redirect-rtl" | "article-rtl" | "articles-ltr" | "articles-rtl" | "articles-search-ltr" | "articles-search-rtl" | "bold-a" | "bold-arab-ain" | "bold-arab-dad" | "bold-arab-jeem" | "bold-armn-to" | "bold-b" | "bold-cyrl-be" | "bold-cyrl-palochka" | "bold-cyrl-te" | "bold-cyrl-zhe" | "bold-f" | "bold-g" | "bold-geor-man" | "bold-l" | "bold-n" | "bold-q" | "bold-v" | "book-ltr" | "book-rtl" | "bookmark-list-ltr" | "bookmark-list-rtl" | "bright" | "browser-ltr" | "browser-rtl" | "copy-ltr" | "copy-rtl" | "cut-ltr" | "cut-rtl" | "die" | "double-chevron-end-ltr" | "double-chevron-end-rtl" | "double-chevron-start-ltr" | "double-chevron-start-rtl" | "down-triangle" | "edit-lock" | "edit-undo-ltr" | "edit-undo-rtl" | "feedback-ltr" | "feedback-rtl" | "flag-ltr" | "flag-rtl" | "folder-placeholder-ltr" | "folder-placeholder-rtl" | "function-argument-ltr" | "function-argument-rtl" | "funnel-ltr" | "funnel-rtl" | "half-bright-ltr" | "half-bright-rtl" | "half-star-ltr" | "half-star-rtl" | "help-ltr" | "help-notice-ltr" | "help-notice-rtl" | "help-rtl" | "hieroglyph" | "image-add-ltr" | "image-add-rtl" | "image-gallery" | "image-layout-basic" | "image-layout-frame" | "image-layout-frameless" | "image-layout-thumbnail" | "image-lock-ltr" | "image-lock-rtl" | "indent-ltr" | "indent-rtl" | "instance-ltr" | "instance-rtl" | "italic-a" | "italic-arab-keheh-jeem" | "italic-arab-meem" | "italic-arab-teh" | "italic-armn-sha" | "italic-c" | "italic-d" | "italic-e" | "italic-geor-kan" | "italic-i" | "italic-k" | "italic-s" | "journal-ltr" | "journal-rtl" | "larger-text" | "layout-ltr" | "layout-rtl" | "link-external-ltr" | "link-external-rtl" | "link-secure" | "list-bullet-ltr" | "list-bullet-rtl" | "list-numbered-ltr" | "literal-ltr" | "literal-rtl" | "log-in-ltr" | "log-in-rtl" | "log-out-ltr" | "log-out-rtl" | "logo-cc" | "logo-codex" | "logo-media-wiki" | "logo-meta-wiki" | "logo-wikibooks" | "logo-wikidata" | "logo-wikifunctions" | "logo-wikimedia" | "logo-wikimedia-commons" | "logo-wikimedia-discovery" | "logo-wikinews" | "logo-wikipedia" | "logo-wikiquote" | "logo-wikisource" | "logo-wikispecies" | "logo-wikiversity" | "logo-wikivoyage" | "logo-wiktionary" | "map-ltr" | "map-pin-add" | "map-rtl" | "map-trail" | "markup" | "mathematics" | "mathematics-display-block" | "mathematics-display-default" | "mathematics-display-inline" | "merge-ltr" | "merge-rtl" | "move-first-ltr" | "move-first-rtl" | "move-last-ltr" | "move-last-rtl" | "new-window-ltr" | "new-window-rtl" | "newline-ltr" | "newline-rtl" | "newspaper-ltr" | "newspaper-rtl" | "next-ltr" | "next-rtl" | "no-wiki-text" | "not-bright" | "ongoing-conversation-ltr" | "ongoing-conversation-rtl" | "outdent-ltr" | "outdent-rtl" | "outline-ltr" | "outline-rtl" | "page-settings" | "palette-ltr" | "palette-rtl" | "paste-ltr" | "paste-rtl" | "previous-ltr" | "previous-rtl" | "puzzle-ltr" | "puzzle-rtl" | "quotes-ltr" | "quotes-rtl" | "recent-changes-ltr" | "recent-changes-rtl" | "redo-ltr" | "redo-rtl" | "reference-existing-ltr" | "reference-existing-rtl" | "references-ltr" | "references-rtl" | "search-case-sensitive" | "search-diacritics" | "search-regular-expression" | "signature-ltr" | "signature-rtl" | "smaller-text" | "sort-vertical" | "special-pages-ltr" | "special-pages-rtl" | "speech-bubble-add-ltr" | "speech-bubble-add-rtl" | "speech-bubble-ltr" | "speech-bubble-rtl" | "speech-bubbles-ltr" | "speech-bubbles-rtl" | "strikethrough-a" | "strikethrough-y" | "subscript-ltr" | "subscript-rtl" | "superscript-ltr" | "superscript-rtl" | "table-add-column-after-ltr" | "table-add-column-after-rtl" | "table-add-column-before-ltr" | "table-add-column-before-rtl" | "table-add-row-after" | "table-add-row-before" | "table-caption" | "table-move-column-after-ltr" | "table-move-column-after-rtl" | "table-move-column-before-ltr" | "table-move-column-before-rtl" | "table-move-row-after" | "table-move-row-before" | "tag-ltr" | "tag-rtl" | "template-add-ltr" | "template-add-rtl" | "text-dir-ltr" | "text-dir-rtl" | "text-flow-ltr" | "text-flow-rtl" | "text-summary-ltr" | "text-summary-rtl" | "un-block" | "un-flag-ltr" | "un-flag-rtl" | "un-link" | "un-lock" | "un-star" | "underline-a" | "underline-u" | "undo-ltr" | "undo-rtl" | "up-triangle" | "update-ltr" | "update-rtl" | "user-active" | "user-add-ltr" | "user-add-rtl" | "user-anonymous" | "user-avatar-outline" | "user-contributions-ltr" | "user-contributions-rtl" | "user-group-ltr" | "user-group-rtl" | "user-rights-ltr" | "user-rights-rtl" | "user-talk-ltr" | "user-talk-rtl" | "user-temporary-location-ltr" | "user-temporary-location-rtl" | "user-temporary-ltr" | "user-temporary-rtl" | "vertical-ellipsis" | "view-details-ltr" | "view-details-rtl" | "vision-simulator" | "volume-down-ltr" | "volume-down-rtl" | "volume-off-ltr" | "volume-off-rtl" | "volume-up-ltr" | "volume-up-rtl" | "watchlist-ltr" | "watchlist-rtl" | "wiki-text">): import("react").JSX.Element;
|
|
382
382
|
displayName: string;
|
|
383
383
|
};
|
|
384
384
|
export {};
|
|
@@ -445,7 +445,7 @@ declare const ouiIconNames: {
|
|
|
445
445
|
};
|
|
446
446
|
export type OuiIconName = keyof typeof ouiIconNames;
|
|
447
447
|
export declare const Oui: {
|
|
448
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"string" | "number" | "function" | "push" | "filter" | "color" | "scale" | "
|
|
448
|
+
({ 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<"string" | "number" | "function" | "push" | "filter" | "pulse" | "color" | "scale" | "search" | "link" | "image" | "alert" | "list" | "polygon" | "stop" | "asterisk" | "book-open" | "broom" | "console" | "download" | "email" | "eraser" | "export" | "eye" | "eye-closed" | "flag" | "grid" | "help" | "import" | "ip" | "magnet" | "memory" | "merge" | "package" | "pin" | "radar" | "table-of-contents" | "tag" | "timeline" | "bug" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "menu-down" | "menu-left" | "menu-right" | "menu-up" | "refresh" | "share" | "lock" | "lock-open" | "snowflake" | "glasses" | "database" | "calendar" | "clock" | "history" | "brush" | "pencil" | "folder-check" | "folder-open" | "check" | "heart" | "compass" | "crosshairs" | "layers" | "map-marker" | "bolt" | "wrench" | "cross" | "bell" | "home" | "pause" | "play" | "power" | "minus" | "percent" | "plus" | "radius" | "beaker" | "rocket" | "bullseye" | "apps" | "bell-slash" | "document" | "moon" | "paper-clip" | "trash" | "user" | "users" | "accessibility" | "cloud-drizzle" | "copy" | "currency" | "dot" | "expand" | "folder-closed" | "globe" | "minimize" | "quote" | "save" | "thumbs-down" | "thumbs-up" | "cut" | "dashboard" | "fold" | "folder-exclamation" | "paint" | "pin-filled" | "star-filled" | "temperature" | "vector" | "chat-left" | "chat-right" | "gear" | "sort-down" | "sort-up" | "mobile" | "branch" | "exit" | "stop-filled" | "video-player" | "documentation" | "face-neutral" | "documents" | "grab" | "storage" | "cheer" | "input-output" | "cloud-sunny" | "face-happy" | "face-sad" | "full-screen" | "line-chart" | "stats" | "grab-horizontal" | "list-add" | "inspect" | "sparkle-filled" | "star-empty" | "unfold" | "word-wrap" | "editor-bold" | "editor-italic" | "editor-table" | "editor-underline" | "annotation" | "invert" | "return-key" | "node" | "add-bookmark" | "generate" | "redeploy" | "offline" | "popout" | "aggregate" | "sort-left" | "sort-right" | "full-screen-exit" | "online" | "analyze-event" | "anomaly-detection" | "apm-trace" | "app-add-data" | "app-advanced-settings" | "app-apm" | "app-app-search" | "app-auditbeat" | "app-canvas" | "app-code" | "app-console" | "app-cross-cluster-replication" | "app-dashboard" | "app-devtools" | "app-discover" | "app-ems" | "app-filebeat" | "app-gis" | "app-graph" | "app-grok" | "app-heartbeat" | "app-index-management" | "app-index-pattern" | "app-index-rollup" | "app-lens" | "app-logs" | "app-management" | "app-metricbeat" | "app-metrics" | "app-ml" | "app-monitoring" | "app-notebook" | "app-packetbeat" | "app-pipeline" | "app-recently-viewed" | "app-reporting" | "app-saved-objects" | "app-search-profiler" | "app-security" | "app-security-analytics" | "app-spaces" | "app-sql" | "app-timelion" | "app-upgrade-assistant" | "app-uptime" | "app-users-roles" | "app-visualize" | "app-watches" | "app-workplace-search" | "boxes-horizontal" | "boxes-vertical" | "check-in-circle-empty" | "check-in-circle-filled" | "cloud-stormy" | "compute" | "continuity-above" | "continuity-above-below" | "continuity-below" | "continuity-within" | "controls-horizontal" | "controls-vertical" | "copy-clipboard" | "cross-in-circle-empty" | "cross-in-circle-filled" | "docked-bottom" | "docked-detached" | "docked-left" | "docked-right" | "docked-takeover" | "docked-top" | "document-edit" | "editor-align-center" | "editor-align-left" | "editor-align-right" | "editor-code-block" | "editor-comment" | "editor-distribute-horizontal" | "editor-distribute-vertical" | "editor-heading" | "editor-item-align-bottom" | "editor-item-align-center" | "editor-item-align-left" | "editor-item-align-middle" | "editor-item-align-right" | "editor-item-align-top" | "editor-link" | "editor-ordered-list" | "editor-position-bottom-left" | "editor-position-bottom-right" | "editor-position-top-left" | "editor-position-top-right" | "editor-redo" | "editor-strike" | "editor-undo" | "editor-unordered-list" | "eql" | "expand-mini" | "function-add" | "generate-content" | "heatmap" | "i-in-circle" | "index-close" | "index-edit" | "index-flush" | "index-mapping" | "index-open" | "index-runtime" | "index-settings" | "integration-general" | "integration-observability" | "integration-search" | "integration-security" | "keyboard-shortcut" | "kql-field" | "kql-function" | "kql-operand" | "kql-selector" | "kql-value" | "logstash-filter" | "logstash-if" | "logstash-input" | "logstash-output" | "logstash-queue" | "magnify-with-minus" | "magnify-with-plus" | "minus-in-circle" | "minus-in-circle-filled" | "ml-classification-job" | "ml-create-advanced-job" | "ml-create-multi-metric-job" | "ml-create-population-job" | "ml-create-single-metric-job" | "ml-data-visualizer" | "ml-outlier-detection-job" | "ml-regression-job" | "nav-administration" | "nav-ai-flow" | "nav-alerting" | "nav-anomaly-detection" | "nav-dashboards" | "nav-data" | "nav-detection-rules" | "nav-devtools" | "nav-discover" | "nav-experiments" | "nav-get-started" | "nav-info" | "nav-infra" | "nav-integrations" | "nav-judgements" | "nav-manage" | "nav-maps" | "nav-models" | "nav-notebooks" | "nav-notifications" | "nav-overview" | "nav-query-sets" | "nav-reports" | "nav-search-configurationsln" | "nav-security-cases" | "nav-security-findings" | "nav-service-map" | "nav-services" | "nav-slos" | "nav-threat-intel" | "nav-ticketing" | "nav-ui" | "nested" | "page-select" | "pages-select" | "partial" | "plus-in-circle" | "plus-in-circle-filled" | "question-in-circle" | "reporter" | "security-signal" | "security-signal-detected" | "security-signal-resolved" | "shard" | "sortable" | "star-empty-space" | "star-filled-space" | "star-minus-empty" | "star-minus-filled" | "star-plus-empty" | "star-plus-filled" | "stop-slash" | "swatch-input" | "table-density-compact" | "table-density-expanded" | "table-density-normal" | "tear" | "token-alias" | "token-annotation" | "token-array" | "token-binary" | "token-boolean" | "token-class" | "token-completion-suggester" | "token-constant" | "token-date" | "token-dense-vector" | "token-element" | "token-enum" | "token-enum-member" | "token-event" | "token-exception" | "token-field" | "token-file" | "token-flattened" | "token-function" | "token-geo" | "token-histogram" | "token-interface" | "token-ip" | "token-join" | "token-key" | "token-keyword" | "token-method" | "token-module" | "token-namespace" | "token-nested" | "token-null" | "token-number" | "token-object" | "token-operator" | "token-package" | "token-parameter" | "token-percolator" | "token-property" | "token-range" | "token-rank-feature" | "token-rank-features" | "token-repo" | "token-search-type" | "token-shape" | "token-string" | "token-struct" | "token-symbol" | "token-text" | "token-token-count" | "token-variable" | "training" | "undeploy" | "vis-area" | "vis-area-stacked" | "vis-bar-horizontal" | "vis-bar-horizontal-stacked" | "vis-bar-vertical" | "vis-bar-vertical-stacked" | "vis-builder" | "vis-builder-saved-object" | "vis-gauge" | "vis-goal" | "vis-line" | "vis-map-coordinate" | "vis-map-region" | "vis-metric" | "vis-pie" | "vis-query-dql" | "vis-query-ppl" | "vis-query-promql" | "vis-query-sql" | "vis-table" | "vis-tag-cloud" | "vis-text" | "vis-timelion" | "vis-vega" | "vis-visual-builder" | "word-wrap-disabled" | "ws-analytics" | "ws-essentials" | "ws-observability" | "ws-search" | "ws-security-analytics" | "ws-selector">): import("react").JSX.Element;
|
|
449
449
|
displayName: string;
|
|
450
450
|
};
|
|
451
451
|
export {};
|
|
@@ -418,7 +418,7 @@ declare const pajamasIconNames: {
|
|
|
418
418
|
};
|
|
419
419
|
export type PajamasIconName = keyof typeof pajamasIconNames;
|
|
420
420
|
export declare const Pajamas: {
|
|
421
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"object" | "filter" | "error" | "
|
|
421
|
+
({ 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<"object" | "filter" | "scale" | "error" | "search" | "repeat" | "bold" | "link" | "title" | "timer" | "key" | "code" | "label" | "progress" | "table" | "template" | "stop" | "x" | "archive" | "at" | "book" | "bookmark" | "bullhorn" | "cancel" | "comment" | "download" | "export" | "eye" | "flag" | "group" | "hook" | "import" | "incognito" | "keyboard" | "license" | "mail" | "merge" | "package" | "paperclip" | "podcast" | "redo" | "resize" | "rss" | "tag" | "thumb-down" | "thumb-up" | "upload" | "weight" | "account" | "smart-card" | "nature" | "bug" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "reply" | "share" | "car" | "lock" | "lock-open" | "credit-card" | "bitbucket" | "git" | "github" | "google" | "kubernetes" | "linkedin" | "mastodon" | "skype" | "terraform" | "calendar" | "clock" | "history" | "api" | "monitor" | "tablet" | "pencil" | "file-tree" | "folder" | "folder-open" | "food" | "hamburger" | "check" | "check-circle" | "close" | "heart" | "shield" | "compass" | "earth" | "fire" | "home" | "pause" | "play" | "power" | "plus" | "rocket" | "rocket-launch" | "information" | "star" | "dumbbell" | "document" | "eye-slash" | "italic" | "paper-airplane" | "pencil-square" | "strikethrough" | "underline" | "user" | "users" | "accessibility" | "building" | "expand" | "external-link" | "git-merge" | "grip" | "hash" | "heading" | "hourglass" | "maximize" | "milestone" | "minimize" | "quote" | "settings" | "smile" | "subscript" | "superscript" | "terminal" | "unlink" | "plus-square" | "sidebar" | "brand-zoom" | "bulb" | "clear-all" | "dashboard" | "highlight" | "location" | "messages" | "dash" | "dash-circle" | "discord" | "list-task" | "question" | "volume-up" | "location-dot" | "thumbtack" | "comment-dots" | "comments" | "mobile" | "formula" | "branch" | "commit" | "fork" | "insert" | "list-bulleted" | "list-numbered" | "upgrade" | "machine-learning" | "container-image" | "diagram" | "warning" | "face-neutral" | "documents" | "duplicate" | "notifications" | "notifications-off" | "remove" | "gitea" | "check-circle-filled" | "approval" | "autoplay" | "work" | "overview" | "regular-expression" | "token" | "collapse" | "dot-grid" | "sidebar-right" | "status" | "tachometer" | "collapse-solid" | "chart" | "log" | "symlink" | "applications" | "expand-down" | "expand-left" | "expand-right" | "expand-up" | "level-up" | "warning-solid" | "issues" | "organization" | "project" | "smiley" | "disk" | "admin" | "namespace" | "pipeline" | "pod" | "quota" | "clear" | "doc-chart" | "doc-text" | "ellipsis-h" | "ellipsis-v" | "folder-o" | "plus-square-o" | "search-minus" | "search-plus" | "star-o" | "thumbtack-solid" | "comment-next" | "leave" | "media" | "profile" | "cloud-gear" | "spam" | "iteration" | "attention" | "file-addition" | "trend-down" | "trend-up" | "connected" | "folder-new" | "search-dot" | "collapse-left" | "collapse-right" | "appearance" | "abuse" | "agent-ai" | "approval-solid" | "assignee" | "attention-solid" | "attention-solid-sm" | "branch-deleted" | "calendar-overdue" | "canceled-circle" | "catalog-checkmark" | "check-circle-dashed" | "check-sm" | "check-xs" | "cherry-pick-commit" | "chevron-double-lg-left" | "chevron-double-lg-right" | "chevron-lg-down" | "chevron-lg-left" | "chevron-lg-right" | "chevron-lg-up" | "close-xs" | "cloud-pod" | "cloud-terminal" | "comment-lines" | "comparison" | "copy-to-clipboard" | "deployments" | "details-block" | "doc-changes" | "doc-code" | "doc-compressed" | "doc-expand" | "doc-image" | "doc-new" | "doc-symlink" | "doc-versions" | "duo-agentic-chat" | "duo-chat" | "duo-chat-new" | "duo-chat-off" | "entity-blocked" | "entity-blocking" | "environment" | "epic" | "epic-closed" | "expire" | "face-unhappy" | "false-positive" | "feature-flag" | "feature-flag-disabled" | "file-addition-solid" | "file-deletion" | "file-deletion-solid" | "file-modified" | "file-modified-solid" | "first-contribution" | "flow-ai" | "go-back" | "image-comment-dark" | "image-comment-light" | "information-o" | "infrastructure-registry" | "issue-close" | "issue-closed" | "issue-new" | "issue-open-m" | "issue-type-enhancement" | "issue-type-feature" | "issue-type-feature-flag" | "issue-type-incident" | "issue-type-issue" | "issue-type-keyresult" | "issue-type-maintenance" | "issue-type-objective" | "issue-type-requirements" | "issue-type-task" | "issue-type-test-case" | "issue-type-ticket" | "issue-update" | "kind" | "kubernetes-agent" | "labels" | "license-sm" | "list-indent" | "list-outdent" | "live-preview" | "live-stream" | "long-arrow" | "markdown-mark" | "markdown-mark-solid" | "marquee-selection" | "media-broken" | "merge-request" | "merge-request-close" | "merge-request-close-m" | "merge-request-open" | "mobile-issue-close" | "monitor-lines" | "monitor-o" | "multiple-choice" | "partner-verified" | "planning" | "preferences" | "push-rules" | "question-o" | "quick-actions" | "recipe" | "remove-all" | "requirements" | "retry" | "review-checkmark" | "review-list" | "review-warning" | "scroll-down" | "scroll-handle" | "scroll-up" | "search-results" | "search-sm" | "session-ai" | "severity-critical" | "severity-high" | "severity-info" | "severity-low" | "severity-medium" | "severity-unknown" | "slight-frown" | "slight-smile" | "snippet" | "soft-unwrap" | "soft-wrap" | "sort-highest" | "sort-lowest" | "stage-all" | "status-active" | "status-alert" | "status-cancelled" | "status-closed" | "status-health" | "status-neutral" | "status-paused" | "status-preparing-borderless" | "status-stopped" | "status-waiting" | "subgroup" | "substitute" | "suggestion-ai" | "tanuki" | "tanuki-ai" | "tanuki-ai-off" | "tanuki-verified" | "task-done" | "text-description" | "time-out" | "todo-add" | "todo-done" | "trend-static" | "trigger-source" | "unapproval" | "unassignee" | "unstage-all" | "work-item-child" | "work-item-enhancement" | "work-item-epic" | "work-item-feature" | "work-item-feature-flag" | "work-item-incident" | "work-item-issue" | "work-item-keyresult" | "work-item-maintenance" | "work-item-new" | "work-item-objective" | "work-item-parent" | "work-item-requirement" | "work-item-task" | "work-item-test-case" | "work-item-ticket" | "work-items">): import("react").JSX.Element;
|
|
422
422
|
displayName: string;
|
|
423
423
|
};
|
|
424
424
|
export {};
|
|
@@ -436,7 +436,7 @@ declare const pepiconsIconNames: {
|
|
|
436
436
|
};
|
|
437
437
|
export type PepiconsIconName = keyof typeof pepiconsIconNames;
|
|
438
438
|
export declare const Pepicons: {
|
|
439
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"sort" | "map" | "menu" | "radio" | "list" | "key" | "
|
|
439
|
+
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"sort" | "map" | "repeat" | "menu" | "radio" | "list" | "key" | "code" | "label" | "circle" | "loop" | "arrow-up-left" | "arrow-up-right" | "bluetooth" | "book" | "bookmark" | "briefcase" | "clipboard" | "clipboard-check" | "crown" | "eye" | "eye-closed" | "eye-off" | "fast-forward" | "flag" | "grid" | "handshake" | "magnet" | "monitor-eye" | "pin" | "rewind" | "send" | "wifi" | "flower" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-right" | "arrow-up" | "refresh" | "reload" | "shuffle" | "speaker-off" | "battery" | "car" | "lock-open" | "bank" | "credit-card" | "phone" | "cloud" | "cloud-print" | "alarm" | "calendar" | "clock" | "monitor" | "television" | "watch" | "pen" | "file" | "folder" | "cup" | "hamburger" | "controller" | "heart" | "gift" | "bell" | "camera" | "fire" | "pause" | "play" | "power" | "printer" | "angle-right" | "calculator" | "division" | "exclamation" | "minus" | "plus" | "pill" | "microphone" | "airplane" | "taxi" | "train" | "bell-off" | "square" | "star" | "triangle-down" | "cart" | "bicycle" | "trophy" | "truck" | "umbrella" | "exclamation-circle" | "identification" | "lock-closed" | "megaphone" | "moon" | "photo" | "qr-code" | "scissors" | "sun" | "trash" | "building" | "clapperboard" | "expand" | "hand-grab" | "hash" | "hourglass" | "house" | "info" | "smartphone" | "syringe" | "thumbs-down" | "thumbs-up" | "triangle-right" | "sliders" | "tool" | "bookmark-filled" | "circle-filled" | "cloud-down" | "cloud-filled" | "cloud-up" | "color-picker" | "contract" | "info-circle" | "moon-filled" | "square-filled" | "star-filled" | "stars" | "stopwatch" | "sun-filled" | "gear" | "people" | "person" | "person-plus" | "question" | "question-circle" | "angle-down" | "angle-left" | "angle-up" | "motorcycle" | "checkmark" | "duplicate" | "enter" | "open" | "grab" | "photo-camera" | "water-drop" | "share-android" | "share-ios" | "internet" | "cv" | "headphone" | "triangle-left" | "triangle-up" | "countdown" | "gear-filled" | "info-filled" | "question-filled" | "no-entry" | "t-shirt" | "chain" | "dress" | "text-bubble" | "times" | "leave" | "persons" | "map-print" | "electricity" | "person-filled" | "triangle-down-filled" | "triangle-left-filled" | "triangle-right-filled" | "triangle-up-filled" | "exclamation-filled" | "airplane-print" | "alarm-print" | "angle-down-print" | "angle-left-print" | "angle-right-print" | "angle-up-print" | "arrow-down-left-print" | "arrow-down-print" | "arrow-down-right-print" | "arrow-left-print" | "arrow-right-print" | "arrow-up-left-print" | "arrow-up-print" | "arrow-up-right-print" | "bank-print" | "battery-print" | "bell-off-print" | "bell-print" | "bicycle-print" | "bluetooth-print" | "book-print" | "bookmark-print" | "briefcase-print" | "building-print" | "calculator-print" | "calendar-print" | "camera-print" | "can" | "can-print" | "car-print" | "cart-print" | "cellphone-eye" | "cellphone-eye-print" | "cellphone-loop" | "cellphone-loop-print" | "chain-print" | "checkmark-print" | "circle-print" | "clapperboard-print" | "clipboard-check-circle" | "clipboard-check-circle-print" | "clipboard-check-print" | "clipboard-print" | "clock-print" | "cloud-down-filled" | "cloud-down-print" | "cloud-up-filled" | "cloud-up-print" | "coctail" | "coctail-print" | "code-print" | "color-picker-print" | "contract-print" | "controller-print" | "countdown-print" | "credit-card-print" | "crown-print" | "cup-print" | "cv-print" | "division-print" | "dots-x" | "dots-x-print" | "dots-y" | "dots-y-print" | "dress-print" | "duplicate-print" | "electricity-print" | "enter-print" | "exclamation-circle-print" | "exclamation-print" | "expand-print" | "eye-closed-print" | "eye-frame" | "eye-frame-print" | "eye-off-print" | "eye-print" | "fast-forward-print" | "file-loop" | "file-loop-print" | "file-print" | "film-frame" | "film-frame-print" | "fire-print" | "flag-print" | "flag-straight" | "flag-straight-print" | "flower-bud" | "flower-bud-print" | "flower-print" | "folder-print" | "folding-stool" | "folding-stool-print" | "gear-print" | "gift-print" | "grab-print" | "grid-print" | "hamburger-print" | "hand-grab-print" | "hand-open" | "hand-open-print" | "hand-point" | "hand-point-open" | "hand-point-open-print" | "hand-point-print" | "handshake-print" | "hash-print" | "headphone-print" | "heart-print" | "hourglass-print" | "house-print" | "identification-print" | "info-circle-print" | "info-print" | "internet-print" | "key-print" | "knive-fork" | "knive-fork-print" | "label-print" | "leave-print" | "letter" | "letter-open" | "letter-open-print" | "letter-print" | "list-print" | "lock-closed-print" | "lock-open-print" | "loop-minus" | "loop-minus-print" | "loop-plus" | "loop-plus-print" | "loop-print" | "magnet-print" | "megaphone-print" | "menu-print" | "microphone-print" | "microphone2" | "microphone2-print" | "minus-print" | "monitor-eye-print" | "monitor-loop" | "monitor-loop-print" | "monitor-print" | "monitor2" | "monitor2-print" | "moon-print" | "motorcycle-print" | "move-x" | "move-x-print" | "move-y" | "move-y-print" | "music-note-double" | "music-note-double-print" | "music-note-single" | "music-note-single-print" | "next-track" | "next-track-print" | "no-entry-print" | "open-print" | "paint-pallet" | "paint-pallet-print" | "pause-print" | "pen-print" | "people-print" | "person-checkmark" | "person-checkmark-print" | "person-plus-print" | "person-print" | "persons-print" | "phone-print" | "photo-camera-print" | "photo-print" | "photo-studio" | "photo-studio-print" | "pill-print" | "pin-print" | "pinpoint" | "pinpoint-filled" | "pinpoint-off" | "pinpoint-off-filled" | "pinpoint-off-print" | "pinpoint-print" | "play-print" | "plus-print" | "power-print" | "previous-track" | "previous-track-print" | "printer-print" | "qr-code-print" | "question-circle-print" | "question-print" | "radio-print" | "refresh-print" | "reload-print" | "repeat-print" | "rewind-print" | "rewind-time" | "rewind-time-print" | "scissors-print" | "send-print" | "share-android-print" | "share-ios-print" | "shuffle-print" | "sliders-print" | "smartphone-cutout" | "smartphone-cutout-print" | "smartphone-notch" | "smartphone-notch-print" | "smartphone-print" | "smartphone2" | "smartphone2-print" | "soft-drink" | "soft-drink-print" | "sort-print" | "speaker-high" | "speaker-high-print" | "speaker-low" | "speaker-low-print" | "speaker-off-print" | "square-print" | "star-print" | "stars-print" | "stopwatch-print" | "studio-backdrop" | "studio-backdrop-print" | "studio-light-front" | "studio-light-front-print" | "studio-light-side" | "studio-light-side-print" | "sun-print" | "syringe-print" | "t-shirt-print" | "taxi-print" | "television-print" | "text-bubble-print" | "text-bubbles" | "text-bubbles-print" | "thumbs-down-print" | "thumbs-up-print" | "times-print" | "tool-print" | "train-print" | "trash-print" | "triangle-down-print" | "triangle-left-print" | "triangle-right-print" | "triangle-up-print" | "trophy-print" | "truck-print" | "umbrella-print" | "watch-print" | "water-drop-print" | "wifi-print">): import("react").JSX.Element;
|
|
440
440
|
displayName: string;
|
|
441
441
|
};
|
|
442
442
|
export {};
|
|
@@ -1283,7 +1283,7 @@ declare const pepicons_pencilIconNames: {
|
|
|
1283
1283
|
};
|
|
1284
1284
|
export type PepiconsPencilIconName = keyof typeof pepicons_pencilIconNames;
|
|
1285
1285
|
export declare const PepiconsPencil: {
|
|
1286
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"map" | "menu" | "radio" | "list" | "key" | "repeat" | "code" | "label" | "circle" | "arrow-up-left" | "arrow-up-right" | "bluetooth" | "bluetooth-off" | "book" | "book-off" | "bookmark" | "bookmark-off" | "briefcase" | "briefcase-off" | "clipboard" | "clipboard-check" | "clipboard-off" | "crown" | "eye" | "eye-circle" | "eye-closed" | "eye-off" | "fast-forward" | "flag" | "flag-off" | "grid" | "grid-off" | "handshake" | "heart-circle" | "keyboard" | "keyboard-off" | "label-off" | "magnet" | "minus-circle-off" | "monitor-eye" | "paperclip" | "paperclip-off" | "pause-circle" | "pen-off" | "pin" | "pin-off" | "play-circle" | "plus-circle" | "power-off" | "radio-off" | "repeat-off" | "rewind" | "shield-off" | "square-off" | "star-off" | "ticket" | "wifi" | "wifi-off" | "shield-check" | "flower" | "leaf" | "leaf-circle" | "leaf-off" | "tree" | "arrow-down" | "arrow-down-circle" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-left-circle" | "arrow-right" | "arrow-right-circle" | "arrow-up" | "arrow-up-circle" | "shuffle" | "battery" | "car" | "car-off" | "lock-open" | "bank" | "bank-circle" | "bank-off" | "credit-card" | "credit-card-off" | "battery-off" | "phone" | "phone-off" | "cloud" | "cloud-circle" | "cloud-off" | "database" | "database-off" | "alarm" | "alarm-off" | "calendar" | "clock" | "monitor" | "monitor-off" | "tablet" | "television" | "television-off" | "television-play" | "watch" | "pen" | "ruler" | "file" | "folder" | "folder-off" | "cup" | "cup-off" | "hamburger" | "hamburger-off" | "square-circle" | "minus-circle" | "controller" | "controller-off" | "crown-circle" | "heart" | "shield" | "sword" | "nut" | "wrench" | "gift" | "gift-off" | "bell" | "camera" | "fire" | "fire-circle" | "fire-off" | "pause" | "play" | "power" | "printer" | "angle-right" | "calculator" | "division" | "equal" | "exclamation" | "minus" | "plus" | "heart-off" | "hospital" | "pill" | "pill-off" | "microphone" | "microphone-off" | "airplane" | "taxi" | "train" | "bell-circle" | "bell-off" | "camera-off" | "printer-off" | "square" | "star" | "star-circle" | "triangle-down" | "cart" | "cart-off" | "bicycle" | "trophy" | "airplane-off" | "truck" | "umbrella" | "exclamation-circle" | "identification" | "lock-closed" | "megaphone" | "moon" | "photo" | "qr-code" | "scissors" | "sun" | "trash" | "building" | "calendar-off" | "circle-off" | "clapperboard" | "coins" | "euro" | "expand" | "hand-grab" | "hash" | "headphone-off" | "hourglass" | "house" | "info" | "megaphone-off" | "nut-off" | "swords" | "syringe" | "thumbs-down" | "thumbs-up" | "triangle-right" | "umbrella-off" | "sliders" | "arrow-down-circle-filled" | "arrow-down-left-circle" | "arrow-down-right-circle" | "arrow-left-circle-filled" | "arrow-right-circle-filled" | "arrow-up-circle-filled" | "arrow-up-left-circle" | "arrow-up-right-circle" | "bookmark-filled" | "building-off" | "calculator-off" | "circle-filled" | "clock-off" | "cloud-down" | "cloud-up" | "code-circle" | "code-circle-filled" | "code-off" | "color-picker" | "color-picker-off" | "comet" | "contract" | "crown-off" | "exclamation-circle-filled" | "file-off" | "flower-off" | "heart-filled" | "hospital-circle" | "hospital-circle-filled" | "hourglass-off" | "info-circle" | "info-circle-filled" | "key-off" | "lock-open-off" | "magnet-off" | "map-off" | "moon-off" | "photo-circle" | "photo-off" | "planet" | "planet-off" | "ruler-off" | "scissors-off" | "seedling" | "seedling-off" | "shield-checkered" | "square-filled" | "star-filled" | "stars" | "stars-off" | "stopwatch" | "sun-off" | "sword-off" | "ticket-off" | "trash-off" | "trophy-off" | "truck-off" | "fast-forward-circle" | "gear" | "people" | "person" | "person-circle" | "person-plus" | "question" | "question-circle" | "rewind-circle" | "arrows-spin" | "earth-americas" | "earth-asia" | "earth-europe" | "floppy-disk" | "hands-clapping" | "angle-down" | "angle-left" | "angle-up" | "motorcycle" | "paper-plane" | "loop" | "checkmark" | "checkmark-filled" | "checkmark-circle" | "duplicate" | "enter" | "list-circle" | "open" | "people-circle" | "clock-circle-filled" | "dollar-circle-filled" | "euro-circle-filled" | "minus-circle-filled" | "pause-circle-filled" | "play-circle-filled" | "plus-circle-filled" | "question-circle-filled" | "lock-open-circle" | "circle-circle" | "watch-off" | "photo-camera" | "flag-circle" | "person-off" | "water-drop" | "share-android" | "share-ios" | "internet" | "dollar" | "dollar-circle" | "yen" | "bookmark-circle" | "cv" | "headphone" | "triangle-left" | "triangle-up" | "countdown" | "no-entry" | "radio-circle" | "t-shirt" | "chain" | "dress" | "book-circle" | "calendar-circle" | "camera-circle" | "equal-circle" | "face-smiling" | "folder-circle" | "grid-circle" | "moon-circle" | "phone-circle" | "text-bubble" | "trash-circle" | "times-circle" | "times" | "leave" | "persons" | "peso" | "yuan" | "electricity" | "bluetooth-circle" | "euro-circle" | "menu-circle" | "wifi-circle" | "yen-circle" | "tablet-off" | "triangle-down-filled" | "triangle-left-filled" | "triangle-right-filled" | "triangle-up-filled" | "house-off" | "trophy-circle" | "repeat-circle" | "clock-circle" | "hash-circle" | "can" | "cellphone-eye" | "cellphone-loop" | "clipboard-check-circle" | "coctail" | "dots-x" | "dots-y" | "eye-frame" | "file-loop" | "film-frame" | "flag-straight" | "flower-bud" | "folding-stool" | "hand-open" | "hand-point" | "hand-point-open" | "knive-fork" | "letter" | "letter-open" | "loop-minus" | "loop-plus" | "monitor-loop" | "move-x" | "move-y" | "music-note-double" | "music-note-single" | "next-track" | "paint-pallet" | "person-checkmark" | "photo-studio" | "pinpoint" | "pinpoint-off" | "previous-track" | "rewind-time" | "smartphone-cutout" | "smartphone-notch" | "soft-drink" | "speaker-high" | "speaker-low" | "studio-backdrop" | "studio-light-front" | "studio-light-side" | "text-bubbles" | "airplane-circle" | "airplane-circle-filled" | "airplane-circle-off" | "alarm-circle" | "alarm-circle-filled" | "alarm-circle-off" | "angle-down-circle" | "angle-down-circle-filled" | "angle-down-circle-off" | "angle-down-off" | "angle-left-circle" | "angle-left-circle-filled" | "angle-left-circle-off" | "angle-left-off" | "angle-right-circle" | "angle-right-circle-filled" | "angle-right-circle-off" | "angle-right-off" | "angle-up-circle" | "angle-up-circle-filled" | "angle-up-circle-off" | "angle-up-off" | "arrow-down-circle-off" | "arrow-down-left-circle-filled" | "arrow-down-left-circle-off" | "arrow-down-left-off" | "arrow-down-off" | "arrow-down-right-circle-filled" | "arrow-down-right-circle-off" | "arrow-down-right-off" | "arrow-left-circle-off" | "arrow-left-off" | "arrow-right-circle-off" | "arrow-right-off" | "arrow-spin" | "arrow-spin-circle" | "arrow-spin-circle-filled" | "arrow-spin-circle-off" | "arrow-spin-off" | "arrow-up-circle-off" | "arrow-up-left-circle-filled" | "arrow-up-left-circle-off" | "arrow-up-left-off" | "arrow-up-off" | "arrow-up-right-circle-filled" | "arrow-up-right-circle-off" | "arrow-up-right-off" | "arrows-spin-circle" | "arrows-spin-circle-filled" | "arrows-spin-circle-off" | "arrows-spin-off" | "bank-circle-filled" | "bank-circle-off" | "battery-circle" | "battery-circle-filled" | "battery-circle-off" | "bell-circle-filled" | "bell-circle-off" | "bicycle-circle" | "bicycle-circle-filled" | "bicycle-circle-off" | "bicycle-off" | "bluetooth-circle-filled" | "bluetooth-circle-off" | "book-circle-filled" | "book-circle-off" | "bookmark-circle-filled" | "bookmark-circle-off" | "bookmark-filled-circle" | "bookmark-filled-circle-filled" | "bookmark-filled-circle-off" | "bookmark-filled-off" | "briefcase-circle" | "briefcase-circle-filled" | "briefcase-circle-off" | "building-circle" | "building-circle-filled" | "building-circle-off" | "bulletin-notice" | "bulletin-notice-circle" | "bulletin-notice-circle-filled" | "bulletin-notice-circle-off" | "bulletin-notice-off" | "calculator-circle" | "calculator-circle-filled" | "calculator-circle-off" | "calendar-circle-filled" | "calendar-circle-off" | "camera-circle-filled" | "camera-circle-off" | "can-circle" | "can-circle-filled" | "can-circle-off" | "can-off" | "car-circle" | "car-circle-filled" | "car-circle-off" | "cart-circle" | "cart-circle-filled" | "cart-circle-off" | "cellphone-eye-circle" | "cellphone-eye-circle-filled" | "cellphone-eye-circle-off" | "cellphone-eye-off" | "cellphone-loop-circle" | "cellphone-loop-circle-filled" | "cellphone-loop-circle-off" | "cellphone-loop-off" | "chain-circle" | "chain-circle-filled" | "chain-circle-off" | "chain-off" | "checkmark-circle-filled" | "checkmark-circle-off" | "checkmark-filled-circle" | "checkmark-filled-circle-filled" | "checkmark-filled-circle-off" | "checkmark-filled-off" | "checkmark-off" | "checkmark-outlined" | "checkmark-outlined-circle" | "checkmark-outlined-circle-filled" | "checkmark-outlined-circle-off" | "checkmark-outlined-off" | "circle-big" | "circle-big-circle" | "circle-big-circle-filled" | "circle-big-circle-off" | "circle-big-filled" | "circle-big-filled-circle" | "circle-big-filled-circle-filled" | "circle-big-filled-circle-off" | "circle-big-filled-off" | "circle-big-off" | "circle-circle-filled" | "circle-circle-off" | "circle-filled-circle" | "circle-filled-circle-filled" | "circle-filled-circle-off" | "circle-filled-off" | "clapperboard-circle" | "clapperboard-circle-filled" | "clapperboard-circle-off" | "clapperboard-off" | "clipboard-check-circle-filled" | "clipboard-check-circle-off" | "clipboard-check-circled" | "clipboard-check-circled-circle" | "clipboard-check-circled-circle-filled" | "clipboard-check-circled-circle-off" | "clipboard-check-circled-off" | "clipboard-check-off" | "clipboard-circle" | "clipboard-circle-filled" | "clipboard-circle-off" | "clock-circle-off" | "cloud-circle-filled" | "cloud-circle-off" | "cloud-down-circle" | "cloud-down-circle-filled" | "cloud-down-circle-off" | "cloud-down-off" | "cloud-up-circle" | "cloud-up-circle-filled" | "cloud-up-circle-off" | "cloud-up-off" | "coctail-circle" | "coctail-circle-filled" | "coctail-circle-off" | "coctail-off" | "code-circle-off" | "coins-circle" | "coins-circle-filled" | "coins-circle-off" | "coins-off" | "color-picker-circle" | "color-picker-circle-filled" | "color-picker-circle-off" | "comet-circle" | "comet-circle-filled" | "comet-circle-off" | "comet-off" | "contract-circle" | "contract-circle-filled" | "contract-circle-off" | "contract-off" | "controller-circle" | "controller-circle-filled" | "controller-circle-off" | "countdown-circle" | "countdown-circle-filled" | "countdown-circle-off" | "countdown-off" | "credit-card-circle" | "credit-card-circle-filled" | "credit-card-circle-off" | "crown-circle-filled" | "crown-circle-off" | "cup-circle" | "cup-circle-filled" | "cup-circle-off" | "cv-circle" | "cv-circle-filled" | "cv-circle-off" | "cv-off" | "database-circle" | "database-circle-filled" | "database-circle-off" | "division-circle" | "division-circle-filled" | "division-circle-off" | "division-off" | "dollar-circle-off" | "dollar-off" | "dots-x-circle" | "dots-x-circle-filled" | "dots-x-circle-off" | "dots-x-off" | "dots-y-circle" | "dots-y-circle-filled" | "dots-y-circle-off" | "dots-y-off" | "down-left" | "down-left-circle" | "down-left-circle-filled" | "down-left-circle-off" | "down-left-off" | "down-up" | "down-up-circle" | "down-up-circle-filled" | "down-up-circle-off" | "down-up-off" | "dress-circle" | "dress-circle-filled" | "dress-circle-off" | "dress-off" | "duplicate-circle" | "duplicate-circle-filled" | "duplicate-circle-off" | "duplicate-off" | "earth-americas-circle" | "earth-americas-circle-filled" | "earth-americas-circle-off" | "earth-americas-off" | "earth-asia-circle" | "earth-asia-circle-filled" | "earth-asia-circle-off" | "earth-asia-off" | "earth-europe-circle" | "earth-europe-circle-filled" | "earth-europe-circle-off" | "earth-europe-off" | "electricity-circle" | "electricity-circle-filled" | "electricity-circle-off" | "electricity-off" | "enter-circle" | "enter-circle-filled" | "enter-circle-off" | "enter-off" | "equal-circle-filled" | "equal-circle-off" | "equal-off" | "euro-circle-off" | "euro-off" | "exclamation-circle-off" | "exclamation-off" | "expand-circle" | "expand-circle-filled" | "expand-circle-off" | "expand-off" | "eye-circle-filled" | "eye-circle-off" | "eye-closed-circle" | "eye-closed-circle-filled" | "eye-closed-circle-off" | "eye-closed-off" | "eye-frame-circle" | "eye-frame-circle-filled" | "eye-frame-circle-off" | "eye-frame-off" | "face-frowning" | "face-frowning-circle" | "face-frowning-circle-filled" | "face-frowning-circle-off" | "face-frowning-off" | "face-grinning" | "face-grinning-circle" | "face-grinning-circle-filled" | "face-grinning-circle-off" | "face-grinning-off" | "face-smiling-circle" | "face-smiling-circle-filled" | "face-smiling-circle-off" | "face-smiling-off" | "fast-forward-circle-filled" | "fast-forward-circle-off" | "fast-forward-off" | "file-circle" | "file-circle-filled" | "file-circle-off" | "file-loop-circle" | "file-loop-circle-filled" | "file-loop-circle-off" | "file-loop-off" | "film-frame-circle" | "film-frame-circle-filled" | "film-frame-circle-off" | "film-frame-off" | "fire-circle-filled" | "fire-circle-off" | "flag-circle-filled" | "flag-circle-off" | "flag-straight-circle" | "flag-straight-circle-filled" | "flag-straight-circle-off" | "flag-straight-off" | "floppy-disk-circle" | "floppy-disk-circle-filled" | "floppy-disk-circle-off" | "floppy-disk-off" | "flower-bud-circle" | "flower-bud-circle-filled" | "flower-bud-circle-off" | "flower-bud-off" | "flower-circle" | "flower-circle-filled" | "flower-circle-off" | "folder-circle-filled" | "folder-circle-off" | "folding-stool-circle" | "folding-stool-circle-filled" | "folding-stool-circle-off" | "folding-stool-off" | "gear-circle" | "gear-circle-filled" | "gear-circle-off" | "gear-off" | "gift-circle" | "gift-circle-filled" | "gift-circle-off" | "grab-handle" | "grab-handle-circle" | "grab-handle-circle-filled" | "grab-handle-circle-off" | "grab-handle-off" | "grid-circle-filled" | "grid-circle-off" | "hamburger-circle" | "hamburger-circle-filled" | "hamburger-circle-off" | "hammer-claw" | "hammer-claw-circle" | "hammer-claw-circle-filled" | "hammer-claw-circle-off" | "hammer-claw-off" | "hammer-sledge" | "hammer-sledge-circle" | "hammer-sledge-circle-filled" | "hammer-sledge-circle-off" | "hammer-sledge-off" | "hand-grab-circle" | "hand-grab-circle-filled" | "hand-grab-circle-off" | "hand-grab-off" | "hand-open-circle" | "hand-open-circle-filled" | "hand-open-circle-off" | "hand-open-off" | "hand-point-circle" | "hand-point-circle-filled" | "hand-point-circle-off" | "hand-point-off" | "hand-point-open-circle" | "hand-point-open-circle-filled" | "hand-point-open-circle-off" | "hand-point-open-off" | "hands-clapping-checkmark" | "hands-clapping-checkmark-circle" | "hands-clapping-checkmark-circle-filled" | "hands-clapping-checkmark-circle-off" | "hands-clapping-checkmark-off" | "hands-clapping-circle" | "hands-clapping-circle-filled" | "hands-clapping-circle-off" | "hands-clapping-off" | "handshake-circle" | "handshake-circle-filled" | "handshake-circle-off" | "handshake-off" | "hash-circle-filled" | "hash-circle-off" | "hash-off" | "headphone-circle" | "headphone-circle-filled" | "headphone-circle-off" | "heart-circle-filled" | "heart-circle-off" | "heart-filled-circle" | "heart-filled-circle-filled" | "heart-filled-circle-off" | "heart-filled-off" | "hospital-circle-off" | "hospital-off" | "hourglass-circle" | "hourglass-circle-filled" | "hourglass-circle-off" | "house-circle" | "house-circle-filled" | "house-circle-off" | "identification-circle" | "identification-circle-filled" | "identification-circle-off" | "identification-off" | "info-circle-off" | "info-off" | "internet-circle" | "internet-circle-filled" | "internet-circle-off" | "internet-off" | "key-circle" | "key-circle-filled" | "key-circle-off" | "keyboard-circle" | "keyboard-circle-filled" | "keyboard-circle-off" | "knive-fork-circle" | "knive-fork-circle-filled" | "knive-fork-circle-off" | "knive-fork-off" | "label-circle" | "label-circle-filled" | "label-circle-off" | "leaf-circle-filled" | "leaf-circle-off" | "leave-circle" | "leave-circle-filled" | "leave-circle-off" | "leave-off" | "letter-circle" | "letter-circle-filled" | "letter-circle-off" | "letter-off" | "letter-open-circle" | "letter-open-circle-filled" | "letter-open-circle-off" | "letter-open-off" | "line-slant-down" | "line-slant-down-circle" | "line-slant-down-circle-filled" | "line-slant-down-circle-off" | "line-slant-down-off" | "line-slant-up" | "line-slant-up-circle" | "line-slant-up-circle-filled" | "line-slant-up-circle-off" | "line-slant-up-off" | "line-x" | "line-x-circle" | "line-x-circle-filled" | "line-x-circle-off" | "line-x-off" | "line-y" | "line-y-circle" | "line-y-circle-filled" | "line-y-circle-off" | "line-y-off" | "list-circle-filled" | "list-circle-off" | "list-off" | "lock-closed-circle" | "lock-closed-circle-filled" | "lock-closed-circle-off" | "lock-closed-off" | "lock-open-circle-filled" | "lock-open-circle-off" | "loop-circle" | "loop-circle-filled" | "loop-circle-off" | "loop-minus-circle" | "loop-minus-circle-filled" | "loop-minus-circle-off" | "loop-minus-off" | "loop-off" | "loop-plus-circle" | "loop-plus-circle-filled" | "loop-plus-circle-off" | "loop-plus-off" | "magnet-circle" | "magnet-circle-filled" | "magnet-circle-off" | "map-circle" | "map-circle-filled" | "map-circle-off" | "megaphone-circle" | "megaphone-circle-filled" | "megaphone-circle-off" | "menu-circle-filled" | "menu-circle-off" | "menu-off" | "microphone-circle" | "microphone-circle-filled" | "microphone-circle-off" | "microphone-handheld" | "microphone-handheld-circle" | "microphone-handheld-circle-filled" | "microphone-handheld-circle-off" | "microphone-handheld-off" | "minus-off" | "money-note" | "money-note-circle" | "money-note-circle-filled" | "money-note-circle-off" | "money-note-off" | "monitor-circle" | "monitor-circle-filled" | "monitor-circle-off" | "monitor-eye-circle" | "monitor-eye-circle-filled" | "monitor-eye-circle-off" | "monitor-eye-off" | "monitor-loop-circle" | "monitor-loop-circle-filled" | "monitor-loop-circle-off" | "monitor-loop-off" | "moon-circle-filled" | "moon-circle-off" | "motorcycle-circle" | "motorcycle-circle-filled" | "motorcycle-circle-off" | "motorcycle-off" | "move-x-circle" | "move-x-circle-filled" | "move-x-circle-off" | "move-x-off" | "move-y-circle" | "move-y-circle-filled" | "move-y-circle-off" | "move-y-off" | "music-note-double-circle" | "music-note-double-circle-filled" | "music-note-double-circle-off" | "music-note-double-off" | "music-note-single-circle" | "music-note-single-circle-filled" | "music-note-single-circle-off" | "music-note-single-off" | "next-track-circle" | "next-track-circle-filled" | "next-track-circle-off" | "next-track-off" | "no-entry-circle" | "no-entry-circle-filled" | "no-entry-circle-off" | "no-entry-off" | "nut-circle" | "nut-circle-filled" | "nut-circle-off" | "open-circle" | "open-circle-filled" | "open-circle-off" | "open-off" | "paint-pallet-circle" | "paint-pallet-circle-filled" | "paint-pallet-circle-off" | "paint-pallet-off" | "paper-plane-circle" | "paper-plane-circle-filled" | "paper-plane-circle-off" | "paper-plane-off" | "paperclip-circle" | "paperclip-circle-filled" | "paperclip-circle-off" | "pause-circle-off" | "pause-off" | "pen-circle" | "pen-circle-filled" | "pen-circle-off" | "people-circle-filled" | "people-circle-off" | "people-off" | "person-checkmark-circle" | "person-checkmark-circle-filled" | "person-checkmark-circle-off" | "person-checkmark-off" | "person-circle-filled" | "person-circle-off" | "person-plus-circle" | "person-plus-circle-filled" | "person-plus-circle-off" | "person-plus-off" | "persons-circle" | "persons-circle-filled" | "persons-circle-off" | "persons-off" | "peso-circle" | "peso-circle-filled" | "peso-circle-off" | "peso-off" | "phone-circle-filled" | "phone-circle-off" | "photo-camera-circle" | "photo-camera-circle-filled" | "photo-camera-circle-off" | "photo-camera-off" | "photo-circle-filled" | "photo-circle-off" | "photo-studio-circle" | "photo-studio-circle-filled" | "photo-studio-circle-off" | "photo-studio-off" | "pill-circle" | "pill-circle-filled" | "pill-circle-off" | "pin-circle" | "pin-circle-filled" | "pin-circle-off" | "pinpoint-circle" | "pinpoint-circle-filled" | "pinpoint-circle-off" | "planet-circle" | "planet-circle-filled" | "planet-circle-off" | "planet-ring" | "planet-ring-circle" | "planet-ring-circle-filled" | "planet-ring-circle-off" | "planet-ring-off" | "play-circle-off" | "play-off" | "plus-circle-off" | "plus-off" | "power-circle" | "power-circle-filled" | "power-circle-off" | "previous-track-circle" | "previous-track-circle-filled" | "previous-track-circle-off" | "previous-track-off" | "printer-circle" | "printer-circle-filled" | "printer-circle-off" | "qr-code-circle" | "qr-code-circle-filled" | "qr-code-circle-off" | "qr-code-off" | "question-circle-off" | "question-off" | "radio-circle-filled" | "radio-circle-off" | "raise-hand" | "raise-hand-circle" | "raise-hand-circle-filled" | "raise-hand-circle-off" | "raise-hand-off" | "repeat-circle-filled" | "repeat-circle-off" | "rewind-circle-filled" | "rewind-circle-off" | "rewind-off" | "rewind-time-circle" | "rewind-time-circle-filled" | "rewind-time-circle-off" | "rewind-time-off" | "ruler-circle" | "ruler-circle-filled" | "ruler-circle-off" | "scissors-circle" | "scissors-circle-filled" | "scissors-circle-off" | "seedling-circle" | "seedling-circle-filled" | "seedling-circle-off" | "share-android-circle" | "share-android-circle-filled" | "share-android-circle-off" | "share-android-off" | "share-ios-circle" | "share-ios-circle-filled" | "share-ios-circle-off" | "share-ios-off" | "shield-check-circle" | "shield-check-circle-filled" | "shield-check-circle-off" | "shield-check-off" | "shield-checkered-circle" | "shield-checkered-circle-filled" | "shield-checkered-circle-off" | "shield-checkered-off" | "shield-circle" | "shield-circle-filled" | "shield-circle-off" | "shuffle-circle" | "shuffle-circle-filled" | "shuffle-circle-off" | "shuffle-off" | "sliders-circle" | "sliders-circle-filled" | "sliders-circle-off" | "sliders-off" | "smartphone-cutout-circle" | "smartphone-cutout-circle-filled" | "smartphone-cutout-circle-off" | "smartphone-cutout-off" | "smartphone-home-button" | "smartphone-home-button-circle" | "smartphone-home-button-circle-filled" | "smartphone-home-button-circle-off" | "smartphone-home-button-off" | "smartphone-notch-circle" | "smartphone-notch-circle-filled" | "smartphone-notch-circle-off" | "smartphone-notch-off" | "soft-drink-circle" | "soft-drink-circle-filled" | "soft-drink-circle-off" | "soft-drink-off" | "speaker-high-circle" | "speaker-high-circle-filled" | "speaker-high-circle-off" | "speaker-high-off" | "speaker-low-circle" | "speaker-low-circle-filled" | "speaker-low-circle-off" | "speaker-low-off" | "square-circle-filled" | "square-circle-off" | "square-filled-circle" | "square-filled-circle-filled" | "square-filled-circle-off" | "square-filled-off" | "star-circle-filled" | "star-circle-off" | "star-filled-circle" | "star-filled-circle-filled" | "star-filled-circle-off" | "star-filled-off" | "stars-circle" | "stars-circle-filled" | "stars-circle-off" | "stopwatch-circle" | "stopwatch-circle-filled" | "stopwatch-circle-off" | "stopwatch-off" | "studio-backdrop-circle" | "studio-backdrop-circle-filled" | "studio-backdrop-circle-off" | "studio-backdrop-off" | "studio-light-front-circle" | "studio-light-front-circle-filled" | "studio-light-front-circle-off" | "studio-light-front-off" | "studio-light-side-circle" | "studio-light-side-circle-filled" | "studio-light-side-circle-off" | "studio-light-side-off" | "sun-circle" | "sun-circle-filled" | "sun-circle-off" | "sword-circle" | "sword-circle-filled" | "sword-circle-off" | "sword-shield" | "sword-shield-circle" | "sword-shield-circle-filled" | "sword-shield-circle-off" | "sword-shield-off" | "swords-circle" | "swords-circle-filled" | "swords-circle-off" | "swords-off" | "syringe-circle" | "syringe-circle-filled" | "syringe-circle-off" | "syringe-off" | "t-shirt-circle" | "t-shirt-circle-filled" | "t-shirt-circle-off" | "t-shirt-off" | "tablet-circle" | "tablet-circle-filled" | "tablet-circle-off" | "taxi-circle" | "taxi-circle-filled" | "taxi-circle-off" | "taxi-off" | "television-circle" | "television-circle-filled" | "television-circle-off" | "television-play-circle" | "television-play-circle-filled" | "television-play-circle-off" | "television-play-off" | "text-bubble-circle" | "text-bubble-circle-filled" | "text-bubble-circle-off" | "text-bubble-off" | "text-bubbles-circle" | "text-bubbles-circle-filled" | "text-bubbles-circle-off" | "text-bubbles-off" | "thumbs-down-circle" | "thumbs-down-circle-filled" | "thumbs-down-circle-off" | "thumbs-down-off" | "thumbs-up-circle" | "thumbs-up-circle-filled" | "thumbs-up-circle-off" | "thumbs-up-off" | "ticket-circle" | "ticket-circle-filled" | "ticket-circle-off" | "times-circle-filled" | "times-circle-off" | "times-off" | "train-circle" | "train-circle-filled" | "train-circle-off" | "train-off" | "trash-circle-filled" | "trash-circle-off" | "tree-circle" | "tree-circle-filled" | "tree-circle-off" | "tree-off" | "triangle-down-circle" | "triangle-down-circle-filled" | "triangle-down-circle-off" | "triangle-down-filled-circle" | "triangle-down-filled-circle-filled" | "triangle-down-filled-circle-off" | "triangle-down-filled-off" | "triangle-down-off" | "triangle-left-circle" | "triangle-left-circle-filled" | "triangle-left-circle-off" | "triangle-left-filled-circle" | "triangle-left-filled-circle-filled" | "triangle-left-filled-circle-off" | "triangle-left-filled-off" | "triangle-left-off" | "triangle-right-circle" | "triangle-right-circle-filled" | "triangle-right-circle-off" | "triangle-right-filled-circle" | "triangle-right-filled-circle-filled" | "triangle-right-filled-circle-off" | "triangle-right-filled-off" | "triangle-right-off" | "triangle-up-circle" | "triangle-up-circle-filled" | "triangle-up-circle-off" | "triangle-up-filled-circle" | "triangle-up-filled-circle-filled" | "triangle-up-filled-circle-off" | "triangle-up-filled-off" | "triangle-up-off" | "trophy-circle-filled" | "trophy-circle-off" | "truck-circle" | "truck-circle-filled" | "truck-circle-off" | "umbrella-circle" | "umbrella-circle-filled" | "umbrella-circle-off" | "watch-circle" | "watch-circle-filled" | "watch-circle-off" | "water-drop-circle" | "water-drop-circle-filled" | "water-drop-circle-off" | "water-drop-off" | "wifi-circle-filled" | "wifi-circle-off" | "wrench-circle" | "wrench-circle-filled" | "wrench-circle-off" | "wrench-off" | "yen-circle-filled" | "yen-circle-off" | "yen-off" | "yuan-circle" | "yuan-circle-filled" | "yuan-circle-off" | "yuan-off">): import("react").JSX.Element;
|
|
1286
|
+
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, placeholder, placeholderColor, placeholderDuration, onLoad, onError, accessibilityLabel, testID, animate, animationDuration, animationLoop, animationEasing, animationDelay, autoPlay, onAnimationComplete, }: import("..").IconProps<"map" | "repeat" | "menu" | "radio" | "list" | "key" | "code" | "label" | "circle" | "loop" | "arrow-up-left" | "arrow-up-right" | "bluetooth" | "bluetooth-off" | "book" | "book-off" | "bookmark" | "bookmark-off" | "briefcase" | "briefcase-off" | "clipboard" | "clipboard-check" | "clipboard-off" | "crown" | "eye" | "eye-circle" | "eye-closed" | "eye-off" | "fast-forward" | "flag" | "flag-off" | "grid" | "grid-off" | "handshake" | "heart-circle" | "keyboard" | "keyboard-off" | "label-off" | "magnet" | "minus-circle-off" | "monitor-eye" | "paperclip" | "paperclip-off" | "pause-circle" | "pen-off" | "pin" | "pin-off" | "play-circle" | "plus-circle" | "power-off" | "radio-off" | "repeat-off" | "rewind" | "shield-off" | "square-off" | "star-off" | "ticket" | "wifi" | "wifi-off" | "shield-check" | "flower" | "leaf" | "leaf-circle" | "leaf-off" | "tree" | "arrow-down" | "arrow-down-circle" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-left-circle" | "arrow-right" | "arrow-right-circle" | "arrow-up" | "arrow-up-circle" | "shuffle" | "battery" | "car" | "car-off" | "lock-open" | "bank" | "bank-circle" | "bank-off" | "credit-card" | "credit-card-off" | "battery-off" | "phone" | "phone-off" | "cloud" | "cloud-circle" | "cloud-off" | "database" | "database-off" | "alarm" | "alarm-off" | "calendar" | "clock" | "monitor" | "monitor-off" | "tablet" | "television" | "television-off" | "television-play" | "watch" | "pen" | "ruler" | "file" | "folder" | "folder-off" | "cup" | "cup-off" | "hamburger" | "hamburger-off" | "square-circle" | "minus-circle" | "controller" | "controller-off" | "crown-circle" | "heart" | "shield" | "sword" | "nut" | "wrench" | "gift" | "gift-off" | "bell" | "camera" | "fire" | "fire-circle" | "fire-off" | "pause" | "play" | "power" | "printer" | "angle-right" | "calculator" | "division" | "equal" | "exclamation" | "minus" | "plus" | "heart-off" | "hospital" | "pill" | "pill-off" | "microphone" | "microphone-off" | "airplane" | "taxi" | "train" | "bell-circle" | "bell-off" | "camera-off" | "printer-off" | "square" | "star" | "star-circle" | "triangle-down" | "cart" | "cart-off" | "bicycle" | "trophy" | "airplane-off" | "truck" | "umbrella" | "exclamation-circle" | "identification" | "lock-closed" | "megaphone" | "moon" | "photo" | "qr-code" | "scissors" | "sun" | "trash" | "building" | "calendar-off" | "circle-off" | "clapperboard" | "coins" | "euro" | "expand" | "hand-grab" | "hash" | "headphone-off" | "hourglass" | "house" | "info" | "megaphone-off" | "nut-off" | "swords" | "syringe" | "thumbs-down" | "thumbs-up" | "triangle-right" | "umbrella-off" | "sliders" | "arrow-down-circle-filled" | "arrow-down-left-circle" | "arrow-down-right-circle" | "arrow-left-circle-filled" | "arrow-right-circle-filled" | "arrow-up-circle-filled" | "arrow-up-left-circle" | "arrow-up-right-circle" | "bookmark-filled" | "building-off" | "calculator-off" | "circle-filled" | "clock-off" | "cloud-down" | "cloud-up" | "code-circle" | "code-circle-filled" | "code-off" | "color-picker" | "color-picker-off" | "comet" | "contract" | "crown-off" | "exclamation-circle-filled" | "file-off" | "flower-off" | "heart-filled" | "hospital-circle" | "hospital-circle-filled" | "hourglass-off" | "info-circle" | "info-circle-filled" | "key-off" | "lock-open-off" | "magnet-off" | "map-off" | "moon-off" | "photo-circle" | "photo-off" | "planet" | "planet-off" | "ruler-off" | "scissors-off" | "seedling" | "seedling-off" | "shield-checkered" | "square-filled" | "star-filled" | "stars" | "stars-off" | "stopwatch" | "sun-off" | "sword-off" | "ticket-off" | "trash-off" | "trophy-off" | "truck-off" | "fast-forward-circle" | "gear" | "people" | "person" | "person-circle" | "person-plus" | "question" | "question-circle" | "rewind-circle" | "arrows-spin" | "earth-americas" | "earth-asia" | "earth-europe" | "floppy-disk" | "hands-clapping" | "angle-down" | "angle-left" | "angle-up" | "motorcycle" | "paper-plane" | "checkmark" | "checkmark-filled" | "checkmark-circle" | "duplicate" | "enter" | "list-circle" | "open" | "people-circle" | "clock-circle-filled" | "dollar-circle-filled" | "euro-circle-filled" | "minus-circle-filled" | "pause-circle-filled" | "play-circle-filled" | "plus-circle-filled" | "question-circle-filled" | "lock-open-circle" | "circle-circle" | "watch-off" | "photo-camera" | "flag-circle" | "person-off" | "water-drop" | "share-android" | "share-ios" | "internet" | "dollar" | "dollar-circle" | "yen" | "bookmark-circle" | "cv" | "headphone" | "triangle-left" | "triangle-up" | "countdown" | "no-entry" | "radio-circle" | "t-shirt" | "chain" | "dress" | "book-circle" | "calendar-circle" | "camera-circle" | "equal-circle" | "face-smiling" | "folder-circle" | "grid-circle" | "moon-circle" | "phone-circle" | "text-bubble" | "trash-circle" | "times-circle" | "times" | "leave" | "persons" | "peso" | "yuan" | "electricity" | "bluetooth-circle" | "euro-circle" | "menu-circle" | "wifi-circle" | "yen-circle" | "tablet-off" | "triangle-down-filled" | "triangle-left-filled" | "triangle-right-filled" | "triangle-up-filled" | "house-off" | "trophy-circle" | "repeat-circle" | "clock-circle" | "hash-circle" | "can" | "cellphone-eye" | "cellphone-loop" | "clipboard-check-circle" | "coctail" | "dots-x" | "dots-y" | "eye-frame" | "file-loop" | "film-frame" | "flag-straight" | "flower-bud" | "folding-stool" | "hand-open" | "hand-point" | "hand-point-open" | "knive-fork" | "letter" | "letter-open" | "loop-minus" | "loop-plus" | "monitor-loop" | "move-x" | "move-y" | "music-note-double" | "music-note-single" | "next-track" | "paint-pallet" | "person-checkmark" | "photo-studio" | "pinpoint" | "pinpoint-off" | "previous-track" | "rewind-time" | "smartphone-cutout" | "smartphone-notch" | "soft-drink" | "speaker-high" | "speaker-low" | "studio-backdrop" | "studio-light-front" | "studio-light-side" | "text-bubbles" | "airplane-circle" | "airplane-circle-filled" | "airplane-circle-off" | "alarm-circle" | "alarm-circle-filled" | "alarm-circle-off" | "angle-down-circle" | "angle-down-circle-filled" | "angle-down-circle-off" | "angle-down-off" | "angle-left-circle" | "angle-left-circle-filled" | "angle-left-circle-off" | "angle-left-off" | "angle-right-circle" | "angle-right-circle-filled" | "angle-right-circle-off" | "angle-right-off" | "angle-up-circle" | "angle-up-circle-filled" | "angle-up-circle-off" | "angle-up-off" | "arrow-down-circle-off" | "arrow-down-left-circle-filled" | "arrow-down-left-circle-off" | "arrow-down-left-off" | "arrow-down-off" | "arrow-down-right-circle-filled" | "arrow-down-right-circle-off" | "arrow-down-right-off" | "arrow-left-circle-off" | "arrow-left-off" | "arrow-right-circle-off" | "arrow-right-off" | "arrow-spin" | "arrow-spin-circle" | "arrow-spin-circle-filled" | "arrow-spin-circle-off" | "arrow-spin-off" | "arrow-up-circle-off" | "arrow-up-left-circle-filled" | "arrow-up-left-circle-off" | "arrow-up-left-off" | "arrow-up-off" | "arrow-up-right-circle-filled" | "arrow-up-right-circle-off" | "arrow-up-right-off" | "arrows-spin-circle" | "arrows-spin-circle-filled" | "arrows-spin-circle-off" | "arrows-spin-off" | "bank-circle-filled" | "bank-circle-off" | "battery-circle" | "battery-circle-filled" | "battery-circle-off" | "bell-circle-filled" | "bell-circle-off" | "bicycle-circle" | "bicycle-circle-filled" | "bicycle-circle-off" | "bicycle-off" | "bluetooth-circle-filled" | "bluetooth-circle-off" | "book-circle-filled" | "book-circle-off" | "bookmark-circle-filled" | "bookmark-circle-off" | "bookmark-filled-circle" | "bookmark-filled-circle-filled" | "bookmark-filled-circle-off" | "bookmark-filled-off" | "briefcase-circle" | "briefcase-circle-filled" | "briefcase-circle-off" | "building-circle" | "building-circle-filled" | "building-circle-off" | "bulletin-notice" | "bulletin-notice-circle" | "bulletin-notice-circle-filled" | "bulletin-notice-circle-off" | "bulletin-notice-off" | "calculator-circle" | "calculator-circle-filled" | "calculator-circle-off" | "calendar-circle-filled" | "calendar-circle-off" | "camera-circle-filled" | "camera-circle-off" | "can-circle" | "can-circle-filled" | "can-circle-off" | "can-off" | "car-circle" | "car-circle-filled" | "car-circle-off" | "cart-circle" | "cart-circle-filled" | "cart-circle-off" | "cellphone-eye-circle" | "cellphone-eye-circle-filled" | "cellphone-eye-circle-off" | "cellphone-eye-off" | "cellphone-loop-circle" | "cellphone-loop-circle-filled" | "cellphone-loop-circle-off" | "cellphone-loop-off" | "chain-circle" | "chain-circle-filled" | "chain-circle-off" | "chain-off" | "checkmark-circle-filled" | "checkmark-circle-off" | "checkmark-filled-circle" | "checkmark-filled-circle-filled" | "checkmark-filled-circle-off" | "checkmark-filled-off" | "checkmark-off" | "checkmark-outlined" | "checkmark-outlined-circle" | "checkmark-outlined-circle-filled" | "checkmark-outlined-circle-off" | "checkmark-outlined-off" | "circle-big" | "circle-big-circle" | "circle-big-circle-filled" | "circle-big-circle-off" | "circle-big-filled" | "circle-big-filled-circle" | "circle-big-filled-circle-filled" | "circle-big-filled-circle-off" | "circle-big-filled-off" | "circle-big-off" | "circle-circle-filled" | "circle-circle-off" | "circle-filled-circle" | "circle-filled-circle-filled" | "circle-filled-circle-off" | "circle-filled-off" | "clapperboard-circle" | "clapperboard-circle-filled" | "clapperboard-circle-off" | "clapperboard-off" | "clipboard-check-circle-filled" | "clipboard-check-circle-off" | "clipboard-check-circled" | "clipboard-check-circled-circle" | "clipboard-check-circled-circle-filled" | "clipboard-check-circled-circle-off" | "clipboard-check-circled-off" | "clipboard-check-off" | "clipboard-circle" | "clipboard-circle-filled" | "clipboard-circle-off" | "clock-circle-off" | "cloud-circle-filled" | "cloud-circle-off" | "cloud-down-circle" | "cloud-down-circle-filled" | "cloud-down-circle-off" | "cloud-down-off" | "cloud-up-circle" | "cloud-up-circle-filled" | "cloud-up-circle-off" | "cloud-up-off" | "coctail-circle" | "coctail-circle-filled" | "coctail-circle-off" | "coctail-off" | "code-circle-off" | "coins-circle" | "coins-circle-filled" | "coins-circle-off" | "coins-off" | "color-picker-circle" | "color-picker-circle-filled" | "color-picker-circle-off" | "comet-circle" | "comet-circle-filled" | "comet-circle-off" | "comet-off" | "contract-circle" | "contract-circle-filled" | "contract-circle-off" | "contract-off" | "controller-circle" | "controller-circle-filled" | "controller-circle-off" | "countdown-circle" | "countdown-circle-filled" | "countdown-circle-off" | "countdown-off" | "credit-card-circle" | "credit-card-circle-filled" | "credit-card-circle-off" | "crown-circle-filled" | "crown-circle-off" | "cup-circle" | "cup-circle-filled" | "cup-circle-off" | "cv-circle" | "cv-circle-filled" | "cv-circle-off" | "cv-off" | "database-circle" | "database-circle-filled" | "database-circle-off" | "division-circle" | "division-circle-filled" | "division-circle-off" | "division-off" | "dollar-circle-off" | "dollar-off" | "dots-x-circle" | "dots-x-circle-filled" | "dots-x-circle-off" | "dots-x-off" | "dots-y-circle" | "dots-y-circle-filled" | "dots-y-circle-off" | "dots-y-off" | "down-left" | "down-left-circle" | "down-left-circle-filled" | "down-left-circle-off" | "down-left-off" | "down-up" | "down-up-circle" | "down-up-circle-filled" | "down-up-circle-off" | "down-up-off" | "dress-circle" | "dress-circle-filled" | "dress-circle-off" | "dress-off" | "duplicate-circle" | "duplicate-circle-filled" | "duplicate-circle-off" | "duplicate-off" | "earth-americas-circle" | "earth-americas-circle-filled" | "earth-americas-circle-off" | "earth-americas-off" | "earth-asia-circle" | "earth-asia-circle-filled" | "earth-asia-circle-off" | "earth-asia-off" | "earth-europe-circle" | "earth-europe-circle-filled" | "earth-europe-circle-off" | "earth-europe-off" | "electricity-circle" | "electricity-circle-filled" | "electricity-circle-off" | "electricity-off" | "enter-circle" | "enter-circle-filled" | "enter-circle-off" | "enter-off" | "equal-circle-filled" | "equal-circle-off" | "equal-off" | "euro-circle-off" | "euro-off" | "exclamation-circle-off" | "exclamation-off" | "expand-circle" | "expand-circle-filled" | "expand-circle-off" | "expand-off" | "eye-circle-filled" | "eye-circle-off" | "eye-closed-circle" | "eye-closed-circle-filled" | "eye-closed-circle-off" | "eye-closed-off" | "eye-frame-circle" | "eye-frame-circle-filled" | "eye-frame-circle-off" | "eye-frame-off" | "face-frowning" | "face-frowning-circle" | "face-frowning-circle-filled" | "face-frowning-circle-off" | "face-frowning-off" | "face-grinning" | "face-grinning-circle" | "face-grinning-circle-filled" | "face-grinning-circle-off" | "face-grinning-off" | "face-smiling-circle" | "face-smiling-circle-filled" | "face-smiling-circle-off" | "face-smiling-off" | "fast-forward-circle-filled" | "fast-forward-circle-off" | "fast-forward-off" | "file-circle" | "file-circle-filled" | "file-circle-off" | "file-loop-circle" | "file-loop-circle-filled" | "file-loop-circle-off" | "file-loop-off" | "film-frame-circle" | "film-frame-circle-filled" | "film-frame-circle-off" | "film-frame-off" | "fire-circle-filled" | "fire-circle-off" | "flag-circle-filled" | "flag-circle-off" | "flag-straight-circle" | "flag-straight-circle-filled" | "flag-straight-circle-off" | "flag-straight-off" | "floppy-disk-circle" | "floppy-disk-circle-filled" | "floppy-disk-circle-off" | "floppy-disk-off" | "flower-bud-circle" | "flower-bud-circle-filled" | "flower-bud-circle-off" | "flower-bud-off" | "flower-circle" | "flower-circle-filled" | "flower-circle-off" | "folder-circle-filled" | "folder-circle-off" | "folding-stool-circle" | "folding-stool-circle-filled" | "folding-stool-circle-off" | "folding-stool-off" | "gear-circle" | "gear-circle-filled" | "gear-circle-off" | "gear-off" | "gift-circle" | "gift-circle-filled" | "gift-circle-off" | "grab-handle" | "grab-handle-circle" | "grab-handle-circle-filled" | "grab-handle-circle-off" | "grab-handle-off" | "grid-circle-filled" | "grid-circle-off" | "hamburger-circle" | "hamburger-circle-filled" | "hamburger-circle-off" | "hammer-claw" | "hammer-claw-circle" | "hammer-claw-circle-filled" | "hammer-claw-circle-off" | "hammer-claw-off" | "hammer-sledge" | "hammer-sledge-circle" | "hammer-sledge-circle-filled" | "hammer-sledge-circle-off" | "hammer-sledge-off" | "hand-grab-circle" | "hand-grab-circle-filled" | "hand-grab-circle-off" | "hand-grab-off" | "hand-open-circle" | "hand-open-circle-filled" | "hand-open-circle-off" | "hand-open-off" | "hand-point-circle" | "hand-point-circle-filled" | "hand-point-circle-off" | "hand-point-off" | "hand-point-open-circle" | "hand-point-open-circle-filled" | "hand-point-open-circle-off" | "hand-point-open-off" | "hands-clapping-checkmark" | "hands-clapping-checkmark-circle" | "hands-clapping-checkmark-circle-filled" | "hands-clapping-checkmark-circle-off" | "hands-clapping-checkmark-off" | "hands-clapping-circle" | "hands-clapping-circle-filled" | "hands-clapping-circle-off" | "hands-clapping-off" | "handshake-circle" | "handshake-circle-filled" | "handshake-circle-off" | "handshake-off" | "hash-circle-filled" | "hash-circle-off" | "hash-off" | "headphone-circle" | "headphone-circle-filled" | "headphone-circle-off" | "heart-circle-filled" | "heart-circle-off" | "heart-filled-circle" | "heart-filled-circle-filled" | "heart-filled-circle-off" | "heart-filled-off" | "hospital-circle-off" | "hospital-off" | "hourglass-circle" | "hourglass-circle-filled" | "hourglass-circle-off" | "house-circle" | "house-circle-filled" | "house-circle-off" | "identification-circle" | "identification-circle-filled" | "identification-circle-off" | "identification-off" | "info-circle-off" | "info-off" | "internet-circle" | "internet-circle-filled" | "internet-circle-off" | "internet-off" | "key-circle" | "key-circle-filled" | "key-circle-off" | "keyboard-circle" | "keyboard-circle-filled" | "keyboard-circle-off" | "knive-fork-circle" | "knive-fork-circle-filled" | "knive-fork-circle-off" | "knive-fork-off" | "label-circle" | "label-circle-filled" | "label-circle-off" | "leaf-circle-filled" | "leaf-circle-off" | "leave-circle" | "leave-circle-filled" | "leave-circle-off" | "leave-off" | "letter-circle" | "letter-circle-filled" | "letter-circle-off" | "letter-off" | "letter-open-circle" | "letter-open-circle-filled" | "letter-open-circle-off" | "letter-open-off" | "line-slant-down" | "line-slant-down-circle" | "line-slant-down-circle-filled" | "line-slant-down-circle-off" | "line-slant-down-off" | "line-slant-up" | "line-slant-up-circle" | "line-slant-up-circle-filled" | "line-slant-up-circle-off" | "line-slant-up-off" | "line-x" | "line-x-circle" | "line-x-circle-filled" | "line-x-circle-off" | "line-x-off" | "line-y" | "line-y-circle" | "line-y-circle-filled" | "line-y-circle-off" | "line-y-off" | "list-circle-filled" | "list-circle-off" | "list-off" | "lock-closed-circle" | "lock-closed-circle-filled" | "lock-closed-circle-off" | "lock-closed-off" | "lock-open-circle-filled" | "lock-open-circle-off" | "loop-circle" | "loop-circle-filled" | "loop-circle-off" | "loop-minus-circle" | "loop-minus-circle-filled" | "loop-minus-circle-off" | "loop-minus-off" | "loop-off" | "loop-plus-circle" | "loop-plus-circle-filled" | "loop-plus-circle-off" | "loop-plus-off" | "magnet-circle" | "magnet-circle-filled" | "magnet-circle-off" | "map-circle" | "map-circle-filled" | "map-circle-off" | "megaphone-circle" | "megaphone-circle-filled" | "megaphone-circle-off" | "menu-circle-filled" | "menu-circle-off" | "menu-off" | "microphone-circle" | "microphone-circle-filled" | "microphone-circle-off" | "microphone-handheld" | "microphone-handheld-circle" | "microphone-handheld-circle-filled" | "microphone-handheld-circle-off" | "microphone-handheld-off" | "minus-off" | "money-note" | "money-note-circle" | "money-note-circle-filled" | "money-note-circle-off" | "money-note-off" | "monitor-circle" | "monitor-circle-filled" | "monitor-circle-off" | "monitor-eye-circle" | "monitor-eye-circle-filled" | "monitor-eye-circle-off" | "monitor-eye-off" | "monitor-loop-circle" | "monitor-loop-circle-filled" | "monitor-loop-circle-off" | "monitor-loop-off" | "moon-circle-filled" | "moon-circle-off" | "motorcycle-circle" | "motorcycle-circle-filled" | "motorcycle-circle-off" | "motorcycle-off" | "move-x-circle" | "move-x-circle-filled" | "move-x-circle-off" | "move-x-off" | "move-y-circle" | "move-y-circle-filled" | "move-y-circle-off" | "move-y-off" | "music-note-double-circle" | "music-note-double-circle-filled" | "music-note-double-circle-off" | "music-note-double-off" | "music-note-single-circle" | "music-note-single-circle-filled" | "music-note-single-circle-off" | "music-note-single-off" | "next-track-circle" | "next-track-circle-filled" | "next-track-circle-off" | "next-track-off" | "no-entry-circle" | "no-entry-circle-filled" | "no-entry-circle-off" | "no-entry-off" | "nut-circle" | "nut-circle-filled" | "nut-circle-off" | "open-circle" | "open-circle-filled" | "open-circle-off" | "open-off" | "paint-pallet-circle" | "paint-pallet-circle-filled" | "paint-pallet-circle-off" | "paint-pallet-off" | "paper-plane-circle" | "paper-plane-circle-filled" | "paper-plane-circle-off" | "paper-plane-off" | "paperclip-circle" | "paperclip-circle-filled" | "paperclip-circle-off" | "pause-circle-off" | "pause-off" | "pen-circle" | "pen-circle-filled" | "pen-circle-off" | "people-circle-filled" | "people-circle-off" | "people-off" | "person-checkmark-circle" | "person-checkmark-circle-filled" | "person-checkmark-circle-off" | "person-checkmark-off" | "person-circle-filled" | "person-circle-off" | "person-plus-circle" | "person-plus-circle-filled" | "person-plus-circle-off" | "person-plus-off" | "persons-circle" | "persons-circle-filled" | "persons-circle-off" | "persons-off" | "peso-circle" | "peso-circle-filled" | "peso-circle-off" | "peso-off" | "phone-circle-filled" | "phone-circle-off" | "photo-camera-circle" | "photo-camera-circle-filled" | "photo-camera-circle-off" | "photo-camera-off" | "photo-circle-filled" | "photo-circle-off" | "photo-studio-circle" | "photo-studio-circle-filled" | "photo-studio-circle-off" | "photo-studio-off" | "pill-circle" | "pill-circle-filled" | "pill-circle-off" | "pin-circle" | "pin-circle-filled" | "pin-circle-off" | "pinpoint-circle" | "pinpoint-circle-filled" | "pinpoint-circle-off" | "planet-circle" | "planet-circle-filled" | "planet-circle-off" | "planet-ring" | "planet-ring-circle" | "planet-ring-circle-filled" | "planet-ring-circle-off" | "planet-ring-off" | "play-circle-off" | "play-off" | "plus-circle-off" | "plus-off" | "power-circle" | "power-circle-filled" | "power-circle-off" | "previous-track-circle" | "previous-track-circle-filled" | "previous-track-circle-off" | "previous-track-off" | "printer-circle" | "printer-circle-filled" | "printer-circle-off" | "qr-code-circle" | "qr-code-circle-filled" | "qr-code-circle-off" | "qr-code-off" | "question-circle-off" | "question-off" | "radio-circle-filled" | "radio-circle-off" | "raise-hand" | "raise-hand-circle" | "raise-hand-circle-filled" | "raise-hand-circle-off" | "raise-hand-off" | "repeat-circle-filled" | "repeat-circle-off" | "rewind-circle-filled" | "rewind-circle-off" | "rewind-off" | "rewind-time-circle" | "rewind-time-circle-filled" | "rewind-time-circle-off" | "rewind-time-off" | "ruler-circle" | "ruler-circle-filled" | "ruler-circle-off" | "scissors-circle" | "scissors-circle-filled" | "scissors-circle-off" | "seedling-circle" | "seedling-circle-filled" | "seedling-circle-off" | "share-android-circle" | "share-android-circle-filled" | "share-android-circle-off" | "share-android-off" | "share-ios-circle" | "share-ios-circle-filled" | "share-ios-circle-off" | "share-ios-off" | "shield-check-circle" | "shield-check-circle-filled" | "shield-check-circle-off" | "shield-check-off" | "shield-checkered-circle" | "shield-checkered-circle-filled" | "shield-checkered-circle-off" | "shield-checkered-off" | "shield-circle" | "shield-circle-filled" | "shield-circle-off" | "shuffle-circle" | "shuffle-circle-filled" | "shuffle-circle-off" | "shuffle-off" | "sliders-circle" | "sliders-circle-filled" | "sliders-circle-off" | "sliders-off" | "smartphone-cutout-circle" | "smartphone-cutout-circle-filled" | "smartphone-cutout-circle-off" | "smartphone-cutout-off" | "smartphone-home-button" | "smartphone-home-button-circle" | "smartphone-home-button-circle-filled" | "smartphone-home-button-circle-off" | "smartphone-home-button-off" | "smartphone-notch-circle" | "smartphone-notch-circle-filled" | "smartphone-notch-circle-off" | "smartphone-notch-off" | "soft-drink-circle" | "soft-drink-circle-filled" | "soft-drink-circle-off" | "soft-drink-off" | "speaker-high-circle" | "speaker-high-circle-filled" | "speaker-high-circle-off" | "speaker-high-off" | "speaker-low-circle" | "speaker-low-circle-filled" | "speaker-low-circle-off" | "speaker-low-off" | "square-circle-filled" | "square-circle-off" | "square-filled-circle" | "square-filled-circle-filled" | "square-filled-circle-off" | "square-filled-off" | "star-circle-filled" | "star-circle-off" | "star-filled-circle" | "star-filled-circle-filled" | "star-filled-circle-off" | "star-filled-off" | "stars-circle" | "stars-circle-filled" | "stars-circle-off" | "stopwatch-circle" | "stopwatch-circle-filled" | "stopwatch-circle-off" | "stopwatch-off" | "studio-backdrop-circle" | "studio-backdrop-circle-filled" | "studio-backdrop-circle-off" | "studio-backdrop-off" | "studio-light-front-circle" | "studio-light-front-circle-filled" | "studio-light-front-circle-off" | "studio-light-front-off" | "studio-light-side-circle" | "studio-light-side-circle-filled" | "studio-light-side-circle-off" | "studio-light-side-off" | "sun-circle" | "sun-circle-filled" | "sun-circle-off" | "sword-circle" | "sword-circle-filled" | "sword-circle-off" | "sword-shield" | "sword-shield-circle" | "sword-shield-circle-filled" | "sword-shield-circle-off" | "sword-shield-off" | "swords-circle" | "swords-circle-filled" | "swords-circle-off" | "swords-off" | "syringe-circle" | "syringe-circle-filled" | "syringe-circle-off" | "syringe-off" | "t-shirt-circle" | "t-shirt-circle-filled" | "t-shirt-circle-off" | "t-shirt-off" | "tablet-circle" | "tablet-circle-filled" | "tablet-circle-off" | "taxi-circle" | "taxi-circle-filled" | "taxi-circle-off" | "taxi-off" | "television-circle" | "television-circle-filled" | "television-circle-off" | "television-play-circle" | "television-play-circle-filled" | "television-play-circle-off" | "television-play-off" | "text-bubble-circle" | "text-bubble-circle-filled" | "text-bubble-circle-off" | "text-bubble-off" | "text-bubbles-circle" | "text-bubbles-circle-filled" | "text-bubbles-circle-off" | "text-bubbles-off" | "thumbs-down-circle" | "thumbs-down-circle-filled" | "thumbs-down-circle-off" | "thumbs-down-off" | "thumbs-up-circle" | "thumbs-up-circle-filled" | "thumbs-up-circle-off" | "thumbs-up-off" | "ticket-circle" | "ticket-circle-filled" | "ticket-circle-off" | "times-circle-filled" | "times-circle-off" | "times-off" | "train-circle" | "train-circle-filled" | "train-circle-off" | "train-off" | "trash-circle-filled" | "trash-circle-off" | "tree-circle" | "tree-circle-filled" | "tree-circle-off" | "tree-off" | "triangle-down-circle" | "triangle-down-circle-filled" | "triangle-down-circle-off" | "triangle-down-filled-circle" | "triangle-down-filled-circle-filled" | "triangle-down-filled-circle-off" | "triangle-down-filled-off" | "triangle-down-off" | "triangle-left-circle" | "triangle-left-circle-filled" | "triangle-left-circle-off" | "triangle-left-filled-circle" | "triangle-left-filled-circle-filled" | "triangle-left-filled-circle-off" | "triangle-left-filled-off" | "triangle-left-off" | "triangle-right-circle" | "triangle-right-circle-filled" | "triangle-right-circle-off" | "triangle-right-filled-circle" | "triangle-right-filled-circle-filled" | "triangle-right-filled-circle-off" | "triangle-right-filled-off" | "triangle-right-off" | "triangle-up-circle" | "triangle-up-circle-filled" | "triangle-up-circle-off" | "triangle-up-filled-circle" | "triangle-up-filled-circle-filled" | "triangle-up-filled-circle-off" | "triangle-up-filled-off" | "triangle-up-off" | "trophy-circle-filled" | "trophy-circle-off" | "truck-circle" | "truck-circle-filled" | "truck-circle-off" | "umbrella-circle" | "umbrella-circle-filled" | "umbrella-circle-off" | "watch-circle" | "watch-circle-filled" | "watch-circle-off" | "water-drop-circle" | "water-drop-circle-filled" | "water-drop-circle-off" | "water-drop-off" | "wifi-circle-filled" | "wifi-circle-off" | "wrench-circle" | "wrench-circle-filled" | "wrench-circle-off" | "wrench-off" | "yen-circle-filled" | "yen-circle-off" | "yen-off" | "yuan-circle" | "yuan-circle-filled" | "yuan-circle-off" | "yuan-off">): import("react").JSX.Element;
|
|
1287
1287
|
displayName: string;
|
|
1288
1288
|
};
|
|
1289
1289
|
export {};
|