rn-iconify 1.0.0 → 2.0.1
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/assets/logo.gif +0 -0
- 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 +43 -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
|
@@ -1,472 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Phosphor Icons (ph)
|
|
3
|
-
* https://icon-sets.iconify.design/ph/
|
|
4
|
-
*
|
|
5
|
-
* 7000+ icons - MIT License
|
|
6
|
-
* Flexible icon family for interfaces, diagrams, presentations
|
|
7
|
-
*
|
|
8
|
-
* @example
|
|
9
|
-
* ```tsx
|
|
10
|
-
* import { Phosphor } from 'rn-iconify';
|
|
11
|
-
* <Phosphor name="house" size={24} color="blue" />
|
|
12
|
-
* ```
|
|
13
|
-
*/
|
|
14
|
-
declare const phosphorIconNames: {
|
|
15
|
-
readonly house: true;
|
|
16
|
-
readonly 'house-simple': true;
|
|
17
|
-
readonly list: true;
|
|
18
|
-
readonly x: true;
|
|
19
|
-
readonly check: true;
|
|
20
|
-
readonly plus: true;
|
|
21
|
-
readonly minus: true;
|
|
22
|
-
readonly 'arrow-left': true;
|
|
23
|
-
readonly 'arrow-right': true;
|
|
24
|
-
readonly 'arrow-up': true;
|
|
25
|
-
readonly 'arrow-down': true;
|
|
26
|
-
readonly 'caret-left': true;
|
|
27
|
-
readonly 'caret-right': true;
|
|
28
|
-
readonly 'caret-up': true;
|
|
29
|
-
readonly 'caret-down': true;
|
|
30
|
-
readonly 'caret-double-left': true;
|
|
31
|
-
readonly 'caret-double-right': true;
|
|
32
|
-
readonly 'caret-double-up': true;
|
|
33
|
-
readonly 'caret-double-down': true;
|
|
34
|
-
readonly 'arrow-square-left': true;
|
|
35
|
-
readonly 'arrow-square-right': true;
|
|
36
|
-
readonly 'arrow-square-up': true;
|
|
37
|
-
readonly 'arrow-square-down': true;
|
|
38
|
-
readonly 'arrow-circle-left': true;
|
|
39
|
-
readonly 'arrow-circle-right': true;
|
|
40
|
-
readonly 'arrow-circle-up': true;
|
|
41
|
-
readonly 'arrow-circle-down': true;
|
|
42
|
-
readonly user: true;
|
|
43
|
-
readonly 'user-circle': true;
|
|
44
|
-
readonly 'user-square': true;
|
|
45
|
-
readonly 'user-plus': true;
|
|
46
|
-
readonly 'user-minus': true;
|
|
47
|
-
readonly 'user-check': true;
|
|
48
|
-
readonly users: true;
|
|
49
|
-
readonly 'users-three': true;
|
|
50
|
-
readonly 'users-four': true;
|
|
51
|
-
readonly 'identification-card': true;
|
|
52
|
-
readonly 'identification-badge': true;
|
|
53
|
-
readonly envelope: true;
|
|
54
|
-
readonly 'envelope-open': true;
|
|
55
|
-
readonly 'envelope-simple': true;
|
|
56
|
-
readonly 'envelope-simple-open': true;
|
|
57
|
-
readonly phone: true;
|
|
58
|
-
readonly 'phone-call': true;
|
|
59
|
-
readonly 'phone-incoming': true;
|
|
60
|
-
readonly 'phone-outgoing': true;
|
|
61
|
-
readonly 'phone-slash': true;
|
|
62
|
-
readonly chat: true;
|
|
63
|
-
readonly 'chat-circle': true;
|
|
64
|
-
readonly 'chat-dots': true;
|
|
65
|
-
readonly 'chat-text': true;
|
|
66
|
-
readonly chats: true;
|
|
67
|
-
readonly 'chats-circle': true;
|
|
68
|
-
readonly 'paper-plane': true;
|
|
69
|
-
readonly 'paper-plane-right': true;
|
|
70
|
-
readonly 'paper-plane-tilt': true;
|
|
71
|
-
readonly play: true;
|
|
72
|
-
readonly 'play-circle': true;
|
|
73
|
-
readonly pause: true;
|
|
74
|
-
readonly 'pause-circle': true;
|
|
75
|
-
readonly stop: true;
|
|
76
|
-
readonly 'stop-circle': true;
|
|
77
|
-
readonly 'skip-back': true;
|
|
78
|
-
readonly 'skip-forward': true;
|
|
79
|
-
readonly rewind: true;
|
|
80
|
-
readonly 'fast-forward': true;
|
|
81
|
-
readonly 'speaker-high': true;
|
|
82
|
-
readonly 'speaker-low': true;
|
|
83
|
-
readonly 'speaker-none': true;
|
|
84
|
-
readonly 'speaker-slash': true;
|
|
85
|
-
readonly 'speaker-simple-high': true;
|
|
86
|
-
readonly 'speaker-simple-low': true;
|
|
87
|
-
readonly 'speaker-simple-none': true;
|
|
88
|
-
readonly 'speaker-simple-slash': true;
|
|
89
|
-
readonly 'music-note': true;
|
|
90
|
-
readonly 'music-notes': true;
|
|
91
|
-
readonly 'music-notes-plus': true;
|
|
92
|
-
readonly headphones: true;
|
|
93
|
-
readonly microphone: true;
|
|
94
|
-
readonly 'microphone-slash': true;
|
|
95
|
-
readonly 'video-camera': true;
|
|
96
|
-
readonly 'video-camera-slash': true;
|
|
97
|
-
readonly file: true;
|
|
98
|
-
readonly 'file-text': true;
|
|
99
|
-
readonly 'file-plus': true;
|
|
100
|
-
readonly 'file-minus': true;
|
|
101
|
-
readonly 'file-arrow-down': true;
|
|
102
|
-
readonly 'file-arrow-up': true;
|
|
103
|
-
readonly files: true;
|
|
104
|
-
readonly folder: true;
|
|
105
|
-
readonly 'folder-open': true;
|
|
106
|
-
readonly 'folder-plus': true;
|
|
107
|
-
readonly 'folder-minus': true;
|
|
108
|
-
readonly 'folder-simple': true;
|
|
109
|
-
readonly 'folder-simple-plus': true;
|
|
110
|
-
readonly 'folder-simple-minus': true;
|
|
111
|
-
readonly download: true;
|
|
112
|
-
readonly 'download-simple': true;
|
|
113
|
-
readonly upload: true;
|
|
114
|
-
readonly 'upload-simple': true;
|
|
115
|
-
readonly 'floppy-disk': true;
|
|
116
|
-
readonly archive: true;
|
|
117
|
-
readonly 'archive-box': true;
|
|
118
|
-
readonly trash: true;
|
|
119
|
-
readonly 'trash-simple': true;
|
|
120
|
-
readonly gear: true;
|
|
121
|
-
readonly 'gear-six': true;
|
|
122
|
-
readonly sliders: true;
|
|
123
|
-
readonly 'sliders-horizontal': true;
|
|
124
|
-
readonly 'magnifying-glass': true;
|
|
125
|
-
readonly 'magnifying-glass-plus': true;
|
|
126
|
-
readonly 'magnifying-glass-minus': true;
|
|
127
|
-
readonly funnel: true;
|
|
128
|
-
readonly 'funnel-simple': true;
|
|
129
|
-
readonly 'sort-ascending': true;
|
|
130
|
-
readonly 'sort-descending': true;
|
|
131
|
-
readonly 'list-bullets': true;
|
|
132
|
-
readonly 'list-numbers': true;
|
|
133
|
-
readonly 'list-checks': true;
|
|
134
|
-
readonly 'squares-four': true;
|
|
135
|
-
readonly 'grid-four': true;
|
|
136
|
-
readonly layout: true;
|
|
137
|
-
readonly sidebar: true;
|
|
138
|
-
readonly 'sidebar-simple': true;
|
|
139
|
-
readonly 'arrows-out': true;
|
|
140
|
-
readonly 'arrows-in': true;
|
|
141
|
-
readonly 'dots-three': true;
|
|
142
|
-
readonly 'dots-three-vertical': true;
|
|
143
|
-
readonly 'dots-three-outline': true;
|
|
144
|
-
readonly 'dots-three-outline-vertical': true;
|
|
145
|
-
readonly 'dots-six': true;
|
|
146
|
-
readonly 'dots-six-vertical': true;
|
|
147
|
-
readonly 'dots-nine': true;
|
|
148
|
-
readonly warning: true;
|
|
149
|
-
readonly 'warning-circle': true;
|
|
150
|
-
readonly 'warning-octagon': true;
|
|
151
|
-
readonly info: true;
|
|
152
|
-
readonly question: true;
|
|
153
|
-
readonly 'check-circle': true;
|
|
154
|
-
readonly 'check-square': true;
|
|
155
|
-
readonly 'x-circle': true;
|
|
156
|
-
readonly 'x-square': true;
|
|
157
|
-
readonly bell: true;
|
|
158
|
-
readonly 'bell-simple': true;
|
|
159
|
-
readonly 'bell-ringing': true;
|
|
160
|
-
readonly 'bell-slash': true;
|
|
161
|
-
readonly heart: true;
|
|
162
|
-
readonly 'heart-straight': true;
|
|
163
|
-
readonly 'heart-break': true;
|
|
164
|
-
readonly star: true;
|
|
165
|
-
readonly 'star-half': true;
|
|
166
|
-
readonly 'star-four': true;
|
|
167
|
-
readonly 'thumbs-up': true;
|
|
168
|
-
readonly 'thumbs-down': true;
|
|
169
|
-
readonly share: true;
|
|
170
|
-
readonly 'share-network': true;
|
|
171
|
-
readonly export: true;
|
|
172
|
-
readonly bookmark: true;
|
|
173
|
-
readonly 'bookmark-simple': true;
|
|
174
|
-
readonly bookmarks: true;
|
|
175
|
-
readonly 'bookmarks-simple': true;
|
|
176
|
-
readonly flag: true;
|
|
177
|
-
readonly 'flag-banner': true;
|
|
178
|
-
readonly trophy: true;
|
|
179
|
-
readonly medal: true;
|
|
180
|
-
readonly crown: true;
|
|
181
|
-
readonly 'crown-simple': true;
|
|
182
|
-
readonly pencil: true;
|
|
183
|
-
readonly 'pencil-simple': true;
|
|
184
|
-
readonly 'pencil-line': true;
|
|
185
|
-
readonly pen: true;
|
|
186
|
-
readonly 'pen-nib': true;
|
|
187
|
-
readonly 'pen-nib-straight': true;
|
|
188
|
-
readonly eraser: true;
|
|
189
|
-
readonly copy: true;
|
|
190
|
-
readonly 'copy-simple': true;
|
|
191
|
-
readonly clipboard: true;
|
|
192
|
-
readonly 'clipboard-text': true;
|
|
193
|
-
readonly scissors: true;
|
|
194
|
-
readonly 'text-aa': true;
|
|
195
|
-
readonly 'text-b': true;
|
|
196
|
-
readonly 'text-italic': true;
|
|
197
|
-
readonly 'text-underline': true;
|
|
198
|
-
readonly 'text-strikethrough': true;
|
|
199
|
-
readonly 'text-align-left': true;
|
|
200
|
-
readonly 'text-align-center': true;
|
|
201
|
-
readonly 'text-align-right': true;
|
|
202
|
-
readonly 'text-align-justify': true;
|
|
203
|
-
readonly 'shopping-cart': true;
|
|
204
|
-
readonly 'shopping-cart-simple': true;
|
|
205
|
-
readonly 'shopping-bag': true;
|
|
206
|
-
readonly 'shopping-bag-open': true;
|
|
207
|
-
readonly handbag: true;
|
|
208
|
-
readonly 'handbag-simple': true;
|
|
209
|
-
readonly 'credit-card': true;
|
|
210
|
-
readonly wallet: true;
|
|
211
|
-
readonly receipt: true;
|
|
212
|
-
readonly tag: true;
|
|
213
|
-
readonly 'tag-simple': true;
|
|
214
|
-
readonly barcode: true;
|
|
215
|
-
readonly 'qr-code': true;
|
|
216
|
-
readonly percent: true;
|
|
217
|
-
readonly 'currency-dollar': true;
|
|
218
|
-
readonly 'currency-dollar-simple': true;
|
|
219
|
-
readonly calendar: true;
|
|
220
|
-
readonly 'calendar-blank': true;
|
|
221
|
-
readonly 'calendar-check': true;
|
|
222
|
-
readonly 'calendar-plus': true;
|
|
223
|
-
readonly 'calendar-minus': true;
|
|
224
|
-
readonly 'calendar-x': true;
|
|
225
|
-
readonly clock: true;
|
|
226
|
-
readonly 'clock-afternoon': true;
|
|
227
|
-
readonly timer: true;
|
|
228
|
-
readonly alarm: true;
|
|
229
|
-
readonly hourglass: true;
|
|
230
|
-
readonly 'hourglass-simple': true;
|
|
231
|
-
readonly watch: true;
|
|
232
|
-
readonly 'map-pin': true;
|
|
233
|
-
readonly 'map-pin-line': true;
|
|
234
|
-
readonly 'map-trifold': true;
|
|
235
|
-
readonly 'navigation-arrow': true;
|
|
236
|
-
readonly compass: true;
|
|
237
|
-
readonly globe: true;
|
|
238
|
-
readonly 'globe-simple': true;
|
|
239
|
-
readonly 'globe-hemisphere-east': true;
|
|
240
|
-
readonly 'globe-hemisphere-west': true;
|
|
241
|
-
readonly sun: true;
|
|
242
|
-
readonly 'sun-dim': true;
|
|
243
|
-
readonly moon: true;
|
|
244
|
-
readonly 'moon-stars': true;
|
|
245
|
-
readonly cloud: true;
|
|
246
|
-
readonly 'cloud-sun': true;
|
|
247
|
-
readonly 'cloud-moon': true;
|
|
248
|
-
readonly 'cloud-rain': true;
|
|
249
|
-
readonly 'cloud-snow': true;
|
|
250
|
-
readonly 'cloud-lightning': true;
|
|
251
|
-
readonly 'cloud-fog': true;
|
|
252
|
-
readonly umbrella: true;
|
|
253
|
-
readonly 'umbrella-simple': true;
|
|
254
|
-
readonly wind: true;
|
|
255
|
-
readonly thermometer: true;
|
|
256
|
-
readonly 'thermometer-simple': true;
|
|
257
|
-
readonly drop: true;
|
|
258
|
-
readonly drops: true;
|
|
259
|
-
readonly snowflake: true;
|
|
260
|
-
readonly rainbow: true;
|
|
261
|
-
readonly lock: true;
|
|
262
|
-
readonly 'lock-simple': true;
|
|
263
|
-
readonly 'lock-open': true;
|
|
264
|
-
readonly 'lock-simple-open': true;
|
|
265
|
-
readonly key: true;
|
|
266
|
-
readonly password: true;
|
|
267
|
-
readonly shield: true;
|
|
268
|
-
readonly 'shield-check': true;
|
|
269
|
-
readonly 'shield-checkered': true;
|
|
270
|
-
readonly 'shield-slash': true;
|
|
271
|
-
readonly eye: true;
|
|
272
|
-
readonly 'eye-slash': true;
|
|
273
|
-
readonly 'eye-closed': true;
|
|
274
|
-
readonly fingerprint: true;
|
|
275
|
-
readonly 'fingerprint-simple': true;
|
|
276
|
-
readonly 'device-mobile': true;
|
|
277
|
-
readonly 'device-mobile-speaker': true;
|
|
278
|
-
readonly 'device-tablet': true;
|
|
279
|
-
readonly 'device-tablet-speaker': true;
|
|
280
|
-
readonly laptop: true;
|
|
281
|
-
readonly desktop: true;
|
|
282
|
-
readonly monitor: true;
|
|
283
|
-
readonly television: true;
|
|
284
|
-
readonly 'television-simple': true;
|
|
285
|
-
readonly printer: true;
|
|
286
|
-
readonly keyboard: true;
|
|
287
|
-
readonly mouse: true;
|
|
288
|
-
readonly cpu: true;
|
|
289
|
-
readonly 'hard-drive': true;
|
|
290
|
-
readonly 'hard-drives': true;
|
|
291
|
-
readonly database: true;
|
|
292
|
-
readonly 'wifi-high': true;
|
|
293
|
-
readonly 'wifi-low': true;
|
|
294
|
-
readonly 'wifi-medium': true;
|
|
295
|
-
readonly 'wifi-none': true;
|
|
296
|
-
readonly 'wifi-slash': true;
|
|
297
|
-
readonly bluetooth: true;
|
|
298
|
-
readonly 'bluetooth-connected': true;
|
|
299
|
-
readonly 'bluetooth-slash': true;
|
|
300
|
-
readonly 'battery-empty': true;
|
|
301
|
-
readonly 'battery-low': true;
|
|
302
|
-
readonly 'battery-medium': true;
|
|
303
|
-
readonly 'battery-high': true;
|
|
304
|
-
readonly 'battery-full': true;
|
|
305
|
-
readonly 'battery-charging': true;
|
|
306
|
-
readonly 'battery-charging-vertical': true;
|
|
307
|
-
readonly plug: true;
|
|
308
|
-
readonly plugs: true;
|
|
309
|
-
readonly 'plugs-connected': true;
|
|
310
|
-
readonly power: true;
|
|
311
|
-
readonly camera: true;
|
|
312
|
-
readonly 'camera-slash': true;
|
|
313
|
-
readonly image: true;
|
|
314
|
-
readonly 'image-square': true;
|
|
315
|
-
readonly images: true;
|
|
316
|
-
readonly 'images-square': true;
|
|
317
|
-
readonly palette: true;
|
|
318
|
-
readonly 'paint-brush': true;
|
|
319
|
-
readonly 'paint-brush-broad': true;
|
|
320
|
-
readonly 'paint-brush-household': true;
|
|
321
|
-
readonly 'paint-bucket': true;
|
|
322
|
-
readonly 'paint-roller': true;
|
|
323
|
-
readonly 'drop-half': true;
|
|
324
|
-
readonly 'drop-half-bottom': true;
|
|
325
|
-
readonly eyedropper: true;
|
|
326
|
-
readonly 'eyedropper-sample': true;
|
|
327
|
-
readonly crop: true;
|
|
328
|
-
readonly 'arrows-out-simple': true;
|
|
329
|
-
readonly 'arrows-clockwise': true;
|
|
330
|
-
readonly 'arrows-counter-clockwise': true;
|
|
331
|
-
readonly 'flip-horizontal': true;
|
|
332
|
-
readonly 'flip-vertical': true;
|
|
333
|
-
readonly stack: true;
|
|
334
|
-
readonly 'stack-simple': true;
|
|
335
|
-
readonly square: true;
|
|
336
|
-
readonly circle: true;
|
|
337
|
-
readonly triangle: true;
|
|
338
|
-
readonly hexagon: true;
|
|
339
|
-
readonly octagon: true;
|
|
340
|
-
readonly polygon: true;
|
|
341
|
-
readonly rectangle: true;
|
|
342
|
-
readonly parallelogram: true;
|
|
343
|
-
readonly link: true;
|
|
344
|
-
readonly 'link-simple': true;
|
|
345
|
-
readonly 'link-break': true;
|
|
346
|
-
readonly 'link-simple-break': true;
|
|
347
|
-
readonly 'arrow-square-out': true;
|
|
348
|
-
readonly paperclip: true;
|
|
349
|
-
readonly 'paperclip-horizontal': true;
|
|
350
|
-
readonly code: true;
|
|
351
|
-
readonly 'code-simple': true;
|
|
352
|
-
readonly terminal: true;
|
|
353
|
-
readonly 'terminal-window': true;
|
|
354
|
-
readonly hash: true;
|
|
355
|
-
readonly 'hash-straight': true;
|
|
356
|
-
readonly lightning: true;
|
|
357
|
-
readonly 'lightning-slash': true;
|
|
358
|
-
readonly flame: true;
|
|
359
|
-
readonly fire: true;
|
|
360
|
-
readonly 'fire-simple': true;
|
|
361
|
-
readonly lightbulb: true;
|
|
362
|
-
readonly 'lightbulb-filament': true;
|
|
363
|
-
readonly rocket: true;
|
|
364
|
-
readonly 'rocket-launch': true;
|
|
365
|
-
readonly target: true;
|
|
366
|
-
readonly crosshair: true;
|
|
367
|
-
readonly 'crosshair-simple': true;
|
|
368
|
-
readonly activity: true;
|
|
369
|
-
readonly pulse: true;
|
|
370
|
-
readonly heartbeat: true;
|
|
371
|
-
readonly 'trend-up': true;
|
|
372
|
-
readonly 'trend-down': true;
|
|
373
|
-
readonly 'chart-bar': true;
|
|
374
|
-
readonly 'chart-bar-horizontal': true;
|
|
375
|
-
readonly 'chart-line': true;
|
|
376
|
-
readonly 'chart-line-up': true;
|
|
377
|
-
readonly 'chart-pie': true;
|
|
378
|
-
readonly 'chart-pie-slice': true;
|
|
379
|
-
readonly 'chart-donut': true;
|
|
380
|
-
readonly spinner: true;
|
|
381
|
-
readonly 'spinner-gap': true;
|
|
382
|
-
readonly 'circle-notch': true;
|
|
383
|
-
readonly repeat: true;
|
|
384
|
-
readonly 'repeat-once': true;
|
|
385
|
-
readonly shuffle: true;
|
|
386
|
-
readonly 'shuffle-simple': true;
|
|
387
|
-
readonly infinity: true;
|
|
388
|
-
readonly command: true;
|
|
389
|
-
readonly option: true;
|
|
390
|
-
readonly backspace: true;
|
|
391
|
-
readonly 'sign-in': true;
|
|
392
|
-
readonly 'sign-out': true;
|
|
393
|
-
readonly door: true;
|
|
394
|
-
readonly 'door-open': true;
|
|
395
|
-
readonly gift: true;
|
|
396
|
-
readonly confetti: true;
|
|
397
|
-
readonly 'party-popper': true;
|
|
398
|
-
readonly coffee: true;
|
|
399
|
-
readonly 'beer-bottle': true;
|
|
400
|
-
readonly wine: true;
|
|
401
|
-
readonly martini: true;
|
|
402
|
-
readonly 'fork-knife': true;
|
|
403
|
-
readonly knife: true;
|
|
404
|
-
readonly 'cooking-pot': true;
|
|
405
|
-
readonly 'bowl-food': true;
|
|
406
|
-
readonly hamburger: true;
|
|
407
|
-
readonly pizza: true;
|
|
408
|
-
readonly pill: true;
|
|
409
|
-
readonly 'first-aid': true;
|
|
410
|
-
readonly 'first-aid-kit': true;
|
|
411
|
-
readonly stethoscope: true;
|
|
412
|
-
readonly syringe: true;
|
|
413
|
-
readonly briefcase: true;
|
|
414
|
-
readonly buildings: true;
|
|
415
|
-
readonly building: true;
|
|
416
|
-
readonly 'building-office': true;
|
|
417
|
-
readonly storefront: true;
|
|
418
|
-
readonly bank: true;
|
|
419
|
-
readonly factory: true;
|
|
420
|
-
readonly warehouse: true;
|
|
421
|
-
readonly garage: true;
|
|
422
|
-
readonly car: true;
|
|
423
|
-
readonly 'car-simple': true;
|
|
424
|
-
readonly taxi: true;
|
|
425
|
-
readonly bus: true;
|
|
426
|
-
readonly train: true;
|
|
427
|
-
readonly 'train-simple': true;
|
|
428
|
-
readonly airplane: true;
|
|
429
|
-
readonly 'airplane-takeoff': true;
|
|
430
|
-
readonly 'airplane-landing': true;
|
|
431
|
-
readonly boat: true;
|
|
432
|
-
readonly bicycle: true;
|
|
433
|
-
readonly motorcycle: true;
|
|
434
|
-
readonly scooter: true;
|
|
435
|
-
readonly footprints: true;
|
|
436
|
-
readonly person: true;
|
|
437
|
-
readonly 'person-simple': true;
|
|
438
|
-
readonly 'person-simple-run': true;
|
|
439
|
-
readonly 'person-simple-walk': true;
|
|
440
|
-
readonly baby: true;
|
|
441
|
-
readonly cat: true;
|
|
442
|
-
readonly dog: true;
|
|
443
|
-
readonly bird: true;
|
|
444
|
-
readonly fish: true;
|
|
445
|
-
readonly 'fish-simple': true;
|
|
446
|
-
readonly butterfly: true;
|
|
447
|
-
readonly bug: true;
|
|
448
|
-
readonly 'bug-beetle': true;
|
|
449
|
-
readonly 'bug-droid': true;
|
|
450
|
-
readonly spider: true;
|
|
451
|
-
readonly leaf: true;
|
|
452
|
-
readonly flower: true;
|
|
453
|
-
readonly 'flower-lotus': true;
|
|
454
|
-
readonly 'flower-tulip': true;
|
|
455
|
-
readonly tree: true;
|
|
456
|
-
readonly 'tree-evergreen': true;
|
|
457
|
-
readonly 'tree-palm': true;
|
|
458
|
-
readonly plant: true;
|
|
459
|
-
readonly 'potted-plant': true;
|
|
460
|
-
readonly cactus: true;
|
|
461
|
-
readonly mountains: true;
|
|
462
|
-
readonly mountain: true;
|
|
463
|
-
readonly waves: true;
|
|
464
|
-
readonly wave: true;
|
|
465
|
-
};
|
|
466
|
-
export type PhosphorIconName = keyof typeof phosphorIconNames;
|
|
467
|
-
export declare const Phosphor: {
|
|
468
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"image" | "link" | "timer" | "list" | "key" | "repeat" | "code" | "option" | "circle" | "polygon" | "stop" | "archive" | "backspace" | "barcode" | "bluetooth" | "bookmark" | "briefcase" | "chat" | "clipboard" | "clipboard-text" | "crop" | "crown" | "download" | "eraser" | "export" | "eye" | "eye-closed" | "fast-forward" | "fingerprint" | "flag" | "keyboard" | "knife" | "mouse" | "paperclip" | "pause-circle" | "play-circle" | "repeat-once" | "rewind" | "stop-circle" | "tag" | "target" | "upload" | "shield-check" | "flower" | "flower-tulip" | "leaf" | "tree" | "waves" | "bird" | "bug" | "butterfly" | "cat" | "dog" | "fish" | "spider" | "flip-horizontal" | "flip-vertical" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "share" | "shuffle" | "headphones" | "music-note" | "battery-charging" | "car" | "lock" | "lock-open" | "snowflake" | "thermometer" | "bank" | "credit-card" | "receipt" | "wallet" | "battery-high" | "battery-low" | "battery-medium" | "phone" | "phone-incoming" | "phone-outgoing" | "cloud" | "eyedropper" | "palette" | "database" | "alarm" | "calendar" | "calendar-blank" | "calendar-check" | "calendar-minus" | "calendar-plus" | "clock" | "laptop" | "monitor" | "television" | "watch" | "pen" | "pencil" | "file" | "file-minus" | "file-plus" | "folder" | "folder-minus" | "folder-open" | "folder-plus" | "coffee" | "hamburger" | "pizza" | "check" | "check-circle" | "heart" | "medal" | "shield" | "compass" | "factory" | "gift" | "party-popper" | "bell" | "camera" | "door" | "door-open" | "fire" | "garage" | "lightbulb" | "pause" | "play" | "power" | "printer" | "skip-forward" | "chart-bar" | "chart-donut" | "chart-line" | "chart-pie" | "infinity" | "minus" | "percent" | "plus" | "pill" | "pulse" | "stethoscope" | "microphone" | "cactus" | "airplane" | "bus" | "taxi" | "train" | "baby" | "storefront" | "warehouse" | "rocket" | "rocket-launch" | "hexagon" | "octagon" | "rectangle" | "square" | "star" | "star-half" | "triangle" | "bicycle" | "trophy" | "sort-ascending" | "sort-descending" | "airplane-landing" | "airplane-takeoff" | "scooter" | "wave" | "umbrella" | "archive-box" | "bell-slash" | "building-office" | "currency-dollar" | "device-tablet" | "envelope" | "envelope-open" | "eye-slash" | "funnel" | "magnifying-glass" | "magnifying-glass-minus" | "magnifying-glass-plus" | "map-pin" | "moon" | "paint-brush" | "qr-code" | "scissors" | "shopping-bag" | "shopping-cart" | "sun" | "trash" | "user" | "user-circle" | "user-minus" | "user-plus" | "users" | "video-camera" | "video-camera-slash" | "x-circle" | "activity" | "battery-full" | "bluetooth-connected" | "building" | "calendar-x" | "cloud-fog" | "cloud-lightning" | "cloud-moon" | "cloud-rain" | "cloud-snow" | "cloud-sun" | "command" | "cooking-pot" | "copy" | "cpu" | "crosshair" | "file-text" | "files" | "flame" | "footprints" | "globe" | "handbag" | "hard-drive" | "hash" | "hourglass" | "house" | "images" | "info" | "list-checks" | "martini" | "mountain" | "paint-bucket" | "paint-roller" | "pencil-line" | "phone-call" | "plug" | "rainbow" | "skip-back" | "sliders-horizontal" | "sun-dim" | "syringe" | "terminal" | "text-align-center" | "text-align-justify" | "thumbs-down" | "thumbs-up" | "tree-palm" | "user-check" | "wifi-high" | "wifi-low" | "wind" | "wine" | "x" | "check-square" | "layout" | "sidebar" | "sliders" | "x-square" | "bell-ringing" | "bookmarks" | "buildings" | "caret-down" | "caret-left" | "caret-right" | "caret-up" | "confetti" | "device-mobile" | "first-aid-kit" | "heartbeat" | "list-numbers" | "moon-stars" | "password" | "plant" | "shield-checkered" | "stack" | "user-square" | "chat-dots" | "chat-text" | "file-arrow-down" | "file-arrow-up" | "fork-knife" | "gear" | "lightning" | "person" | "question" | "shield-slash" | "bowl-food" | "floppy-disk" | "microphone-slash" | "motorcycle" | "pen-nib" | "phone-slash" | "paper-plane" | "desktop" | "battery-empty" | "circle-notch" | "spinner" | "map-pin-line" | "text-align-left" | "text-align-right" | "text-italic" | "text-strikethrough" | "text-underline" | "warning" | "boat" | "potted-plant" | "arrow-circle-down" | "arrow-circle-left" | "arrow-circle-right" | "arrow-circle-up" | "warning-circle" | "parallelogram" | "sign-out" | "drops" | "first-aid" | "sign-in" | "bluetooth-slash" | "wifi-slash" | "chat-circle" | "link-break" | "wifi-medium" | "wifi-none" | "drop" | "dots-three-vertical" | "speaker-slash" | "identification-card" | "arrows-in" | "arrows-out" | "mountains" | "beer-bottle" | "chats" | "text-aa" | "grid-four" | "trash-simple" | "trend-down" | "trend-up" | "warning-octagon" | "arrow-square-down" | "arrow-square-left" | "arrow-square-right" | "arrow-square-up" | "flower-lotus" | "camera-slash" | "speaker-high" | "speaker-low" | "arrow-square-out" | "arrows-clockwise" | "arrows-counter-clockwise" | "arrows-out-simple" | "battery-charging-vertical" | "bell-simple" | "bookmark-simple" | "bookmarks-simple" | "bug-beetle" | "bug-droid" | "car-simple" | "caret-double-down" | "caret-double-left" | "caret-double-right" | "caret-double-up" | "chart-bar-horizontal" | "chart-line-up" | "chart-pie-slice" | "chats-circle" | "clock-afternoon" | "code-simple" | "copy-simple" | "crosshair-simple" | "crown-simple" | "currency-dollar-simple" | "device-mobile-speaker" | "device-tablet-speaker" | "dots-nine" | "dots-six" | "dots-six-vertical" | "dots-three" | "dots-three-outline" | "dots-three-outline-vertical" | "download-simple" | "drop-half" | "drop-half-bottom" | "envelope-simple" | "envelope-simple-open" | "eyedropper-sample" | "fingerprint-simple" | "fire-simple" | "fish-simple" | "flag-banner" | "folder-simple" | "folder-simple-minus" | "folder-simple-plus" | "funnel-simple" | "gear-six" | "globe-hemisphere-east" | "globe-hemisphere-west" | "globe-simple" | "handbag-simple" | "hard-drives" | "hash-straight" | "heart-break" | "heart-straight" | "hourglass-simple" | "house-simple" | "identification-badge" | "image-square" | "images-square" | "lightbulb-filament" | "lightning-slash" | "link-simple" | "link-simple-break" | "list-bullets" | "lock-simple" | "lock-simple-open" | "map-trifold" | "music-notes" | "music-notes-plus" | "navigation-arrow" | "paint-brush-broad" | "paint-brush-household" | "paper-plane-right" | "paper-plane-tilt" | "paperclip-horizontal" | "pen-nib-straight" | "pencil-simple" | "person-simple" | "person-simple-run" | "person-simple-walk" | "plugs" | "plugs-connected" | "share-network" | "shopping-bag-open" | "shopping-cart-simple" | "shuffle-simple" | "sidebar-simple" | "speaker-none" | "speaker-simple-high" | "speaker-simple-low" | "speaker-simple-none" | "speaker-simple-slash" | "spinner-gap" | "squares-four" | "stack-simple" | "star-four" | "tag-simple" | "television-simple" | "terminal-window" | "text-b" | "thermometer-simple" | "train-simple" | "tree-evergreen" | "umbrella-simple" | "upload-simple" | "users-four" | "users-three">): import("react").JSX.Element;
|
|
469
|
-
displayName: string;
|
|
470
|
-
};
|
|
471
|
-
export {};
|
|
472
|
-
//# sourceMappingURL=Phosphor.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Phosphor.d.ts","sourceRoot":"","sources":["../../../src/components/Phosphor.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAKH,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoeb,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAAG,MAAM,OAAO,iBAAiB,CAAC;AAE9D,eAAO,MAAM,QAAQ;;;CAA2D,CAAC"}
|