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
|
@@ -10963,7 +10963,7 @@ declare const icIconNames: {
|
|
|
10963
10963
|
};
|
|
10964
10964
|
export type IcIconName = keyof typeof icIconNames;
|
|
10965
10965
|
export declare const Ic: {
|
|
10966
|
-
({ name, size, color, width, height, style, rotate, flip, fallback, fallbackDelay, onLoad, onError, accessibilityLabel, testID, }: import("..").IconProps<"baseline-density-large" | "baseline-density-medium" | "baseline-density-small" | "round-photo" | "round-sync" | "round-brush" | "round-shield" | "round-star" | "baseline-123" | "baseline-3d-rotation" | "baseline-abc" | "baseline-accessibility" | "baseline-accessibility-new" | "baseline-accessible" | "baseline-accessible-forward" | "baseline-account-balance" | "baseline-account-balance-wallet" | "baseline-account-box" | "baseline-account-circle" | "baseline-add-card" | "baseline-add-home" | "baseline-add-shopping-cart" | "baseline-add-task" | "baseline-add-to-drive" | "baseline-addchart" | "baseline-admin-panel-settings" | "baseline-ads-click" | "baseline-alarm" | "baseline-alarm-add" | "baseline-alarm-off" | "baseline-alarm-on" | "baseline-all-inbox" | "baseline-all-out" | "baseline-analytics" | "baseline-anchor" | "baseline-android" | "baseline-announcement" | "baseline-api" | "baseline-app-blocking" | "baseline-app-shortcut" | "baseline-arrow-circle-down" | "baseline-arrow-circle-left" | "baseline-arrow-circle-right" | "baseline-arrow-circle-up" | "baseline-arrow-outward" | "baseline-arrow-right-alt" | "baseline-article" | "baseline-aspect-ratio" | "baseline-assessment" | "baseline-assignment" | "baseline-assignment-ind" | "baseline-assignment-late" | "baseline-assignment-return" | "baseline-assignment-returned" | "baseline-assignment-turned-in" | "baseline-assured-workload" | "baseline-autorenew" | "baseline-backup" | "baseline-backup-table" | "baseline-balance" | "baseline-batch-prediction" | "baseline-book" | "baseline-book-online" | "baseline-bookmark" | "baseline-bookmark-add" | "baseline-bookmark-added" | "baseline-bookmark-border" | "baseline-bookmark-remove" | "baseline-bookmarks" | "baseline-browse-gallery" | "baseline-bug-report" | "baseline-build" | "baseline-build-circle" | "baseline-cached" | "baseline-calendar-month" | "baseline-calendar-today" | "baseline-calendar-view-day" | "baseline-calendar-view-month" | "baseline-calendar-view-week" | "baseline-camera-enhance" | "baseline-cancel-schedule-send" | "baseline-card-giftcard" | "baseline-card-membership" | "baseline-card-travel" | "baseline-change-history" | "baseline-check-circle" | "baseline-check-circle-outline" | "baseline-chrome-reader-mode" | "baseline-circle-notifications" | "baseline-class" | "baseline-close-fullscreen" | "baseline-code" | "baseline-code-off" | "baseline-comment-bank" | "baseline-commit" | "baseline-commute" | "baseline-compare-arrows" | "baseline-compress" | "baseline-contact-page" | "baseline-contact-support" | "baseline-contactless" | "baseline-copyright" | "baseline-credit-card" | "baseline-credit-card-off" | "baseline-css" | "baseline-currency-exchange" | "baseline-dangerous" | "baseline-dashboard" | "baseline-dashboard-customize" | "baseline-data-exploration" | "baseline-data-thresholding" | "baseline-date-range" | "baseline-delete" | "baseline-delete-forever" | "baseline-delete-outline" | "baseline-description" | "baseline-disabled-by-default" | "baseline-disabled-visible" | "baseline-display-settings" | "baseline-dns" | "baseline-done" | "baseline-done-all" | "baseline-done-outline" | "baseline-donut-large" | "baseline-donut-small" | "baseline-drag-indicator" | "baseline-dynamic-form" | "baseline-eco" | "baseline-edit-calendar" | "baseline-edit-off" | "baseline-eject" | "baseline-euro-symbol" | "baseline-event" | "baseline-event-repeat" | "baseline-event-seat" | "baseline-exit-to-app" | "baseline-expand" | "baseline-explore" | "baseline-explore-off" | "baseline-extension" | "baseline-extension-off" | "baseline-face" | "baseline-fact-check" | "baseline-favorite" | "baseline-favorite-border" | "baseline-fax" | "baseline-feedback" | "baseline-file-present" | "baseline-filter-alt" | "baseline-filter-alt-off" | "baseline-find-in-page" | "baseline-find-replace" | "baseline-fingerprint" | "baseline-fit-screen" | "baseline-flaky" | "baseline-flight-land" | "baseline-flight-takeoff" | "baseline-flip-to-back" | "baseline-flip-to-front" | "baseline-flutter-dash" | "baseline-free-cancellation" | "baseline-g-translate" | "baseline-gavel" | "baseline-generating-tokens" | "baseline-get-app" | "baseline-gif" | "baseline-gif-box" | "baseline-grade" | "baseline-grading" | "baseline-group-work" | "baseline-help" | "baseline-help-center" | "baseline-help-outline" | "baseline-hide-source" | "baseline-highlight-alt" | "baseline-highlight-off" | "baseline-history" | "baseline-history-toggle-off" | "baseline-hls" | "baseline-hls-off" | "baseline-home" | "baseline-horizontal-split" | "baseline-hotel-class" | "baseline-hourglass-disabled" | "baseline-hourglass-empty" | "baseline-hourglass-full" | "baseline-html" | "baseline-http" | "baseline-https" | "baseline-important-devices" | "baseline-info" | "baseline-input" | "baseline-install-desktop" | "baseline-install-mobile" | "baseline-integration-instructions" | "baseline-invert-colors" | "baseline-javascript" | "baseline-join-full" | "baseline-join-inner" | "baseline-join-left" | "baseline-join-right" | "baseline-label" | "baseline-label-important" | "baseline-label-off" | "baseline-language" | "baseline-launch" | "baseline-leaderboard" | "baseline-lightbulb" | "baseline-lightbulb-circle" | "baseline-line-style" | "baseline-line-weight" | "baseline-list" | "baseline-lock" | "baseline-lock-clock" | "baseline-lock-open" | "baseline-lock-person" | "baseline-lock-reset" | "baseline-log-in" | "baseline-log-out" | "baseline-login" | "baseline-logout" | "baseline-loyalty" | "baseline-manage-accounts" | "baseline-manage-history" | "baseline-mark-as-unread" | "baseline-markunread-mailbox" | "baseline-maximize" | "baseline-mediation" | "baseline-minimize" | "baseline-model-training" | "baseline-motorcycle" | "baseline-network-ping" | "baseline-new-label" | "baseline-next-plan" | "baseline-nightlight-round" | "baseline-no-accounts" | "baseline-noise-aware" | "baseline-noise-control-off" | "baseline-not-accessible" | "baseline-not-started" | "baseline-note-add" | "baseline-offline-bolt" | "baseline-offline-pin" | "baseline-on-device-training" | "baseline-online-prediction" | "baseline-opacity" | "baseline-open-in-browser" | "baseline-open-in-full" | "baseline-open-in-new" | "baseline-open-in-new-off" | "baseline-open-with" | "baseline-outbond" | "baseline-outbound" | "baseline-outbox" | "baseline-outlet" | "baseline-output" | "baseline-pageview" | "baseline-paid" | "baseline-pan-tool" | "baseline-pan-tool-alt" | "baseline-payment" | "baseline-pending" | "baseline-pending-actions" | "baseline-percent" | "baseline-perm-camera-mic" | "baseline-perm-contact-calendar" | "baseline-perm-data-setting" | "baseline-perm-device-information" | "baseline-perm-identity" | "baseline-perm-media" | "baseline-perm-phone-msg" | "baseline-perm-scan-wifi" | "baseline-pets" | "baseline-php" | "baseline-picture-in-picture" | "baseline-picture-in-picture-alt" | "baseline-pin-end" | "baseline-pin-invoke" | "baseline-pinch" | "baseline-plagiarism" | "baseline-play-for-work" | "baseline-polymer" | "baseline-power-settings-new" | "baseline-pregnant-woman" | "baseline-preview" | "baseline-print" | "baseline-privacy-tip" | "baseline-private-connectivity" | "baseline-production-quantity-limits" | "baseline-published-with-changes" | "baseline-query-builder" | "baseline-question-answer" | "baseline-question-mark" | "baseline-quickreply" | "baseline-receipt" | "baseline-record-voice-over" | "baseline-redeem" | "baseline-remove-done" | "baseline-remove-shopping-cart" | "baseline-reorder" | "baseline-repartition" | "baseline-report-problem" | "baseline-request-page" | "baseline-restore" | "baseline-restore-from-trash" | "baseline-restore-page" | "baseline-rocket" | "baseline-rocket-launch" | "baseline-room" | "baseline-rounded-corner" | "baseline-rowing" | "baseline-rule" | "baseline-satellite-alt" | "baseline-saved-search" | "baseline-savings" | "baseline-schedule" | "baseline-schedule-send" | "baseline-search" | "baseline-search-off" | "baseline-segment" | "baseline-send-and-archive" | "baseline-sensors" | "baseline-sensors-off" | "baseline-settings" | "baseline-settings-accessibility" | "baseline-settings-applications" | "baseline-settings-backup-restore" | "baseline-settings-bluetooth" | "baseline-settings-brightness" | "baseline-settings-cell" | "baseline-settings-ethernet" | "baseline-settings-input-antenna" | "baseline-settings-input-component" | "baseline-settings-input-composite" | "baseline-settings-input-hdmi" | "baseline-settings-input-svideo" | "baseline-settings-overscan" | "baseline-settings-phone" | "baseline-settings-power" | "baseline-settings-remote" | "baseline-settings-voice" | "baseline-shop" | "baseline-shop-2" | "baseline-shop-two" | "baseline-shopping-bag" | "baseline-shopping-basket" | "baseline-shopping-cart" | "baseline-shopping-cart-checkout" | "baseline-smart-button" | "baseline-source" | "baseline-space-dashboard" | "baseline-spatial-audio" | "baseline-spatial-audio-off" | "baseline-spatial-tracking" | "baseline-speaker-notes" | "baseline-speaker-notes-off" | "baseline-spellcheck" | "baseline-star-rate" | "baseline-stars" | "baseline-sticky-note-2" | "baseline-store" | "baseline-subject" | "baseline-subtitles-off" | "baseline-supervised-user-circle" | "baseline-supervisor-account" | "baseline-support" | "baseline-swap-horiz" | "baseline-swap-horizontal-circle" | "baseline-swap-vert" | "baseline-swap-vertical-circle" | "baseline-swipe" | "baseline-swipe-down" | "baseline-swipe-down-alt" | "baseline-swipe-left" | "baseline-swipe-left-alt" | "baseline-swipe-right" | "baseline-swipe-right-alt" | "baseline-swipe-up" | "baseline-swipe-up-alt" | "baseline-swipe-vertical" | "baseline-switch-access-shortcut" | "baseline-switch-access-shortcut-add" | "baseline-sync-alt" | "baseline-system-update-alt" | "baseline-tab" | "baseline-tab-unselected" | "baseline-table-view" | "baseline-task-alt" | "baseline-terminal" | "baseline-text-rotate-up" | "baseline-text-rotate-vertical" | "baseline-text-rotation-angledown" | "baseline-text-rotation-angleup" | "baseline-text-rotation-down" | "baseline-text-rotation-none" | "baseline-theaters" | "baseline-thumb-down" | "baseline-thumb-down-off-alt" | "baseline-thumb-up" | "baseline-thumb-up-off-alt" | "baseline-thumbs-up-down" | "baseline-timeline" | "baseline-tips-and-updates" | "baseline-toc" | "baseline-today" | "baseline-token" | "baseline-toll" | "baseline-touch-app" | "baseline-tour" | "baseline-track-changes" | "baseline-transcribe" | "baseline-translate" | "baseline-trending-down" | "baseline-trending-flat" | "baseline-trending-up" | "baseline-troubleshoot" | "baseline-try" | "baseline-turned-in" | "baseline-turned-in-not" | "baseline-unfold-less-double" | "baseline-unfold-more-double" | "baseline-unpublished" | "baseline-update" | "baseline-update-disabled" | "baseline-upgrade" | "baseline-verified" | "baseline-verified-user" | "baseline-vertical-split" | "baseline-view-agenda" | "baseline-view-array" | "baseline-view-carousel" | "baseline-view-column" | "baseline-view-comfy-alt" | "baseline-view-compact-alt" | "baseline-view-cozy" | "baseline-view-day" | "baseline-view-headline" | "baseline-view-in-ar" | "baseline-view-kanban" | "baseline-view-list" | "baseline-view-module" | "baseline-view-quilt" | "baseline-view-sidebar" | "baseline-view-stream" | "baseline-view-timeline" | "baseline-view-week" | "baseline-visibility" | "baseline-visibility-off" | "baseline-voice-over-off" | "baseline-watch-later" | "baseline-webhook" | "baseline-width-full" | "baseline-width-normal" | "baseline-width-wide" | "baseline-wifi-protected-setup" | "baseline-work" | "baseline-work-history" | "baseline-work-off" | "baseline-work-outline" | "baseline-wysiwyg" | "baseline-youtube-searched-for" | "baseline-zoom-in" | "baseline-zoom-out" | "outline-123" | "outline-3d-rotation" | "outline-abc" | "outline-accessibility" | "outline-accessibility-new" | "outline-accessible" | "outline-accessible-forward" | "outline-account-balance" | "outline-account-balance-wallet" | "outline-account-box" | "outline-account-circle" | "outline-add-card" | "outline-add-home" | "outline-add-shopping-cart" | "outline-add-task" | "outline-add-to-drive" | "outline-addchart" | "outline-admin-panel-settings" | "outline-ads-click" | "outline-alarm" | "outline-alarm-add" | "outline-alarm-off" | "outline-alarm-on" | "outline-all-inbox" | "outline-all-out" | "outline-analytics" | "outline-anchor" | "outline-android" | "outline-announcement" | "outline-api" | "outline-app-blocking" | "outline-app-shortcut" | "outline-arrow-circle-down" | "outline-arrow-circle-left" | "outline-arrow-circle-right" | "outline-arrow-circle-up" | "outline-arrow-outward" | "outline-arrow-right-alt" | "outline-article" | "outline-aspect-ratio" | "outline-assessment" | "outline-assignment" | "outline-assignment-ind" | "outline-assignment-late" | "outline-assignment-return" | "outline-assignment-returned" | "outline-assignment-turned-in" | "outline-assured-workload" | "outline-autorenew" | "outline-backup" | "outline-backup-table" | "outline-balance" | "outline-batch-prediction" | "outline-book" | "outline-book-online" | "outline-bookmark" | "outline-bookmark-add" | "outline-bookmark-added" | "outline-bookmark-border" | "outline-bookmark-remove" | "outline-bookmarks" | "outline-browse-gallery" | "outline-bug-report" | "outline-build" | "outline-build-circle" | "outline-cached" | "outline-calendar-month" | "outline-calendar-today" | "outline-calendar-view-day" | "outline-calendar-view-month" | "outline-calendar-view-week" | "outline-camera-enhance" | "outline-cancel-schedule-send" | "outline-card-giftcard" | "outline-card-membership" | "outline-card-travel" | "outline-change-history" | "outline-check-circle" | "outline-check-circle-outline" | "outline-chrome-reader-mode" | "outline-circle-notifications" | "outline-class" | "outline-close-fullscreen" | "outline-code" | "outline-code-off" | "outline-comment-bank" | "outline-commit" | "outline-commute" | "outline-compare-arrows" | "outline-compress" | "outline-contact-page" | "outline-contact-support" | "outline-contactless" | "outline-copyright" | "outline-credit-card" | "outline-credit-card-off" | "outline-css" | "outline-currency-exchange" | "outline-dangerous" | "outline-dashboard" | "outline-dashboard-customize" | "outline-data-exploration" | "outline-data-thresholding" | "outline-date-range" | "outline-delete" | "outline-delete-forever" | "outline-delete-outline" | "outline-density-large" | "outline-density-medium" | "outline-density-small" | "outline-description" | "outline-disabled-by-default" | "outline-disabled-visible" | "outline-display-settings" | "outline-dns" | "outline-done" | "outline-done-all" | "outline-done-outline" | "outline-donut-large" | "outline-donut-small" | "outline-drag-indicator" | "outline-dynamic-form" | "outline-eco" | "outline-edit-calendar" | "outline-edit-off" | "outline-eject" | "outline-euro-symbol" | "outline-event" | "outline-event-repeat" | "outline-event-seat" | "outline-exit-to-app" | "outline-expand" | "outline-explore" | "outline-explore-off" | "outline-extension" | "outline-extension-off" | "outline-face" | "outline-fact-check" | "outline-favorite" | "outline-favorite-border" | "outline-fax" | "outline-feedback" | "outline-file-present" | "outline-filter-alt" | "outline-filter-alt-off" | "outline-find-in-page" | "outline-find-replace" | "outline-fingerprint" | "outline-fit-screen" | "outline-flaky" | "outline-flight-land" | "outline-flight-takeoff" | "outline-flip-to-back" | "outline-flip-to-front" | "outline-flutter-dash" | "outline-free-cancellation" | "outline-g-translate" | "outline-gavel" | "outline-generating-tokens" | "outline-get-app" | "outline-gif" | "outline-gif-box" | "outline-grade" | "outline-grading" | "outline-group-work" | "outline-help" | "outline-help-center" | "outline-help-outline" | "outline-hide-source" | "outline-highlight-alt" | "outline-highlight-off" | "outline-history" | "outline-history-toggle-off" | "outline-hls" | "outline-hls-off" | "outline-home" | "outline-horizontal-split" | "outline-hotel-class" | "outline-hourglass-disabled" | "outline-hourglass-empty" | "outline-hourglass-full" | "outline-html" | "outline-http" | "outline-https" | "outline-important-devices" | "outline-info" | "outline-input" | "outline-install-desktop" | "outline-install-mobile" | "outline-integration-instructions" | "outline-invert-colors" | "outline-javascript" | "outline-join-full" | "outline-join-inner" | "outline-join-left" | "outline-join-right" | "outline-label" | "outline-label-important" | "outline-label-off" | "outline-language" | "outline-launch" | "outline-leaderboard" | "outline-lightbulb" | "outline-lightbulb-circle" | "outline-line-style" | "outline-line-weight" | "outline-list" | "outline-lock" | "outline-lock-clock" | "outline-lock-open" | "outline-lock-person" | "outline-lock-reset" | "outline-log-in" | "outline-log-out" | "outline-login" | "outline-logout" | "outline-loyalty" | "outline-manage-accounts" | "outline-manage-history" | "outline-mark-as-unread" | "outline-markunread-mailbox" | "outline-maximize" | "outline-mediation" | "outline-minimize" | "outline-model-training" | "outline-motorcycle" | "outline-network-ping" | "outline-new-label" | "outline-next-plan" | "outline-nightlight-round" | "outline-no-accounts" | "outline-noise-aware" | "outline-noise-control-off" | "outline-not-accessible" | "outline-not-started" | "outline-note-add" | "outline-offline-bolt" | "outline-offline-pin" | "outline-on-device-training" | "outline-online-prediction" | "outline-opacity" | "outline-open-in-browser" | "outline-open-in-full" | "outline-open-in-new" | "outline-open-in-new-off" | "outline-open-with" | "outline-outbond" | "outline-outbound" | "outline-outbox" | "outline-outlet" | "outline-output" | "outline-pageview" | "outline-paid" | "outline-pan-tool" | "outline-pan-tool-alt" | "outline-payment" | "outline-pending" | "outline-pending-actions" | "outline-percent" | "outline-perm-camera-mic" | "outline-perm-contact-calendar" | "outline-perm-data-setting" | "outline-perm-device-information" | "outline-perm-identity" | "outline-perm-media" | "outline-perm-phone-msg" | "outline-perm-scan-wifi" | "outline-pets" | "outline-php" | "outline-picture-in-picture" | "outline-picture-in-picture-alt" | "outline-pin-end" | "outline-pin-invoke" | "outline-pinch" | "outline-plagiarism" | "outline-play-for-work" | "outline-polymer" | "outline-power-settings-new" | "outline-pregnant-woman" | "outline-preview" | "outline-print" | "outline-privacy-tip" | "outline-private-connectivity" | "outline-production-quantity-limits" | "outline-published-with-changes" | "outline-query-builder" | "outline-question-answer" | "outline-question-mark" | "outline-quickreply" | "outline-receipt" | "outline-record-voice-over" | "outline-redeem" | "outline-remove-done" | "outline-remove-shopping-cart" | "outline-reorder" | "outline-repartition" | "outline-report-problem" | "outline-request-page" | "outline-restore" | "outline-restore-from-trash" | "outline-restore-page" | "outline-rocket" | "outline-rocket-launch" | "outline-room" | "outline-rounded-corner" | "outline-rowing" | "outline-rule" | "outline-satellite-alt" | "outline-saved-search" | "outline-savings" | "outline-schedule" | "outline-schedule-send" | "outline-search" | "outline-search-off" | "outline-segment" | "outline-send-and-archive" | "outline-sensors" | "outline-sensors-off" | "outline-settings" | "outline-settings-accessibility" | "outline-settings-applications" | "outline-settings-backup-restore" | "outline-settings-bluetooth" | "outline-settings-brightness" | "outline-settings-cell" | "outline-settings-ethernet" | "outline-settings-input-antenna" | "outline-settings-input-component" | "outline-settings-input-composite" | "outline-settings-input-hdmi" | "outline-settings-input-svideo" | "outline-settings-overscan" | "outline-settings-phone" | "outline-settings-power" | "outline-settings-remote" | "outline-settings-voice" | "outline-shop" | "outline-shop-2" | "outline-shop-two" | "outline-shopping-bag" | "outline-shopping-basket" | "outline-shopping-cart" | "outline-shopping-cart-checkout" | "outline-smart-button" | "outline-source" | "outline-space-dashboard" | "outline-spatial-audio" | "outline-spatial-audio-off" | "outline-spatial-tracking" | "outline-speaker-notes" | "outline-speaker-notes-off" | "outline-spellcheck" | "outline-star-rate" | "outline-stars" | "outline-sticky-note-2" | "outline-store" | "outline-subject" | "outline-subtitles-off" | "outline-supervised-user-circle" | "outline-supervisor-account" | "outline-support" | "outline-swap-horiz" | "outline-swap-horizontal-circle" | "outline-swap-vert" | "outline-swap-vertical-circle" | "outline-swipe" | "outline-swipe-down" | "outline-swipe-down-alt" | "outline-swipe-left" | "outline-swipe-left-alt" | "outline-swipe-right" | "outline-swipe-right-alt" | "outline-swipe-up" | "outline-swipe-up-alt" | "outline-swipe-vertical" | "outline-switch-access-shortcut" | "outline-switch-access-shortcut-add" | "outline-sync-alt" | "outline-system-update-alt" | "outline-tab" | "outline-tab-unselected" | "outline-table-view" | "outline-task-alt" | "outline-terminal" | "outline-text-rotate-up" | "outline-text-rotate-vertical" | "outline-text-rotation-angledown" | "outline-text-rotation-angleup" | "outline-text-rotation-down" | "outline-text-rotation-none" | "outline-theaters" | "outline-thumb-down" | "outline-thumb-down-off-alt" | "outline-thumb-up" | "outline-thumb-up-off-alt" | "outline-thumbs-up-down" | "outline-timeline" | "outline-tips-and-updates" | "outline-toc" | "outline-today" | "outline-token" | "outline-toll" | "outline-touch-app" | "outline-tour" | "outline-track-changes" | "outline-transcribe" | "outline-translate" | "outline-trending-down" | "outline-trending-flat" | "outline-trending-up" | "outline-troubleshoot" | "outline-try" | "outline-turned-in" | "outline-turned-in-not" | "outline-unfold-less-double" | "outline-unfold-more-double" | "outline-unpublished" | "outline-update" | "outline-update-disabled" | "outline-upgrade" | "outline-verified" | "outline-verified-user" | "outline-vertical-split" | "outline-view-agenda" | "outline-view-array" | "outline-view-carousel" | "outline-view-column" | "outline-view-comfy-alt" | "outline-view-compact-alt" | "outline-view-cozy" | "outline-view-day" | "outline-view-headline" | "outline-view-in-ar" | "outline-view-kanban" | "outline-view-list" | "outline-view-module" | "outline-view-quilt" | "outline-view-sidebar" | "outline-view-stream" | "outline-view-timeline" | "outline-view-week" | "outline-visibility" | "outline-visibility-off" | "outline-voice-over-off" | "outline-watch-later" | "outline-webhook" | "outline-width-full" | "outline-width-normal" | "outline-width-wide" | "outline-wifi-protected-setup" | "outline-work" | "outline-work-history" | "outline-work-off" | "outline-work-outline" | "outline-wysiwyg" | "outline-youtube-searched-for" | "outline-zoom-in" | "outline-zoom-out" | "round-123" | "round-3d-rotation" | "round-abc" | "round-accessibility" | "round-accessibility-new" | "round-accessible" | "round-accessible-forward" | "round-account-balance" | "round-account-balance-wallet" | "round-account-box" | "round-account-circle" | "round-add-card" | "round-add-home" | "round-add-shopping-cart" | "round-add-task" | "round-add-to-drive" | "round-addchart" | "round-admin-panel-settings" | "round-ads-click" | "round-alarm" | "round-alarm-add" | "round-alarm-off" | "round-alarm-on" | "round-all-inbox" | "round-all-out" | "round-analytics" | "round-anchor" | "round-android" | "round-announcement" | "round-api" | "round-app-blocking" | "round-app-shortcut" | "round-arrow-circle-down" | "round-arrow-circle-left" | "round-arrow-circle-right" | "round-arrow-circle-up" | "round-arrow-outward" | "round-arrow-right-alt" | "round-article" | "round-aspect-ratio" | "round-assessment" | "round-assignment" | "round-assignment-ind" | "round-assignment-late" | "round-assignment-return" | "round-assignment-returned" | "round-assignment-turned-in" | "round-assured-workload" | "round-autorenew" | "round-backup" | "round-backup-table" | "round-balance" | "round-batch-prediction" | "round-book" | "round-book-online" | "round-bookmark" | "round-bookmark-add" | "round-bookmark-added" | "round-bookmark-border" | "round-bookmark-remove" | "round-bookmarks" | "round-browse-gallery" | "round-bug-report" | "round-build" | "round-build-circle" | "round-cached" | "round-calendar-month" | "round-calendar-today" | "round-calendar-view-day" | "round-calendar-view-month" | "round-calendar-view-week" | "round-camera-enhance" | "round-cancel-schedule-send" | "round-card-giftcard" | "round-card-membership" | "round-card-travel" | "round-change-history" | "round-check-circle" | "round-check-circle-outline" | "round-chrome-reader-mode" | "round-circle-notifications" | "round-class" | "round-close-fullscreen" | "round-code" | "round-code-off" | "round-comment-bank" | "round-commit" | "round-commute" | "round-compare-arrows" | "round-compress" | "round-contact-page" | "round-contact-support" | "round-contactless" | "round-copyright" | "round-credit-card" | "round-credit-card-off" | "round-css" | "round-currency-exchange" | "round-dangerous" | "round-dashboard" | "round-dashboard-customize" | "round-data-exploration" | "round-data-thresholding" | "round-date-range" | "round-delete" | "round-delete-forever" | "round-delete-outline" | "round-density-large" | "round-density-medium" | "round-density-small" | "round-description" | "round-disabled-by-default" | "round-disabled-visible" | "round-display-settings" | "round-dns" | "round-done" | "round-done-all" | "round-done-outline" | "round-donut-large" | "round-donut-small" | "round-drag-indicator" | "round-dynamic-form" | "round-eco" | "round-edit-calendar" | "round-edit-off" | "round-eject" | "round-euro-symbol" | "round-event" | "round-event-repeat" | "round-event-seat" | "round-exit-to-app" | "round-expand" | "round-explore" | "round-explore-off" | "round-extension" | "round-extension-off" | "round-face" | "round-fact-check" | "round-favorite" | "round-favorite-border" | "round-fax" | "round-feedback" | "round-file-present" | "round-filter-alt" | "round-filter-alt-off" | "round-find-in-page" | "round-find-replace" | "round-fingerprint" | "round-fit-screen" | "round-flaky" | "round-flight-land" | "round-flight-takeoff" | "round-flip-to-back" | "round-flip-to-front" | "round-flutter-dash" | "round-free-cancellation" | "round-g-translate" | "round-gavel" | "round-generating-tokens" | "round-get-app" | "round-gif" | "round-gif-box" | "round-grade" | "round-grading" | "round-group-work" | "round-help" | "round-help-center" | "round-help-outline" | "round-hide-source" | "round-highlight-alt" | "round-highlight-off" | "round-history" | "round-history-toggle-off" | "round-hls" | "round-hls-off" | "round-home" | "round-horizontal-split" | "round-hotel-class" | "round-hourglass-disabled" | "round-hourglass-empty" | "round-hourglass-full" | "round-html" | "round-http" | "round-https" | "round-important-devices" | "round-info" | "round-input" | "round-install-desktop" | "round-install-mobile" | "round-integration-instructions" | "round-invert-colors" | "round-javascript" | "round-join-full" | "round-join-inner" | "round-join-left" | "round-join-right" | "round-label" | "round-label-important" | "round-label-off" | "round-language" | "round-launch" | "round-leaderboard" | "round-lightbulb" | "round-lightbulb-circle" | "round-line-style" | "round-line-weight" | "round-list" | "round-lock" | "round-lock-clock" | "round-lock-open" | "round-lock-person" | "round-lock-reset" | "round-log-in" | "round-log-out" | "round-login" | "round-logout" | "round-loyalty" | "round-manage-accounts" | "round-manage-history" | "round-mark-as-unread" | "round-markunread-mailbox" | "round-maximize" | "round-mediation" | "round-minimize" | "round-model-training" | "round-motorcycle" | "round-network-ping" | "round-new-label" | "round-next-plan" | "round-nightlight-round" | "round-no-accounts" | "round-noise-aware" | "round-noise-control-off" | "round-not-accessible" | "round-not-started" | "round-note-add" | "round-offline-bolt" | "round-offline-pin" | "round-on-device-training" | "round-online-prediction" | "round-opacity" | "round-open-in-browser" | "round-open-in-full" | "round-open-in-new" | "round-open-in-new-off" | "round-open-with" | "round-outbond" | "round-outbound" | "round-outbox" | "round-outlet" | "round-output" | "round-pageview" | "round-paid" | "round-pan-tool" | "round-pan-tool-alt" | "round-payment" | "round-pending" | "round-pending-actions" | "round-percent" | "round-perm-camera-mic" | "round-perm-contact-calendar" | "round-perm-data-setting" | "round-perm-device-information" | "round-perm-identity" | "round-perm-media" | "round-perm-phone-msg" | "round-perm-scan-wifi" | "round-pets" | "round-php" | "round-picture-in-picture" | "round-picture-in-picture-alt" | "round-pin-end" | "round-pin-invoke" | "round-pinch" | "round-plagiarism" | "round-play-for-work" | "round-polymer" | "round-power-settings-new" | "round-pregnant-woman" | "round-preview" | "round-print" | "round-privacy-tip" | "round-private-connectivity" | "round-production-quantity-limits" | "round-published-with-changes" | "round-query-builder" | "round-question-answer" | "round-question-mark" | "round-quickreply" | "round-receipt" | "round-record-voice-over" | "round-redeem" | "round-remove-done" | "round-remove-shopping-cart" | "round-reorder" | "round-repartition" | "round-report-problem" | "round-request-page" | "round-restore" | "round-restore-from-trash" | "round-restore-page" | "round-rocket" | "round-rocket-launch" | "round-room" | "round-rounded-corner" | "round-rowing" | "round-rule" | "round-satellite-alt" | "round-saved-search" | "round-savings" | "round-schedule" | "round-schedule-send" | "round-search" | "round-search-off" | "round-segment" | "round-send-and-archive" | "round-sensors" | "round-sensors-off" | "round-settings" | "round-settings-accessibility" | "round-settings-applications" | "round-settings-backup-restore" | "round-settings-bluetooth" | "round-settings-brightness" | "round-settings-cell" | "round-settings-ethernet" | "round-settings-input-antenna" | "round-settings-input-component" | "round-settings-input-composite" | "round-settings-input-hdmi" | "round-settings-input-svideo" | "round-settings-overscan" | "round-settings-phone" | "round-settings-power" | "round-settings-remote" | "round-settings-voice" | "round-shop" | "round-shop-2" | "round-shop-two" | "round-shopping-bag" | "round-shopping-basket" | "round-shopping-cart" | "round-shopping-cart-checkout" | "round-smart-button" | "round-source" | "round-space-dashboard" | "round-spatial-audio" | "round-spatial-audio-off" | "round-spatial-tracking" | "round-speaker-notes" | "round-speaker-notes-off" | "round-spellcheck" | "round-star-rate" | "round-stars" | "round-sticky-note-2" | "round-store" | "round-subject" | "round-subtitles-off" | "round-supervised-user-circle" | "round-supervisor-account" | "round-support" | "round-swap-horiz" | "round-swap-horizontal-circle" | "round-swap-vert" | "round-swap-vertical-circle" | "round-swipe" | "round-swipe-down" | "round-swipe-down-alt" | "round-swipe-left" | "round-swipe-left-alt" | "round-swipe-right" | "round-swipe-right-alt" | "round-swipe-up" | "round-swipe-up-alt" | "round-swipe-vertical" | "round-switch-access-shortcut" | "round-switch-access-shortcut-add" | "round-sync-alt" | "round-system-update-alt" | "round-tab" | "round-tab-unselected" | "round-table-view" | "round-task-alt" | "round-terminal" | "round-text-rotate-up" | "round-text-rotate-vertical" | "round-text-rotation-angledown" | "round-text-rotation-angleup" | "round-text-rotation-down" | "round-text-rotation-none" | "round-theaters" | "round-thumb-down" | "round-thumb-down-off-alt" | "round-thumb-up" | "round-thumb-up-off-alt" | "round-thumbs-up-down" | "round-timeline" | "round-tips-and-updates" | "round-toc" | "round-today" | "round-token" | "round-toll" | "round-touch-app" | "round-tour" | "round-track-changes" | "round-transcribe" | "round-translate" | "round-trending-down" | "round-trending-flat" | "round-trending-up" | "round-troubleshoot" | "round-try" | "round-turned-in" | "round-turned-in-not" | "round-unfold-less-double" | "round-unfold-more-double" | "round-unpublished" | "round-update" | "round-update-disabled" | "round-upgrade" | "round-verified" | "round-verified-user" | "round-vertical-split" | "round-view-agenda" | "round-view-array" | "round-view-carousel" | "round-view-column" | "round-view-comfy-alt" | "round-view-compact-alt" | "round-view-cozy" | "round-view-day" | "round-view-headline" | "round-view-in-ar" | "round-view-kanban" | "round-view-list" | "round-view-module" | "round-view-quilt" | "round-view-sidebar" | "round-view-stream" | "round-view-timeline" | "round-view-week" | "round-visibility" | "round-visibility-off" | "round-voice-over-off" | "round-watch-later" | "round-webhook" | "round-width-full" | "round-width-normal" | "round-width-wide" | "round-wifi-protected-setup" | "round-work" | "round-work-history" | "round-work-off" | "round-work-outline" | "round-wysiwyg" | "round-youtube-searched-for" | "round-zoom-in" | "round-zoom-out" | "sharp-123" | "sharp-3d-rotation" | "sharp-abc" | "sharp-accessibility" | "sharp-accessibility-new" | "sharp-accessible" | "sharp-accessible-forward" | "sharp-account-balance" | "sharp-account-balance-wallet" | "sharp-account-box" | "sharp-account-circle" | "sharp-add-card" | "sharp-add-home" | "sharp-add-shopping-cart" | "sharp-add-task" | "sharp-add-to-drive" | "sharp-addchart" | "sharp-admin-panel-settings" | "sharp-ads-click" | "sharp-alarm" | "sharp-alarm-add" | "sharp-alarm-off" | "sharp-alarm-on" | "sharp-all-inbox" | "sharp-all-out" | "sharp-analytics" | "sharp-anchor" | "sharp-android" | "sharp-announcement" | "sharp-api" | "sharp-app-blocking" | "sharp-app-shortcut" | "sharp-arrow-circle-down" | "sharp-arrow-circle-left" | "sharp-arrow-circle-right" | "sharp-arrow-circle-up" | "sharp-arrow-outward" | "sharp-arrow-right-alt" | "sharp-article" | "sharp-aspect-ratio" | "sharp-assessment" | "sharp-assignment" | "sharp-assignment-ind" | "sharp-assignment-late" | "sharp-assignment-return" | "sharp-assignment-returned" | "sharp-assignment-turned-in" | "sharp-assured-workload" | "sharp-autorenew" | "sharp-backup" | "sharp-backup-table" | "sharp-balance" | "sharp-batch-prediction" | "sharp-book" | "sharp-book-online" | "sharp-bookmark" | "sharp-bookmark-add" | "sharp-bookmark-added" | "sharp-bookmark-border" | "sharp-bookmark-remove" | "sharp-bookmarks" | "sharp-browse-gallery" | "sharp-bug-report" | "sharp-build" | "sharp-build-circle" | "sharp-cached" | "sharp-calendar-month" | "sharp-calendar-today" | "sharp-calendar-view-day" | "sharp-calendar-view-month" | "sharp-calendar-view-week" | "sharp-camera-enhance" | "sharp-cancel-schedule-send" | "sharp-card-giftcard" | "sharp-card-membership" | "sharp-card-travel" | "sharp-change-history" | "sharp-check-circle" | "sharp-check-circle-outline" | "sharp-chrome-reader-mode" | "sharp-circle-notifications" | "sharp-class" | "sharp-close-fullscreen" | "sharp-code" | "sharp-code-off" | "sharp-comment-bank" | "sharp-commit" | "sharp-commute" | "sharp-compare-arrows" | "sharp-compress" | "sharp-contact-page" | "sharp-contact-support" | "sharp-contactless" | "sharp-copyright" | "sharp-credit-card" | "sharp-credit-card-off" | "sharp-css" | "sharp-currency-exchange" | "sharp-dangerous" | "sharp-dashboard" | "sharp-dashboard-customize" | "sharp-data-exploration" | "sharp-data-thresholding" | "sharp-date-range" | "sharp-delete" | "sharp-delete-forever" | "sharp-delete-outline" | "sharp-density-large" | "sharp-density-medium" | "sharp-density-small" | "sharp-description" | "sharp-disabled-by-default" | "sharp-disabled-visible" | "sharp-display-settings" | "sharp-dns" | "sharp-done" | "sharp-done-all" | "sharp-done-outline" | "sharp-donut-large" | "sharp-donut-small" | "sharp-drag-indicator" | "sharp-dynamic-form" | "sharp-eco" | "sharp-edit-calendar" | "sharp-edit-off" | "sharp-eject" | "sharp-euro-symbol" | "sharp-event" | "sharp-event-repeat" | "sharp-event-seat" | "sharp-exit-to-app" | "sharp-expand" | "sharp-explore" | "sharp-explore-off" | "sharp-extension" | "sharp-extension-off" | "sharp-face" | "sharp-fact-check" | "sharp-favorite" | "sharp-favorite-border" | "sharp-fax" | "sharp-feedback" | "sharp-file-present" | "sharp-filter-alt" | "sharp-filter-alt-off" | "sharp-find-in-page" | "sharp-find-replace" | "sharp-fingerprint" | "sharp-fit-screen" | "sharp-flaky" | "sharp-flight-land" | "sharp-flight-takeoff" | "sharp-flip-to-back" | "sharp-flip-to-front" | "sharp-flutter-dash" | "sharp-free-cancellation" | "sharp-g-translate" | "sharp-gavel" | "sharp-generating-tokens" | "sharp-get-app" | "sharp-gif" | "sharp-gif-box" | "sharp-grade" | "sharp-grading" | "sharp-group-work" | "sharp-help" | "sharp-help-center" | "sharp-help-outline" | "sharp-hide-source" | "sharp-highlight-alt" | "sharp-highlight-off" | "sharp-history" | "sharp-history-toggle-off" | "sharp-hls" | "sharp-hls-off" | "sharp-home" | "sharp-horizontal-split" | "sharp-hotel-class" | "sharp-hourglass-disabled" | "sharp-hourglass-empty" | "sharp-hourglass-full" | "sharp-html" | "sharp-http" | "sharp-https" | "sharp-important-devices" | "sharp-info" | "sharp-input" | "sharp-install-desktop" | "sharp-install-mobile" | "sharp-integration-instructions" | "sharp-invert-colors" | "sharp-javascript" | "sharp-join-full" | "sharp-join-inner" | "sharp-join-left" | "sharp-join-right" | "sharp-label" | "sharp-label-important" | "sharp-label-off" | "sharp-language" | "sharp-launch" | "sharp-leaderboard" | "sharp-lightbulb" | "sharp-lightbulb-circle" | "sharp-line-style" | "sharp-line-weight" | "sharp-list" | "sharp-lock" | "sharp-lock-clock" | "sharp-lock-open" | "sharp-lock-person" | "sharp-lock-reset" | "sharp-log-in" | "sharp-log-out" | "sharp-login" | "sharp-logout" | "sharp-loyalty" | "sharp-manage-accounts" | "sharp-manage-history" | "sharp-mark-as-unread" | "sharp-markunread-mailbox" | "sharp-maximize" | "sharp-mediation" | "sharp-minimize" | "sharp-model-training" | "sharp-motorcycle" | "sharp-network-ping" | "sharp-new-label" | "sharp-next-plan" | "sharp-nightlight-round" | "sharp-no-accounts" | "sharp-noise-aware" | "sharp-noise-control-off" | "sharp-not-accessible" | "sharp-not-started" | "sharp-note-add" | "sharp-offline-bolt" | "sharp-offline-pin" | "sharp-on-device-training" | "sharp-online-prediction" | "sharp-opacity" | "sharp-open-in-browser" | "sharp-open-in-full" | "sharp-open-in-new" | "sharp-open-in-new-off" | "sharp-open-with" | "sharp-outbond" | "sharp-outbound" | "sharp-outbox" | "sharp-outlet" | "sharp-output" | "sharp-pageview" | "sharp-paid" | "sharp-pan-tool" | "sharp-pan-tool-alt" | "sharp-payment" | "sharp-pending" | "sharp-pending-actions" | "sharp-percent" | "sharp-perm-camera-mic" | "sharp-perm-contact-calendar" | "sharp-perm-data-setting" | "sharp-perm-device-information" | "sharp-perm-identity" | "sharp-perm-media" | "sharp-perm-phone-msg" | "sharp-perm-scan-wifi" | "sharp-pets" | "sharp-php" | "sharp-picture-in-picture" | "sharp-picture-in-picture-alt" | "sharp-pin-end" | "sharp-pin-invoke" | "sharp-pinch" | "sharp-plagiarism" | "sharp-play-for-work" | "sharp-polymer" | "sharp-power-settings-new" | "sharp-pregnant-woman" | "sharp-preview" | "sharp-print" | "sharp-privacy-tip" | "sharp-private-connectivity" | "sharp-production-quantity-limits" | "sharp-published-with-changes" | "sharp-query-builder" | "sharp-question-answer" | "sharp-question-mark" | "sharp-quickreply" | "sharp-receipt" | "sharp-record-voice-over" | "sharp-redeem" | "sharp-remove-done" | "sharp-remove-shopping-cart" | "sharp-reorder" | "sharp-repartition" | "sharp-report-problem" | "sharp-request-page" | "sharp-restore" | "sharp-restore-from-trash" | "sharp-restore-page" | "sharp-rocket" | "sharp-rocket-launch" | "sharp-room" | "sharp-rounded-corner" | "sharp-rowing" | "sharp-rule" | "sharp-satellite-alt" | "sharp-saved-search" | "sharp-savings" | "sharp-schedule" | "sharp-schedule-send" | "sharp-search" | "sharp-search-off" | "sharp-segment" | "sharp-send-and-archive" | "sharp-sensors" | "sharp-sensors-off" | "sharp-settings" | "sharp-settings-accessibility" | "sharp-settings-applications" | "sharp-settings-backup-restore" | "sharp-settings-bluetooth" | "sharp-settings-brightness" | "sharp-settings-cell" | "sharp-settings-ethernet" | "sharp-settings-input-antenna" | "sharp-settings-input-component" | "sharp-settings-input-composite" | "sharp-settings-input-hdmi" | "sharp-settings-input-svideo" | "sharp-settings-overscan" | "sharp-settings-phone" | "sharp-settings-power" | "sharp-settings-remote" | "sharp-settings-voice" | "sharp-shop" | "sharp-shop-2" | "sharp-shop-two" | "sharp-shopping-bag" | "sharp-shopping-basket" | "sharp-shopping-cart" | "sharp-shopping-cart-checkout" | "sharp-smart-button" | "sharp-source" | "sharp-space-dashboard" | "sharp-spatial-audio" | "sharp-spatial-audio-off" | "sharp-spatial-tracking" | "sharp-speaker-notes" | "sharp-speaker-notes-off" | "sharp-spellcheck" | "sharp-star-rate" | "sharp-stars" | "sharp-sticky-note-2" | "sharp-store" | "sharp-subject" | "sharp-subtitles-off" | "sharp-supervised-user-circle" | "sharp-supervisor-account" | "sharp-support" | "sharp-swap-horiz" | "sharp-swap-horizontal-circle" | "sharp-swap-vert" | "sharp-swap-vertical-circle" | "sharp-swipe" | "sharp-swipe-down" | "sharp-swipe-down-alt" | "sharp-swipe-left" | "sharp-swipe-left-alt" | "sharp-swipe-right" | "sharp-swipe-right-alt" | "sharp-swipe-up" | "sharp-swipe-up-alt" | "sharp-swipe-vertical" | "sharp-switch-access-shortcut" | "sharp-switch-access-shortcut-add" | "sharp-sync-alt" | "sharp-system-update-alt" | "sharp-tab" | "sharp-tab-unselected" | "sharp-table-view" | "sharp-task-alt" | "sharp-terminal" | "sharp-text-rotate-up" | "sharp-text-rotate-vertical" | "sharp-text-rotation-angledown" | "sharp-text-rotation-angleup" | "sharp-text-rotation-down" | "sharp-text-rotation-none" | "sharp-theaters" | "sharp-thumb-down" | "sharp-thumb-down-off-alt" | "sharp-thumb-up" | "sharp-thumb-up-off-alt" | "sharp-thumbs-up-down" | "sharp-timeline" | "sharp-tips-and-updates" | "sharp-toc" | "sharp-today" | "sharp-token" | "sharp-toll" | "sharp-touch-app" | "sharp-tour" | "sharp-track-changes" | "sharp-transcribe" | "sharp-translate" | "sharp-trending-down" | "sharp-trending-flat" | "sharp-trending-up" | "sharp-troubleshoot" | "sharp-try" | "sharp-turned-in" | "sharp-turned-in-not" | "sharp-unfold-less-double" | "sharp-unfold-more-double" | "sharp-unpublished" | "sharp-update" | "sharp-update-disabled" | "sharp-upgrade" | "sharp-verified" | "sharp-verified-user" | "sharp-vertical-split" | "sharp-view-agenda" | "sharp-view-array" | "sharp-view-carousel" | "sharp-view-column" | "sharp-view-comfy-alt" | "sharp-view-compact-alt" | "sharp-view-cozy" | "sharp-view-day" | "sharp-view-headline" | "sharp-view-in-ar" | "sharp-view-kanban" | "sharp-view-list" | "sharp-view-module" | "sharp-view-quilt" | "sharp-view-sidebar" | "sharp-view-stream" | "sharp-view-timeline" | "sharp-view-week" | "sharp-visibility" | "sharp-visibility-off" | "sharp-voice-over-off" | "sharp-watch-later" | "sharp-webhook" | "sharp-width-full" | "sharp-width-normal" | "sharp-width-wide" | "sharp-wifi-protected-setup" | "sharp-work" | "sharp-work-history" | "sharp-work-off" | "sharp-work-outline" | "sharp-wysiwyg" | "sharp-youtube-searched-for" | "sharp-zoom-in" | "sharp-zoom-out" | "twotone-123" | "twotone-3d-rotation" | "twotone-abc" | "twotone-accessibility" | "twotone-accessibility-new" | "twotone-accessible" | "twotone-accessible-forward" | "twotone-account-balance" | "twotone-account-balance-wallet" | "twotone-account-box" | "twotone-account-circle" | "twotone-add-card" | "twotone-add-home" | "twotone-add-shopping-cart" | "twotone-add-task" | "twotone-add-to-drive" | "twotone-addchart" | "twotone-admin-panel-settings" | "twotone-ads-click" | "twotone-alarm" | "twotone-alarm-add" | "twotone-alarm-off" | "twotone-alarm-on" | "twotone-all-inbox" | "twotone-all-out" | "twotone-analytics" | "twotone-anchor" | "twotone-android" | "twotone-announcement" | "twotone-api" | "twotone-app-blocking" | "twotone-app-shortcut" | "twotone-arrow-circle-down" | "twotone-arrow-circle-left" | "twotone-arrow-circle-right" | "twotone-arrow-circle-up" | "twotone-arrow-outward" | "twotone-arrow-right-alt" | "twotone-article" | "twotone-aspect-ratio" | "twotone-assessment" | "twotone-assignment" | "twotone-assignment-ind" | "twotone-assignment-late" | "twotone-assignment-return" | "twotone-assignment-returned" | "twotone-assignment-turned-in" | "twotone-assured-workload" | "twotone-autorenew" | "twotone-backup" | "twotone-backup-table" | "twotone-balance" | "twotone-batch-prediction" | "twotone-book" | "twotone-book-online" | "twotone-bookmark" | "twotone-bookmark-add" | "twotone-bookmark-added" | "twotone-bookmark-border" | "twotone-bookmark-remove" | "twotone-bookmarks" | "twotone-browse-gallery" | "twotone-bug-report" | "twotone-build" | "twotone-build-circle" | "twotone-cached" | "twotone-calendar-month" | "twotone-calendar-today" | "twotone-calendar-view-day" | "twotone-calendar-view-month" | "twotone-calendar-view-week" | "twotone-camera-enhance" | "twotone-cancel-schedule-send" | "twotone-card-giftcard" | "twotone-card-membership" | "twotone-card-travel" | "twotone-change-history" | "twotone-check-circle" | "twotone-check-circle-outline" | "twotone-chrome-reader-mode" | "twotone-circle-notifications" | "twotone-class" | "twotone-close-fullscreen" | "twotone-code" | "twotone-code-off" | "twotone-comment-bank" | "twotone-commit" | "twotone-commute" | "twotone-compare-arrows" | "twotone-compress" | "twotone-contact-page" | "twotone-contact-support" | "twotone-contactless" | "twotone-copyright" | "twotone-credit-card" | "twotone-credit-card-off" | "twotone-css" | "twotone-currency-exchange" | "twotone-dangerous" | "twotone-dashboard" | "twotone-dashboard-customize" | "twotone-data-exploration" | "twotone-data-thresholding" | "twotone-date-range" | "twotone-delete" | "twotone-delete-forever" | "twotone-delete-outline" | "twotone-density-large" | "twotone-density-medium" | "twotone-density-small" | "twotone-description" | "twotone-disabled-by-default" | "twotone-disabled-visible" | "twotone-display-settings" | "twotone-dns" | "twotone-done" | "twotone-done-all" | "twotone-done-outline" | "twotone-donut-large" | "twotone-donut-small" | "twotone-drag-indicator" | "twotone-dynamic-form" | "twotone-eco" | "twotone-edit-calendar" | "twotone-edit-off" | "twotone-eject" | "twotone-euro-symbol" | "twotone-event" | "twotone-event-repeat" | "twotone-event-seat" | "twotone-exit-to-app" | "twotone-expand" | "twotone-explore" | "twotone-explore-off" | "twotone-extension" | "twotone-extension-off" | "twotone-face" | "twotone-fact-check" | "twotone-favorite" | "twotone-favorite-border" | "twotone-fax" | "twotone-feedback" | "twotone-file-present" | "twotone-filter-alt" | "twotone-filter-alt-off" | "twotone-find-in-page" | "twotone-find-replace" | "twotone-fingerprint" | "twotone-fit-screen" | "twotone-flaky" | "twotone-flight-land" | "twotone-flight-takeoff" | "twotone-flip-to-back" | "twotone-flip-to-front" | "twotone-flutter-dash" | "twotone-free-cancellation" | "twotone-g-translate" | "twotone-gavel" | "twotone-generating-tokens" | "twotone-get-app" | "twotone-gif" | "twotone-gif-box" | "twotone-grade" | "twotone-grading" | "twotone-group-work" | "twotone-help" | "twotone-help-center" | "twotone-help-outline" | "twotone-hide-source" | "twotone-highlight-alt" | "twotone-highlight-off" | "twotone-history" | "twotone-history-toggle-off" | "twotone-hls" | "twotone-hls-off" | "twotone-home" | "twotone-horizontal-split" | "twotone-hotel-class" | "twotone-hourglass-disabled" | "twotone-hourglass-empty" | "twotone-hourglass-full" | "twotone-html" | "twotone-http" | "twotone-https" | "twotone-important-devices" | "twotone-info" | "twotone-input" | "twotone-install-desktop" | "twotone-install-mobile" | "twotone-integration-instructions" | "twotone-invert-colors" | "twotone-javascript" | "twotone-join-full" | "twotone-join-inner" | "twotone-join-left" | "twotone-join-right" | "twotone-label" | "twotone-label-important" | "twotone-label-off" | "twotone-language" | "twotone-launch" | "twotone-leaderboard" | "twotone-lightbulb" | "twotone-lightbulb-circle" | "twotone-line-style" | "twotone-line-weight" | "twotone-list" | "twotone-lock" | "twotone-lock-clock" | "twotone-lock-open" | "twotone-lock-person" | "twotone-lock-reset" | "twotone-log-in" | "twotone-log-out" | "twotone-login" | "twotone-logout" | "twotone-loyalty" | "twotone-manage-accounts" | "twotone-manage-history" | "twotone-mark-as-unread" | "twotone-markunread-mailbox" | "twotone-maximize" | "twotone-mediation" | "twotone-minimize" | "twotone-model-training" | "twotone-motorcycle" | "twotone-network-ping" | "twotone-new-label" | "twotone-next-plan" | "twotone-nightlight-round" | "twotone-no-accounts" | "twotone-noise-aware" | "twotone-noise-control-off" | "twotone-not-accessible" | "twotone-not-started" | "twotone-note-add" | "twotone-offline-bolt" | "twotone-offline-pin" | "twotone-on-device-training" | "twotone-online-prediction" | "twotone-opacity" | "twotone-open-in-browser" | "twotone-open-in-full" | "twotone-open-in-new" | "twotone-open-in-new-off" | "twotone-open-with" | "twotone-outbond" | "twotone-outbound" | "twotone-outbox" | "twotone-outlet" | "twotone-output" | "twotone-pageview" | "twotone-paid" | "twotone-pan-tool" | "twotone-pan-tool-alt" | "twotone-payment" | "twotone-pending" | "twotone-pending-actions" | "twotone-percent" | "twotone-perm-camera-mic" | "twotone-perm-contact-calendar" | "twotone-perm-data-setting" | "twotone-perm-device-information" | "twotone-perm-identity" | "twotone-perm-media" | "twotone-perm-phone-msg" | "twotone-perm-scan-wifi" | "twotone-pets" | "twotone-php" | "twotone-picture-in-picture" | "twotone-picture-in-picture-alt" | "twotone-pin-end" | "twotone-pin-invoke" | "twotone-pinch" | "twotone-plagiarism" | "twotone-play-for-work" | "twotone-polymer" | "twotone-power-settings-new" | "twotone-pregnant-woman" | "twotone-preview" | "twotone-print" | "twotone-privacy-tip" | "twotone-private-connectivity" | "twotone-production-quantity-limits" | "twotone-published-with-changes" | "twotone-query-builder" | "twotone-question-answer" | "twotone-question-mark" | "twotone-quickreply" | "twotone-receipt" | "twotone-record-voice-over" | "twotone-redeem" | "twotone-remove-done" | "twotone-remove-shopping-cart" | "twotone-reorder" | "twotone-repartition" | "twotone-report-problem" | "twotone-request-page" | "twotone-restore" | "twotone-restore-from-trash" | "twotone-restore-page" | "twotone-rocket" | "twotone-rocket-launch" | "twotone-room" | "twotone-rounded-corner" | "twotone-rowing" | "twotone-rule" | "twotone-satellite-alt" | "twotone-saved-search" | "twotone-savings" | "twotone-schedule" | "twotone-schedule-send" | "twotone-search" | "twotone-search-off" | "twotone-segment" | "twotone-send-and-archive" | "twotone-sensors" | "twotone-sensors-off" | "twotone-settings" | "twotone-settings-accessibility" | "twotone-settings-applications" | "twotone-settings-backup-restore" | "twotone-settings-bluetooth" | "twotone-settings-brightness" | "twotone-settings-cell" | "twotone-settings-ethernet" | "twotone-settings-input-antenna" | "twotone-settings-input-component" | "twotone-settings-input-composite" | "twotone-settings-input-hdmi" | "twotone-settings-input-svideo" | "twotone-settings-overscan" | "twotone-settings-phone" | "twotone-settings-power" | "twotone-settings-remote" | "twotone-settings-voice" | "twotone-shop" | "twotone-shop-2" | "twotone-shop-two" | "twotone-shopping-bag" | "twotone-shopping-basket" | "twotone-shopping-cart" | "twotone-shopping-cart-checkout" | "twotone-smart-button" | "twotone-source" | "twotone-space-dashboard" | "twotone-spatial-audio" | "twotone-spatial-audio-off" | "twotone-spatial-tracking" | "twotone-speaker-notes" | "twotone-speaker-notes-off" | "twotone-spellcheck" | "twotone-star-rate" | "twotone-stars" | "twotone-sticky-note-2" | "twotone-store" | "twotone-subject" | "twotone-subtitles-off" | "twotone-supervised-user-circle" | "twotone-supervisor-account" | "twotone-support" | "twotone-swap-horiz" | "twotone-swap-horizontal-circle" | "twotone-swap-vert" | "twotone-swap-vertical-circle" | "twotone-swipe" | "twotone-swipe-down" | "twotone-swipe-down-alt" | "twotone-swipe-left" | "twotone-swipe-left-alt" | "twotone-swipe-right" | "twotone-swipe-right-alt" | "twotone-swipe-up" | "twotone-swipe-up-alt" | "twotone-swipe-vertical" | "twotone-switch-access-shortcut" | "twotone-switch-access-shortcut-add" | "twotone-sync-alt" | "twotone-system-update-alt" | "twotone-tab" | "twotone-tab-unselected" | "twotone-table-view" | "twotone-task-alt" | "twotone-terminal" | "twotone-text-rotate-up" | "twotone-text-rotate-vertical" | "twotone-text-rotation-angledown" | "twotone-text-rotation-angleup" | "twotone-text-rotation-down" | "twotone-text-rotation-none" | "twotone-theaters" | "twotone-thumb-down" | "twotone-thumb-down-off-alt" | "twotone-thumb-up" | "twotone-thumb-up-off-alt" | "twotone-thumbs-up-down" | "twotone-timeline" | "twotone-tips-and-updates" | "twotone-toc" | "twotone-today" | "twotone-token" | "twotone-toll" | "twotone-touch-app" | "twotone-tour" | "twotone-track-changes" | "twotone-transcribe" | "twotone-translate" | "twotone-trending-down" | "twotone-trending-flat" | "twotone-trending-up" | "twotone-troubleshoot" | "twotone-try" | "twotone-turned-in" | "twotone-turned-in-not" | "twotone-unfold-less-double" | "twotone-unfold-more-double" | "twotone-unpublished" | "twotone-update" | "twotone-update-disabled" | "twotone-upgrade" | "twotone-verified" | "twotone-verified-user" | "twotone-vertical-split" | "twotone-view-agenda" | "twotone-view-array" | "twotone-view-carousel" | "twotone-view-column" | "twotone-view-comfy-alt" | "twotone-view-compact-alt" | "twotone-view-cozy" | "twotone-view-day" | "twotone-view-headline" | "twotone-view-in-ar" | "twotone-view-kanban" | "twotone-view-list" | "twotone-view-module" | "twotone-view-quilt" | "twotone-view-sidebar" | "twotone-view-stream" | "twotone-view-timeline" | "twotone-view-week" | "twotone-visibility" | "twotone-visibility-off" | "twotone-voice-over-off" | "twotone-watch-later" | "twotone-webhook" | "twotone-width-full" | "twotone-width-normal" | "twotone-width-wide" | "twotone-wifi-protected-setup" | "twotone-work" | "twotone-work-history" | "twotone-work-off" | "twotone-work-outline" | "twotone-wysiwyg" | "twotone-youtube-searched-for" | "twotone-zoom-in" | "twotone-zoom-out" | "baseline-add-alert" | "baseline-auto-delete" | "baseline-error" | "baseline-error-outline" | "baseline-notification-important" | "baseline-warning" | "baseline-warning-amber" | "outline-add-alert" | "outline-auto-delete" | "outline-error" | "outline-error-outline" | "outline-notification-important" | "outline-warning" | "outline-warning-amber" | "round-add-alert" | "round-auto-delete" | "round-error" | "round-error-outline" | "round-notification-important" | "round-warning" | "round-warning-amber" | "sharp-add-alert" | "sharp-auto-delete" | "sharp-error" | "sharp-error-outline" | "sharp-notification-important" | "sharp-warning" | "sharp-warning-amber" | "twotone-add-alert" | "twotone-auto-delete" | "twotone-error" | "twotone-error-outline" | "twotone-notification-important" | "twotone-warning" | "twotone-warning-amber" | "baseline-10k" | "baseline-1k" | "baseline-1k-plus" | "baseline-2k" | "baseline-2k-plus" | "baseline-3k" | "baseline-3k-plus" | "baseline-4k" | "baseline-4k-plus" | "baseline-5g" | "baseline-5k" | "baseline-5k-plus" | "baseline-6k" | "baseline-6k-plus" | "baseline-7k" | "baseline-7k-plus" | "baseline-8k" | "baseline-8k-plus" | "baseline-9k" | "baseline-9k-plus" | "baseline-add-to-queue" | "baseline-airplay" | "baseline-album" | "baseline-art-track" | "baseline-audio-file" | "baseline-av-timer" | "baseline-branding-watermark" | "baseline-call-to-action" | "baseline-closed-caption" | "baseline-closed-caption-disabled" | "baseline-closed-caption-off" | "baseline-control-camera" | "baseline-equalizer" | "baseline-explicit" | "baseline-fast-forward" | "baseline-fast-rewind" | "baseline-featured-play-list" | "baseline-featured-video" | "baseline-fiber-dvr" | "baseline-fiber-manual-record" | "baseline-fiber-new" | "baseline-fiber-pin" | "baseline-fiber-smart-record" | "baseline-forward-10" | "baseline-forward-30" | "baseline-forward-5" | "baseline-games" | "baseline-hd" | "baseline-hearing" | "baseline-hearing-disabled" | "baseline-high-quality" | "baseline-interpreter-mode" | "baseline-library-add" | "baseline-library-add-check" | "baseline-library-books" | "baseline-library-music" | "baseline-loop" | "baseline-lyrics" | "baseline-mic" | "baseline-mic-none" | "baseline-mic-off" | "baseline-missed-video-call" | "baseline-movie" | "baseline-music-video" | "baseline-new-releases" | "baseline-not-interested" | "baseline-note" | "baseline-pause" | "baseline-pause-circle" | "baseline-pause-circle-filled" | "baseline-pause-circle-outline" | "baseline-play-arrow" | "baseline-play-circle" | "baseline-play-circle-filled" | "baseline-play-circle-filled-white" | "baseline-play-circle-outline" | "baseline-play-disabled" | "baseline-playlist-add" | "baseline-playlist-add-check" | "baseline-playlist-add-check-circle" | "baseline-playlist-add-circle" | "baseline-playlist-play" | "baseline-playlist-remove" | "baseline-queue" | "baseline-queue-music" | "baseline-queue-play-next" | "baseline-radio" | "baseline-recent-actors" | "baseline-remove-from-queue" | "baseline-repeat" | "baseline-repeat-on" | "baseline-repeat-one" | "baseline-repeat-one-on" | "baseline-replay" | "baseline-replay-10" | "baseline-replay-30" | "baseline-replay-5" | "baseline-replay-circle-filled" | "baseline-sd" | "baseline-shuffle" | "baseline-shuffle-on" | "baseline-skip-next" | "baseline-skip-previous" | "baseline-slow-motion-video" | "baseline-snooze" | "baseline-sort-by-alpha" | "baseline-speed" | "baseline-stop" | "baseline-stop-circle" | "baseline-subscriptions" | "baseline-subtitles" | "baseline-surround-sound" | "baseline-video-call" | "baseline-video-file" | "baseline-video-label" | "baseline-video-library" | "baseline-video-settings" | "baseline-videocam" | "baseline-videocam-off" | "baseline-volume-down" | "baseline-volume-mute" | "baseline-volume-off" | "baseline-volume-up" | "baseline-web" | "baseline-web-asset" | "baseline-web-asset-off" | "outline-10k" | "outline-1k" | "outline-1k-plus" | "outline-2k" | "outline-2k-plus" | "outline-3k" | "outline-3k-plus" | "outline-4k" | "outline-4k-plus" | "outline-5g" | "outline-5k" | "outline-5k-plus" | "outline-6k" | "outline-6k-plus" | "outline-7k" | "outline-7k-plus" | "outline-8k" | "outline-8k-plus" | "outline-9k" | "outline-9k-plus" | "outline-add-to-queue" | "outline-airplay" | "outline-album" | "outline-art-track" | "outline-audio-file" | "outline-av-timer" | "outline-branding-watermark" | "outline-call-to-action" | "outline-closed-caption" | "outline-closed-caption-disabled" | "outline-closed-caption-off" | "outline-control-camera" | "outline-equalizer" | "outline-explicit" | "outline-fast-forward" | "outline-fast-rewind" | "outline-featured-play-list" | "outline-featured-video" | "outline-fiber-dvr" | "outline-fiber-manual-record" | "outline-fiber-new" | "outline-fiber-pin" | "outline-fiber-smart-record" | "outline-forward-10" | "outline-forward-30" | "outline-forward-5" | "outline-games" | "outline-hd" | "outline-hearing" | "outline-hearing-disabled" | "outline-high-quality" | "outline-interpreter-mode" | "outline-library-add" | "outline-library-add-check" | "outline-library-books" | "outline-library-music" | "outline-loop" | "outline-lyrics" | "outline-mic" | "outline-mic-none" | "outline-mic-off" | "outline-missed-video-call" | "outline-movie" | "outline-music-video" | "outline-new-releases" | "outline-not-interested" | "outline-note" | "outline-pause" | "outline-pause-circle" | "outline-pause-circle-filled" | "outline-pause-circle-outline" | "outline-play-arrow" | "outline-play-circle" | "outline-play-circle-filled" | "outline-play-circle-filled-white" | "outline-play-circle-outline" | "outline-play-disabled" | "outline-playlist-add" | "outline-playlist-add-check" | "outline-playlist-add-check-circle" | "outline-playlist-add-circle" | "outline-playlist-play" | "outline-playlist-remove" | "outline-queue" | "outline-queue-music" | "outline-queue-play-next" | "outline-radio" | "outline-recent-actors" | "outline-remove-from-queue" | "outline-repeat" | "outline-repeat-on" | "outline-repeat-one" | "outline-repeat-one-on" | "outline-replay" | "outline-replay-10" | "outline-replay-30" | "outline-replay-5" | "outline-replay-circle-filled" | "outline-sd" | "outline-shuffle" | "outline-shuffle-on" | "outline-skip-next" | "outline-skip-previous" | "outline-slow-motion-video" | "outline-snooze" | "outline-sort-by-alpha" | "outline-speed" | "outline-stop" | "outline-stop-circle" | "outline-subscriptions" | "outline-subtitles" | "outline-surround-sound" | "outline-video-call" | "outline-video-file" | "outline-video-label" | "outline-video-library" | "outline-video-settings" | "outline-videocam" | "outline-videocam-off" | "outline-volume-down" | "outline-volume-mute" | "outline-volume-off" | "outline-volume-up" | "outline-web" | "outline-web-asset" | "outline-web-asset-off" | "round-10k" | "round-1k" | "round-1k-plus" | "round-2k" | "round-2k-plus" | "round-3k" | "round-3k-plus" | "round-4k" | "round-4k-plus" | "round-5g" | "round-5k" | "round-5k-plus" | "round-6k" | "round-6k-plus" | "round-7k" | "round-7k-plus" | "round-8k" | "round-8k-plus" | "round-9k" | "round-9k-plus" | "round-add-to-queue" | "round-airplay" | "round-album" | "round-art-track" | "round-audio-file" | "round-av-timer" | "round-branding-watermark" | "round-call-to-action" | "round-closed-caption" | "round-closed-caption-disabled" | "round-closed-caption-off" | "round-control-camera" | "round-equalizer" | "round-explicit" | "round-fast-forward" | "round-fast-rewind" | "round-featured-play-list" | "round-featured-video" | "round-fiber-dvr" | "round-fiber-manual-record" | "round-fiber-new" | "round-fiber-pin" | "round-fiber-smart-record" | "round-forward-10" | "round-forward-30" | "round-forward-5" | "round-games" | "round-hd" | "round-hearing" | "round-hearing-disabled" | "round-high-quality" | "round-interpreter-mode" | "round-library-add" | "round-library-add-check" | "round-library-books" | "round-library-music" | "round-loop" | "round-lyrics" | "round-mic" | "round-mic-none" | "round-mic-off" | "round-missed-video-call" | "round-movie" | "round-music-video" | "round-new-releases" | "round-not-interested" | "round-note" | "round-pause" | "round-pause-circle" | "round-pause-circle-filled" | "round-pause-circle-outline" | "round-play-arrow" | "round-play-circle" | "round-play-circle-filled" | "round-play-circle-filled-white" | "round-play-circle-outline" | "round-play-disabled" | "round-playlist-add" | "round-playlist-add-check" | "round-playlist-add-check-circle" | "round-playlist-add-circle" | "round-playlist-play" | "round-playlist-remove" | "round-queue" | "round-queue-music" | "round-queue-play-next" | "round-radio" | "round-recent-actors" | "round-remove-from-queue" | "round-repeat" | "round-repeat-on" | "round-repeat-one" | "round-repeat-one-on" | "round-replay" | "round-replay-10" | "round-replay-30" | "round-replay-5" | "round-replay-circle-filled" | "round-sd" | "round-shuffle" | "round-shuffle-on" | "round-skip-next" | "round-skip-previous" | "round-slow-motion-video" | "round-snooze" | "round-sort-by-alpha" | "round-speed" | "round-stop" | "round-stop-circle" | "round-subscriptions" | "round-subtitles" | "round-surround-sound" | "round-video-call" | "round-video-file" | "round-video-label" | "round-video-library" | "round-video-settings" | "round-videocam" | "round-videocam-off" | "round-volume-down" | "round-volume-mute" | "round-volume-off" | "round-volume-up" | "round-web" | "round-web-asset" | "round-web-asset-off" | "sharp-10k" | "sharp-1k" | "sharp-1k-plus" | "sharp-2k" | "sharp-2k-plus" | "sharp-3k" | "sharp-3k-plus" | "sharp-4k" | "sharp-4k-plus" | "sharp-5g" | "sharp-5k" | "sharp-5k-plus" | "sharp-6k" | "sharp-6k-plus" | "sharp-7k" | "sharp-7k-plus" | "sharp-8k" | "sharp-8k-plus" | "sharp-9k" | "sharp-9k-plus" | "sharp-add-to-queue" | "sharp-airplay" | "sharp-album" | "sharp-art-track" | "sharp-audio-file" | "sharp-av-timer" | "sharp-branding-watermark" | "sharp-call-to-action" | "sharp-closed-caption" | "sharp-closed-caption-disabled" | "sharp-closed-caption-off" | "sharp-control-camera" | "sharp-equalizer" | "sharp-explicit" | "sharp-fast-forward" | "sharp-fast-rewind" | "sharp-featured-play-list" | "sharp-featured-video" | "sharp-fiber-dvr" | "sharp-fiber-manual-record" | "sharp-fiber-new" | "sharp-fiber-pin" | "sharp-fiber-smart-record" | "sharp-forward-10" | "sharp-forward-30" | "sharp-forward-5" | "sharp-games" | "sharp-hd" | "sharp-hearing" | "sharp-hearing-disabled" | "sharp-high-quality" | "sharp-interpreter-mode" | "sharp-library-add" | "sharp-library-add-check" | "sharp-library-books" | "sharp-library-music" | "sharp-loop" | "sharp-lyrics" | "sharp-mic" | "sharp-mic-none" | "sharp-mic-off" | "sharp-missed-video-call" | "sharp-movie" | "sharp-music-video" | "sharp-new-releases" | "sharp-not-interested" | "sharp-note" | "sharp-pause" | "sharp-pause-circle" | "sharp-pause-circle-filled" | "sharp-pause-circle-outline" | "sharp-play-arrow" | "sharp-play-circle" | "sharp-play-circle-filled" | "sharp-play-circle-filled-white" | "sharp-play-circle-outline" | "sharp-play-disabled" | "sharp-playlist-add" | "sharp-playlist-add-check" | "sharp-playlist-add-check-circle" | "sharp-playlist-add-circle" | "sharp-playlist-play" | "sharp-playlist-remove" | "sharp-queue" | "sharp-queue-music" | "sharp-queue-play-next" | "sharp-radio" | "sharp-recent-actors" | "sharp-remove-from-queue" | "sharp-repeat" | "sharp-repeat-on" | "sharp-repeat-one" | "sharp-repeat-one-on" | "sharp-replay" | "sharp-replay-10" | "sharp-replay-30" | "sharp-replay-5" | "sharp-replay-circle-filled" | "sharp-sd" | "sharp-shuffle" | "sharp-shuffle-on" | "sharp-skip-next" | "sharp-skip-previous" | "sharp-slow-motion-video" | "sharp-snooze" | "sharp-sort-by-alpha" | "sharp-speed" | "sharp-stop" | "sharp-stop-circle" | "sharp-subscriptions" | "sharp-subtitles" | "sharp-surround-sound" | "sharp-video-call" | "sharp-video-file" | "sharp-video-label" | "sharp-video-library" | "sharp-video-settings" | "sharp-videocam" | "sharp-videocam-off" | "sharp-volume-down" | "sharp-volume-mute" | "sharp-volume-off" | "sharp-volume-up" | "sharp-web" | "sharp-web-asset" | "sharp-web-asset-off" | "twotone-10k" | "twotone-1k" | "twotone-1k-plus" | "twotone-2k" | "twotone-2k-plus" | "twotone-3k" | "twotone-3k-plus" | "twotone-4k" | "twotone-4k-plus" | "twotone-5g" | "twotone-5k" | "twotone-5k-plus" | "twotone-6k" | "twotone-6k-plus" | "twotone-7k" | "twotone-7k-plus" | "twotone-8k" | "twotone-8k-plus" | "twotone-9k" | "twotone-9k-plus" | "twotone-add-to-queue" | "twotone-airplay" | "twotone-album" | "twotone-art-track" | "twotone-audio-file" | "twotone-av-timer" | "twotone-branding-watermark" | "twotone-call-to-action" | "twotone-closed-caption" | "twotone-closed-caption-disabled" | "twotone-closed-caption-off" | "twotone-control-camera" | "twotone-equalizer" | "twotone-explicit" | "twotone-fast-forward" | "twotone-fast-rewind" | "twotone-featured-play-list" | "twotone-featured-video" | "twotone-fiber-dvr" | "twotone-fiber-manual-record" | "twotone-fiber-new" | "twotone-fiber-pin" | "twotone-fiber-smart-record" | "twotone-forward-10" | "twotone-forward-30" | "twotone-forward-5" | "twotone-games" | "twotone-hd" | "twotone-hearing" | "twotone-hearing-disabled" | "twotone-high-quality" | "twotone-interpreter-mode" | "twotone-library-add" | "twotone-library-add-check" | "twotone-library-books" | "twotone-library-music" | "twotone-loop" | "twotone-lyrics" | "twotone-mic" | "twotone-mic-none" | "twotone-mic-off" | "twotone-missed-video-call" | "twotone-movie" | "twotone-music-video" | "twotone-new-releases" | "twotone-not-interested" | "twotone-note" | "twotone-pause" | "twotone-pause-circle" | "twotone-pause-circle-filled" | "twotone-pause-circle-outline" | "twotone-play-arrow" | "twotone-play-circle" | "twotone-play-circle-filled" | "twotone-play-circle-filled-white" | "twotone-play-circle-outline" | "twotone-play-disabled" | "twotone-playlist-add" | "twotone-playlist-add-check" | "twotone-playlist-add-check-circle" | "twotone-playlist-add-circle" | "twotone-playlist-play" | "twotone-playlist-remove" | "twotone-queue" | "twotone-queue-music" | "twotone-queue-play-next" | "twotone-radio" | "twotone-recent-actors" | "twotone-remove-from-queue" | "twotone-repeat" | "twotone-repeat-on" | "twotone-repeat-one" | "twotone-repeat-one-on" | "twotone-replay" | "twotone-replay-10" | "twotone-replay-30" | "twotone-replay-5" | "twotone-replay-circle-filled" | "twotone-sd" | "twotone-shuffle" | "twotone-shuffle-on" | "twotone-skip-next" | "twotone-skip-previous" | "twotone-slow-motion-video" | "twotone-snooze" | "twotone-sort-by-alpha" | "twotone-speed" | "twotone-stop" | "twotone-stop-circle" | "twotone-subscriptions" | "twotone-subtitles" | "twotone-surround-sound" | "twotone-video-call" | "twotone-video-file" | "twotone-video-label" | "twotone-video-library" | "twotone-video-settings" | "twotone-videocam" | "twotone-videocam-off" | "twotone-volume-down" | "twotone-volume-mute" | "twotone-volume-off" | "twotone-volume-up" | "twotone-web" | "twotone-web-asset" | "twotone-web-asset-off" | "baseline-3p" | "baseline-add-ic-call" | "baseline-alternate-email" | "baseline-app-registration" | "baseline-business" | "baseline-call" | "baseline-call-end" | "baseline-call-made" | "baseline-call-merge" | "baseline-call-missed" | "baseline-call-missed-outgoing" | "baseline-call-received" | "baseline-call-split" | "baseline-cancel-presentation" | "baseline-cell-tower" | "baseline-cell-wifi" | "baseline-chat" | "baseline-chat-bubble" | "baseline-chat-bubble-outline" | "baseline-clear-all" | "baseline-co-present" | "baseline-comment" | "baseline-comments-disabled" | "baseline-contact-emergency" | "baseline-contact-mail" | "baseline-contact-phone" | "baseline-contacts" | "baseline-desktop-access-disabled" | "baseline-dialer-sip" | "baseline-dialpad" | "baseline-document-scanner" | "baseline-domain-disabled" | "baseline-domain-verification" | "baseline-duo" | "baseline-email" | "baseline-forum" | "baseline-forward-to-inbox" | "baseline-hourglass-bottom" | "baseline-hourglass-top" | "baseline-hub" | "baseline-import-contacts" | "baseline-import-export" | "baseline-invert-colors-off" | "baseline-key" | "baseline-key-off" | "baseline-list-alt" | "baseline-live-help" | "baseline-location-off" | "baseline-location-on" | "baseline-mail-lock" | "baseline-mail-outline" | "baseline-mark-chat-read" | "baseline-mark-chat-unread" | "baseline-mark-email-read" | "baseline-mark-email-unread" | "baseline-mark-unread-chat-alt" | "baseline-message" | "baseline-mobile-screen-share" | "baseline-more-time" | "baseline-nat" | "baseline-no-sim" | "baseline-pause-presentation" | "baseline-person-add-disabled" | "baseline-person-search" | "baseline-phone" | "baseline-phone-disabled" | "baseline-phone-enabled" | "baseline-phonelink-erase" | "baseline-phonelink-lock" | "baseline-phonelink-ring" | "baseline-phonelink-setup" | "baseline-portable-wifi-off" | "baseline-present-to-all" | "baseline-print-disabled" | "baseline-qr-code" | "baseline-qr-code-2" | "baseline-qr-code-scanner" | "baseline-read-more" | "baseline-ring-volume" | "baseline-rss-feed" | "baseline-rtt" | "baseline-screen-share" | "baseline-send-time-extension" | "baseline-sentiment-satisfied-alt" | "baseline-sip" | "baseline-speaker-phone" | "baseline-spoke" | "baseline-stay-current-landscape" | "baseline-stay-current-portrait" | "baseline-stay-primary-landscape" | "baseline-stay-primary-portrait" | "baseline-stop-screen-share" | "baseline-swap-calls" | "baseline-textsms" | "baseline-unsubscribe" | "baseline-voicemail" | "baseline-vpn-key" | "baseline-vpn-key-off" | "baseline-wifi-calling" | "outline-3p" | "outline-add-ic-call" | "outline-alternate-email" | "outline-app-registration" | "outline-business" | "outline-call" | "outline-call-end" | "outline-call-made" | "outline-call-merge" | "outline-call-missed" | "outline-call-missed-outgoing" | "outline-call-received" | "outline-call-split" | "outline-cancel-presentation" | "outline-cell-tower" | "outline-cell-wifi" | "outline-chat" | "outline-chat-bubble" | "outline-chat-bubble-outline" | "outline-clear-all" | "outline-co-present" | "outline-comment" | "outline-comments-disabled" | "outline-contact-emergency" | "outline-contact-mail" | "outline-contact-phone" | "outline-contacts" | "outline-desktop-access-disabled" | "outline-dialer-sip" | "outline-dialpad" | "outline-document-scanner" | "outline-domain-disabled" | "outline-domain-verification" | "outline-duo" | "outline-email" | "outline-forum" | "outline-forward-to-inbox" | "outline-hourglass-bottom" | "outline-hourglass-top" | "outline-hub" | "outline-import-contacts" | "outline-import-export" | "outline-invert-colors-off" | "outline-key" | "outline-key-off" | "outline-list-alt" | "outline-live-help" | "outline-location-off" | "outline-location-on" | "outline-mail-lock" | "outline-mail-outline" | "outline-mark-chat-read" | "outline-mark-chat-unread" | "outline-mark-email-read" | "outline-mark-email-unread" | "outline-mark-unread-chat-alt" | "outline-message" | "outline-mobile-screen-share" | "outline-more-time" | "outline-nat" | "outline-no-sim" | "outline-pause-presentation" | "outline-person-add-disabled" | "outline-person-search" | "outline-phone" | "outline-phone-disabled" | "outline-phone-enabled" | "outline-phonelink-erase" | "outline-phonelink-lock" | "outline-phonelink-ring" | "outline-phonelink-setup" | "outline-portable-wifi-off" | "outline-present-to-all" | "outline-print-disabled" | "outline-qr-code" | "outline-qr-code-2" | "outline-qr-code-scanner" | "outline-read-more" | "outline-ring-volume" | "outline-rss-feed" | "outline-rtt" | "outline-screen-share" | "outline-send-time-extension" | "outline-sentiment-satisfied-alt" | "outline-sip" | "outline-speaker-phone" | "outline-spoke" | "outline-stay-current-landscape" | "outline-stay-current-portrait" | "outline-stay-primary-landscape" | "outline-stay-primary-portrait" | "outline-stop-screen-share" | "outline-swap-calls" | "outline-textsms" | "outline-unsubscribe" | "outline-voicemail" | "outline-vpn-key" | "outline-vpn-key-off" | "outline-wifi-calling" | "round-3p" | "round-add-ic-call" | "round-alternate-email" | "round-app-registration" | "round-business" | "round-call" | "round-call-end" | "round-call-made" | "round-call-merge" | "round-call-missed" | "round-call-missed-outgoing" | "round-call-received" | "round-call-split" | "round-cancel-presentation" | "round-cell-tower" | "round-cell-wifi" | "round-chat" | "round-chat-bubble" | "round-chat-bubble-outline" | "round-clear-all" | "round-co-present" | "round-comment" | "round-comments-disabled" | "round-contact-emergency" | "round-contact-mail" | "round-contact-phone" | "round-contacts" | "round-desktop-access-disabled" | "round-dialer-sip" | "round-dialpad" | "round-document-scanner" | "round-domain-disabled" | "round-domain-verification" | "round-duo" | "round-email" | "round-forum" | "round-forward-to-inbox" | "round-hourglass-bottom" | "round-hourglass-top" | "round-hub" | "round-import-contacts" | "round-import-export" | "round-invert-colors-off" | "round-key" | "round-key-off" | "round-list-alt" | "round-live-help" | "round-location-off" | "round-location-on" | "round-mail-lock" | "round-mail-outline" | "round-mark-chat-read" | "round-mark-chat-unread" | "round-mark-email-read" | "round-mark-email-unread" | "round-mark-unread-chat-alt" | "round-message" | "round-mobile-screen-share" | "round-more-time" | "round-nat" | "round-no-sim" | "round-pause-presentation" | "round-person-add-disabled" | "round-person-search" | "round-phone" | "round-phone-disabled" | "round-phone-enabled" | "round-phonelink-erase" | "round-phonelink-lock" | "round-phonelink-ring" | "round-phonelink-setup" | "round-portable-wifi-off" | "round-present-to-all" | "round-print-disabled" | "round-qr-code" | "round-qr-code-2" | "round-qr-code-scanner" | "round-read-more" | "round-ring-volume" | "round-rss-feed" | "round-rtt" | "round-screen-share" | "round-send-time-extension" | "round-sentiment-satisfied-alt" | "round-sip" | "round-speaker-phone" | "round-spoke" | "round-stay-current-landscape" | "round-stay-current-portrait" | "round-stay-primary-landscape" | "round-stay-primary-portrait" | "round-stop-screen-share" | "round-swap-calls" | "round-textsms" | "round-unsubscribe" | "round-voicemail" | "round-vpn-key" | "round-vpn-key-off" | "round-wifi-calling" | "sharp-3p" | "sharp-add-ic-call" | "sharp-alternate-email" | "sharp-app-registration" | "sharp-business" | "sharp-call" | "sharp-call-end" | "sharp-call-made" | "sharp-call-merge" | "sharp-call-missed" | "sharp-call-missed-outgoing" | "sharp-call-received" | "sharp-call-split" | "sharp-cancel-presentation" | "sharp-cell-tower" | "sharp-cell-wifi" | "sharp-chat" | "sharp-chat-bubble" | "sharp-chat-bubble-outline" | "sharp-clear-all" | "sharp-co-present" | "sharp-comment" | "sharp-comments-disabled" | "sharp-contact-emergency" | "sharp-contact-mail" | "sharp-contact-phone" | "sharp-contacts" | "sharp-desktop-access-disabled" | "sharp-dialer-sip" | "sharp-dialpad" | "sharp-document-scanner" | "sharp-domain-disabled" | "sharp-domain-verification" | "sharp-duo" | "sharp-email" | "sharp-forum" | "sharp-forward-to-inbox" | "sharp-hourglass-bottom" | "sharp-hourglass-top" | "sharp-hub" | "sharp-import-contacts" | "sharp-import-export" | "sharp-invert-colors-off" | "sharp-key" | "sharp-key-off" | "sharp-list-alt" | "sharp-live-help" | "sharp-location-off" | "sharp-location-on" | "sharp-mail-lock" | "sharp-mail-outline" | "sharp-mark-chat-read" | "sharp-mark-chat-unread" | "sharp-mark-email-read" | "sharp-mark-email-unread" | "sharp-mark-unread-chat-alt" | "sharp-message" | "sharp-mobile-screen-share" | "sharp-more-time" | "sharp-nat" | "sharp-no-sim" | "sharp-pause-presentation" | "sharp-person-add-disabled" | "sharp-person-search" | "sharp-phone" | "sharp-phone-disabled" | "sharp-phone-enabled" | "sharp-phonelink-erase" | "sharp-phonelink-lock" | "sharp-phonelink-ring" | "sharp-phonelink-setup" | "sharp-portable-wifi-off" | "sharp-present-to-all" | "sharp-print-disabled" | "sharp-qr-code" | "sharp-qr-code-2" | "sharp-qr-code-scanner" | "sharp-read-more" | "sharp-ring-volume" | "sharp-rss-feed" | "sharp-rtt" | "sharp-screen-share" | "sharp-send-time-extension" | "sharp-sentiment-satisfied-alt" | "sharp-sip" | "sharp-speaker-phone" | "sharp-spoke" | "sharp-stay-current-landscape" | "sharp-stay-current-portrait" | "sharp-stay-primary-landscape" | "sharp-stay-primary-portrait" | "sharp-stop-screen-share" | "sharp-swap-calls" | "sharp-textsms" | "sharp-unsubscribe" | "sharp-voicemail" | "sharp-vpn-key" | "sharp-vpn-key-off" | "sharp-wifi-calling" | "twotone-3p" | "twotone-add-ic-call" | "twotone-alternate-email" | "twotone-app-registration" | "twotone-business" | "twotone-call" | "twotone-call-end" | "twotone-call-made" | "twotone-call-merge" | "twotone-call-missed" | "twotone-call-missed-outgoing" | "twotone-call-received" | "twotone-call-split" | "twotone-cancel-presentation" | "twotone-cell-tower" | "twotone-cell-wifi" | "twotone-chat" | "twotone-chat-bubble" | "twotone-chat-bubble-outline" | "twotone-clear-all" | "twotone-co-present" | "twotone-comment" | "twotone-comments-disabled" | "twotone-contact-emergency" | "twotone-contact-mail" | "twotone-contact-phone" | "twotone-contacts" | "twotone-desktop-access-disabled" | "twotone-dialer-sip" | "twotone-dialpad" | "twotone-document-scanner" | "twotone-domain-disabled" | "twotone-domain-verification" | "twotone-duo" | "twotone-email" | "twotone-forum" | "twotone-forward-to-inbox" | "twotone-hourglass-bottom" | "twotone-hourglass-top" | "twotone-hub" | "twotone-import-contacts" | "twotone-import-export" | "twotone-invert-colors-off" | "twotone-key" | "twotone-key-off" | "twotone-list-alt" | "twotone-live-help" | "twotone-location-off" | "twotone-location-on" | "twotone-mail-lock" | "twotone-mail-outline" | "twotone-mark-chat-read" | "twotone-mark-chat-unread" | "twotone-mark-email-read" | "twotone-mark-email-unread" | "twotone-mark-unread-chat-alt" | "twotone-message" | "twotone-mobile-screen-share" | "twotone-more-time" | "twotone-nat" | "twotone-no-sim" | "twotone-pause-presentation" | "twotone-person-add-disabled" | "twotone-person-search" | "twotone-phone" | "twotone-phone-disabled" | "twotone-phone-enabled" | "twotone-phonelink-erase" | "twotone-phonelink-lock" | "twotone-phonelink-ring" | "twotone-phonelink-setup" | "twotone-portable-wifi-off" | "twotone-present-to-all" | "twotone-print-disabled" | "twotone-qr-code" | "twotone-qr-code-2" | "twotone-qr-code-scanner" | "twotone-read-more" | "twotone-ring-volume" | "twotone-rss-feed" | "twotone-rtt" | "twotone-screen-share" | "twotone-send-time-extension" | "twotone-sentiment-satisfied-alt" | "twotone-sip" | "twotone-speaker-phone" | "twotone-spoke" | "twotone-stay-current-landscape" | "twotone-stay-current-portrait" | "twotone-stay-primary-landscape" | "twotone-stay-primary-portrait" | "twotone-stop-screen-share" | "twotone-swap-calls" | "twotone-textsms" | "twotone-unsubscribe" | "twotone-voicemail" | "twotone-vpn-key" | "twotone-vpn-key-off" | "twotone-wifi-calling" | "baseline-add" | "baseline-add-box" | "baseline-add-circle" | "baseline-add-circle-outline" | "baseline-add-link" | "baseline-amp-stories" | "baseline-archive" | "baseline-attribution" | "baseline-backspace" | "baseline-ballot" | "baseline-biotech" | "baseline-block" | "baseline-bolt" | "baseline-calculate" | "baseline-change-circle" | "baseline-clear" | "baseline-content-copy" | "baseline-content-cut" | "baseline-content-paste" | "baseline-content-paste-go" | "baseline-content-paste-off" | "baseline-content-paste-search" | "baseline-copy-all" | "baseline-create" | "baseline-delete-sweep" | "baseline-deselect" | "baseline-drafts" | "baseline-dynamic-feed" | "baseline-file-copy" | "baseline-filter-list" | "baseline-filter-list-off" | "baseline-flag" | "baseline-flag-circle" | "baseline-font-download" | "baseline-font-download-off" | "baseline-forward" | "baseline-gesture" | "baseline-how-to-reg" | "baseline-how-to-vote" | "baseline-inbox" | "baseline-insights" | "baseline-inventory" | "baseline-inventory-2" | "baseline-link" | "baseline-link-off" | "baseline-low-priority" | "baseline-mail" | "baseline-markunread" | "baseline-move-to-inbox" | "baseline-next-week" | "baseline-outlined-flag" | "baseline-pin-off" | "baseline-policy" | "baseline-push-pin" | "baseline-redo" | "baseline-remove" | "baseline-remove-circle" | "baseline-remove-circle-outline" | "baseline-reply" | "baseline-reply-all" | "baseline-report" | "baseline-report-gmailerrorred" | "baseline-report-off" | "baseline-save" | "baseline-save-all" | "baseline-save-alt" | "baseline-save-as" | "baseline-select-all" | "baseline-send" | "baseline-shield" | "baseline-sort" | "baseline-square-foot" | "baseline-stacked-bar-chart" | "baseline-stream" | "baseline-tag" | "baseline-text-format" | "baseline-unarchive" | "baseline-undo" | "baseline-upcoming" | "baseline-waves" | "baseline-web-stories" | "baseline-weekend" | "baseline-where-to-vote" | "outline-add" | "outline-add-box" | "outline-add-circle" | "outline-add-circle-outline" | "outline-add-link" | "outline-amp-stories" | "outline-archive" | "outline-attribution" | "outline-backspace" | "outline-ballot" | "outline-biotech" | "outline-block" | "outline-bolt" | "outline-calculate" | "outline-change-circle" | "outline-clear" | "outline-content-copy" | "outline-content-cut" | "outline-content-paste" | "outline-content-paste-go" | "outline-content-paste-off" | "outline-content-paste-search" | "outline-copy-all" | "outline-create" | "outline-delete-sweep" | "outline-deselect" | "outline-drafts" | "outline-dynamic-feed" | "outline-file-copy" | "outline-filter-list" | "outline-filter-list-off" | "outline-flag" | "outline-flag-circle" | "outline-font-download" | "outline-font-download-off" | "outline-forward" | "outline-gesture" | "outline-how-to-reg" | "outline-how-to-vote" | "outline-inbox" | "outline-insights" | "outline-inventory" | "outline-inventory-2" | "outline-link" | "outline-link-off" | "outline-low-priority" | "outline-mail" | "outline-markunread" | "outline-move-to-inbox" | "outline-next-week" | "outline-outlined-flag" | "outline-pin-off" | "outline-policy" | "outline-push-pin" | "outline-redo" | "outline-remove" | "outline-remove-circle" | "outline-remove-circle-outline" | "outline-reply" | "outline-reply-all" | "outline-report" | "outline-report-gmailerrorred" | "outline-report-off" | "outline-save" | "outline-save-all" | "outline-save-alt" | "outline-save-as" | "outline-select-all" | "outline-send" | "outline-shield" | "outline-sort" | "outline-square-foot" | "outline-stacked-bar-chart" | "outline-stream" | "outline-tag" | "outline-text-format" | "outline-unarchive" | "outline-undo" | "outline-upcoming" | "outline-waves" | "outline-web-stories" | "outline-weekend" | "outline-where-to-vote" | "round-add" | "round-add-box" | "round-add-circle" | "round-add-circle-outline" | "round-add-link" | "round-amp-stories" | "round-archive" | "round-attribution" | "round-backspace" | "round-ballot" | "round-biotech" | "round-block" | "round-bolt" | "round-calculate" | "round-change-circle" | "round-clear" | "round-content-copy" | "round-content-cut" | "round-content-paste" | "round-content-paste-go" | "round-content-paste-off" | "round-content-paste-search" | "round-copy-all" | "round-create" | "round-delete-sweep" | "round-deselect" | "round-drafts" | "round-dynamic-feed" | "round-file-copy" | "round-filter-list" | "round-filter-list-off" | "round-flag" | "round-flag-circle" | "round-font-download" | "round-font-download-off" | "round-forward" | "round-gesture" | "round-how-to-reg" | "round-how-to-vote" | "round-inbox" | "round-insights" | "round-inventory" | "round-inventory-2" | "round-link" | "round-link-off" | "round-low-priority" | "round-mail" | "round-markunread" | "round-move-to-inbox" | "round-next-week" | "round-outlined-flag" | "round-pin-off" | "round-policy" | "round-push-pin" | "round-redo" | "round-remove" | "round-remove-circle" | "round-remove-circle-outline" | "round-reply" | "round-reply-all" | "round-report" | "round-report-gmailerrorred" | "round-report-off" | "round-save" | "round-save-all" | "round-save-alt" | "round-save-as" | "round-select-all" | "round-send" | "round-sort" | "round-square-foot" | "round-stacked-bar-chart" | "round-stream" | "round-tag" | "round-text-format" | "round-unarchive" | "round-undo" | "round-upcoming" | "round-waves" | "round-web-stories" | "round-weekend" | "round-where-to-vote" | "sharp-add" | "sharp-add-box" | "sharp-add-circle" | "sharp-add-circle-outline" | "sharp-add-link" | "sharp-amp-stories" | "sharp-archive" | "sharp-attribution" | "sharp-backspace" | "sharp-ballot" | "sharp-biotech" | "sharp-block" | "sharp-bolt" | "sharp-calculate" | "sharp-change-circle" | "sharp-clear" | "sharp-content-copy" | "sharp-content-cut" | "sharp-content-paste" | "sharp-content-paste-go" | "sharp-content-paste-off" | "sharp-content-paste-search" | "sharp-copy-all" | "sharp-create" | "sharp-delete-sweep" | "sharp-deselect" | "sharp-drafts" | "sharp-dynamic-feed" | "sharp-file-copy" | "sharp-filter-list" | "sharp-filter-list-off" | "sharp-flag" | "sharp-flag-circle" | "sharp-font-download" | "sharp-font-download-off" | "sharp-forward" | "sharp-gesture" | "sharp-how-to-reg" | "sharp-how-to-vote" | "sharp-inbox" | "sharp-insights" | "sharp-inventory" | "sharp-inventory-2" | "sharp-link" | "sharp-link-off" | "sharp-low-priority" | "sharp-mail" | "sharp-markunread" | "sharp-move-to-inbox" | "sharp-next-week" | "sharp-outlined-flag" | "sharp-pin-off" | "sharp-policy" | "sharp-push-pin" | "sharp-redo" | "sharp-remove" | "sharp-remove-circle" | "sharp-remove-circle-outline" | "sharp-reply" | "sharp-reply-all" | "sharp-report" | "sharp-report-gmailerrorred" | "sharp-report-off" | "sharp-save" | "sharp-save-all" | "sharp-save-alt" | "sharp-save-as" | "sharp-select-all" | "sharp-send" | "sharp-shield" | "sharp-sort" | "sharp-square-foot" | "sharp-stacked-bar-chart" | "sharp-stream" | "sharp-tag" | "sharp-text-format" | "sharp-unarchive" | "sharp-undo" | "sharp-upcoming" | "sharp-waves" | "sharp-web-stories" | "sharp-weekend" | "sharp-where-to-vote" | "twotone-add" | "twotone-add-box" | "twotone-add-circle" | "twotone-add-circle-outline" | "twotone-add-link" | "twotone-amp-stories" | "twotone-archive" | "twotone-attribution" | "twotone-backspace" | "twotone-ballot" | "twotone-biotech" | "twotone-block" | "twotone-bolt" | "twotone-calculate" | "twotone-change-circle" | "twotone-clear" | "twotone-content-copy" | "twotone-content-cut" | "twotone-content-paste" | "twotone-content-paste-go" | "twotone-content-paste-off" | "twotone-content-paste-search" | "twotone-copy-all" | "twotone-create" | "twotone-delete-sweep" | "twotone-deselect" | "twotone-drafts" | "twotone-dynamic-feed" | "twotone-file-copy" | "twotone-filter-list" | "twotone-filter-list-off" | "twotone-flag" | "twotone-flag-circle" | "twotone-font-download" | "twotone-font-download-off" | "twotone-forward" | "twotone-gesture" | "twotone-how-to-reg" | "twotone-how-to-vote" | "twotone-inbox" | "twotone-insights" | "twotone-inventory" | "twotone-inventory-2" | "twotone-link" | "twotone-link-off" | "twotone-low-priority" | "twotone-mail" | "twotone-markunread" | "twotone-move-to-inbox" | "twotone-next-week" | "twotone-outlined-flag" | "twotone-pin-off" | "twotone-policy" | "twotone-push-pin" | "twotone-redo" | "twotone-remove" | "twotone-remove-circle" | "twotone-remove-circle-outline" | "twotone-reply" | "twotone-reply-all" | "twotone-report" | "twotone-report-gmailerrorred" | "twotone-report-off" | "twotone-save" | "twotone-save-all" | "twotone-save-alt" | "twotone-save-as" | "twotone-select-all" | "twotone-send" | "twotone-shield" | "twotone-sort" | "twotone-square-foot" | "twotone-stacked-bar-chart" | "twotone-stream" | "twotone-tag" | "twotone-text-format" | "twotone-unarchive" | "twotone-undo" | "twotone-upcoming" | "twotone-waves" | "twotone-web-stories" | "twotone-weekend" | "twotone-where-to-vote" | "baseline-1x-mobiledata" | "baseline-30fps" | "baseline-3g-mobiledata" | "baseline-4g-mobiledata" | "baseline-4g-plus-mobiledata" | "baseline-60fps" | "baseline-access-alarm" | "baseline-access-alarms" | "baseline-access-time" | "baseline-access-time-filled" | "baseline-ad-units" | "baseline-add-alarm" | "baseline-add-to-home-screen" | "baseline-air" | "baseline-airplane-ticket" | "baseline-airplanemode-active" | "baseline-airplanemode-inactive" | "baseline-aod" | "baseline-battery-0-bar" | "baseline-battery-1-bar" | "baseline-battery-2-bar" | "baseline-battery-20" | "baseline-battery-3-bar" | "baseline-battery-30" | "baseline-battery-4-bar" | "baseline-battery-5-bar" | "baseline-battery-50" | "baseline-battery-6-bar" | "baseline-battery-60" | "baseline-battery-80" | "baseline-battery-90" | "baseline-battery-alert" | "baseline-battery-charging-20" | "baseline-battery-charging-30" | "baseline-battery-charging-50" | "baseline-battery-charging-60" | "baseline-battery-charging-80" | "baseline-battery-charging-90" | "baseline-battery-charging-full" | "baseline-battery-full" | "baseline-battery-saver" | "baseline-battery-std" | "baseline-battery-unknown" | "baseline-bloodtype" | "baseline-bluetooth" | "baseline-bluetooth-connected" | "baseline-bluetooth-disabled" | "baseline-bluetooth-drive" | "baseline-bluetooth-searching" | "baseline-brightness-auto" | "baseline-brightness-high" | "baseline-brightness-low" | "baseline-brightness-medium" | "baseline-cable" | "baseline-cameraswitch" | "baseline-credit-score" | "baseline-dark-mode" | "baseline-data-saver-off" | "baseline-data-saver-on" | "baseline-data-usage" | "baseline-dataset" | "baseline-dataset-linked" | "baseline-developer-mode" | "baseline-device-thermostat" | "baseline-devices" | "baseline-devices-fold" | "baseline-discount" | "baseline-do-not-disturb-on-total-silence" | "baseline-dvr" | "baseline-e-mobiledata" | "baseline-edgesensor-high" | "baseline-edgesensor-low" | "baseline-flashlight-off" | "baseline-flashlight-on" | "baseline-flourescent" | "baseline-fluorescent" | "baseline-fmd-bad" | "baseline-fmd-good" | "baseline-g-mobiledata" | "baseline-gpp-bad" | "baseline-gpp-good" | "baseline-gpp-maybe" | "baseline-gps-fixed" | "baseline-gps-not-fixed" | "baseline-gps-off" | "baseline-graphic-eq" | "baseline-grid-3x3" | "baseline-grid-4x4" | "baseline-grid-goldenratio" | "baseline-h-mobiledata" | "baseline-h-plus-mobiledata" | "baseline-hdr-auto" | "baseline-hdr-auto-select" | "baseline-hdr-off-select" | "baseline-hdr-on-select" | "baseline-lan" | "baseline-lens-blur" | "baseline-light-mode" | "baseline-location-disabled" | "baseline-location-searching" | "baseline-lte-mobiledata" | "baseline-lte-plus-mobiledata" | "baseline-macro-off" | "baseline-media-bluetooth-off" | "baseline-media-bluetooth-on" | "baseline-medication" | "baseline-medication-liquid" | "baseline-mobile-friendly" | "baseline-mobile-off" | "baseline-mobiledata-off" | "baseline-mode-night" | "baseline-mode-standby" | "baseline-monitor-heart" | "baseline-monitor-weight" | "baseline-nearby-error" | "baseline-nearby-off" | "baseline-network-cell" | "baseline-network-wifi" | "baseline-network-wifi-1-bar" | "baseline-network-wifi-2-bar" | "baseline-network-wifi-3-bar" | "baseline-nfc" | "baseline-nightlight" | "baseline-note-alt" | "baseline-password" | "baseline-pattern" | "baseline-phishing" | "baseline-pin" | "baseline-play-lesson" | "baseline-price-change" | "baseline-price-check" | "baseline-punch-clock" | "baseline-quiz" | "baseline-r-mobiledata" | "baseline-radar" | "baseline-remember-me" | "baseline-reset-tv" | "baseline-restart-alt" | "baseline-reviews" | "baseline-rsvp" | "baseline-screen-lock-landscape" | "baseline-screen-lock-portrait" | "baseline-screen-lock-rotation" | "baseline-screen-rotation" | "baseline-screen-search-desktop" | "baseline-screenshot" | "baseline-screenshot-monitor" | "baseline-sd-storage" | "baseline-security-update" | "baseline-security-update-good" | "baseline-security-update-warning" | "baseline-sell" | "baseline-send-to-mobile" | "baseline-settings-suggest" | "baseline-settings-system-daydream" | "baseline-share-location" | "baseline-shortcut" | "baseline-signal-cellular-0-bar" | "baseline-signal-cellular-1-bar" | "baseline-signal-cellular-2-bar" | "baseline-signal-cellular-3-bar" | "baseline-signal-cellular-4-bar" | "baseline-signal-cellular-alt" | "baseline-signal-cellular-alt-1-bar" | "baseline-signal-cellular-alt-2-bar" | "baseline-signal-cellular-connected-no-internet-0-bar" | "baseline-signal-cellular-connected-no-internet-1-bar" | "baseline-signal-cellular-connected-no-internet-2-bar" | "baseline-signal-cellular-connected-no-internet-3-bar" | "baseline-signal-cellular-connected-no-internet-4-bar" | "baseline-signal-cellular-no-sim" | "baseline-signal-cellular-nodata" | "baseline-signal-cellular-null" | "baseline-signal-cellular-off" | "baseline-signal-wifi-0-bar" | "baseline-signal-wifi-1-bar" | "baseline-signal-wifi-1-bar-lock" | "baseline-signal-wifi-2-bar" | "baseline-signal-wifi-2-bar-lock" | "baseline-signal-wifi-3-bar" | "baseline-signal-wifi-3-bar-lock" | "baseline-signal-wifi-4-bar" | "baseline-signal-wifi-4-bar-lock" | "baseline-signal-wifi-bad" | "baseline-signal-wifi-connected-no-internet-4" | "baseline-signal-wifi-off" | "baseline-signal-wifi-statusbar-4-bar" | "baseline-signal-wifi-statusbar-connected-no-internet-4" | "baseline-signal-wifi-statusbar-null" | "baseline-sim-card-download" | "baseline-splitscreen" | "baseline-sports-score" | "baseline-ssid-chart" | "baseline-storage" | "baseline-storm" | "baseline-summarize" | "baseline-system-security-update" | "baseline-system-security-update-good" | "baseline-system-security-update-warning" | "baseline-task" | "baseline-thermostat" | "baseline-timer-10-select" | "baseline-timer-3-select" | "baseline-tungsten" | "baseline-usb" | "baseline-usb-off" | "baseline-wallpaper" | "baseline-water" | "baseline-widgets" | "baseline-wifi-1-bar" | "baseline-wifi-2-bar" | "baseline-wifi-calling-3" | "baseline-wifi-channel" | "baseline-wifi-find" | "baseline-wifi-lock" | "baseline-wifi-password" | "baseline-wifi-tethering" | "baseline-wifi-tethering-error" | "baseline-wifi-tethering-error-rounded" | "baseline-wifi-tethering-off" | "outline-1x-mobiledata" | "outline-30fps" | "outline-3g-mobiledata" | "outline-4g-mobiledata" | "outline-4g-plus-mobiledata" | "outline-60fps" | "outline-access-alarm" | "outline-access-alarms" | "outline-access-time" | "outline-access-time-filled" | "outline-ad-units" | "outline-add-alarm" | "outline-add-to-home-screen" | "outline-air" | "outline-airplane-ticket" | "outline-airplanemode-active" | "outline-airplanemode-inactive" | "outline-aod" | "outline-battery-0-bar" | "outline-battery-1-bar" | "outline-battery-2-bar" | "outline-battery-20" | "outline-battery-3-bar" | "outline-battery-30" | "outline-battery-4-bar" | "outline-battery-5-bar" | "outline-battery-50" | "outline-battery-6-bar" | "outline-battery-60" | "outline-battery-80" | "outline-battery-90" | "outline-battery-alert" | "outline-battery-charging-20" | "outline-battery-charging-30" | "outline-battery-charging-50" | "outline-battery-charging-60" | "outline-battery-charging-80" | "outline-battery-charging-90" | "outline-battery-charging-full" | "outline-battery-full" | "outline-battery-saver" | "outline-battery-std" | "outline-battery-unknown" | "outline-bloodtype" | "outline-bluetooth" | "outline-bluetooth-connected" | "outline-bluetooth-disabled" | "outline-bluetooth-drive" | "outline-bluetooth-searching" | "outline-brightness-auto" | "outline-brightness-high" | "outline-brightness-low" | "outline-brightness-medium" | "outline-cable" | "outline-cameraswitch" | "outline-credit-score" | "outline-dark-mode" | "outline-data-saver-off" | "outline-data-saver-on" | "outline-data-usage" | "outline-dataset" | "outline-dataset-linked" | "outline-developer-mode" | "outline-device-thermostat" | "outline-devices" | "outline-devices-fold" | "outline-discount" | "outline-do-not-disturb-on-total-silence" | "outline-dvr" | "outline-e-mobiledata" | "outline-edgesensor-high" | "outline-edgesensor-low" | "outline-flashlight-off" | "outline-flashlight-on" | "outline-flourescent" | "outline-fluorescent" | "outline-fmd-bad" | "outline-fmd-good" | "outline-g-mobiledata" | "outline-gpp-bad" | "outline-gpp-good" | "outline-gpp-maybe" | "outline-gps-fixed" | "outline-gps-not-fixed" | "outline-gps-off" | "outline-graphic-eq" | "outline-grid-3x3" | "outline-grid-4x4" | "outline-grid-goldenratio" | "outline-h-mobiledata" | "outline-h-plus-mobiledata" | "outline-hdr-auto" | "outline-hdr-auto-select" | "outline-hdr-off-select" | "outline-hdr-on-select" | "outline-lan" | "outline-lens-blur" | "outline-light-mode" | "outline-location-disabled" | "outline-location-searching" | "outline-lte-mobiledata" | "outline-lte-plus-mobiledata" | "outline-macro-off" | "outline-media-bluetooth-off" | "outline-media-bluetooth-on" | "outline-medication" | "outline-medication-liquid" | "outline-mobile-friendly" | "outline-mobile-off" | "outline-mobiledata-off" | "outline-mode-night" | "outline-mode-standby" | "outline-monitor-heart" | "outline-monitor-weight" | "outline-nearby-error" | "outline-nearby-off" | "outline-network-cell" | "outline-network-wifi" | "outline-network-wifi-1-bar" | "outline-network-wifi-2-bar" | "outline-network-wifi-3-bar" | "outline-nfc" | "outline-nightlight" | "outline-note-alt" | "outline-password" | "outline-pattern" | "outline-phishing" | "outline-pin" | "outline-play-lesson" | "outline-price-change" | "outline-price-check" | "outline-punch-clock" | "outline-quiz" | "outline-r-mobiledata" | "outline-radar" | "outline-remember-me" | "outline-reset-tv" | "outline-restart-alt" | "outline-reviews" | "outline-rsvp" | "outline-screen-lock-landscape" | "outline-screen-lock-portrait" | "outline-screen-lock-rotation" | "outline-screen-rotation" | "outline-screen-search-desktop" | "outline-screenshot" | "outline-screenshot-monitor" | "outline-sd-storage" | "outline-security-update" | "outline-security-update-good" | "outline-security-update-warning" | "outline-sell" | "outline-send-to-mobile" | "outline-settings-suggest" | "outline-settings-system-daydream" | "outline-share-location" | "outline-shortcut" | "outline-signal-cellular-0-bar" | "outline-signal-cellular-1-bar" | "outline-signal-cellular-2-bar" | "outline-signal-cellular-3-bar" | "outline-signal-cellular-4-bar" | "outline-signal-cellular-alt" | "outline-signal-cellular-alt-1-bar" | "outline-signal-cellular-alt-2-bar" | "outline-signal-cellular-connected-no-internet-0-bar" | "outline-signal-cellular-connected-no-internet-1-bar" | "outline-signal-cellular-connected-no-internet-2-bar" | "outline-signal-cellular-connected-no-internet-3-bar" | "outline-signal-cellular-connected-no-internet-4-bar" | "outline-signal-cellular-no-sim" | "outline-signal-cellular-nodata" | "outline-signal-cellular-null" | "outline-signal-cellular-off" | "outline-signal-wifi-0-bar" | "outline-signal-wifi-1-bar" | "outline-signal-wifi-1-bar-lock" | "outline-signal-wifi-2-bar" | "outline-signal-wifi-2-bar-lock" | "outline-signal-wifi-3-bar" | "outline-signal-wifi-3-bar-lock" | "outline-signal-wifi-4-bar" | "outline-signal-wifi-4-bar-lock" | "outline-signal-wifi-bad" | "outline-signal-wifi-connected-no-internet-4" | "outline-signal-wifi-off" | "outline-signal-wifi-statusbar-4-bar" | "outline-signal-wifi-statusbar-connected-no-internet-4" | "outline-signal-wifi-statusbar-null" | "outline-sim-card-download" | "outline-splitscreen" | "outline-sports-score" | "outline-ssid-chart" | "outline-storage" | "outline-storm" | "outline-summarize" | "outline-system-security-update" | "outline-system-security-update-good" | "outline-system-security-update-warning" | "outline-task" | "outline-thermostat" | "outline-timer-10-select" | "outline-timer-3-select" | "outline-tungsten" | "outline-usb" | "outline-usb-off" | "outline-wallpaper" | "outline-water" | "outline-widgets" | "outline-wifi-1-bar" | "outline-wifi-2-bar" | "outline-wifi-calling-3" | "outline-wifi-channel" | "outline-wifi-find" | "outline-wifi-lock" | "outline-wifi-password" | "outline-wifi-tethering" | "outline-wifi-tethering-error" | "outline-wifi-tethering-error-rounded" | "outline-wifi-tethering-off" | "round-1x-mobiledata" | "round-30fps" | "round-3g-mobiledata" | "round-4g-mobiledata" | "round-4g-plus-mobiledata" | "round-60fps" | "round-access-alarm" | "round-access-alarms" | "round-access-time" | "round-access-time-filled" | "round-ad-units" | "round-add-alarm" | "round-add-to-home-screen" | "round-air" | "round-airplane-ticket" | "round-airplanemode-active" | "round-airplanemode-inactive" | "round-aod" | "round-battery-0-bar" | "round-battery-1-bar" | "round-battery-2-bar" | "round-battery-20" | "round-battery-3-bar" | "round-battery-30" | "round-battery-4-bar" | "round-battery-5-bar" | "round-battery-50" | "round-battery-6-bar" | "round-battery-60" | "round-battery-80" | "round-battery-90" | "round-battery-alert" | "round-battery-charging-20" | "round-battery-charging-30" | "round-battery-charging-50" | "round-battery-charging-60" | "round-battery-charging-80" | "round-battery-charging-90" | "round-battery-charging-full" | "round-battery-full" | "round-battery-saver" | "round-battery-std" | "round-battery-unknown" | "round-bloodtype" | "round-bluetooth" | "round-bluetooth-connected" | "round-bluetooth-disabled" | "round-bluetooth-drive" | "round-bluetooth-searching" | "round-brightness-auto" | "round-brightness-high" | "round-brightness-low" | "round-brightness-medium" | "round-cable" | "round-cameraswitch" | "round-credit-score" | "round-dark-mode" | "round-data-saver-off" | "round-data-saver-on" | "round-data-usage" | "round-dataset" | "round-dataset-linked" | "round-developer-mode" | "round-device-thermostat" | "round-devices" | "round-devices-fold" | "round-discount" | "round-do-not-disturb-on-total-silence" | "round-dvr" | "round-e-mobiledata" | "round-edgesensor-high" | "round-edgesensor-low" | "round-flashlight-off" | "round-flashlight-on" | "round-flourescent" | "round-fluorescent" | "round-fmd-bad" | "round-fmd-good" | "round-g-mobiledata" | "round-gpp-bad" | "round-gpp-good" | "round-gpp-maybe" | "round-gps-fixed" | "round-gps-not-fixed" | "round-gps-off" | "round-graphic-eq" | "round-grid-3x3" | "round-grid-4x4" | "round-grid-goldenratio" | "round-h-mobiledata" | "round-h-plus-mobiledata" | "round-hdr-auto" | "round-hdr-auto-select" | "round-hdr-off-select" | "round-hdr-on-select" | "round-lan" | "round-lens-blur" | "round-light-mode" | "round-location-disabled" | "round-location-searching" | "round-lte-mobiledata" | "round-lte-plus-mobiledata" | "round-macro-off" | "round-media-bluetooth-off" | "round-media-bluetooth-on" | "round-medication" | "round-medication-liquid" | "round-mobile-friendly" | "round-mobile-off" | "round-mobiledata-off" | "round-mode-night" | "round-mode-standby" | "round-monitor-heart" | "round-monitor-weight" | "round-nearby-error" | "round-nearby-off" | "round-network-cell" | "round-network-wifi" | "round-network-wifi-1-bar" | "round-network-wifi-2-bar" | "round-network-wifi-3-bar" | "round-nfc" | "round-nightlight" | "round-note-alt" | "round-password" | "round-pattern" | "round-phishing" | "round-pin" | "round-play-lesson" | "round-price-change" | "round-price-check" | "round-punch-clock" | "round-quiz" | "round-r-mobiledata" | "round-radar" | "round-remember-me" | "round-reset-tv" | "round-restart-alt" | "round-reviews" | "round-rsvp" | "round-screen-lock-landscape" | "round-screen-lock-portrait" | "round-screen-lock-rotation" | "round-screen-rotation" | "round-screen-search-desktop" | "round-screenshot" | "round-screenshot-monitor" | "round-sd-storage" | "round-security-update" | "round-security-update-good" | "round-security-update-warning" | "round-sell" | "round-send-to-mobile" | "round-settings-suggest" | "round-settings-system-daydream" | "round-share-location" | "round-shortcut" | "round-signal-cellular-0-bar" | "round-signal-cellular-1-bar" | "round-signal-cellular-2-bar" | "round-signal-cellular-3-bar" | "round-signal-cellular-4-bar" | "round-signal-cellular-alt" | "round-signal-cellular-alt-1-bar" | "round-signal-cellular-alt-2-bar" | "round-signal-cellular-connected-no-internet-0-bar" | "round-signal-cellular-connected-no-internet-1-bar" | "round-signal-cellular-connected-no-internet-2-bar" | "round-signal-cellular-connected-no-internet-3-bar" | "round-signal-cellular-connected-no-internet-4-bar" | "round-signal-cellular-no-sim" | "round-signal-cellular-nodata" | "round-signal-cellular-null" | "round-signal-cellular-off" | "round-signal-wifi-0-bar" | "round-signal-wifi-1-bar" | "round-signal-wifi-1-bar-lock" | "round-signal-wifi-2-bar" | "round-signal-wifi-2-bar-lock" | "round-signal-wifi-3-bar" | "round-signal-wifi-3-bar-lock" | "round-signal-wifi-4-bar" | "round-signal-wifi-4-bar-lock" | "round-signal-wifi-bad" | "round-signal-wifi-connected-no-internet-4" | "round-signal-wifi-off" | "round-signal-wifi-statusbar-4-bar" | "round-signal-wifi-statusbar-connected-no-internet-4" | "round-signal-wifi-statusbar-null" | "round-sim-card-download" | "round-splitscreen" | "round-sports-score" | "round-ssid-chart" | "round-storage" | "round-storm" | "round-summarize" | "round-system-security-update" | "round-system-security-update-good" | "round-system-security-update-warning" | "round-task" | "round-thermostat" | "round-timer-10-select" | "round-timer-3-select" | "round-tungsten" | "round-usb" | "round-usb-off" | "round-wallpaper" | "round-water" | "round-widgets" | "round-wifi-1-bar" | "round-wifi-2-bar" | "round-wifi-calling-3" | "round-wifi-channel" | "round-wifi-find" | "round-wifi-lock" | "round-wifi-password" | "round-wifi-tethering" | "round-wifi-tethering-error" | "round-wifi-tethering-error-rounded" | "round-wifi-tethering-off" | "sharp-1x-mobiledata" | "sharp-30fps" | "sharp-3g-mobiledata" | "sharp-4g-mobiledata" | "sharp-4g-plus-mobiledata" | "sharp-60fps" | "sharp-access-alarm" | "sharp-access-alarms" | "sharp-access-time" | "sharp-access-time-filled" | "sharp-ad-units" | "sharp-add-alarm" | "sharp-add-to-home-screen" | "sharp-air" | "sharp-airplane-ticket" | "sharp-airplanemode-active" | "sharp-airplanemode-inactive" | "sharp-aod" | "sharp-battery-0-bar" | "sharp-battery-1-bar" | "sharp-battery-2-bar" | "sharp-battery-20" | "sharp-battery-3-bar" | "sharp-battery-30" | "sharp-battery-4-bar" | "sharp-battery-5-bar" | "sharp-battery-50" | "sharp-battery-6-bar" | "sharp-battery-60" | "sharp-battery-80" | "sharp-battery-90" | "sharp-battery-alert" | "sharp-battery-charging-20" | "sharp-battery-charging-30" | "sharp-battery-charging-50" | "sharp-battery-charging-60" | "sharp-battery-charging-80" | "sharp-battery-charging-90" | "sharp-battery-charging-full" | "sharp-battery-full" | "sharp-battery-saver" | "sharp-battery-std" | "sharp-battery-unknown" | "sharp-bloodtype" | "sharp-bluetooth" | "sharp-bluetooth-connected" | "sharp-bluetooth-disabled" | "sharp-bluetooth-drive" | "sharp-bluetooth-searching" | "sharp-brightness-auto" | "sharp-brightness-high" | "sharp-brightness-low" | "sharp-brightness-medium" | "sharp-cable" | "sharp-cameraswitch" | "sharp-credit-score" | "sharp-dark-mode" | "sharp-data-saver-off" | "sharp-data-saver-on" | "sharp-data-usage" | "sharp-dataset" | "sharp-dataset-linked" | "sharp-developer-mode" | "sharp-device-thermostat" | "sharp-devices" | "sharp-devices-fold" | "sharp-discount" | "sharp-do-not-disturb-on-total-silence" | "sharp-dvr" | "sharp-e-mobiledata" | "sharp-edgesensor-high" | "sharp-edgesensor-low" | "sharp-flashlight-off" | "sharp-flashlight-on" | "sharp-flourescent" | "sharp-fluorescent" | "sharp-fmd-bad" | "sharp-fmd-good" | "sharp-g-mobiledata" | "sharp-gpp-bad" | "sharp-gpp-good" | "sharp-gpp-maybe" | "sharp-gps-fixed" | "sharp-gps-not-fixed" | "sharp-gps-off" | "sharp-graphic-eq" | "sharp-grid-3x3" | "sharp-grid-4x4" | "sharp-grid-goldenratio" | "sharp-h-mobiledata" | "sharp-h-plus-mobiledata" | "sharp-hdr-auto" | "sharp-hdr-auto-select" | "sharp-hdr-off-select" | "sharp-hdr-on-select" | "sharp-lan" | "sharp-lens-blur" | "sharp-light-mode" | "sharp-location-disabled" | "sharp-location-searching" | "sharp-lte-mobiledata" | "sharp-lte-plus-mobiledata" | "sharp-macro-off" | "sharp-media-bluetooth-off" | "sharp-media-bluetooth-on" | "sharp-medication" | "sharp-medication-liquid" | "sharp-mobile-friendly" | "sharp-mobile-off" | "sharp-mobiledata-off" | "sharp-mode-night" | "sharp-mode-standby" | "sharp-monitor-heart" | "sharp-monitor-weight" | "sharp-nearby-error" | "sharp-nearby-off" | "sharp-network-cell" | "sharp-network-wifi" | "sharp-network-wifi-1-bar" | "sharp-network-wifi-2-bar" | "sharp-network-wifi-3-bar" | "sharp-nfc" | "sharp-nightlight" | "sharp-note-alt" | "sharp-password" | "sharp-pattern" | "sharp-phishing" | "sharp-pin" | "sharp-play-lesson" | "sharp-price-change" | "sharp-price-check" | "sharp-punch-clock" | "sharp-quiz" | "sharp-r-mobiledata" | "sharp-radar" | "sharp-remember-me" | "sharp-reset-tv" | "sharp-restart-alt" | "sharp-reviews" | "sharp-rsvp" | "sharp-screen-lock-landscape" | "sharp-screen-lock-portrait" | "sharp-screen-lock-rotation" | "sharp-screen-rotation" | "sharp-screen-search-desktop" | "sharp-screenshot" | "sharp-screenshot-monitor" | "sharp-sd-storage" | "sharp-security-update" | "sharp-security-update-good" | "sharp-security-update-warning" | "sharp-sell" | "sharp-send-to-mobile" | "sharp-settings-suggest" | "sharp-settings-system-daydream" | "sharp-share-location" | "sharp-shortcut" | "sharp-signal-cellular-0-bar" | "sharp-signal-cellular-1-bar" | "sharp-signal-cellular-2-bar" | "sharp-signal-cellular-3-bar" | "sharp-signal-cellular-4-bar" | "sharp-signal-cellular-alt" | "sharp-signal-cellular-alt-1-bar" | "sharp-signal-cellular-alt-2-bar" | "sharp-signal-cellular-connected-no-internet-0-bar" | "sharp-signal-cellular-connected-no-internet-1-bar" | "sharp-signal-cellular-connected-no-internet-2-bar" | "sharp-signal-cellular-connected-no-internet-3-bar" | "sharp-signal-cellular-connected-no-internet-4-bar" | "sharp-signal-cellular-no-sim" | "sharp-signal-cellular-nodata" | "sharp-signal-cellular-null" | "sharp-signal-cellular-off" | "sharp-signal-wifi-0-bar" | "sharp-signal-wifi-1-bar" | "sharp-signal-wifi-1-bar-lock" | "sharp-signal-wifi-2-bar" | "sharp-signal-wifi-2-bar-lock" | "sharp-signal-wifi-3-bar" | "sharp-signal-wifi-3-bar-lock" | "sharp-signal-wifi-4-bar" | "sharp-signal-wifi-4-bar-lock" | "sharp-signal-wifi-bad" | "sharp-signal-wifi-connected-no-internet-4" | "sharp-signal-wifi-off" | "sharp-signal-wifi-statusbar-4-bar" | "sharp-signal-wifi-statusbar-connected-no-internet-4" | "sharp-signal-wifi-statusbar-null" | "sharp-sim-card-download" | "sharp-splitscreen" | "sharp-sports-score" | "sharp-ssid-chart" | "sharp-storage" | "sharp-storm" | "sharp-summarize" | "sharp-system-security-update" | "sharp-system-security-update-good" | "sharp-system-security-update-warning" | "sharp-task" | "sharp-thermostat" | "sharp-timer-10-select" | "sharp-timer-3-select" | "sharp-tungsten" | "sharp-usb" | "sharp-usb-off" | "sharp-wallpaper" | "sharp-water" | "sharp-widgets" | "sharp-wifi-1-bar" | "sharp-wifi-2-bar" | "sharp-wifi-calling-3" | "sharp-wifi-channel" | "sharp-wifi-find" | "sharp-wifi-lock" | "sharp-wifi-password" | "sharp-wifi-tethering" | "sharp-wifi-tethering-error" | "sharp-wifi-tethering-error-rounded" | "sharp-wifi-tethering-off" | "twotone-1x-mobiledata" | "twotone-30fps" | "twotone-3g-mobiledata" | "twotone-4g-mobiledata" | "twotone-4g-plus-mobiledata" | "twotone-60fps" | "twotone-access-alarm" | "twotone-access-alarms" | "twotone-access-time" | "twotone-access-time-filled" | "twotone-ad-units" | "twotone-add-alarm" | "twotone-add-to-home-screen" | "twotone-air" | "twotone-airplane-ticket" | "twotone-airplanemode-active" | "twotone-airplanemode-inactive" | "twotone-aod" | "twotone-battery-0-bar" | "twotone-battery-1-bar" | "twotone-battery-2-bar" | "twotone-battery-20" | "twotone-battery-3-bar" | "twotone-battery-30" | "twotone-battery-4-bar" | "twotone-battery-5-bar" | "twotone-battery-50" | "twotone-battery-6-bar" | "twotone-battery-60" | "twotone-battery-80" | "twotone-battery-90" | "twotone-battery-alert" | "twotone-battery-charging-20" | "twotone-battery-charging-30" | "twotone-battery-charging-50" | "twotone-battery-charging-60" | "twotone-battery-charging-80" | "twotone-battery-charging-90" | "twotone-battery-charging-full" | "twotone-battery-full" | "twotone-battery-saver" | "twotone-battery-std" | "twotone-battery-unknown" | "twotone-bloodtype" | "twotone-bluetooth" | "twotone-bluetooth-connected" | "twotone-bluetooth-disabled" | "twotone-bluetooth-drive" | "twotone-bluetooth-searching" | "twotone-brightness-auto" | "twotone-brightness-high" | "twotone-brightness-low" | "twotone-brightness-medium" | "twotone-cable" | "twotone-cameraswitch" | "twotone-credit-score" | "twotone-dark-mode" | "twotone-data-saver-off" | "twotone-data-saver-on" | "twotone-data-usage" | "twotone-dataset" | "twotone-dataset-linked" | "twotone-developer-mode" | "twotone-device-thermostat" | "twotone-devices" | "twotone-devices-fold" | "twotone-discount" | "twotone-do-not-disturb-on-total-silence" | "twotone-dvr" | "twotone-e-mobiledata" | "twotone-edgesensor-high" | "twotone-edgesensor-low" | "twotone-flashlight-off" | "twotone-flashlight-on" | "twotone-flourescent" | "twotone-fluorescent" | "twotone-fmd-bad" | "twotone-fmd-good" | "twotone-g-mobiledata" | "twotone-gpp-bad" | "twotone-gpp-good" | "twotone-gpp-maybe" | "twotone-gps-fixed" | "twotone-gps-not-fixed" | "twotone-gps-off" | "twotone-graphic-eq" | "twotone-grid-3x3" | "twotone-grid-4x4" | "twotone-grid-goldenratio" | "twotone-h-mobiledata" | "twotone-h-plus-mobiledata" | "twotone-hdr-auto" | "twotone-hdr-auto-select" | "twotone-hdr-off-select" | "twotone-hdr-on-select" | "twotone-lan" | "twotone-lens-blur" | "twotone-light-mode" | "twotone-location-disabled" | "twotone-location-searching" | "twotone-lte-mobiledata" | "twotone-lte-plus-mobiledata" | "twotone-macro-off" | "twotone-media-bluetooth-off" | "twotone-media-bluetooth-on" | "twotone-medication" | "twotone-medication-liquid" | "twotone-mobile-friendly" | "twotone-mobile-off" | "twotone-mobiledata-off" | "twotone-mode-night" | "twotone-mode-standby" | "twotone-monitor-heart" | "twotone-monitor-weight" | "twotone-nearby-error" | "twotone-nearby-off" | "twotone-network-cell" | "twotone-network-wifi" | "twotone-network-wifi-1-bar" | "twotone-network-wifi-2-bar" | "twotone-network-wifi-3-bar" | "twotone-nfc" | "twotone-nightlight" | "twotone-note-alt" | "twotone-password" | "twotone-pattern" | "twotone-phishing" | "twotone-pin" | "twotone-play-lesson" | "twotone-price-change" | "twotone-price-check" | "twotone-punch-clock" | "twotone-quiz" | "twotone-r-mobiledata" | "twotone-radar" | "twotone-remember-me" | "twotone-reset-tv" | "twotone-restart-alt" | "twotone-reviews" | "twotone-rsvp" | "twotone-screen-lock-landscape" | "twotone-screen-lock-portrait" | "twotone-screen-lock-rotation" | "twotone-screen-rotation" | "twotone-screen-search-desktop" | "twotone-screenshot" | "twotone-screenshot-monitor" | "twotone-sd-storage" | "twotone-security-update" | "twotone-security-update-good" | "twotone-security-update-warning" | "twotone-sell" | "twotone-send-to-mobile" | "twotone-settings-suggest" | "twotone-settings-system-daydream" | "twotone-share-location" | "twotone-shortcut" | "twotone-signal-cellular-0-bar" | "twotone-signal-cellular-1-bar" | "twotone-signal-cellular-2-bar" | "twotone-signal-cellular-3-bar" | "twotone-signal-cellular-4-bar" | "twotone-signal-cellular-alt" | "twotone-signal-cellular-alt-1-bar" | "twotone-signal-cellular-alt-2-bar" | "twotone-signal-cellular-connected-no-internet-0-bar" | "twotone-signal-cellular-connected-no-internet-1-bar" | "twotone-signal-cellular-connected-no-internet-2-bar" | "twotone-signal-cellular-connected-no-internet-3-bar" | "twotone-signal-cellular-connected-no-internet-4-bar" | "twotone-signal-cellular-no-sim" | "twotone-signal-cellular-nodata" | "twotone-signal-cellular-null" | "twotone-signal-cellular-off" | "twotone-signal-wifi-0-bar" | "twotone-signal-wifi-1-bar" | "twotone-signal-wifi-1-bar-lock" | "twotone-signal-wifi-2-bar" | "twotone-signal-wifi-2-bar-lock" | "twotone-signal-wifi-3-bar" | "twotone-signal-wifi-3-bar-lock" | "twotone-signal-wifi-4-bar" | "twotone-signal-wifi-4-bar-lock" | "twotone-signal-wifi-bad" | "twotone-signal-wifi-connected-no-internet-4" | "twotone-signal-wifi-off" | "twotone-signal-wifi-statusbar-4-bar" | "twotone-signal-wifi-statusbar-connected-no-internet-4" | "twotone-signal-wifi-statusbar-null" | "twotone-sim-card-download" | "twotone-splitscreen" | "twotone-sports-score" | "twotone-ssid-chart" | "twotone-storage" | "twotone-storm" | "twotone-summarize" | "twotone-system-security-update" | "twotone-system-security-update-good" | "twotone-system-security-update-warning" | "twotone-task" | "twotone-thermostat" | "twotone-timer-10-select" | "twotone-timer-3-select" | "twotone-tungsten" | "twotone-usb" | "twotone-usb-off" | "twotone-wallpaper" | "twotone-water" | "twotone-widgets" | "twotone-wifi-1-bar" | "twotone-wifi-2-bar" | "twotone-wifi-calling-3" | "twotone-wifi-channel" | "twotone-wifi-find" | "twotone-wifi-lock" | "twotone-wifi-password" | "twotone-wifi-tethering" | "twotone-wifi-tethering-error" | "twotone-wifi-tethering-error-rounded" | "twotone-wifi-tethering-off" | "baseline-add-chart" | "baseline-add-comment" | "baseline-align-horizontal-center" | "baseline-align-horizontal-left" | "baseline-align-horizontal-right" | "baseline-align-vertical-bottom" | "baseline-align-vertical-center" | "baseline-align-vertical-top" | "baseline-area-chart" | "baseline-attach-file" | "baseline-attach-money" | "baseline-auto-graph" | "baseline-bar-chart" | "baseline-border-all" | "baseline-border-bottom" | "baseline-border-clear" | "baseline-border-color" | "baseline-border-horizontal" | "baseline-border-inner" | "baseline-border-left" | "baseline-border-outer" | "baseline-border-right" | "baseline-border-style" | "baseline-border-top" | "baseline-border-vertical" | "baseline-bubble-chart" | "baseline-candlestick-chart" | "baseline-checklist" | "baseline-checklist-rtl" | "baseline-data-array" | "baseline-data-object" | "baseline-drag-handle" | "baseline-draw" | "baseline-edit-note" | "baseline-format-align-center" | "baseline-format-align-justify" | "baseline-format-align-left" | "baseline-format-align-right" | "baseline-format-bold" | "baseline-format-clear" | "baseline-format-color-fill" | "baseline-format-color-reset" | "baseline-format-color-text" | "baseline-format-indent-decrease" | "baseline-format-indent-increase" | "baseline-format-italic" | "baseline-format-line-spacing" | "baseline-format-list-bulleted" | "baseline-format-list-numbered" | "baseline-format-list-numbered-rtl" | "baseline-format-paint" | "baseline-format-quote" | "baseline-format-shapes" | "baseline-format-size" | "baseline-format-strikethrough" | "baseline-format-textdirection-l-to-r" | "baseline-format-textdirection-r-to-l" | "baseline-format-underlined" | "baseline-functions" | "baseline-height" | "baseline-hexagon" | "baseline-highlight" | "baseline-horizontal-distribute" | "baseline-horizontal-rule" | "baseline-insert-chart" | "baseline-insert-chart-outlined" | "baseline-insert-comment" | "baseline-insert-drive-file" | "baseline-insert-emoticon" | "baseline-insert-invitation" | "baseline-insert-link" | "baseline-insert-page-break" | "baseline-insert-photo" | "baseline-line-axis" | "baseline-linear-scale" | "baseline-margin" | "baseline-merge-type" | "baseline-mode" | "baseline-mode-comment" | "baseline-mode-edit" | "baseline-mode-edit-outline" | "baseline-monetization-on" | "baseline-money-off" | "baseline-money-off-csred" | "baseline-move-down" | "baseline-move-up" | "baseline-multiline-chart" | "baseline-notes" | "baseline-numbers" | "baseline-padding" | "baseline-pentagon" | "baseline-pie-chart" | "baseline-pie-chart-outline" | "baseline-polyline" | "baseline-post-add" | "baseline-publish" | "baseline-query-stats" | "baseline-rectangle" | "baseline-scatter-plot" | "baseline-schema" | "baseline-score" | "baseline-shape-line" | "baseline-short-text" | "baseline-show-chart" | "baseline-space-bar" | "baseline-square" | "baseline-stacked-line-chart" | "baseline-strikethrough-s" | "baseline-subscript" | "baseline-superscript" | "baseline-table-chart" | "baseline-table-rows" | "baseline-text-decrease" | "baseline-text-fields" | "baseline-text-increase" | "baseline-title" | "baseline-type-specimen" | "baseline-vertical-align-bottom" | "baseline-vertical-align-center" | "baseline-vertical-align-top" | "baseline-vertical-distribute" | "baseline-wrap-text" | "outline-add-chart" | "outline-add-comment" | "outline-align-horizontal-center" | "outline-align-horizontal-left" | "outline-align-horizontal-right" | "outline-align-vertical-bottom" | "outline-align-vertical-center" | "outline-align-vertical-top" | "outline-area-chart" | "outline-attach-file" | "outline-attach-money" | "outline-auto-graph" | "outline-bar-chart" | "outline-border-all" | "outline-border-bottom" | "outline-border-clear" | "outline-border-color" | "outline-border-horizontal" | "outline-border-inner" | "outline-border-left" | "outline-border-outer" | "outline-border-right" | "outline-border-style" | "outline-border-top" | "outline-border-vertical" | "outline-bubble-chart" | "outline-candlestick-chart" | "outline-checklist" | "outline-checklist-rtl" | "outline-data-array" | "outline-data-object" | "outline-drag-handle" | "outline-draw" | "outline-edit-note" | "outline-format-align-center" | "outline-format-align-justify" | "outline-format-align-left" | "outline-format-align-right" | "outline-format-bold" | "outline-format-clear" | "outline-format-color-fill" | "outline-format-color-reset" | "outline-format-color-text" | "outline-format-indent-decrease" | "outline-format-indent-increase" | "outline-format-italic" | "outline-format-line-spacing" | "outline-format-list-bulleted" | "outline-format-list-numbered" | "outline-format-list-numbered-rtl" | "outline-format-paint" | "outline-format-quote" | "outline-format-shapes" | "outline-format-size" | "outline-format-strikethrough" | "outline-format-textdirection-l-to-r" | "outline-format-textdirection-r-to-l" | "outline-format-underlined" | "outline-functions" | "outline-height" | "outline-hexagon" | "outline-highlight" | "outline-horizontal-distribute" | "outline-horizontal-rule" | "outline-insert-chart" | "outline-insert-chart-outlined" | "outline-insert-comment" | "outline-insert-drive-file" | "outline-insert-emoticon" | "outline-insert-invitation" | "outline-insert-link" | "outline-insert-page-break" | "outline-insert-photo" | "outline-line-axis" | "outline-linear-scale" | "outline-margin" | "outline-merge-type" | "outline-mode" | "outline-mode-comment" | "outline-mode-edit" | "outline-mode-edit-outline" | "outline-monetization-on" | "outline-money-off" | "outline-money-off-csred" | "outline-move-down" | "outline-move-up" | "outline-multiline-chart" | "outline-notes" | "outline-numbers" | "outline-padding" | "outline-pentagon" | "outline-pie-chart" | "outline-pie-chart-outline" | "outline-polyline" | "outline-post-add" | "outline-publish" | "outline-query-stats" | "outline-rectangle" | "outline-scatter-plot" | "outline-schema" | "outline-score" | "outline-shape-line" | "outline-short-text" | "outline-show-chart" | "outline-space-bar" | "outline-square" | "outline-stacked-line-chart" | "outline-strikethrough-s" | "outline-subscript" | "outline-superscript" | "outline-table-chart" | "outline-table-rows" | "outline-text-decrease" | "outline-text-fields" | "outline-text-increase" | "outline-title" | "outline-type-specimen" | "outline-vertical-align-bottom" | "outline-vertical-align-center" | "outline-vertical-align-top" | "outline-vertical-distribute" | "outline-wrap-text" | "round-add-chart" | "round-add-comment" | "round-align-horizontal-center" | "round-align-horizontal-left" | "round-align-horizontal-right" | "round-align-vertical-bottom" | "round-align-vertical-center" | "round-align-vertical-top" | "round-area-chart" | "round-attach-file" | "round-attach-money" | "round-auto-graph" | "round-bar-chart" | "round-border-all" | "round-border-bottom" | "round-border-clear" | "round-border-color" | "round-border-horizontal" | "round-border-inner" | "round-border-left" | "round-border-outer" | "round-border-right" | "round-border-style" | "round-border-top" | "round-border-vertical" | "round-bubble-chart" | "round-candlestick-chart" | "round-checklist" | "round-checklist-rtl" | "round-data-array" | "round-data-object" | "round-drag-handle" | "round-draw" | "round-edit-note" | "round-format-align-center" | "round-format-align-justify" | "round-format-align-left" | "round-format-align-right" | "round-format-bold" | "round-format-clear" | "round-format-color-fill" | "round-format-color-reset" | "round-format-color-text" | "round-format-indent-decrease" | "round-format-indent-increase" | "round-format-italic" | "round-format-line-spacing" | "round-format-list-bulleted" | "round-format-list-numbered" | "round-format-list-numbered-rtl" | "round-format-paint" | "round-format-quote" | "round-format-shapes" | "round-format-size" | "round-format-strikethrough" | "round-format-textdirection-l-to-r" | "round-format-textdirection-r-to-l" | "round-format-underlined" | "round-functions" | "round-height" | "round-hexagon" | "round-highlight" | "round-horizontal-distribute" | "round-horizontal-rule" | "round-insert-chart" | "round-insert-chart-outlined" | "round-insert-comment" | "round-insert-drive-file" | "round-insert-emoticon" | "round-insert-invitation" | "round-insert-link" | "round-insert-page-break" | "round-insert-photo" | "round-line-axis" | "round-linear-scale" | "round-margin" | "round-merge-type" | "round-mode" | "round-mode-comment" | "round-mode-edit" | "round-mode-edit-outline" | "round-monetization-on" | "round-money-off" | "round-money-off-csred" | "round-move-down" | "round-move-up" | "round-multiline-chart" | "round-notes" | "round-numbers" | "round-padding" | "round-pentagon" | "round-pie-chart" | "round-pie-chart-outline" | "round-polyline" | "round-post-add" | "round-publish" | "round-query-stats" | "round-rectangle" | "round-scatter-plot" | "round-schema" | "round-score" | "round-shape-line" | "round-short-text" | "round-show-chart" | "round-space-bar" | "round-square" | "round-stacked-line-chart" | "round-strikethrough-s" | "round-subscript" | "round-superscript" | "round-table-chart" | "round-table-rows" | "round-text-decrease" | "round-text-fields" | "round-text-increase" | "round-title" | "round-type-specimen" | "round-vertical-align-bottom" | "round-vertical-align-center" | "round-vertical-align-top" | "round-vertical-distribute" | "round-wrap-text" | "sharp-add-chart" | "sharp-add-comment" | "sharp-align-horizontal-center" | "sharp-align-horizontal-left" | "sharp-align-horizontal-right" | "sharp-align-vertical-bottom" | "sharp-align-vertical-center" | "sharp-align-vertical-top" | "sharp-area-chart" | "sharp-attach-file" | "sharp-attach-money" | "sharp-auto-graph" | "sharp-bar-chart" | "sharp-border-all" | "sharp-border-bottom" | "sharp-border-clear" | "sharp-border-color" | "sharp-border-horizontal" | "sharp-border-inner" | "sharp-border-left" | "sharp-border-outer" | "sharp-border-right" | "sharp-border-style" | "sharp-border-top" | "sharp-border-vertical" | "sharp-bubble-chart" | "sharp-candlestick-chart" | "sharp-checklist" | "sharp-checklist-rtl" | "sharp-data-array" | "sharp-data-object" | "sharp-drag-handle" | "sharp-draw" | "sharp-edit-note" | "sharp-format-align-center" | "sharp-format-align-justify" | "sharp-format-align-left" | "sharp-format-align-right" | "sharp-format-bold" | "sharp-format-clear" | "sharp-format-color-fill" | "sharp-format-color-reset" | "sharp-format-color-text" | "sharp-format-indent-decrease" | "sharp-format-indent-increase" | "sharp-format-italic" | "sharp-format-line-spacing" | "sharp-format-list-bulleted" | "sharp-format-list-numbered" | "sharp-format-list-numbered-rtl" | "sharp-format-paint" | "sharp-format-quote" | "sharp-format-shapes" | "sharp-format-size" | "sharp-format-strikethrough" | "sharp-format-textdirection-l-to-r" | "sharp-format-textdirection-r-to-l" | "sharp-format-underlined" | "sharp-functions" | "sharp-height" | "sharp-hexagon" | "sharp-highlight" | "sharp-horizontal-distribute" | "sharp-horizontal-rule" | "sharp-insert-chart" | "sharp-insert-chart-outlined" | "sharp-insert-comment" | "sharp-insert-drive-file" | "sharp-insert-emoticon" | "sharp-insert-invitation" | "sharp-insert-link" | "sharp-insert-page-break" | "sharp-insert-photo" | "sharp-line-axis" | "sharp-linear-scale" | "sharp-margin" | "sharp-merge-type" | "sharp-mode" | "sharp-mode-comment" | "sharp-mode-edit" | "sharp-mode-edit-outline" | "sharp-monetization-on" | "sharp-money-off" | "sharp-money-off-csred" | "sharp-move-down" | "sharp-move-up" | "sharp-multiline-chart" | "sharp-notes" | "sharp-numbers" | "sharp-padding" | "sharp-pentagon" | "sharp-pie-chart" | "sharp-pie-chart-outline" | "sharp-polyline" | "sharp-post-add" | "sharp-publish" | "sharp-query-stats" | "sharp-rectangle" | "sharp-scatter-plot" | "sharp-schema" | "sharp-score" | "sharp-shape-line" | "sharp-short-text" | "sharp-show-chart" | "sharp-space-bar" | "sharp-square" | "sharp-stacked-line-chart" | "sharp-strikethrough-s" | "sharp-subscript" | "sharp-superscript" | "sharp-table-chart" | "sharp-table-rows" | "sharp-text-decrease" | "sharp-text-fields" | "sharp-text-increase" | "sharp-title" | "sharp-type-specimen" | "sharp-vertical-align-bottom" | "sharp-vertical-align-center" | "sharp-vertical-align-top" | "sharp-vertical-distribute" | "sharp-wrap-text" | "twotone-add-chart" | "twotone-add-comment" | "twotone-align-horizontal-center" | "twotone-align-horizontal-left" | "twotone-align-horizontal-right" | "twotone-align-vertical-bottom" | "twotone-align-vertical-center" | "twotone-align-vertical-top" | "twotone-area-chart" | "twotone-attach-file" | "twotone-attach-money" | "twotone-auto-graph" | "twotone-bar-chart" | "twotone-border-all" | "twotone-border-bottom" | "twotone-border-clear" | "twotone-border-color" | "twotone-border-horizontal" | "twotone-border-inner" | "twotone-border-left" | "twotone-border-outer" | "twotone-border-right" | "twotone-border-style" | "twotone-border-top" | "twotone-border-vertical" | "twotone-bubble-chart" | "twotone-candlestick-chart" | "twotone-checklist" | "twotone-checklist-rtl" | "twotone-data-array" | "twotone-data-object" | "twotone-drag-handle" | "twotone-draw" | "twotone-edit-note" | "twotone-format-align-center" | "twotone-format-align-justify" | "twotone-format-align-left" | "twotone-format-align-right" | "twotone-format-bold" | "twotone-format-clear" | "twotone-format-color-fill" | "twotone-format-color-reset" | "twotone-format-color-text" | "twotone-format-indent-decrease" | "twotone-format-indent-increase" | "twotone-format-italic" | "twotone-format-line-spacing" | "twotone-format-list-bulleted" | "twotone-format-list-numbered" | "twotone-format-list-numbered-rtl" | "twotone-format-paint" | "twotone-format-quote" | "twotone-format-shapes" | "twotone-format-size" | "twotone-format-strikethrough" | "twotone-format-textdirection-l-to-r" | "twotone-format-textdirection-r-to-l" | "twotone-format-underlined" | "twotone-functions" | "twotone-height" | "twotone-hexagon" | "twotone-highlight" | "twotone-horizontal-distribute" | "twotone-horizontal-rule" | "twotone-insert-chart" | "twotone-insert-chart-outlined" | "twotone-insert-comment" | "twotone-insert-drive-file" | "twotone-insert-emoticon" | "twotone-insert-invitation" | "twotone-insert-link" | "twotone-insert-page-break" | "twotone-insert-photo" | "twotone-line-axis" | "twotone-linear-scale" | "twotone-margin" | "twotone-merge-type" | "twotone-mode" | "twotone-mode-comment" | "twotone-mode-edit" | "twotone-mode-edit-outline" | "twotone-monetization-on" | "twotone-money-off" | "twotone-money-off-csred" | "twotone-move-down" | "twotone-move-up" | "twotone-multiline-chart" | "twotone-notes" | "twotone-numbers" | "twotone-padding" | "twotone-pentagon" | "twotone-pie-chart" | "twotone-pie-chart-outline" | "twotone-polyline" | "twotone-post-add" | "twotone-publish" | "twotone-query-stats" | "twotone-rectangle" | "twotone-scatter-plot" | "twotone-schema" | "twotone-score" | "twotone-shape-line" | "twotone-short-text" | "twotone-show-chart" | "twotone-space-bar" | "twotone-square" | "twotone-stacked-line-chart" | "twotone-strikethrough-s" | "twotone-subscript" | "twotone-superscript" | "twotone-table-chart" | "twotone-table-rows" | "twotone-text-decrease" | "twotone-text-fields" | "twotone-text-increase" | "twotone-title" | "twotone-type-specimen" | "twotone-vertical-align-bottom" | "twotone-vertical-align-center" | "twotone-vertical-align-top" | "twotone-vertical-distribute" | "twotone-wrap-text" | "baseline-approval" | "baseline-attach-email" | "baseline-attachment" | "baseline-cloud" | "baseline-cloud-circle" | "baseline-cloud-done" | "baseline-cloud-download" | "baseline-cloud-off" | "baseline-cloud-queue" | "baseline-cloud-sync" | "baseline-cloud-upload" | "baseline-create-new-folder" | "baseline-difference" | "baseline-download" | "baseline-download-done" | "baseline-download-for-offline" | "baseline-downloading" | "baseline-drive-file-move" | "baseline-drive-file-move-rtl" | "baseline-drive-file-rename-outline" | "baseline-drive-folder-upload" | "baseline-file-download" | "baseline-file-download-done" | "baseline-file-download-off" | "baseline-file-open" | "baseline-file-upload" | "baseline-folder" | "baseline-folder-copy" | "baseline-folder-delete" | "baseline-folder-off" | "baseline-folder-open" | "baseline-folder-shared" | "baseline-folder-zip" | "baseline-format-overline" | "baseline-grid-view" | "baseline-newspaper" | "baseline-request-quote" | "baseline-rule-folder" | "baseline-snippet-folder" | "baseline-text-snippet" | "baseline-topic" | "baseline-upload" | "baseline-upload-file" | "baseline-workspaces" | "outline-approval" | "outline-attach-email" | "outline-attachment" | "outline-cloud" | "outline-cloud-circle" | "outline-cloud-done" | "outline-cloud-download" | "outline-cloud-off" | "outline-cloud-queue" | "outline-cloud-sync" | "outline-cloud-upload" | "outline-create-new-folder" | "outline-difference" | "outline-download" | "outline-download-done" | "outline-download-for-offline" | "outline-downloading" | "outline-drive-file-move" | "outline-drive-file-move-rtl" | "outline-drive-file-rename-outline" | "outline-drive-folder-upload" | "outline-file-download" | "outline-file-download-done" | "outline-file-download-off" | "outline-file-open" | "outline-file-upload" | "outline-folder" | "outline-folder-copy" | "outline-folder-delete" | "outline-folder-off" | "outline-folder-open" | "outline-folder-shared" | "outline-folder-zip" | "outline-format-overline" | "outline-grid-view" | "outline-newspaper" | "outline-request-quote" | "outline-rule-folder" | "outline-snippet-folder" | "outline-text-snippet" | "outline-topic" | "outline-upload" | "outline-upload-file" | "outline-workspaces" | "round-approval" | "round-attach-email" | "round-attachment" | "round-cloud" | "round-cloud-circle" | "round-cloud-done" | "round-cloud-download" | "round-cloud-off" | "round-cloud-queue" | "round-cloud-sync" | "round-cloud-upload" | "round-create-new-folder" | "round-difference" | "round-download" | "round-download-done" | "round-download-for-offline" | "round-downloading" | "round-drive-file-move" | "round-drive-file-move-rtl" | "round-drive-file-rename-outline" | "round-drive-folder-upload" | "round-file-download" | "round-file-download-done" | "round-file-download-off" | "round-file-open" | "round-file-upload" | "round-folder" | "round-folder-copy" | "round-folder-delete" | "round-folder-off" | "round-folder-open" | "round-folder-shared" | "round-folder-zip" | "round-format-overline" | "round-grid-view" | "round-newspaper" | "round-request-quote" | "round-rule-folder" | "round-snippet-folder" | "round-text-snippet" | "round-topic" | "round-upload" | "round-upload-file" | "round-workspaces" | "sharp-approval" | "sharp-attach-email" | "sharp-attachment" | "sharp-cloud" | "sharp-cloud-circle" | "sharp-cloud-done" | "sharp-cloud-download" | "sharp-cloud-off" | "sharp-cloud-queue" | "sharp-cloud-sync" | "sharp-cloud-upload" | "sharp-create-new-folder" | "sharp-difference" | "sharp-download" | "sharp-download-done" | "sharp-download-for-offline" | "sharp-downloading" | "sharp-drive-file-move" | "sharp-drive-file-move-rtl" | "sharp-drive-file-rename-outline" | "sharp-drive-folder-upload" | "sharp-file-download" | "sharp-file-download-done" | "sharp-file-download-off" | "sharp-file-open" | "sharp-file-upload" | "sharp-folder" | "sharp-folder-copy" | "sharp-folder-delete" | "sharp-folder-off" | "sharp-folder-open" | "sharp-folder-shared" | "sharp-folder-zip" | "sharp-format-overline" | "sharp-grid-view" | "sharp-newspaper" | "sharp-request-quote" | "sharp-rule-folder" | "sharp-snippet-folder" | "sharp-text-snippet" | "sharp-topic" | "sharp-upload" | "sharp-upload-file" | "sharp-workspaces" | "twotone-approval" | "twotone-attach-email" | "twotone-attachment" | "twotone-cloud" | "twotone-cloud-circle" | "twotone-cloud-done" | "twotone-cloud-download" | "twotone-cloud-off" | "twotone-cloud-queue" | "twotone-cloud-sync" | "twotone-cloud-upload" | "twotone-create-new-folder" | "twotone-difference" | "twotone-download" | "twotone-download-done" | "twotone-download-for-offline" | "twotone-downloading" | "twotone-drive-file-move" | "twotone-drive-file-move-rtl" | "twotone-drive-file-rename-outline" | "twotone-drive-folder-upload" | "twotone-file-download" | "twotone-file-download-done" | "twotone-file-download-off" | "twotone-file-open" | "twotone-file-upload" | "twotone-folder" | "twotone-folder-copy" | "twotone-folder-delete" | "twotone-folder-off" | "twotone-folder-open" | "twotone-folder-shared" | "twotone-folder-zip" | "twotone-format-overline" | "twotone-grid-view" | "twotone-newspaper" | "twotone-request-quote" | "twotone-rule-folder" | "twotone-snippet-folder" | "twotone-text-snippet" | "twotone-topic" | "twotone-upload" | "twotone-upload-file" | "twotone-workspaces" | "baseline-adf-scanner" | "baseline-browser-not-supported" | "baseline-browser-updated" | "baseline-cast" | "baseline-cast-connected" | "baseline-cast-for-education" | "baseline-computer" | "baseline-connected-tv" | "baseline-desktop-mac" | "baseline-desktop-windows" | "baseline-developer-board" | "baseline-developer-board-off" | "baseline-device-hub" | "baseline-device-unknown" | "baseline-devices-other" | "baseline-dock" | "baseline-earbuds" | "baseline-earbuds-battery" | "baseline-gamepad" | "baseline-headphones" | "baseline-headphones-battery" | "baseline-headset" | "baseline-headset-mic" | "baseline-headset-off" | "baseline-home-max" | "baseline-home-mini" | "baseline-keyboard" | "baseline-keyboard-alt" | "baseline-keyboard-arrow-down" | "baseline-keyboard-arrow-left" | "baseline-keyboard-arrow-right" | "baseline-keyboard-arrow-up" | "baseline-keyboard-backspace" | "baseline-keyboard-capslock" | "baseline-keyboard-command-key" | "baseline-keyboard-control-key" | "baseline-keyboard-double-arrow-down" | "baseline-keyboard-double-arrow-left" | "baseline-keyboard-double-arrow-right" | "baseline-keyboard-double-arrow-up" | "baseline-keyboard-hide" | "baseline-keyboard-option-key" | "baseline-keyboard-return" | "baseline-keyboard-tab" | "baseline-keyboard-voice" | "baseline-laptop" | "baseline-laptop-chromebook" | "baseline-laptop-mac" | "baseline-laptop-windows" | "baseline-memory" | "baseline-monitor" | "baseline-mouse" | "baseline-phone-android" | "baseline-phone-iphone" | "baseline-phonelink" | "baseline-phonelink-off" | "baseline-point-of-sale" | "baseline-power-input" | "baseline-router" | "baseline-scanner" | "baseline-security" | "baseline-sim-card" | "baseline-smart-display" | "baseline-smart-screen" | "baseline-smart-toy" | "baseline-smartphone" | "baseline-speaker" | "baseline-speaker-group" | "baseline-start" | "baseline-tablet" | "baseline-tablet-android" | "baseline-tablet-mac" | "baseline-toys" | "baseline-tv" | "baseline-videogame-asset" | "baseline-videogame-asset-off" | "baseline-watch" | "baseline-watch-off" | "outline-adf-scanner" | "outline-browser-not-supported" | "outline-browser-updated" | "outline-cast" | "outline-cast-connected" | "outline-cast-for-education" | "outline-computer" | "outline-connected-tv" | "outline-desktop-mac" | "outline-desktop-windows" | "outline-developer-board" | "outline-developer-board-off" | "outline-device-hub" | "outline-device-unknown" | "outline-devices-other" | "outline-dock" | "outline-earbuds" | "outline-earbuds-battery" | "outline-gamepad" | "outline-headphones" | "outline-headphones-battery" | "outline-headset" | "outline-headset-mic" | "outline-headset-off" | "outline-home-max" | "outline-home-mini" | "outline-keyboard" | "outline-keyboard-alt" | "outline-keyboard-arrow-down" | "outline-keyboard-arrow-left" | "outline-keyboard-arrow-right" | "outline-keyboard-arrow-up" | "outline-keyboard-backspace" | "outline-keyboard-capslock" | "outline-keyboard-command-key" | "outline-keyboard-control-key" | "outline-keyboard-double-arrow-down" | "outline-keyboard-double-arrow-left" | "outline-keyboard-double-arrow-right" | "outline-keyboard-double-arrow-up" | "outline-keyboard-hide" | "outline-keyboard-option-key" | "outline-keyboard-return" | "outline-keyboard-tab" | "outline-keyboard-voice" | "outline-laptop" | "outline-laptop-chromebook" | "outline-laptop-mac" | "outline-laptop-windows" | "outline-memory" | "outline-monitor" | "outline-mouse" | "outline-phone-android" | "outline-phone-iphone" | "outline-phonelink" | "outline-phonelink-off" | "outline-point-of-sale" | "outline-power-input" | "outline-router" | "outline-scanner" | "outline-security" | "outline-sim-card" | "outline-smart-display" | "outline-smart-screen" | "outline-smart-toy" | "outline-smartphone" | "outline-speaker" | "outline-speaker-group" | "outline-start" | "outline-tablet" | "outline-tablet-android" | "outline-tablet-mac" | "outline-toys" | "outline-tv" | "outline-videogame-asset" | "outline-videogame-asset-off" | "outline-watch" | "outline-watch-off" | "round-adf-scanner" | "round-browser-not-supported" | "round-browser-updated" | "round-cast" | "round-cast-connected" | "round-cast-for-education" | "round-computer" | "round-connected-tv" | "round-desktop-mac" | "round-desktop-windows" | "round-developer-board" | "round-developer-board-off" | "round-device-hub" | "round-device-unknown" | "round-devices-other" | "round-dock" | "round-earbuds" | "round-earbuds-battery" | "round-gamepad" | "round-headphones" | "round-headphones-battery" | "round-headset" | "round-headset-mic" | "round-headset-off" | "round-home-max" | "round-home-mini" | "round-keyboard" | "round-keyboard-alt" | "round-keyboard-arrow-down" | "round-keyboard-arrow-left" | "round-keyboard-arrow-right" | "round-keyboard-arrow-up" | "round-keyboard-backspace" | "round-keyboard-capslock" | "round-keyboard-command-key" | "round-keyboard-control-key" | "round-keyboard-double-arrow-down" | "round-keyboard-double-arrow-left" | "round-keyboard-double-arrow-right" | "round-keyboard-double-arrow-up" | "round-keyboard-hide" | "round-keyboard-option-key" | "round-keyboard-return" | "round-keyboard-tab" | "round-keyboard-voice" | "round-laptop" | "round-laptop-chromebook" | "round-laptop-mac" | "round-laptop-windows" | "round-memory" | "round-monitor" | "round-mouse" | "round-phone-android" | "round-phone-iphone" | "round-phonelink" | "round-phonelink-off" | "round-point-of-sale" | "round-power-input" | "round-router" | "round-scanner" | "round-security" | "round-sim-card" | "round-smart-display" | "round-smart-screen" | "round-smart-toy" | "round-smartphone" | "round-speaker" | "round-speaker-group" | "round-start" | "round-tablet" | "round-tablet-android" | "round-tablet-mac" | "round-toys" | "round-tv" | "round-videogame-asset" | "round-videogame-asset-off" | "round-watch" | "round-watch-off" | "sharp-adf-scanner" | "sharp-browser-not-supported" | "sharp-browser-updated" | "sharp-cast" | "sharp-cast-connected" | "sharp-cast-for-education" | "sharp-computer" | "sharp-connected-tv" | "sharp-desktop-mac" | "sharp-desktop-windows" | "sharp-developer-board" | "sharp-developer-board-off" | "sharp-device-hub" | "sharp-device-unknown" | "sharp-devices-other" | "sharp-dock" | "sharp-earbuds" | "sharp-earbuds-battery" | "sharp-gamepad" | "sharp-headphones" | "sharp-headphones-battery" | "sharp-headset" | "sharp-headset-mic" | "sharp-headset-off" | "sharp-home-max" | "sharp-home-mini" | "sharp-keyboard" | "sharp-keyboard-alt" | "sharp-keyboard-arrow-down" | "sharp-keyboard-arrow-left" | "sharp-keyboard-arrow-right" | "sharp-keyboard-arrow-up" | "sharp-keyboard-backspace" | "sharp-keyboard-capslock" | "sharp-keyboard-command-key" | "sharp-keyboard-control-key" | "sharp-keyboard-double-arrow-down" | "sharp-keyboard-double-arrow-left" | "sharp-keyboard-double-arrow-right" | "sharp-keyboard-double-arrow-up" | "sharp-keyboard-hide" | "sharp-keyboard-option-key" | "sharp-keyboard-return" | "sharp-keyboard-tab" | "sharp-keyboard-voice" | "sharp-laptop" | "sharp-laptop-chromebook" | "sharp-laptop-mac" | "sharp-laptop-windows" | "sharp-memory" | "sharp-monitor" | "sharp-mouse" | "sharp-phone-android" | "sharp-phone-iphone" | "sharp-phonelink" | "sharp-phonelink-off" | "sharp-point-of-sale" | "sharp-power-input" | "sharp-router" | "sharp-scanner" | "sharp-security" | "sharp-sim-card" | "sharp-smart-display" | "sharp-smart-screen" | "sharp-smart-toy" | "sharp-smartphone" | "sharp-speaker" | "sharp-speaker-group" | "sharp-start" | "sharp-tablet" | "sharp-tablet-android" | "sharp-tablet-mac" | "sharp-toys" | "sharp-tv" | "sharp-videogame-asset" | "sharp-videogame-asset-off" | "sharp-watch" | "sharp-watch-off" | "twotone-adf-scanner" | "twotone-browser-not-supported" | "twotone-browser-updated" | "twotone-cast" | "twotone-cast-connected" | "twotone-cast-for-education" | "twotone-computer" | "twotone-connected-tv" | "twotone-desktop-mac" | "twotone-desktop-windows" | "twotone-developer-board" | "twotone-developer-board-off" | "twotone-device-hub" | "twotone-device-unknown" | "twotone-devices-other" | "twotone-dock" | "twotone-earbuds" | "twotone-earbuds-battery" | "twotone-gamepad" | "twotone-headphones" | "twotone-headphones-battery" | "twotone-headset" | "twotone-headset-mic" | "twotone-headset-off" | "twotone-home-max" | "twotone-home-mini" | "twotone-keyboard" | "twotone-keyboard-alt" | "twotone-keyboard-arrow-down" | "twotone-keyboard-arrow-left" | "twotone-keyboard-arrow-right" | "twotone-keyboard-arrow-up" | "twotone-keyboard-backspace" | "twotone-keyboard-capslock" | "twotone-keyboard-command-key" | "twotone-keyboard-control-key" | "twotone-keyboard-double-arrow-down" | "twotone-keyboard-double-arrow-left" | "twotone-keyboard-double-arrow-right" | "twotone-keyboard-double-arrow-up" | "twotone-keyboard-hide" | "twotone-keyboard-option-key" | "twotone-keyboard-return" | "twotone-keyboard-tab" | "twotone-keyboard-voice" | "twotone-laptop" | "twotone-laptop-chromebook" | "twotone-laptop-mac" | "twotone-laptop-windows" | "twotone-memory" | "twotone-monitor" | "twotone-mouse" | "twotone-phone-android" | "twotone-phone-iphone" | "twotone-phonelink" | "twotone-phonelink-off" | "twotone-point-of-sale" | "twotone-power-input" | "twotone-router" | "twotone-scanner" | "twotone-security" | "twotone-sim-card" | "twotone-smart-display" | "twotone-smart-screen" | "twotone-smart-toy" | "twotone-smartphone" | "twotone-speaker" | "twotone-speaker-group" | "twotone-start" | "twotone-tablet" | "twotone-tablet-android" | "twotone-tablet-mac" | "twotone-toys" | "twotone-tv" | "twotone-videogame-asset" | "twotone-videogame-asset-off" | "twotone-watch" | "twotone-watch-off" | "baseline-auto-mode" | "baseline-blinds" | "baseline-blinds-closed" | "baseline-broadcast-on-home" | "baseline-broadcast-on-personal" | "baseline-curtains" | "baseline-curtains-closed" | "baseline-electric-bolt" | "baseline-electric-meter" | "baseline-energy-savings-leaf" | "baseline-gas-meter" | "baseline-heat-pump" | "baseline-mode-fan-off" | "baseline-nest-cam-wired-stand" | "baseline-oil-barrel" | "baseline-propane" | "baseline-propane-tank" | "baseline-roller-shades" | "baseline-roller-shades-closed" | "baseline-sensor-door" | "baseline-sensor-occupied" | "baseline-sensor-window" | "baseline-shield-moon" | "baseline-solar-power" | "baseline-vertical-shades" | "baseline-vertical-shades-closed" | "baseline-wind-power" | "outline-auto-mode" | "outline-blinds" | "outline-blinds-closed" | "outline-broadcast-on-home" | "outline-broadcast-on-personal" | "outline-curtains" | "outline-curtains-closed" | "outline-electric-bolt" | "outline-electric-meter" | "outline-energy-savings-leaf" | "outline-gas-meter" | "outline-heat-pump" | "outline-mode-fan-off" | "outline-nest-cam-wired-stand" | "outline-oil-barrel" | "outline-propane" | "outline-propane-tank" | "outline-roller-shades" | "outline-roller-shades-closed" | "outline-sensor-door" | "outline-sensor-occupied" | "outline-sensor-window" | "outline-shield-moon" | "outline-solar-power" | "outline-vertical-shades" | "outline-vertical-shades-closed" | "outline-wind-power" | "round-auto-mode" | "round-blinds" | "round-blinds-closed" | "round-broadcast-on-home" | "round-broadcast-on-personal" | "round-curtains" | "round-curtains-closed" | "round-electric-bolt" | "round-electric-meter" | "round-energy-savings-leaf" | "round-gas-meter" | "round-heat-pump" | "round-mode-fan-off" | "round-nest-cam-wired-stand" | "round-oil-barrel" | "round-propane" | "round-propane-tank" | "round-roller-shades" | "round-roller-shades-closed" | "round-sensor-door" | "round-sensor-occupied" | "round-sensor-window" | "round-shield-moon" | "round-solar-power" | "round-vertical-shades" | "round-vertical-shades-closed" | "round-wind-power" | "sharp-auto-mode" | "sharp-blinds" | "sharp-blinds-closed" | "sharp-broadcast-on-home" | "sharp-broadcast-on-personal" | "sharp-curtains" | "sharp-curtains-closed" | "sharp-electric-bolt" | "sharp-electric-meter" | "sharp-energy-savings-leaf" | "sharp-gas-meter" | "sharp-heat-pump" | "sharp-mode-fan-off" | "sharp-nest-cam-wired-stand" | "sharp-oil-barrel" | "sharp-propane" | "sharp-propane-tank" | "sharp-roller-shades" | "sharp-roller-shades-closed" | "sharp-sensor-door" | "sharp-sensor-occupied" | "sharp-sensor-window" | "sharp-shield-moon" | "sharp-solar-power" | "sharp-vertical-shades" | "sharp-vertical-shades-closed" | "sharp-wind-power" | "twotone-auto-mode" | "twotone-blinds" | "twotone-blinds-closed" | "twotone-broadcast-on-home" | "twotone-broadcast-on-personal" | "twotone-curtains" | "twotone-curtains-closed" | "twotone-electric-bolt" | "twotone-electric-meter" | "twotone-energy-savings-leaf" | "twotone-gas-meter" | "twotone-heat-pump" | "twotone-mode-fan-off" | "twotone-nest-cam-wired-stand" | "twotone-oil-barrel" | "twotone-propane" | "twotone-propane-tank" | "twotone-roller-shades" | "twotone-roller-shades-closed" | "twotone-sensor-door" | "twotone-sensor-occupied" | "twotone-sensor-window" | "twotone-shield-moon" | "twotone-solar-power" | "twotone-vertical-shades" | "twotone-vertical-shades-closed" | "twotone-wind-power" | "baseline-10mp" | "baseline-11mp" | "baseline-12mp" | "baseline-13mp" | "baseline-14mp" | "baseline-15mp" | "baseline-16mp" | "baseline-17mp" | "baseline-18mp" | "baseline-19mp" | "baseline-20mp" | "baseline-21mp" | "baseline-22mp" | "baseline-23mp" | "baseline-24mp" | "baseline-2mp" | "baseline-30fps-select" | "baseline-3mp" | "baseline-4mp" | "baseline-5mp" | "baseline-60fps-select" | "baseline-6mp" | "baseline-7mp" | "baseline-8mp" | "baseline-9mp" | "baseline-add-a-photo" | "baseline-add-photo-alternate" | "baseline-add-to-photos" | "baseline-adjust" | "baseline-animation" | "baseline-assistant" | "baseline-assistant-photo" | "baseline-audiotrack" | "baseline-auto-awesome" | "baseline-auto-awesome-mosaic" | "baseline-auto-awesome-motion" | "baseline-auto-fix-high" | "baseline-auto-fix-normal" | "baseline-auto-fix-off" | "baseline-auto-stories" | "baseline-autofps-select" | "baseline-bedtime" | "baseline-bedtime-off" | "baseline-blur-circular" | "baseline-blur-linear" | "baseline-blur-off" | "baseline-blur-on" | "baseline-brightness-1" | "baseline-brightness-2" | "baseline-brightness-3" | "baseline-brightness-4" | "baseline-brightness-5" | "baseline-brightness-6" | "baseline-brightness-7" | "baseline-broken-image" | "baseline-brush" | "baseline-burst-mode" | "baseline-camera" | "baseline-camera-alt" | "baseline-camera-front" | "baseline-camera-rear" | "baseline-camera-roll" | "baseline-cases" | "baseline-center-focus-strong" | "baseline-center-focus-weak" | "baseline-circle" | "baseline-collections" | "baseline-collections-bookmark" | "baseline-color-lens" | "baseline-colorize" | "baseline-compare" | "baseline-contrast" | "baseline-control-point" | "baseline-control-point-duplicate" | "baseline-crop" | "baseline-crop-16-9" | "baseline-crop-3-2" | "baseline-crop-5-4" | "baseline-crop-7-5" | "baseline-crop-din" | "baseline-crop-free" | "baseline-crop-landscape" | "baseline-crop-original" | "baseline-crop-portrait" | "baseline-crop-rotate" | "baseline-crop-square" | "baseline-currency-bitcoin" | "baseline-currency-franc" | "baseline-currency-lira" | "baseline-currency-pound" | "baseline-currency-ruble" | "baseline-currency-rupee" | "baseline-currency-yen" | "baseline-currency-yuan" | "baseline-deblur" | "baseline-dehaze" | "baseline-details" | "baseline-dirty-lens" | "baseline-edit" | "baseline-euro" | "baseline-exposure" | "baseline-exposure-neg-1" | "baseline-exposure-neg-2" | "baseline-exposure-plus-1" | "baseline-exposure-plus-2" | "baseline-exposure-zero" | "baseline-face-retouching-natural" | "baseline-face-retouching-off" | "baseline-filter" | "baseline-filter-1" | "baseline-filter-2" | "baseline-filter-3" | "baseline-filter-4" | "baseline-filter-5" | "baseline-filter-6" | "baseline-filter-7" | "baseline-filter-8" | "baseline-filter-9" | "baseline-filter-9-plus" | "baseline-filter-b-and-w" | "baseline-filter-center-focus" | "baseline-filter-drama" | "baseline-filter-frames" | "baseline-filter-hdr" | "baseline-filter-none" | "baseline-filter-tilt-shift" | "baseline-filter-vintage" | "baseline-flare" | "baseline-flash-auto" | "baseline-flash-off" | "baseline-flash-on" | "baseline-flip" | "baseline-flip-camera-android" | "baseline-flip-camera-ios" | "baseline-gradient" | "baseline-grain" | "baseline-grid-off" | "baseline-grid-on" | "baseline-hdr-enhanced-select" | "baseline-hdr-off" | "baseline-hdr-on" | "baseline-hdr-plus" | "baseline-hdr-strong" | "baseline-hdr-weak" | "baseline-healing" | "baseline-hevc" | "baseline-hide-image" | "baseline-image" | "baseline-image-aspect-ratio" | "baseline-image-not-supported" | "baseline-image-search" | "baseline-incomplete-circle" | "baseline-iso" | "baseline-landscape" | "baseline-leak-add" | "baseline-leak-remove" | "baseline-lens" | "baseline-linked-camera" | "baseline-logo-dev" | "baseline-looks" | "baseline-looks-3" | "baseline-looks-4" | "baseline-looks-5" | "baseline-looks-6" | "baseline-looks-one" | "baseline-looks-two" | "baseline-loupe" | "baseline-mic-external-off" | "baseline-mic-external-on" | "baseline-monochrome-photos" | "baseline-motion-photos-auto" | "baseline-motion-photos-off" | "baseline-motion-photos-on" | "baseline-motion-photos-pause" | "baseline-motion-photos-paused" | "baseline-movie-creation" | "baseline-movie-filter" | "baseline-mp" | "baseline-music-note" | "baseline-music-off" | "baseline-nature" | "baseline-nature-people" | "baseline-navigate-before" | "baseline-navigate-next" | "baseline-palette" | "baseline-panorama" | "baseline-panorama-fish-eye" | "baseline-panorama-horizontal" | "baseline-panorama-horizontal-select" | "baseline-panorama-photosphere" | "baseline-panorama-photosphere-select" | "baseline-panorama-vertical" | "baseline-panorama-vertical-select" | "baseline-panorama-wide-angle" | "baseline-panorama-wide-angle-select" | "baseline-photo" | "baseline-photo-album" | "baseline-photo-camera" | "baseline-photo-camera-back" | "baseline-photo-camera-front" | "baseline-photo-filter" | "baseline-photo-library" | "baseline-photo-size-select-actual" | "baseline-photo-size-select-large" | "baseline-photo-size-select-small" | "baseline-picture-as-pdf" | "baseline-portrait" | "baseline-raw-off" | "baseline-raw-on" | "baseline-receipt-long" | "baseline-remove-red-eye" | "baseline-rotate-90-degrees-ccw" | "baseline-rotate-90-degrees-cw" | "baseline-rotate-left" | "baseline-rotate-right" | "baseline-shutter-speed" | "baseline-slideshow" | "baseline-straighten" | "baseline-style" | "baseline-switch-camera" | "baseline-switch-video" | "baseline-tag-faces" | "baseline-texture" | "baseline-thermostat-auto" | "baseline-timelapse" | "baseline-timer" | "baseline-timer-10" | "baseline-timer-3" | "baseline-timer-off" | "baseline-tonality" | "baseline-transform" | "baseline-tune" | "baseline-video-camera-back" | "baseline-video-camera-front" | "baseline-video-stable" | "baseline-view-comfy" | "baseline-view-compact" | "baseline-vignette" | "baseline-vrpano" | "baseline-wb-auto" | "baseline-wb-cloudy" | "baseline-wb-incandescent" | "baseline-wb-iridescent" | "baseline-wb-shade" | "baseline-wb-sunny" | "baseline-wb-twilight" | "outline-10mp" | "outline-11mp" | "outline-12mp" | "outline-13mp" | "outline-14mp" | "outline-15mp" | "outline-16mp" | "outline-17mp" | "outline-18mp" | "outline-19mp" | "outline-20mp" | "outline-21mp" | "outline-22mp" | "outline-23mp" | "outline-24mp" | "outline-2mp" | "outline-30fps-select" | "outline-3mp" | "outline-4mp" | "outline-5mp" | "outline-60fps-select" | "outline-6mp" | "outline-7mp" | "outline-8mp" | "outline-9mp" | "outline-add-a-photo" | "outline-add-photo-alternate" | "outline-add-to-photos" | "outline-adjust" | "outline-animation" | "outline-assistant" | "outline-assistant-photo" | "outline-audiotrack" | "outline-auto-awesome" | "outline-auto-awesome-mosaic" | "outline-auto-awesome-motion" | "outline-auto-fix-high" | "outline-auto-fix-normal" | "outline-auto-fix-off" | "outline-auto-stories" | "outline-autofps-select" | "outline-bedtime" | "outline-bedtime-off" | "outline-blur-circular" | "outline-blur-linear" | "outline-blur-off" | "outline-blur-on" | "outline-brightness-1" | "outline-brightness-2" | "outline-brightness-3" | "outline-brightness-4" | "outline-brightness-5" | "outline-brightness-6" | "outline-brightness-7" | "outline-broken-image" | "outline-brush" | "outline-burst-mode" | "outline-camera" | "outline-camera-alt" | "outline-camera-front" | "outline-camera-rear" | "outline-camera-roll" | "outline-cases" | "outline-center-focus-strong" | "outline-center-focus-weak" | "outline-circle" | "outline-collections" | "outline-collections-bookmark" | "outline-color-lens" | "outline-colorize" | "outline-compare" | "outline-contrast" | "outline-control-point" | "outline-control-point-duplicate" | "outline-crop" | "outline-crop-16-9" | "outline-crop-3-2" | "outline-crop-5-4" | "outline-crop-7-5" | "outline-crop-din" | "outline-crop-free" | "outline-crop-landscape" | "outline-crop-original" | "outline-crop-portrait" | "outline-crop-rotate" | "outline-crop-square" | "outline-currency-bitcoin" | "outline-currency-franc" | "outline-currency-lira" | "outline-currency-pound" | "outline-currency-ruble" | "outline-currency-rupee" | "outline-currency-yen" | "outline-currency-yuan" | "outline-deblur" | "outline-dehaze" | "outline-details" | "outline-dirty-lens" | "outline-edit" | "outline-euro" | "outline-exposure" | "outline-exposure-neg-1" | "outline-exposure-neg-2" | "outline-exposure-plus-1" | "outline-exposure-plus-2" | "outline-exposure-zero" | "outline-face-retouching-natural" | "outline-face-retouching-off" | "outline-filter" | "outline-filter-1" | "outline-filter-2" | "outline-filter-3" | "outline-filter-4" | "outline-filter-5" | "outline-filter-6" | "outline-filter-7" | "outline-filter-8" | "outline-filter-9" | "outline-filter-9-plus" | "outline-filter-b-and-w" | "outline-filter-center-focus" | "outline-filter-drama" | "outline-filter-frames" | "outline-filter-hdr" | "outline-filter-none" | "outline-filter-tilt-shift" | "outline-filter-vintage" | "outline-flare" | "outline-flash-auto" | "outline-flash-off" | "outline-flash-on" | "outline-flip" | "outline-flip-camera-android" | "outline-flip-camera-ios" | "outline-gradient" | "outline-grain" | "outline-grid-off" | "outline-grid-on" | "outline-hdr-enhanced-select" | "outline-hdr-off" | "outline-hdr-on" | "outline-hdr-plus" | "outline-hdr-strong" | "outline-hdr-weak" | "outline-healing" | "outline-hevc" | "outline-hide-image" | "outline-image" | "outline-image-aspect-ratio" | "outline-image-not-supported" | "outline-image-search" | "outline-incomplete-circle" | "outline-iso" | "outline-landscape" | "outline-leak-add" | "outline-leak-remove" | "outline-lens" | "outline-linked-camera" | "outline-logo-dev" | "outline-looks" | "outline-looks-3" | "outline-looks-4" | "outline-looks-5" | "outline-looks-6" | "outline-looks-one" | "outline-looks-two" | "outline-loupe" | "outline-mic-external-off" | "outline-mic-external-on" | "outline-monochrome-photos" | "outline-motion-photos-auto" | "outline-motion-photos-off" | "outline-motion-photos-on" | "outline-motion-photos-pause" | "outline-motion-photos-paused" | "outline-movie-creation" | "outline-movie-filter" | "outline-mp" | "outline-music-note" | "outline-music-off" | "outline-nature" | "outline-nature-people" | "outline-navigate-before" | "outline-navigate-next" | "outline-palette" | "outline-panorama" | "outline-panorama-fish-eye" | "outline-panorama-horizontal" | "outline-panorama-horizontal-select" | "outline-panorama-photosphere" | "outline-panorama-photosphere-select" | "outline-panorama-vertical" | "outline-panorama-vertical-select" | "outline-panorama-wide-angle" | "outline-panorama-wide-angle-select" | "outline-photo" | "outline-photo-album" | "outline-photo-camera" | "outline-photo-camera-back" | "outline-photo-camera-front" | "outline-photo-filter" | "outline-photo-library" | "outline-photo-size-select-actual" | "outline-photo-size-select-large" | "outline-photo-size-select-small" | "outline-picture-as-pdf" | "outline-portrait" | "outline-raw-off" | "outline-raw-on" | "outline-receipt-long" | "outline-remove-red-eye" | "outline-rotate-90-degrees-ccw" | "outline-rotate-90-degrees-cw" | "outline-rotate-left" | "outline-rotate-right" | "outline-shutter-speed" | "outline-slideshow" | "outline-straighten" | "outline-style" | "outline-switch-camera" | "outline-switch-video" | "outline-tag-faces" | "outline-texture" | "outline-thermostat-auto" | "outline-timelapse" | "outline-timer" | "outline-timer-10" | "outline-timer-3" | "outline-timer-off" | "outline-tonality" | "outline-transform" | "outline-tune" | "outline-video-camera-back" | "outline-video-camera-front" | "outline-video-stable" | "outline-view-comfy" | "outline-view-compact" | "outline-vignette" | "outline-vrpano" | "outline-wb-auto" | "outline-wb-cloudy" | "outline-wb-incandescent" | "outline-wb-iridescent" | "outline-wb-shade" | "outline-wb-sunny" | "outline-wb-twilight" | "round-10mp" | "round-11mp" | "round-12mp" | "round-13mp" | "round-14mp" | "round-15mp" | "round-16mp" | "round-17mp" | "round-18mp" | "round-19mp" | "round-20mp" | "round-21mp" | "round-22mp" | "round-23mp" | "round-24mp" | "round-2mp" | "round-30fps-select" | "round-3mp" | "round-4mp" | "round-5mp" | "round-60fps-select" | "round-6mp" | "round-7mp" | "round-8mp" | "round-9mp" | "round-add-a-photo" | "round-add-photo-alternate" | "round-add-to-photos" | "round-adjust" | "round-animation" | "round-assistant" | "round-assistant-photo" | "round-audiotrack" | "round-auto-awesome" | "round-auto-awesome-mosaic" | "round-auto-awesome-motion" | "round-auto-fix-high" | "round-auto-fix-normal" | "round-auto-fix-off" | "round-auto-stories" | "round-autofps-select" | "round-bedtime" | "round-bedtime-off" | "round-blur-circular" | "round-blur-linear" | "round-blur-off" | "round-blur-on" | "round-brightness-1" | "round-brightness-2" | "round-brightness-3" | "round-brightness-4" | "round-brightness-5" | "round-brightness-6" | "round-brightness-7" | "round-broken-image" | "round-burst-mode" | "round-camera" | "round-camera-alt" | "round-camera-front" | "round-camera-rear" | "round-camera-roll" | "round-cases" | "round-center-focus-strong" | "round-center-focus-weak" | "round-circle" | "round-collections" | "round-collections-bookmark" | "round-color-lens" | "round-colorize" | "round-compare" | "round-contrast" | "round-control-point" | "round-control-point-duplicate" | "round-crop" | "round-crop-16-9" | "round-crop-3-2" | "round-crop-5-4" | "round-crop-7-5" | "round-crop-din" | "round-crop-free" | "round-crop-landscape" | "round-crop-original" | "round-crop-portrait" | "round-crop-rotate" | "round-crop-square" | "round-currency-bitcoin" | "round-currency-franc" | "round-currency-lira" | "round-currency-pound" | "round-currency-ruble" | "round-currency-rupee" | "round-currency-yen" | "round-currency-yuan" | "round-deblur" | "round-dehaze" | "round-details" | "round-dirty-lens" | "round-edit" | "round-euro" | "round-exposure" | "round-exposure-neg-1" | "round-exposure-neg-2" | "round-exposure-plus-1" | "round-exposure-plus-2" | "round-exposure-zero" | "round-face-retouching-natural" | "round-face-retouching-off" | "round-filter" | "round-filter-1" | "round-filter-2" | "round-filter-3" | "round-filter-4" | "round-filter-5" | "round-filter-6" | "round-filter-7" | "round-filter-8" | "round-filter-9" | "round-filter-9-plus" | "round-filter-b-and-w" | "round-filter-center-focus" | "round-filter-drama" | "round-filter-frames" | "round-filter-hdr" | "round-filter-none" | "round-filter-tilt-shift" | "round-filter-vintage" | "round-flare" | "round-flash-auto" | "round-flash-off" | "round-flash-on" | "round-flip" | "round-flip-camera-android" | "round-flip-camera-ios" | "round-gradient" | "round-grain" | "round-grid-off" | "round-grid-on" | "round-hdr-enhanced-select" | "round-hdr-off" | "round-hdr-on" | "round-hdr-plus" | "round-hdr-strong" | "round-hdr-weak" | "round-healing" | "round-hevc" | "round-hide-image" | "round-image" | "round-image-aspect-ratio" | "round-image-not-supported" | "round-image-search" | "round-incomplete-circle" | "round-iso" | "round-landscape" | "round-leak-add" | "round-leak-remove" | "round-lens" | "round-linked-camera" | "round-logo-dev" | "round-looks" | "round-looks-3" | "round-looks-4" | "round-looks-5" | "round-looks-6" | "round-looks-one" | "round-looks-two" | "round-loupe" | "round-mic-external-off" | "round-mic-external-on" | "round-monochrome-photos" | "round-motion-photos-auto" | "round-motion-photos-off" | "round-motion-photos-on" | "round-motion-photos-pause" | "round-motion-photos-paused" | "round-movie-creation" | "round-movie-filter" | "round-mp" | "round-music-note" | "round-music-off" | "round-nature" | "round-nature-people" | "round-navigate-before" | "round-navigate-next" | "round-palette" | "round-panorama" | "round-panorama-fish-eye" | "round-panorama-horizontal" | "round-panorama-horizontal-select" | "round-panorama-photosphere" | "round-panorama-photosphere-select" | "round-panorama-vertical" | "round-panorama-vertical-select" | "round-panorama-wide-angle" | "round-panorama-wide-angle-select" | "round-photo-album" | "round-photo-camera" | "round-photo-camera-back" | "round-photo-camera-front" | "round-photo-filter" | "round-photo-library" | "round-photo-size-select-actual" | "round-photo-size-select-large" | "round-photo-size-select-small" | "round-picture-as-pdf" | "round-portrait" | "round-raw-off" | "round-raw-on" | "round-receipt-long" | "round-remove-red-eye" | "round-rotate-90-degrees-ccw" | "round-rotate-90-degrees-cw" | "round-rotate-left" | "round-rotate-right" | "round-shutter-speed" | "round-slideshow" | "round-straighten" | "round-style" | "round-switch-camera" | "round-switch-video" | "round-tag-faces" | "round-texture" | "round-thermostat-auto" | "round-timelapse" | "round-timer" | "round-timer-10" | "round-timer-3" | "round-timer-off" | "round-tonality" | "round-transform" | "round-tune" | "round-video-camera-back" | "round-video-camera-front" | "round-video-stable" | "round-view-comfy" | "round-view-compact" | "round-vignette" | "round-vrpano" | "round-wb-auto" | "round-wb-cloudy" | "round-wb-incandescent" | "round-wb-iridescent" | "round-wb-shade" | "round-wb-sunny" | "round-wb-twilight" | "sharp-10mp" | "sharp-11mp" | "sharp-12mp" | "sharp-13mp" | "sharp-14mp" | "sharp-15mp" | "sharp-16mp" | "sharp-17mp" | "sharp-18mp" | "sharp-19mp" | "sharp-20mp" | "sharp-21mp" | "sharp-22mp" | "sharp-23mp" | "sharp-24mp" | "sharp-2mp" | "sharp-30fps-select" | "sharp-3mp" | "sharp-4mp" | "sharp-5mp" | "sharp-60fps-select" | "sharp-6mp" | "sharp-7mp" | "sharp-8mp" | "sharp-9mp" | "sharp-add-a-photo" | "sharp-add-photo-alternate" | "sharp-add-to-photos" | "sharp-adjust" | "sharp-animation" | "sharp-assistant" | "sharp-assistant-photo" | "sharp-audiotrack" | "sharp-auto-awesome" | "sharp-auto-awesome-mosaic" | "sharp-auto-awesome-motion" | "sharp-auto-fix-high" | "sharp-auto-fix-normal" | "sharp-auto-fix-off" | "sharp-auto-stories" | "sharp-autofps-select" | "sharp-bedtime" | "sharp-bedtime-off" | "sharp-blur-circular" | "sharp-blur-linear" | "sharp-blur-off" | "sharp-blur-on" | "sharp-brightness-1" | "sharp-brightness-2" | "sharp-brightness-3" | "sharp-brightness-4" | "sharp-brightness-5" | "sharp-brightness-6" | "sharp-brightness-7" | "sharp-broken-image" | "sharp-brush" | "sharp-burst-mode" | "sharp-camera" | "sharp-camera-alt" | "sharp-camera-front" | "sharp-camera-rear" | "sharp-camera-roll" | "sharp-cases" | "sharp-center-focus-strong" | "sharp-center-focus-weak" | "sharp-circle" | "sharp-collections" | "sharp-collections-bookmark" | "sharp-color-lens" | "sharp-colorize" | "sharp-compare" | "sharp-contrast" | "sharp-control-point" | "sharp-control-point-duplicate" | "sharp-crop" | "sharp-crop-16-9" | "sharp-crop-3-2" | "sharp-crop-5-4" | "sharp-crop-7-5" | "sharp-crop-din" | "sharp-crop-free" | "sharp-crop-landscape" | "sharp-crop-original" | "sharp-crop-portrait" | "sharp-crop-rotate" | "sharp-crop-square" | "sharp-currency-bitcoin" | "sharp-currency-franc" | "sharp-currency-lira" | "sharp-currency-pound" | "sharp-currency-ruble" | "sharp-currency-rupee" | "sharp-currency-yen" | "sharp-currency-yuan" | "sharp-deblur" | "sharp-dehaze" | "sharp-details" | "sharp-dirty-lens" | "sharp-edit" | "sharp-euro" | "sharp-exposure" | "sharp-exposure-neg-1" | "sharp-exposure-neg-2" | "sharp-exposure-plus-1" | "sharp-exposure-plus-2" | "sharp-exposure-zero" | "sharp-face-retouching-natural" | "sharp-face-retouching-off" | "sharp-filter" | "sharp-filter-1" | "sharp-filter-2" | "sharp-filter-3" | "sharp-filter-4" | "sharp-filter-5" | "sharp-filter-6" | "sharp-filter-7" | "sharp-filter-8" | "sharp-filter-9" | "sharp-filter-9-plus" | "sharp-filter-b-and-w" | "sharp-filter-center-focus" | "sharp-filter-drama" | "sharp-filter-frames" | "sharp-filter-hdr" | "sharp-filter-none" | "sharp-filter-tilt-shift" | "sharp-filter-vintage" | "sharp-flare" | "sharp-flash-auto" | "sharp-flash-off" | "sharp-flash-on" | "sharp-flip" | "sharp-flip-camera-android" | "sharp-flip-camera-ios" | "sharp-gradient" | "sharp-grain" | "sharp-grid-off" | "sharp-grid-on" | "sharp-hdr-enhanced-select" | "sharp-hdr-off" | "sharp-hdr-on" | "sharp-hdr-plus" | "sharp-hdr-strong" | "sharp-hdr-weak" | "sharp-healing" | "sharp-hevc" | "sharp-hide-image" | "sharp-image" | "sharp-image-aspect-ratio" | "sharp-image-not-supported" | "sharp-image-search" | "sharp-incomplete-circle" | "sharp-iso" | "sharp-landscape" | "sharp-leak-add" | "sharp-leak-remove" | "sharp-lens" | "sharp-linked-camera" | "sharp-logo-dev" | "sharp-looks" | "sharp-looks-3" | "sharp-looks-4" | "sharp-looks-5" | "sharp-looks-6" | "sharp-looks-one" | "sharp-looks-two" | "sharp-loupe" | "sharp-mic-external-off" | "sharp-mic-external-on" | "sharp-monochrome-photos" | "sharp-motion-photos-auto" | "sharp-motion-photos-off" | "sharp-motion-photos-on" | "sharp-motion-photos-pause" | "sharp-motion-photos-paused" | "sharp-movie-creation" | "sharp-movie-filter" | "sharp-mp" | "sharp-music-note" | "sharp-music-off" | "sharp-nature" | "sharp-nature-people" | "sharp-navigate-before" | "sharp-navigate-next" | "sharp-palette" | "sharp-panorama" | "sharp-panorama-fish-eye" | "sharp-panorama-horizontal" | "sharp-panorama-horizontal-select" | "sharp-panorama-photosphere" | "sharp-panorama-photosphere-select" | "sharp-panorama-vertical" | "sharp-panorama-vertical-select" | "sharp-panorama-wide-angle" | "sharp-panorama-wide-angle-select" | "sharp-photo" | "sharp-photo-album" | "sharp-photo-camera" | "sharp-photo-camera-back" | "sharp-photo-camera-front" | "sharp-photo-filter" | "sharp-photo-library" | "sharp-photo-size-select-actual" | "sharp-photo-size-select-large" | "sharp-photo-size-select-small" | "sharp-picture-as-pdf" | "sharp-portrait" | "sharp-raw-off" | "sharp-raw-on" | "sharp-receipt-long" | "sharp-remove-red-eye" | "sharp-rotate-90-degrees-ccw" | "sharp-rotate-90-degrees-cw" | "sharp-rotate-left" | "sharp-rotate-right" | "sharp-shutter-speed" | "sharp-slideshow" | "sharp-straighten" | "sharp-style" | "sharp-switch-camera" | "sharp-switch-video" | "sharp-tag-faces" | "sharp-texture" | "sharp-thermostat-auto" | "sharp-timelapse" | "sharp-timer" | "sharp-timer-10" | "sharp-timer-3" | "sharp-timer-off" | "sharp-tonality" | "sharp-transform" | "sharp-tune" | "sharp-video-camera-back" | "sharp-video-camera-front" | "sharp-video-stable" | "sharp-view-comfy" | "sharp-view-compact" | "sharp-vignette" | "sharp-vrpano" | "sharp-wb-auto" | "sharp-wb-cloudy" | "sharp-wb-incandescent" | "sharp-wb-iridescent" | "sharp-wb-shade" | "sharp-wb-sunny" | "sharp-wb-twilight" | "twotone-10mp" | "twotone-11mp" | "twotone-12mp" | "twotone-13mp" | "twotone-14mp" | "twotone-15mp" | "twotone-16mp" | "twotone-17mp" | "twotone-18mp" | "twotone-19mp" | "twotone-20mp" | "twotone-21mp" | "twotone-22mp" | "twotone-23mp" | "twotone-24mp" | "twotone-2mp" | "twotone-30fps-select" | "twotone-3mp" | "twotone-4mp" | "twotone-5mp" | "twotone-60fps-select" | "twotone-6mp" | "twotone-7mp" | "twotone-8mp" | "twotone-9mp" | "twotone-add-a-photo" | "twotone-add-photo-alternate" | "twotone-add-to-photos" | "twotone-adjust" | "twotone-animation" | "twotone-assistant" | "twotone-assistant-photo" | "twotone-audiotrack" | "twotone-auto-awesome" | "twotone-auto-awesome-mosaic" | "twotone-auto-awesome-motion" | "twotone-auto-fix-high" | "twotone-auto-fix-normal" | "twotone-auto-fix-off" | "twotone-auto-stories" | "twotone-autofps-select" | "twotone-bedtime" | "twotone-bedtime-off" | "twotone-blur-circular" | "twotone-blur-linear" | "twotone-blur-off" | "twotone-blur-on" | "twotone-brightness-1" | "twotone-brightness-2" | "twotone-brightness-3" | "twotone-brightness-4" | "twotone-brightness-5" | "twotone-brightness-6" | "twotone-brightness-7" | "twotone-broken-image" | "twotone-brush" | "twotone-burst-mode" | "twotone-camera" | "twotone-camera-alt" | "twotone-camera-front" | "twotone-camera-rear" | "twotone-camera-roll" | "twotone-cases" | "twotone-center-focus-strong" | "twotone-center-focus-weak" | "twotone-circle" | "twotone-collections" | "twotone-collections-bookmark" | "twotone-color-lens" | "twotone-colorize" | "twotone-compare" | "twotone-contrast" | "twotone-control-point" | "twotone-control-point-duplicate" | "twotone-crop" | "twotone-crop-16-9" | "twotone-crop-3-2" | "twotone-crop-5-4" | "twotone-crop-7-5" | "twotone-crop-din" | "twotone-crop-free" | "twotone-crop-landscape" | "twotone-crop-original" | "twotone-crop-portrait" | "twotone-crop-rotate" | "twotone-crop-square" | "twotone-currency-bitcoin" | "twotone-currency-franc" | "twotone-currency-lira" | "twotone-currency-pound" | "twotone-currency-ruble" | "twotone-currency-rupee" | "twotone-currency-yen" | "twotone-currency-yuan" | "twotone-deblur" | "twotone-dehaze" | "twotone-details" | "twotone-dirty-lens" | "twotone-edit" | "twotone-euro" | "twotone-exposure" | "twotone-exposure-neg-1" | "twotone-exposure-neg-2" | "twotone-exposure-plus-1" | "twotone-exposure-plus-2" | "twotone-exposure-zero" | "twotone-face-retouching-natural" | "twotone-face-retouching-off" | "twotone-filter" | "twotone-filter-1" | "twotone-filter-2" | "twotone-filter-3" | "twotone-filter-4" | "twotone-filter-5" | "twotone-filter-6" | "twotone-filter-7" | "twotone-filter-8" | "twotone-filter-9" | "twotone-filter-9-plus" | "twotone-filter-b-and-w" | "twotone-filter-center-focus" | "twotone-filter-drama" | "twotone-filter-frames" | "twotone-filter-hdr" | "twotone-filter-none" | "twotone-filter-tilt-shift" | "twotone-filter-vintage" | "twotone-flare" | "twotone-flash-auto" | "twotone-flash-off" | "twotone-flash-on" | "twotone-flip" | "twotone-flip-camera-android" | "twotone-flip-camera-ios" | "twotone-gradient" | "twotone-grain" | "twotone-grid-off" | "twotone-grid-on" | "twotone-hdr-enhanced-select" | "twotone-hdr-off" | "twotone-hdr-on" | "twotone-hdr-plus" | "twotone-hdr-strong" | "twotone-hdr-weak" | "twotone-healing" | "twotone-hevc" | "twotone-hide-image" | "twotone-image" | "twotone-image-aspect-ratio" | "twotone-image-not-supported" | "twotone-image-search" | "twotone-incomplete-circle" | "twotone-iso" | "twotone-landscape" | "twotone-leak-add" | "twotone-leak-remove" | "twotone-lens" | "twotone-linked-camera" | "twotone-logo-dev" | "twotone-looks" | "twotone-looks-3" | "twotone-looks-4" | "twotone-looks-5" | "twotone-looks-6" | "twotone-looks-one" | "twotone-looks-two" | "twotone-loupe" | "twotone-mic-external-off" | "twotone-mic-external-on" | "twotone-monochrome-photos" | "twotone-motion-photos-auto" | "twotone-motion-photos-off" | "twotone-motion-photos-on" | "twotone-motion-photos-pause" | "twotone-motion-photos-paused" | "twotone-movie-creation" | "twotone-movie-filter" | "twotone-mp" | "twotone-music-note" | "twotone-music-off" | "twotone-nature" | "twotone-nature-people" | "twotone-navigate-before" | "twotone-navigate-next" | "twotone-palette" | "twotone-panorama" | "twotone-panorama-fish-eye" | "twotone-panorama-horizontal" | "twotone-panorama-horizontal-select" | "twotone-panorama-photosphere" | "twotone-panorama-photosphere-select" | "twotone-panorama-vertical" | "twotone-panorama-vertical-select" | "twotone-panorama-wide-angle" | "twotone-panorama-wide-angle-select" | "twotone-photo" | "twotone-photo-album" | "twotone-photo-camera" | "twotone-photo-camera-back" | "twotone-photo-camera-front" | "twotone-photo-filter" | "twotone-photo-library" | "twotone-photo-size-select-actual" | "twotone-photo-size-select-large" | "twotone-photo-size-select-small" | "twotone-picture-as-pdf" | "twotone-portrait" | "twotone-raw-off" | "twotone-raw-on" | "twotone-receipt-long" | "twotone-remove-red-eye" | "twotone-rotate-90-degrees-ccw" | "twotone-rotate-90-degrees-cw" | "twotone-rotate-left" | "twotone-rotate-right" | "twotone-shutter-speed" | "twotone-slideshow" | "twotone-straighten" | "twotone-style" | "twotone-switch-camera" | "twotone-switch-video" | "twotone-tag-faces" | "twotone-texture" | "twotone-thermostat-auto" | "twotone-timelapse" | "twotone-timer" | "twotone-timer-10" | "twotone-timer-3" | "twotone-timer-off" | "twotone-tonality" | "twotone-transform" | "twotone-tune" | "twotone-video-camera-back" | "twotone-video-camera-front" | "twotone-video-stable" | "twotone-view-comfy" | "twotone-view-compact" | "twotone-vignette" | "twotone-vrpano" | "twotone-wb-auto" | "twotone-wb-cloudy" | "twotone-wb-incandescent" | "twotone-wb-iridescent" | "twotone-wb-shade" | "twotone-wb-sunny" | "twotone-wb-twilight" | "baseline-360" | "baseline-add-business" | "baseline-add-location" | "baseline-add-location-alt" | "baseline-add-road" | "baseline-agriculture" | "baseline-airline-stops" | "baseline-airlines" | "baseline-alt-route" | "baseline-atm" | "baseline-attractions" | "baseline-badge" | "baseline-bakery-dining" | "baseline-beenhere" | "baseline-bike-scooter" | "baseline-breakfast-dining" | "baseline-brunch-dining" | "baseline-bus-alert" | "baseline-car-crash" | "baseline-car-rental" | "baseline-car-repair" | "baseline-castle" | "baseline-category" | "baseline-celebration" | "baseline-church" | "baseline-cleaning-services" | "baseline-compass-calibration" | "baseline-connecting-airports" | "baseline-crisis-alert" | "baseline-delivery-dining" | "baseline-departure-board" | "baseline-design-services" | "baseline-diamond" | "baseline-dinner-dining" | "baseline-directions" | "baseline-directions-bike" | "baseline-directions-boat" | "baseline-directions-boat-filled" | "baseline-directions-bus" | "baseline-directions-bus-filled" | "baseline-directions-car" | "baseline-directions-car-filled" | "baseline-directions-railway" | "baseline-directions-railway-filled" | "baseline-directions-run" | "baseline-directions-subway" | "baseline-directions-subway-filled" | "baseline-directions-transit" | "baseline-directions-transit-filled" | "baseline-directions-walk" | "baseline-dry-cleaning" | "baseline-edit-attributes" | "baseline-edit-location" | "baseline-edit-location-alt" | "baseline-edit-road" | "baseline-egg" | "baseline-egg-alt" | "baseline-electric-bike" | "baseline-electric-car" | "baseline-electric-moped" | "baseline-electric-rickshaw" | "baseline-electric-scooter" | "baseline-electrical-services" | "baseline-emergency" | "baseline-emergency-recording" | "baseline-emergency-share" | "baseline-ev-station" | "baseline-factory" | "baseline-fastfood" | "baseline-festival" | "baseline-fire-hydrant-alt" | "baseline-fire-truck" | "baseline-flight" | "baseline-flight-class" | "baseline-forest" | "baseline-fork-left" | "baseline-fork-right" | "baseline-fort" | "baseline-hail" | "baseline-handyman" | "baseline-hardware" | "baseline-home-repair-service" | "baseline-hotel" | "baseline-hvac" | "baseline-icecream" | "baseline-kebab-dining" | "baseline-layers" | "baseline-layers-clear" | "baseline-liquor" | "baseline-local-activity" | "baseline-local-airport" | "baseline-local-atm" | "baseline-local-bar" | "baseline-local-cafe" | "baseline-local-car-wash" | "baseline-local-convenience-store" | "baseline-local-dining" | "baseline-local-drink" | "baseline-local-fire-department" | "baseline-local-florist" | "baseline-local-gas-station" | "baseline-local-grocery-store" | "baseline-local-hospital" | "baseline-local-hotel" | "baseline-local-laundry-service" | "baseline-local-library" | "baseline-local-mall" | "baseline-local-movies" | "baseline-local-offer" | "baseline-local-parking" | "baseline-local-pharmacy" | "baseline-local-phone" | "baseline-local-pizza" | "baseline-local-play" | "baseline-local-police" | "baseline-local-post-office" | "baseline-local-printshop" | "baseline-local-see" | "baseline-local-shipping" | "baseline-local-taxi" | "baseline-lunch-dining" | "baseline-map" | "baseline-maps-ugc" | "baseline-medical-information" | "baseline-medical-services" | "baseline-menu-book" | "baseline-merge" | "baseline-minor-crash" | "baseline-miscellaneous-services" | "baseline-mode-of-travel" | "baseline-money" | "baseline-moped" | "baseline-mosque" | "baseline-moving" | "baseline-multiple-stop" | "baseline-museum" | "baseline-my-location" | "baseline-navigation" | "baseline-near-me" | "baseline-near-me-disabled" | "baseline-nightlife" | "baseline-no-crash" | "baseline-no-meals" | "baseline-no-transfer" | "baseline-not-listed-location" | "baseline-park" | "baseline-pedal-bike" | "baseline-person-pin" | "baseline-person-pin-circle" | "baseline-pest-control" | "baseline-pest-control-rodent" | "baseline-pin-drop" | "baseline-place" | "baseline-plumbing" | "baseline-railway-alert" | "baseline-ramen-dining" | "baseline-ramp-left" | "baseline-ramp-right" | "baseline-rate-review" | "baseline-remove-road" | "baseline-restaurant" | "baseline-restaurant-menu" | "baseline-roundabout-left" | "baseline-roundabout-right" | "baseline-route" | "baseline-run-circle" | "baseline-safety-check" | "baseline-sailing" | "baseline-satellite" | "baseline-screen-rotation-alt" | "baseline-set-meal" | "baseline-share-arrival-time" | "baseline-signpost" | "baseline-snowmobile" | "baseline-sos" | "baseline-soup-kitchen" | "baseline-stadium" | "baseline-store-mall-directory" | "baseline-straight" | "baseline-streetview" | "baseline-subway" | "baseline-synagogue" | "baseline-takeout-dining" | "baseline-taxi-alert" | "baseline-temple-buddhist" | "baseline-temple-hindu" | "baseline-terrain" | "baseline-theater-comedy" | "baseline-tire-repair" | "baseline-traffic" | "baseline-train" | "baseline-tram" | "baseline-transfer-within-a-station" | "baseline-transit-enterexit" | "baseline-trip-origin" | "baseline-turn-left" | "baseline-turn-right" | "baseline-turn-sharp-left" | "baseline-turn-sharp-right" | "baseline-turn-slight-left" | "baseline-turn-slight-right" | "baseline-two-wheeler" | "baseline-u-turn-left" | "baseline-u-turn-right" | "baseline-volunteer-activism" | "baseline-warehouse" | "baseline-wine-bar" | "baseline-wrong-location" | "baseline-zoom-in-map" | "baseline-zoom-out-map" | "outline-360" | "outline-add-business" | "outline-add-location" | "outline-add-location-alt" | "outline-add-road" | "outline-agriculture" | "outline-airline-stops" | "outline-airlines" | "outline-alt-route" | "outline-atm" | "outline-attractions" | "outline-badge" | "outline-bakery-dining" | "outline-beenhere" | "outline-bike-scooter" | "outline-breakfast-dining" | "outline-brunch-dining" | "outline-bus-alert" | "outline-car-crash" | "outline-car-rental" | "outline-car-repair" | "outline-castle" | "outline-category" | "outline-celebration" | "outline-church" | "outline-cleaning-services" | "outline-compass-calibration" | "outline-connecting-airports" | "outline-crisis-alert" | "outline-delivery-dining" | "outline-departure-board" | "outline-design-services" | "outline-diamond" | "outline-dinner-dining" | "outline-directions" | "outline-directions-bike" | "outline-directions-boat" | "outline-directions-boat-filled" | "outline-directions-bus" | "outline-directions-bus-filled" | "outline-directions-car" | "outline-directions-car-filled" | "outline-directions-railway" | "outline-directions-railway-filled" | "outline-directions-run" | "outline-directions-subway" | "outline-directions-subway-filled" | "outline-directions-transit" | "outline-directions-transit-filled" | "outline-directions-walk" | "outline-dry-cleaning" | "outline-edit-attributes" | "outline-edit-location" | "outline-edit-location-alt" | "outline-edit-road" | "outline-egg" | "outline-egg-alt" | "outline-electric-bike" | "outline-electric-car" | "outline-electric-moped" | "outline-electric-rickshaw" | "outline-electric-scooter" | "outline-electrical-services" | "outline-emergency" | "outline-emergency-recording" | "outline-emergency-share" | "outline-ev-station" | "outline-factory" | "outline-fastfood" | "outline-festival" | "outline-fire-hydrant-alt" | "outline-fire-truck" | "outline-flight" | "outline-flight-class" | "outline-forest" | "outline-fork-left" | "outline-fork-right" | "outline-fort" | "outline-hail" | "outline-handyman" | "outline-hardware" | "outline-home-repair-service" | "outline-hotel" | "outline-hvac" | "outline-icecream" | "outline-kebab-dining" | "outline-layers" | "outline-layers-clear" | "outline-liquor" | "outline-local-activity" | "outline-local-airport" | "outline-local-atm" | "outline-local-bar" | "outline-local-cafe" | "outline-local-car-wash" | "outline-local-convenience-store" | "outline-local-dining" | "outline-local-drink" | "outline-local-fire-department" | "outline-local-florist" | "outline-local-gas-station" | "outline-local-grocery-store" | "outline-local-hospital" | "outline-local-hotel" | "outline-local-laundry-service" | "outline-local-library" | "outline-local-mall" | "outline-local-movies" | "outline-local-offer" | "outline-local-parking" | "outline-local-pharmacy" | "outline-local-phone" | "outline-local-pizza" | "outline-local-play" | "outline-local-police" | "outline-local-post-office" | "outline-local-printshop" | "outline-local-see" | "outline-local-shipping" | "outline-local-taxi" | "outline-lunch-dining" | "outline-map" | "outline-maps-ugc" | "outline-medical-information" | "outline-medical-services" | "outline-menu-book" | "outline-merge" | "outline-minor-crash" | "outline-miscellaneous-services" | "outline-mode-of-travel" | "outline-money" | "outline-moped" | "outline-mosque" | "outline-moving" | "outline-multiple-stop" | "outline-museum" | "outline-my-location" | "outline-navigation" | "outline-near-me" | "outline-near-me-disabled" | "outline-nightlife" | "outline-no-crash" | "outline-no-meals" | "outline-no-transfer" | "outline-not-listed-location" | "outline-park" | "outline-pedal-bike" | "outline-person-pin" | "outline-person-pin-circle" | "outline-pest-control" | "outline-pest-control-rodent" | "outline-pin-drop" | "outline-place" | "outline-plumbing" | "outline-railway-alert" | "outline-ramen-dining" | "outline-ramp-left" | "outline-ramp-right" | "outline-rate-review" | "outline-remove-road" | "outline-restaurant" | "outline-restaurant-menu" | "outline-roundabout-left" | "outline-roundabout-right" | "outline-route" | "outline-run-circle" | "outline-safety-check" | "outline-sailing" | "outline-satellite" | "outline-screen-rotation-alt" | "outline-set-meal" | "outline-share-arrival-time" | "outline-signpost" | "outline-snowmobile" | "outline-sos" | "outline-soup-kitchen" | "outline-stadium" | "outline-store-mall-directory" | "outline-straight" | "outline-streetview" | "outline-subway" | "outline-synagogue" | "outline-takeout-dining" | "outline-taxi-alert" | "outline-temple-buddhist" | "outline-temple-hindu" | "outline-terrain" | "outline-theater-comedy" | "outline-tire-repair" | "outline-traffic" | "outline-train" | "outline-tram" | "outline-transfer-within-a-station" | "outline-transit-enterexit" | "outline-trip-origin" | "outline-turn-left" | "outline-turn-right" | "outline-turn-sharp-left" | "outline-turn-sharp-right" | "outline-turn-slight-left" | "outline-turn-slight-right" | "outline-two-wheeler" | "outline-u-turn-left" | "outline-u-turn-right" | "outline-volunteer-activism" | "outline-warehouse" | "outline-wine-bar" | "outline-wrong-location" | "outline-zoom-in-map" | "outline-zoom-out-map" | "round-360" | "round-add-business" | "round-add-location" | "round-add-location-alt" | "round-add-road" | "round-agriculture" | "round-airline-stops" | "round-airlines" | "round-alt-route" | "round-atm" | "round-attractions" | "round-badge" | "round-bakery-dining" | "round-beenhere" | "round-bike-scooter" | "round-breakfast-dining" | "round-brunch-dining" | "round-bus-alert" | "round-car-crash" | "round-car-rental" | "round-car-repair" | "round-castle" | "round-category" | "round-celebration" | "round-church" | "round-cleaning-services" | "round-compass-calibration" | "round-connecting-airports" | "round-crisis-alert" | "round-delivery-dining" | "round-departure-board" | "round-design-services" | "round-diamond" | "round-dinner-dining" | "round-directions" | "round-directions-bike" | "round-directions-boat" | "round-directions-boat-filled" | "round-directions-bus" | "round-directions-bus-filled" | "round-directions-car" | "round-directions-car-filled" | "round-directions-railway" | "round-directions-railway-filled" | "round-directions-run" | "round-directions-subway" | "round-directions-subway-filled" | "round-directions-transit" | "round-directions-transit-filled" | "round-directions-walk" | "round-dry-cleaning" | "round-edit-attributes" | "round-edit-location" | "round-edit-location-alt" | "round-edit-road" | "round-egg" | "round-egg-alt" | "round-electric-bike" | "round-electric-car" | "round-electric-moped" | "round-electric-rickshaw" | "round-electric-scooter" | "round-electrical-services" | "round-emergency" | "round-emergency-recording" | "round-emergency-share" | "round-ev-station" | "round-factory" | "round-fastfood" | "round-festival" | "round-fire-hydrant-alt" | "round-fire-truck" | "round-flight" | "round-flight-class" | "round-forest" | "round-fork-left" | "round-fork-right" | "round-fort" | "round-hail" | "round-handyman" | "round-hardware" | "round-home-repair-service" | "round-hotel" | "round-hvac" | "round-icecream" | "round-kebab-dining" | "round-layers" | "round-layers-clear" | "round-liquor" | "round-local-activity" | "round-local-airport" | "round-local-atm" | "round-local-bar" | "round-local-cafe" | "round-local-car-wash" | "round-local-convenience-store" | "round-local-dining" | "round-local-drink" | "round-local-fire-department" | "round-local-florist" | "round-local-gas-station" | "round-local-grocery-store" | "round-local-hospital" | "round-local-hotel" | "round-local-laundry-service" | "round-local-library" | "round-local-mall" | "round-local-movies" | "round-local-offer" | "round-local-parking" | "round-local-pharmacy" | "round-local-phone" | "round-local-pizza" | "round-local-play" | "round-local-police" | "round-local-post-office" | "round-local-printshop" | "round-local-see" | "round-local-shipping" | "round-local-taxi" | "round-lunch-dining" | "round-map" | "round-maps-ugc" | "round-medical-information" | "round-medical-services" | "round-menu-book" | "round-merge" | "round-minor-crash" | "round-miscellaneous-services" | "round-mode-of-travel" | "round-money" | "round-moped" | "round-mosque" | "round-moving" | "round-multiple-stop" | "round-museum" | "round-my-location" | "round-navigation" | "round-near-me" | "round-near-me-disabled" | "round-nightlife" | "round-no-crash" | "round-no-meals" | "round-no-transfer" | "round-not-listed-location" | "round-park" | "round-pedal-bike" | "round-person-pin" | "round-person-pin-circle" | "round-pest-control" | "round-pest-control-rodent" | "round-pin-drop" | "round-place" | "round-plumbing" | "round-railway-alert" | "round-ramen-dining" | "round-ramp-left" | "round-ramp-right" | "round-rate-review" | "round-remove-road" | "round-restaurant" | "round-restaurant-menu" | "round-roundabout-left" | "round-roundabout-right" | "round-route" | "round-run-circle" | "round-safety-check" | "round-sailing" | "round-satellite" | "round-screen-rotation-alt" | "round-set-meal" | "round-share-arrival-time" | "round-signpost" | "round-snowmobile" | "round-sos" | "round-soup-kitchen" | "round-stadium" | "round-store-mall-directory" | "round-straight" | "round-streetview" | "round-subway" | "round-synagogue" | "round-takeout-dining" | "round-taxi-alert" | "round-temple-buddhist" | "round-temple-hindu" | "round-terrain" | "round-theater-comedy" | "round-tire-repair" | "round-traffic" | "round-train" | "round-tram" | "round-transfer-within-a-station" | "round-transit-enterexit" | "round-trip-origin" | "round-turn-left" | "round-turn-right" | "round-turn-sharp-left" | "round-turn-sharp-right" | "round-turn-slight-left" | "round-turn-slight-right" | "round-two-wheeler" | "round-u-turn-left" | "round-u-turn-right" | "round-volunteer-activism" | "round-warehouse" | "round-wine-bar" | "round-wrong-location" | "round-zoom-in-map" | "round-zoom-out-map" | "sharp-360" | "sharp-add-business" | "sharp-add-location" | "sharp-add-location-alt" | "sharp-add-road" | "sharp-agriculture" | "sharp-airline-stops" | "sharp-airlines" | "sharp-alt-route" | "sharp-atm" | "sharp-attractions" | "sharp-badge" | "sharp-bakery-dining" | "sharp-beenhere" | "sharp-bike-scooter" | "sharp-breakfast-dining" | "sharp-brunch-dining" | "sharp-bus-alert" | "sharp-car-crash" | "sharp-car-rental" | "sharp-car-repair" | "sharp-castle" | "sharp-category" | "sharp-celebration" | "sharp-church" | "sharp-cleaning-services" | "sharp-compass-calibration" | "sharp-connecting-airports" | "sharp-crisis-alert" | "sharp-delivery-dining" | "sharp-departure-board" | "sharp-design-services" | "sharp-diamond" | "sharp-dinner-dining" | "sharp-directions" | "sharp-directions-bike" | "sharp-directions-boat" | "sharp-directions-boat-filled" | "sharp-directions-bus" | "sharp-directions-bus-filled" | "sharp-directions-car" | "sharp-directions-car-filled" | "sharp-directions-railway" | "sharp-directions-railway-filled" | "sharp-directions-run" | "sharp-directions-subway" | "sharp-directions-subway-filled" | "sharp-directions-transit" | "sharp-directions-transit-filled" | "sharp-directions-walk" | "sharp-dry-cleaning" | "sharp-edit-attributes" | "sharp-edit-location" | "sharp-edit-location-alt" | "sharp-edit-road" | "sharp-egg" | "sharp-egg-alt" | "sharp-electric-bike" | "sharp-electric-car" | "sharp-electric-moped" | "sharp-electric-rickshaw" | "sharp-electric-scooter" | "sharp-electrical-services" | "sharp-emergency" | "sharp-emergency-recording" | "sharp-emergency-share" | "sharp-ev-station" | "sharp-factory" | "sharp-fastfood" | "sharp-festival" | "sharp-fire-hydrant-alt" | "sharp-fire-truck" | "sharp-flight" | "sharp-flight-class" | "sharp-forest" | "sharp-fork-left" | "sharp-fork-right" | "sharp-fort" | "sharp-hail" | "sharp-handyman" | "sharp-hardware" | "sharp-home-repair-service" | "sharp-hotel" | "sharp-hvac" | "sharp-icecream" | "sharp-kebab-dining" | "sharp-layers" | "sharp-layers-clear" | "sharp-liquor" | "sharp-local-activity" | "sharp-local-airport" | "sharp-local-atm" | "sharp-local-bar" | "sharp-local-cafe" | "sharp-local-car-wash" | "sharp-local-convenience-store" | "sharp-local-dining" | "sharp-local-drink" | "sharp-local-fire-department" | "sharp-local-florist" | "sharp-local-gas-station" | "sharp-local-grocery-store" | "sharp-local-hospital" | "sharp-local-hotel" | "sharp-local-laundry-service" | "sharp-local-library" | "sharp-local-mall" | "sharp-local-movies" | "sharp-local-offer" | "sharp-local-parking" | "sharp-local-pharmacy" | "sharp-local-phone" | "sharp-local-pizza" | "sharp-local-play" | "sharp-local-police" | "sharp-local-post-office" | "sharp-local-printshop" | "sharp-local-see" | "sharp-local-shipping" | "sharp-local-taxi" | "sharp-lunch-dining" | "sharp-map" | "sharp-maps-ugc" | "sharp-medical-information" | "sharp-medical-services" | "sharp-menu-book" | "sharp-merge" | "sharp-minor-crash" | "sharp-miscellaneous-services" | "sharp-mode-of-travel" | "sharp-money" | "sharp-moped" | "sharp-mosque" | "sharp-moving" | "sharp-multiple-stop" | "sharp-museum" | "sharp-my-location" | "sharp-navigation" | "sharp-near-me" | "sharp-near-me-disabled" | "sharp-nightlife" | "sharp-no-crash" | "sharp-no-meals" | "sharp-no-transfer" | "sharp-not-listed-location" | "sharp-park" | "sharp-pedal-bike" | "sharp-person-pin" | "sharp-person-pin-circle" | "sharp-pest-control" | "sharp-pest-control-rodent" | "sharp-pin-drop" | "sharp-place" | "sharp-plumbing" | "sharp-railway-alert" | "sharp-ramen-dining" | "sharp-ramp-left" | "sharp-ramp-right" | "sharp-rate-review" | "sharp-remove-road" | "sharp-restaurant" | "sharp-restaurant-menu" | "sharp-roundabout-left" | "sharp-roundabout-right" | "sharp-route" | "sharp-run-circle" | "sharp-safety-check" | "sharp-sailing" | "sharp-satellite" | "sharp-screen-rotation-alt" | "sharp-set-meal" | "sharp-share-arrival-time" | "sharp-signpost" | "sharp-snowmobile" | "sharp-sos" | "sharp-soup-kitchen" | "sharp-stadium" | "sharp-store-mall-directory" | "sharp-straight" | "sharp-streetview" | "sharp-subway" | "sharp-synagogue" | "sharp-takeout-dining" | "sharp-taxi-alert" | "sharp-temple-buddhist" | "sharp-temple-hindu" | "sharp-terrain" | "sharp-theater-comedy" | "sharp-tire-repair" | "sharp-traffic" | "sharp-train" | "sharp-tram" | "sharp-transfer-within-a-station" | "sharp-transit-enterexit" | "sharp-trip-origin" | "sharp-turn-left" | "sharp-turn-right" | "sharp-turn-sharp-left" | "sharp-turn-sharp-right" | "sharp-turn-slight-left" | "sharp-turn-slight-right" | "sharp-two-wheeler" | "sharp-u-turn-left" | "sharp-u-turn-right" | "sharp-volunteer-activism" | "sharp-warehouse" | "sharp-wine-bar" | "sharp-wrong-location" | "sharp-zoom-in-map" | "sharp-zoom-out-map" | "twotone-360" | "twotone-add-business" | "twotone-add-location" | "twotone-add-location-alt" | "twotone-add-road" | "twotone-agriculture" | "twotone-airline-stops" | "twotone-airlines" | "twotone-alt-route" | "twotone-atm" | "twotone-attractions" | "twotone-badge" | "twotone-bakery-dining" | "twotone-beenhere" | "twotone-bike-scooter" | "twotone-breakfast-dining" | "twotone-brunch-dining" | "twotone-bus-alert" | "twotone-car-crash" | "twotone-car-rental" | "twotone-car-repair" | "twotone-castle" | "twotone-category" | "twotone-celebration" | "twotone-church" | "twotone-cleaning-services" | "twotone-compass-calibration" | "twotone-connecting-airports" | "twotone-crisis-alert" | "twotone-delivery-dining" | "twotone-departure-board" | "twotone-design-services" | "twotone-diamond" | "twotone-dinner-dining" | "twotone-directions" | "twotone-directions-bike" | "twotone-directions-boat" | "twotone-directions-boat-filled" | "twotone-directions-bus" | "twotone-directions-bus-filled" | "twotone-directions-car" | "twotone-directions-car-filled" | "twotone-directions-railway" | "twotone-directions-railway-filled" | "twotone-directions-run" | "twotone-directions-subway" | "twotone-directions-subway-filled" | "twotone-directions-transit" | "twotone-directions-transit-filled" | "twotone-directions-walk" | "twotone-dry-cleaning" | "twotone-edit-attributes" | "twotone-edit-location" | "twotone-edit-location-alt" | "twotone-edit-road" | "twotone-egg" | "twotone-egg-alt" | "twotone-electric-bike" | "twotone-electric-car" | "twotone-electric-moped" | "twotone-electric-rickshaw" | "twotone-electric-scooter" | "twotone-electrical-services" | "twotone-emergency" | "twotone-emergency-recording" | "twotone-emergency-share" | "twotone-ev-station" | "twotone-factory" | "twotone-fastfood" | "twotone-festival" | "twotone-fire-hydrant-alt" | "twotone-fire-truck" | "twotone-flight" | "twotone-flight-class" | "twotone-forest" | "twotone-fork-left" | "twotone-fork-right" | "twotone-fort" | "twotone-hail" | "twotone-handyman" | "twotone-hardware" | "twotone-home-repair-service" | "twotone-hotel" | "twotone-hvac" | "twotone-icecream" | "twotone-kebab-dining" | "twotone-layers" | "twotone-layers-clear" | "twotone-liquor" | "twotone-local-activity" | "twotone-local-airport" | "twotone-local-atm" | "twotone-local-bar" | "twotone-local-cafe" | "twotone-local-car-wash" | "twotone-local-convenience-store" | "twotone-local-dining" | "twotone-local-drink" | "twotone-local-fire-department" | "twotone-local-florist" | "twotone-local-gas-station" | "twotone-local-grocery-store" | "twotone-local-hospital" | "twotone-local-hotel" | "twotone-local-laundry-service" | "twotone-local-library" | "twotone-local-mall" | "twotone-local-movies" | "twotone-local-offer" | "twotone-local-parking" | "twotone-local-pharmacy" | "twotone-local-phone" | "twotone-local-pizza" | "twotone-local-play" | "twotone-local-police" | "twotone-local-post-office" | "twotone-local-printshop" | "twotone-local-see" | "twotone-local-shipping" | "twotone-local-taxi" | "twotone-lunch-dining" | "twotone-map" | "twotone-maps-ugc" | "twotone-medical-information" | "twotone-medical-services" | "twotone-menu-book" | "twotone-merge" | "twotone-minor-crash" | "twotone-miscellaneous-services" | "twotone-mode-of-travel" | "twotone-money" | "twotone-moped" | "twotone-mosque" | "twotone-moving" | "twotone-multiple-stop" | "twotone-museum" | "twotone-my-location" | "twotone-navigation" | "twotone-near-me" | "twotone-near-me-disabled" | "twotone-nightlife" | "twotone-no-crash" | "twotone-no-meals" | "twotone-no-transfer" | "twotone-not-listed-location" | "twotone-park" | "twotone-pedal-bike" | "twotone-person-pin" | "twotone-person-pin-circle" | "twotone-pest-control" | "twotone-pest-control-rodent" | "twotone-pin-drop" | "twotone-place" | "twotone-plumbing" | "twotone-railway-alert" | "twotone-ramen-dining" | "twotone-ramp-left" | "twotone-ramp-right" | "twotone-rate-review" | "twotone-remove-road" | "twotone-restaurant" | "twotone-restaurant-menu" | "twotone-roundabout-left" | "twotone-roundabout-right" | "twotone-route" | "twotone-run-circle" | "twotone-safety-check" | "twotone-sailing" | "twotone-satellite" | "twotone-screen-rotation-alt" | "twotone-set-meal" | "twotone-share-arrival-time" | "twotone-signpost" | "twotone-snowmobile" | "twotone-sos" | "twotone-soup-kitchen" | "twotone-stadium" | "twotone-store-mall-directory" | "twotone-straight" | "twotone-streetview" | "twotone-subway" | "twotone-synagogue" | "twotone-takeout-dining" | "twotone-taxi-alert" | "twotone-temple-buddhist" | "twotone-temple-hindu" | "twotone-terrain" | "twotone-theater-comedy" | "twotone-tire-repair" | "twotone-traffic" | "twotone-train" | "twotone-tram" | "twotone-transfer-within-a-station" | "twotone-transit-enterexit" | "twotone-trip-origin" | "twotone-turn-left" | "twotone-turn-right" | "twotone-turn-sharp-left" | "twotone-turn-sharp-right" | "twotone-turn-slight-left" | "twotone-turn-slight-right" | "twotone-two-wheeler" | "twotone-u-turn-left" | "twotone-u-turn-right" | "twotone-volunteer-activism" | "twotone-warehouse" | "twotone-wine-bar" | "twotone-wrong-location" | "twotone-zoom-in-map" | "twotone-zoom-out-map" | "baseline-divide" | "baseline-equals" | "baseline-greater-than" | "baseline-greater-than-equal" | "baseline-less-than" | "baseline-less-than-equal" | "baseline-minus" | "baseline-not-equal" | "baseline-percentage" | "baseline-plus" | "baseline-plus-minus" | "baseline-plus-minus-alt" | "outline-divide" | "outline-equals" | "outline-greater-than" | "outline-greater-than-equal" | "outline-less-than" | "outline-less-than-equal" | "outline-minus" | "outline-not-equal" | "outline-percentage" | "outline-plus" | "outline-plus-minus" | "outline-plus-minus-alt" | "round-divide" | "round-equals" | "round-greater-than" | "round-greater-than-equal" | "round-less-than" | "round-less-than-equal" | "round-minus" | "round-not-equal" | "round-percentage" | "round-plus" | "round-plus-minus" | "round-plus-minus-alt" | "sharp-divide" | "sharp-equals" | "sharp-greater-than" | "sharp-greater-than-equal" | "sharp-less-than" | "sharp-less-than-equal" | "sharp-minus" | "sharp-not-equal" | "sharp-percentage" | "sharp-plus" | "sharp-plus-minus" | "sharp-plus-minus-alt" | "twotone-divide" | "twotone-equals" | "twotone-greater-than" | "twotone-greater-than-equal" | "twotone-less-than" | "twotone-less-than-equal" | "twotone-minus" | "twotone-not-equal" | "twotone-percentage" | "twotone-plus" | "twotone-plus-minus" | "twotone-plus-minus-alt" | "baseline-add-home-work" | "baseline-app-settings-alt" | "baseline-apps" | "baseline-apps-outage" | "baseline-arrow-back" | "baseline-arrow-back-ios" | "baseline-arrow-back-ios-new" | "baseline-arrow-downward" | "baseline-arrow-drop-down" | "baseline-arrow-drop-down-circle" | "baseline-arrow-drop-up" | "baseline-arrow-forward" | "baseline-arrow-forward-ios" | "baseline-arrow-left" | "baseline-arrow-right" | "baseline-arrow-upward" | "baseline-assistant-direction" | "baseline-campaign" | "baseline-cancel" | "baseline-check" | "baseline-chevron-left" | "baseline-chevron-right" | "baseline-close" | "baseline-double-arrow" | "baseline-east" | "baseline-expand-circle-down" | "baseline-expand-less" | "baseline-expand-more" | "baseline-first-page" | "baseline-fullscreen" | "baseline-fullscreen-exit" | "baseline-home-work" | "baseline-last-page" | "baseline-legend-toggle" | "baseline-maps-home-work" | "baseline-menu" | "baseline-menu-open" | "baseline-more-horiz" | "baseline-more-vert" | "baseline-north" | "baseline-north-east" | "baseline-north-west" | "baseline-offline-share" | "baseline-payments" | "baseline-pivot-table-chart" | "baseline-refresh" | "baseline-south" | "baseline-south-east" | "baseline-south-west" | "baseline-subdirectory-arrow-left" | "baseline-subdirectory-arrow-right" | "baseline-switch-left" | "baseline-switch-right" | "baseline-unfold-less" | "baseline-unfold-more" | "baseline-waterfall-chart" | "baseline-west" | "outline-add-home-work" | "outline-app-settings-alt" | "outline-apps" | "outline-apps-outage" | "outline-arrow-back" | "outline-arrow-back-ios" | "outline-arrow-back-ios-new" | "outline-arrow-downward" | "outline-arrow-drop-down" | "outline-arrow-drop-down-circle" | "outline-arrow-drop-up" | "outline-arrow-forward" | "outline-arrow-forward-ios" | "outline-arrow-left" | "outline-arrow-right" | "outline-arrow-upward" | "outline-assistant-direction" | "outline-campaign" | "outline-cancel" | "outline-check" | "outline-chevron-left" | "outline-chevron-right" | "outline-close" | "outline-double-arrow" | "outline-east" | "outline-expand-circle-down" | "outline-expand-less" | "outline-expand-more" | "outline-first-page" | "outline-fullscreen" | "outline-fullscreen-exit" | "outline-home-work" | "outline-last-page" | "outline-legend-toggle" | "outline-maps-home-work" | "outline-menu" | "outline-menu-open" | "outline-more-horiz" | "outline-more-vert" | "outline-north" | "outline-north-east" | "outline-north-west" | "outline-offline-share" | "outline-payments" | "outline-pivot-table-chart" | "outline-refresh" | "outline-south" | "outline-south-east" | "outline-south-west" | "outline-subdirectory-arrow-left" | "outline-subdirectory-arrow-right" | "outline-switch-left" | "outline-switch-right" | "outline-unfold-less" | "outline-unfold-more" | "outline-waterfall-chart" | "outline-west" | "round-add-home-work" | "round-app-settings-alt" | "round-apps" | "round-apps-outage" | "round-arrow-back" | "round-arrow-back-ios" | "round-arrow-back-ios-new" | "round-arrow-downward" | "round-arrow-drop-down" | "round-arrow-drop-down-circle" | "round-arrow-drop-up" | "round-arrow-forward" | "round-arrow-forward-ios" | "round-arrow-left" | "round-arrow-right" | "round-arrow-upward" | "round-assistant-direction" | "round-campaign" | "round-cancel" | "round-check" | "round-chevron-left" | "round-chevron-right" | "round-close" | "round-double-arrow" | "round-east" | "round-expand-circle-down" | "round-expand-less" | "round-expand-more" | "round-first-page" | "round-fullscreen" | "round-fullscreen-exit" | "round-home-work" | "round-last-page" | "round-legend-toggle" | "round-maps-home-work" | "round-menu" | "round-menu-open" | "round-more-horiz" | "round-more-vert" | "round-north" | "round-north-east" | "round-north-west" | "round-offline-share" | "round-payments" | "round-pivot-table-chart" | "round-refresh" | "round-south" | "round-south-east" | "round-south-west" | "round-subdirectory-arrow-left" | "round-subdirectory-arrow-right" | "round-switch-left" | "round-switch-right" | "round-unfold-less" | "round-unfold-more" | "round-waterfall-chart" | "round-west" | "sharp-add-home-work" | "sharp-app-settings-alt" | "sharp-apps" | "sharp-apps-outage" | "sharp-arrow-back" | "sharp-arrow-back-ios" | "sharp-arrow-back-ios-new" | "sharp-arrow-downward" | "sharp-arrow-drop-down" | "sharp-arrow-drop-down-circle" | "sharp-arrow-drop-up" | "sharp-arrow-forward" | "sharp-arrow-forward-ios" | "sharp-arrow-left" | "sharp-arrow-right" | "sharp-arrow-upward" | "sharp-assistant-direction" | "sharp-campaign" | "sharp-cancel" | "sharp-check" | "sharp-chevron-left" | "sharp-chevron-right" | "sharp-close" | "sharp-double-arrow" | "sharp-east" | "sharp-expand-circle-down" | "sharp-expand-less" | "sharp-expand-more" | "sharp-first-page" | "sharp-fullscreen" | "sharp-fullscreen-exit" | "sharp-home-work" | "sharp-last-page" | "sharp-legend-toggle" | "sharp-maps-home-work" | "sharp-menu" | "sharp-menu-open" | "sharp-more-horiz" | "sharp-more-vert" | "sharp-north" | "sharp-north-east" | "sharp-north-west" | "sharp-offline-share" | "sharp-payments" | "sharp-pivot-table-chart" | "sharp-refresh" | "sharp-south" | "sharp-south-east" | "sharp-south-west" | "sharp-subdirectory-arrow-left" | "sharp-subdirectory-arrow-right" | "sharp-switch-left" | "sharp-switch-right" | "sharp-unfold-less" | "sharp-unfold-more" | "sharp-waterfall-chart" | "sharp-west" | "twotone-add-home-work" | "twotone-app-settings-alt" | "twotone-apps" | "twotone-apps-outage" | "twotone-arrow-back" | "twotone-arrow-back-ios" | "twotone-arrow-back-ios-new" | "twotone-arrow-downward" | "twotone-arrow-drop-down" | "twotone-arrow-drop-down-circle" | "twotone-arrow-drop-up" | "twotone-arrow-forward" | "twotone-arrow-forward-ios" | "twotone-arrow-left" | "twotone-arrow-right" | "twotone-arrow-upward" | "twotone-assistant-direction" | "twotone-campaign" | "twotone-cancel" | "twotone-check" | "twotone-chevron-left" | "twotone-chevron-right" | "twotone-close" | "twotone-double-arrow" | "twotone-east" | "twotone-expand-circle-down" | "twotone-expand-less" | "twotone-expand-more" | "twotone-first-page" | "twotone-fullscreen" | "twotone-fullscreen-exit" | "twotone-home-work" | "twotone-last-page" | "twotone-legend-toggle" | "twotone-maps-home-work" | "twotone-menu" | "twotone-menu-open" | "twotone-more-horiz" | "twotone-more-vert" | "twotone-north" | "twotone-north-east" | "twotone-north-west" | "twotone-offline-share" | "twotone-payments" | "twotone-pivot-table-chart" | "twotone-refresh" | "twotone-south" | "twotone-south-east" | "twotone-south-west" | "twotone-subdirectory-arrow-left" | "twotone-subdirectory-arrow-right" | "twotone-switch-left" | "twotone-switch-right" | "twotone-unfold-less" | "twotone-unfold-more" | "twotone-waterfall-chart" | "twotone-west" | "baseline-account-tree" | "baseline-adb" | "baseline-airline-seat-flat" | "baseline-airline-seat-flat-angled" | "baseline-airline-seat-individual-suite" | "baseline-airline-seat-legroom-extra" | "baseline-airline-seat-legroom-normal" | "baseline-airline-seat-legroom-reduced" | "baseline-airline-seat-recline-extra" | "baseline-airline-seat-recline-normal" | "baseline-bluetooth-audio" | "baseline-confirmation-number" | "baseline-directions-off" | "baseline-disc-full" | "baseline-do-disturb" | "baseline-do-disturb-alt" | "baseline-do-disturb-off" | "baseline-do-disturb-on" | "baseline-do-not-disturb" | "baseline-do-not-disturb-alt" | "baseline-do-not-disturb-off" | "baseline-do-not-disturb-on" | "baseline-drive-eta" | "baseline-enhanced-encryption" | "baseline-event-available" | "baseline-event-busy" | "baseline-event-note" | "baseline-folder-special" | "baseline-imagesearch-roller" | "baseline-live-tv" | "baseline-mms" | "baseline-more" | "baseline-network-check" | "baseline-network-locked" | "baseline-no-encryption" | "baseline-no-encryption-gmailerrorred" | "baseline-ondemand-video" | "baseline-personal-video" | "baseline-phone-bluetooth-speaker" | "baseline-phone-callback" | "baseline-phone-forwarded" | "baseline-phone-in-talk" | "baseline-phone-locked" | "baseline-phone-missed" | "baseline-phone-paused" | "baseline-power" | "baseline-power-off" | "baseline-priority-high" | "baseline-running-with-errors" | "baseline-sd-card" | "baseline-sd-card-alert" | "baseline-sim-card-alert" | "baseline-sms" | "baseline-sms-failed" | "baseline-support-agent" | "baseline-sync" | "baseline-sync-disabled" | "baseline-sync-lock" | "baseline-sync-problem" | "baseline-system-update" | "baseline-tap-and-play" | "baseline-time-to-leave" | "baseline-tv-off" | "baseline-vibration" | "baseline-video-chat" | "baseline-voice-chat" | "baseline-vpn-lock" | "baseline-wc" | "baseline-wifi" | "baseline-wifi-off" | "outline-account-tree" | "outline-adb" | "outline-airline-seat-flat" | "outline-airline-seat-flat-angled" | "outline-airline-seat-individual-suite" | "outline-airline-seat-legroom-extra" | "outline-airline-seat-legroom-normal" | "outline-airline-seat-legroom-reduced" | "outline-airline-seat-recline-extra" | "outline-airline-seat-recline-normal" | "outline-bluetooth-audio" | "outline-confirmation-number" | "outline-directions-off" | "outline-disc-full" | "outline-do-disturb" | "outline-do-disturb-alt" | "outline-do-disturb-off" | "outline-do-disturb-on" | "outline-do-not-disturb" | "outline-do-not-disturb-alt" | "outline-do-not-disturb-off" | "outline-do-not-disturb-on" | "outline-drive-eta" | "outline-enhanced-encryption" | "outline-event-available" | "outline-event-busy" | "outline-event-note" | "outline-folder-special" | "outline-imagesearch-roller" | "outline-live-tv" | "outline-mms" | "outline-more" | "outline-network-check" | "outline-network-locked" | "outline-no-encryption" | "outline-no-encryption-gmailerrorred" | "outline-ondemand-video" | "outline-personal-video" | "outline-phone-bluetooth-speaker" | "outline-phone-callback" | "outline-phone-forwarded" | "outline-phone-in-talk" | "outline-phone-locked" | "outline-phone-missed" | "outline-phone-paused" | "outline-power" | "outline-power-off" | "outline-priority-high" | "outline-running-with-errors" | "outline-sd-card" | "outline-sd-card-alert" | "outline-sim-card-alert" | "outline-sms" | "outline-sms-failed" | "outline-support-agent" | "outline-sync" | "outline-sync-disabled" | "outline-sync-lock" | "outline-sync-problem" | "outline-system-update" | "outline-tap-and-play" | "outline-time-to-leave" | "outline-tv-off" | "outline-vibration" | "outline-video-chat" | "outline-voice-chat" | "outline-vpn-lock" | "outline-wc" | "outline-wifi" | "outline-wifi-off" | "round-account-tree" | "round-adb" | "round-airline-seat-flat" | "round-airline-seat-flat-angled" | "round-airline-seat-individual-suite" | "round-airline-seat-legroom-extra" | "round-airline-seat-legroom-normal" | "round-airline-seat-legroom-reduced" | "round-airline-seat-recline-extra" | "round-airline-seat-recline-normal" | "round-bluetooth-audio" | "round-confirmation-number" | "round-directions-off" | "round-disc-full" | "round-do-disturb" | "round-do-disturb-alt" | "round-do-disturb-off" | "round-do-disturb-on" | "round-do-not-disturb" | "round-do-not-disturb-alt" | "round-do-not-disturb-off" | "round-do-not-disturb-on" | "round-drive-eta" | "round-enhanced-encryption" | "round-event-available" | "round-event-busy" | "round-event-note" | "round-folder-special" | "round-imagesearch-roller" | "round-live-tv" | "round-mms" | "round-more" | "round-network-check" | "round-network-locked" | "round-no-encryption" | "round-no-encryption-gmailerrorred" | "round-ondemand-video" | "round-personal-video" | "round-phone-bluetooth-speaker" | "round-phone-callback" | "round-phone-forwarded" | "round-phone-in-talk" | "round-phone-locked" | "round-phone-missed" | "round-phone-paused" | "round-power" | "round-power-off" | "round-priority-high" | "round-running-with-errors" | "round-sd-card" | "round-sd-card-alert" | "round-sim-card-alert" | "round-sms" | "round-sms-failed" | "round-support-agent" | "round-sync-disabled" | "round-sync-lock" | "round-sync-problem" | "round-system-update" | "round-tap-and-play" | "round-time-to-leave" | "round-tv-off" | "round-vibration" | "round-video-chat" | "round-voice-chat" | "round-vpn-lock" | "round-wc" | "round-wifi" | "round-wifi-off" | "sharp-account-tree" | "sharp-adb" | "sharp-airline-seat-flat" | "sharp-airline-seat-flat-angled" | "sharp-airline-seat-individual-suite" | "sharp-airline-seat-legroom-extra" | "sharp-airline-seat-legroom-normal" | "sharp-airline-seat-legroom-reduced" | "sharp-airline-seat-recline-extra" | "sharp-airline-seat-recline-normal" | "sharp-bluetooth-audio" | "sharp-confirmation-number" | "sharp-directions-off" | "sharp-disc-full" | "sharp-do-disturb" | "sharp-do-disturb-alt" | "sharp-do-disturb-off" | "sharp-do-disturb-on" | "sharp-do-not-disturb" | "sharp-do-not-disturb-alt" | "sharp-do-not-disturb-off" | "sharp-do-not-disturb-on" | "sharp-drive-eta" | "sharp-enhanced-encryption" | "sharp-event-available" | "sharp-event-busy" | "sharp-event-note" | "sharp-folder-special" | "sharp-imagesearch-roller" | "sharp-live-tv" | "sharp-mms" | "sharp-more" | "sharp-network-check" | "sharp-network-locked" | "sharp-no-encryption" | "sharp-no-encryption-gmailerrorred" | "sharp-ondemand-video" | "sharp-personal-video" | "sharp-phone-bluetooth-speaker" | "sharp-phone-callback" | "sharp-phone-forwarded" | "sharp-phone-in-talk" | "sharp-phone-locked" | "sharp-phone-missed" | "sharp-phone-paused" | "sharp-power" | "sharp-power-off" | "sharp-priority-high" | "sharp-running-with-errors" | "sharp-sd-card" | "sharp-sd-card-alert" | "sharp-sim-card-alert" | "sharp-sms" | "sharp-sms-failed" | "sharp-support-agent" | "sharp-sync" | "sharp-sync-disabled" | "sharp-sync-lock" | "sharp-sync-problem" | "sharp-system-update" | "sharp-tap-and-play" | "sharp-time-to-leave" | "sharp-tv-off" | "sharp-vibration" | "sharp-video-chat" | "sharp-voice-chat" | "sharp-vpn-lock" | "sharp-wc" | "sharp-wifi" | "sharp-wifi-off" | "twotone-account-tree" | "twotone-adb" | "twotone-airline-seat-flat" | "twotone-airline-seat-flat-angled" | "twotone-airline-seat-individual-suite" | "twotone-airline-seat-legroom-extra" | "twotone-airline-seat-legroom-normal" | "twotone-airline-seat-legroom-reduced" | "twotone-airline-seat-recline-extra" | "twotone-airline-seat-recline-normal" | "twotone-bluetooth-audio" | "twotone-confirmation-number" | "twotone-directions-off" | "twotone-disc-full" | "twotone-do-disturb" | "twotone-do-disturb-alt" | "twotone-do-disturb-off" | "twotone-do-disturb-on" | "twotone-do-not-disturb" | "twotone-do-not-disturb-alt" | "twotone-do-not-disturb-off" | "twotone-do-not-disturb-on" | "twotone-drive-eta" | "twotone-enhanced-encryption" | "twotone-event-available" | "twotone-event-busy" | "twotone-event-note" | "twotone-folder-special" | "twotone-imagesearch-roller" | "twotone-live-tv" | "twotone-mms" | "twotone-more" | "twotone-network-check" | "twotone-network-locked" | "twotone-no-encryption" | "twotone-no-encryption-gmailerrorred" | "twotone-ondemand-video" | "twotone-personal-video" | "twotone-phone-bluetooth-speaker" | "twotone-phone-callback" | "twotone-phone-forwarded" | "twotone-phone-in-talk" | "twotone-phone-locked" | "twotone-phone-missed" | "twotone-phone-paused" | "twotone-power" | "twotone-power-off" | "twotone-priority-high" | "twotone-running-with-errors" | "twotone-sd-card" | "twotone-sd-card-alert" | "twotone-sim-card-alert" | "twotone-sms" | "twotone-sms-failed" | "twotone-support-agent" | "twotone-sync" | "twotone-sync-disabled" | "twotone-sync-lock" | "twotone-sync-problem" | "twotone-system-update" | "twotone-tap-and-play" | "twotone-time-to-leave" | "twotone-tv-off" | "twotone-vibration" | "twotone-video-chat" | "twotone-voice-chat" | "twotone-vpn-lock" | "twotone-wc" | "twotone-wifi" | "twotone-wifi-off" | "baseline-ac-unit" | "baseline-airport-shuttle" | "baseline-all-inclusive" | "baseline-apartment" | "baseline-baby-changing-station" | "baseline-backpack" | "baseline-balcony" | "baseline-bathtub" | "baseline-beach-access" | "baseline-bento" | "baseline-bungalow" | "baseline-business-center" | "baseline-cabin" | "baseline-carpenter" | "baseline-casino" | "baseline-chalet" | "baseline-charging-station" | "baseline-checkroom" | "baseline-child-care" | "baseline-child-friendly" | "baseline-corporate-fare" | "baseline-cottage" | "baseline-countertops" | "baseline-crib" | "baseline-desk" | "baseline-do-not-step" | "baseline-do-not-touch" | "baseline-dry" | "baseline-elevator" | "baseline-escalator" | "baseline-escalator-warning" | "baseline-family-restroom" | "baseline-fence" | "baseline-fire-extinguisher" | "baseline-fitness-center" | "baseline-food-bank" | "baseline-foundation" | "baseline-free-breakfast" | "baseline-gite" | "baseline-golf-course" | "baseline-grass" | "baseline-holiday-village" | "baseline-hot-tub" | "baseline-house" | "baseline-house-siding" | "baseline-houseboat" | "baseline-iron" | "baseline-kitchen" | "baseline-meeting-room" | "baseline-microwave" | "baseline-night-shelter" | "baseline-no-backpack" | "baseline-no-cell" | "baseline-no-drinks" | "baseline-no-flash" | "baseline-no-food" | "baseline-no-meeting-room" | "baseline-no-photography" | "baseline-no-stroller" | "baseline-other-houses" | "baseline-pool" | "baseline-rice-bowl" | "baseline-roofing" | "baseline-room-preferences" | "baseline-room-service" | "baseline-rv-hookup" | "baseline-smoke-free" | "baseline-smoking-rooms" | "baseline-soap" | "baseline-spa" | "baseline-sports-bar" | "baseline-stairs" | "baseline-storefront" | "baseline-stroller" | "baseline-tapas" | "baseline-tty" | "baseline-umbrella" | "baseline-vape-free" | "baseline-vaping-rooms" | "baseline-villa" | "baseline-wash" | "baseline-water-damage" | "baseline-wheelchair-pickup" | "outline-ac-unit" | "outline-airport-shuttle" | "outline-all-inclusive" | "outline-apartment" | "outline-baby-changing-station" | "outline-backpack" | "outline-balcony" | "outline-bathtub" | "outline-beach-access" | "outline-bento" | "outline-bungalow" | "outline-business-center" | "outline-cabin" | "outline-carpenter" | "outline-casino" | "outline-chalet" | "outline-charging-station" | "outline-checkroom" | "outline-child-care" | "outline-child-friendly" | "outline-corporate-fare" | "outline-cottage" | "outline-countertops" | "outline-crib" | "outline-desk" | "outline-do-not-step" | "outline-do-not-touch" | "outline-dry" | "outline-elevator" | "outline-escalator" | "outline-escalator-warning" | "outline-family-restroom" | "outline-fence" | "outline-fire-extinguisher" | "outline-fitness-center" | "outline-food-bank" | "outline-foundation" | "outline-free-breakfast" | "outline-gite" | "outline-golf-course" | "outline-grass" | "outline-holiday-village" | "outline-hot-tub" | "outline-house" | "outline-house-siding" | "outline-houseboat" | "outline-iron" | "outline-kitchen" | "outline-meeting-room" | "outline-microwave" | "outline-night-shelter" | "outline-no-backpack" | "outline-no-cell" | "outline-no-drinks" | "outline-no-flash" | "outline-no-food" | "outline-no-meeting-room" | "outline-no-photography" | "outline-no-stroller" | "outline-other-houses" | "outline-pool" | "outline-rice-bowl" | "outline-roofing" | "outline-room-preferences" | "outline-room-service" | "outline-rv-hookup" | "outline-smoke-free" | "outline-smoking-rooms" | "outline-soap" | "outline-spa" | "outline-sports-bar" | "outline-stairs" | "outline-storefront" | "outline-stroller" | "outline-tapas" | "outline-tty" | "outline-umbrella" | "outline-vape-free" | "outline-vaping-rooms" | "outline-villa" | "outline-wash" | "outline-water-damage" | "outline-wheelchair-pickup" | "round-ac-unit" | "round-airport-shuttle" | "round-all-inclusive" | "round-apartment" | "round-baby-changing-station" | "round-backpack" | "round-balcony" | "round-bathtub" | "round-beach-access" | "round-bento" | "round-bungalow" | "round-business-center" | "round-cabin" | "round-carpenter" | "round-casino" | "round-chalet" | "round-charging-station" | "round-checkroom" | "round-child-care" | "round-child-friendly" | "round-corporate-fare" | "round-cottage" | "round-countertops" | "round-crib" | "round-desk" | "round-do-not-step" | "round-do-not-touch" | "round-dry" | "round-elevator" | "round-escalator" | "round-escalator-warning" | "round-family-restroom" | "round-fence" | "round-fire-extinguisher" | "round-fitness-center" | "round-food-bank" | "round-foundation" | "round-free-breakfast" | "round-gite" | "round-golf-course" | "round-grass" | "round-holiday-village" | "round-hot-tub" | "round-house" | "round-house-siding" | "round-houseboat" | "round-iron" | "round-kitchen" | "round-meeting-room" | "round-microwave" | "round-night-shelter" | "round-no-backpack" | "round-no-cell" | "round-no-drinks" | "round-no-flash" | "round-no-food" | "round-no-meeting-room" | "round-no-photography" | "round-no-stroller" | "round-other-houses" | "round-pool" | "round-rice-bowl" | "round-roofing" | "round-room-preferences" | "round-room-service" | "round-rv-hookup" | "round-smoke-free" | "round-smoking-rooms" | "round-soap" | "round-spa" | "round-sports-bar" | "round-stairs" | "round-storefront" | "round-stroller" | "round-tapas" | "round-tty" | "round-umbrella" | "round-vape-free" | "round-vaping-rooms" | "round-villa" | "round-wash" | "round-water-damage" | "round-wheelchair-pickup" | "sharp-ac-unit" | "sharp-airport-shuttle" | "sharp-all-inclusive" | "sharp-apartment" | "sharp-baby-changing-station" | "sharp-backpack" | "sharp-balcony" | "sharp-bathtub" | "sharp-beach-access" | "sharp-bento" | "sharp-bungalow" | "sharp-business-center" | "sharp-cabin" | "sharp-carpenter" | "sharp-casino" | "sharp-chalet" | "sharp-charging-station" | "sharp-checkroom" | "sharp-child-care" | "sharp-child-friendly" | "sharp-corporate-fare" | "sharp-cottage" | "sharp-countertops" | "sharp-crib" | "sharp-desk" | "sharp-do-not-step" | "sharp-do-not-touch" | "sharp-dry" | "sharp-elevator" | "sharp-escalator" | "sharp-escalator-warning" | "sharp-family-restroom" | "sharp-fence" | "sharp-fire-extinguisher" | "sharp-fitness-center" | "sharp-food-bank" | "sharp-foundation" | "sharp-free-breakfast" | "sharp-gite" | "sharp-golf-course" | "sharp-grass" | "sharp-holiday-village" | "sharp-hot-tub" | "sharp-house" | "sharp-house-siding" | "sharp-houseboat" | "sharp-iron" | "sharp-kitchen" | "sharp-meeting-room" | "sharp-microwave" | "sharp-night-shelter" | "sharp-no-backpack" | "sharp-no-cell" | "sharp-no-drinks" | "sharp-no-flash" | "sharp-no-food" | "sharp-no-meeting-room" | "sharp-no-photography" | "sharp-no-stroller" | "sharp-other-houses" | "sharp-pool" | "sharp-rice-bowl" | "sharp-roofing" | "sharp-room-preferences" | "sharp-room-service" | "sharp-rv-hookup" | "sharp-smoke-free" | "sharp-smoking-rooms" | "sharp-soap" | "sharp-spa" | "sharp-sports-bar" | "sharp-stairs" | "sharp-storefront" | "sharp-stroller" | "sharp-tapas" | "sharp-tty" | "sharp-umbrella" | "sharp-vape-free" | "sharp-vaping-rooms" | "sharp-villa" | "sharp-wash" | "sharp-water-damage" | "sharp-wheelchair-pickup" | "twotone-ac-unit" | "twotone-airport-shuttle" | "twotone-all-inclusive" | "twotone-apartment" | "twotone-baby-changing-station" | "twotone-backpack" | "twotone-balcony" | "twotone-bathtub" | "twotone-beach-access" | "twotone-bento" | "twotone-bungalow" | "twotone-business-center" | "twotone-cabin" | "twotone-carpenter" | "twotone-casino" | "twotone-chalet" | "twotone-charging-station" | "twotone-checkroom" | "twotone-child-care" | "twotone-child-friendly" | "twotone-corporate-fare" | "twotone-cottage" | "twotone-countertops" | "twotone-crib" | "twotone-desk" | "twotone-do-not-step" | "twotone-do-not-touch" | "twotone-dry" | "twotone-elevator" | "twotone-escalator" | "twotone-escalator-warning" | "twotone-family-restroom" | "twotone-fence" | "twotone-fire-extinguisher" | "twotone-fitness-center" | "twotone-food-bank" | "twotone-foundation" | "twotone-free-breakfast" | "twotone-gite" | "twotone-golf-course" | "twotone-grass" | "twotone-holiday-village" | "twotone-hot-tub" | "twotone-house" | "twotone-house-siding" | "twotone-houseboat" | "twotone-iron" | "twotone-kitchen" | "twotone-meeting-room" | "twotone-microwave" | "twotone-night-shelter" | "twotone-no-backpack" | "twotone-no-cell" | "twotone-no-drinks" | "twotone-no-flash" | "twotone-no-food" | "twotone-no-meeting-room" | "twotone-no-photography" | "twotone-no-stroller" | "twotone-other-houses" | "twotone-pool" | "twotone-rice-bowl" | "twotone-roofing" | "twotone-room-preferences" | "twotone-room-service" | "twotone-rv-hookup" | "twotone-smoke-free" | "twotone-smoking-rooms" | "twotone-soap" | "twotone-spa" | "twotone-sports-bar" | "twotone-stairs" | "twotone-storefront" | "twotone-stroller" | "twotone-tapas" | "twotone-tty" | "twotone-umbrella" | "twotone-vape-free" | "twotone-vaping-rooms" | "twotone-villa" | "twotone-wash" | "twotone-water-damage" | "twotone-wheelchair-pickup" | "baseline-bathroom" | "baseline-bed" | "baseline-bedroom-baby" | "baseline-bedroom-child" | "baseline-bedroom-parent" | "baseline-blender" | "baseline-camera-indoor" | "baseline-camera-outdoor" | "baseline-chair" | "baseline-chair-alt" | "baseline-coffee" | "baseline-coffee-maker" | "baseline-dining" | "baseline-door-back" | "baseline-door-front" | "baseline-door-sliding" | "baseline-doorbell" | "baseline-feed" | "baseline-flatware" | "baseline-garage" | "baseline-light" | "baseline-living" | "baseline-manage-search" | "baseline-podcasts" | "baseline-shower" | "baseline-table-bar" | "baseline-table-restaurant" | "baseline-window" | "baseline-yard" | "outline-bathroom" | "outline-bed" | "outline-bedroom-baby" | "outline-bedroom-child" | "outline-bedroom-parent" | "outline-blender" | "outline-camera-indoor" | "outline-camera-outdoor" | "outline-chair" | "outline-chair-alt" | "outline-coffee" | "outline-coffee-maker" | "outline-dining" | "outline-door-back" | "outline-door-front" | "outline-door-sliding" | "outline-doorbell" | "outline-feed" | "outline-flatware" | "outline-garage" | "outline-light" | "outline-living" | "outline-manage-search" | "outline-podcasts" | "outline-shower" | "outline-table-bar" | "outline-table-restaurant" | "outline-window" | "outline-yard" | "round-bathroom" | "round-bed" | "round-bedroom-baby" | "round-bedroom-child" | "round-bedroom-parent" | "round-blender" | "round-camera-indoor" | "round-camera-outdoor" | "round-chair" | "round-chair-alt" | "round-coffee" | "round-coffee-maker" | "round-dining" | "round-door-back" | "round-door-front" | "round-door-sliding" | "round-doorbell" | "round-feed" | "round-flatware" | "round-garage" | "round-light" | "round-living" | "round-manage-search" | "round-podcasts" | "round-shower" | "round-table-bar" | "round-table-restaurant" | "round-window" | "round-yard" | "sharp-bathroom" | "sharp-bed" | "sharp-bedroom-baby" | "sharp-bedroom-child" | "sharp-bedroom-parent" | "sharp-blender" | "sharp-camera-indoor" | "sharp-camera-outdoor" | "sharp-chair" | "sharp-chair-alt" | "sharp-coffee" | "sharp-coffee-maker" | "sharp-dining" | "sharp-door-back" | "sharp-door-front" | "sharp-door-sliding" | "sharp-doorbell" | "sharp-feed" | "sharp-flatware" | "sharp-garage" | "sharp-light" | "sharp-living" | "sharp-manage-search" | "sharp-podcasts" | "sharp-shower" | "sharp-table-bar" | "sharp-table-restaurant" | "sharp-window" | "sharp-yard" | "twotone-bathroom" | "twotone-bed" | "twotone-bedroom-baby" | "twotone-bedroom-child" | "twotone-bedroom-parent" | "twotone-blender" | "twotone-camera-indoor" | "twotone-camera-outdoor" | "twotone-chair" | "twotone-chair-alt" | "twotone-coffee" | "twotone-coffee-maker" | "twotone-dining" | "twotone-door-back" | "twotone-door-front" | "twotone-door-sliding" | "twotone-doorbell" | "twotone-feed" | "twotone-flatware" | "twotone-garage" | "twotone-light" | "twotone-living" | "twotone-manage-search" | "twotone-podcasts" | "twotone-shower" | "twotone-table-bar" | "twotone-table-restaurant" | "twotone-window" | "twotone-yard" | "baseline-barcode" | "baseline-qrcode" | "outline-barcode" | "outline-qrcode" | "round-barcode" | "round-qrcode" | "sharp-barcode" | "sharp-qrcode" | "twotone-barcode" | "twotone-qrcode" | "baseline-18-up-rating" | "baseline-6-ft-apart" | "baseline-add-moderator" | "baseline-add-reaction" | "baseline-adobe" | "baseline-apple" | "baseline-architecture" | "baseline-assist-walker" | "baseline-back-hand" | "baseline-blind" | "baseline-boy" | "baseline-cake" | "baseline-catching-pokemon" | "baseline-clean-hands" | "baseline-co2" | "baseline-compost" | "baseline-connect-without-contact" | "baseline-construction" | "baseline-cookie" | "baseline-coronavirus" | "baseline-cruelty-free" | "baseline-cyclone" | "baseline-deck" | "baseline-discord" | "baseline-diversity-1" | "baseline-diversity-2" | "baseline-diversity-3" | "baseline-domain" | "baseline-domain-add" | "baseline-downhill-skiing" | "baseline-edit-notifications" | "baseline-elderly" | "baseline-elderly-woman" | "baseline-emoji-emotions" | "baseline-emoji-events" | "baseline-emoji-flags" | "baseline-emoji-food-beverage" | "baseline-emoji-nature" | "baseline-emoji-objects" | "baseline-emoji-people" | "baseline-emoji-symbols" | "baseline-emoji-transportation" | "baseline-engineering" | "baseline-face-2" | "baseline-face-3" | "baseline-face-4" | "baseline-face-5" | "baseline-face-6" | "baseline-facebook" | "baseline-female" | "baseline-fireplace" | "baseline-fitbit" | "baseline-flood" | "baseline-follow-the-signs" | "baseline-front-hand" | "baseline-girl" | "baseline-group" | "baseline-group-add" | "baseline-group-off" | "baseline-group-remove" | "baseline-groups" | "baseline-groups-2" | "baseline-groups-3" | "baseline-handshake" | "baseline-health-and-safety" | "baseline-heart-broken" | "baseline-hiking" | "baseline-history-edu" | "baseline-hive" | "baseline-ice-skating" | "baseline-interests" | "baseline-ios-share" | "baseline-kayaking" | "baseline-king-bed" | "baseline-kitesurfing" | "baseline-landslide" | "baseline-leave-bags-at-home" | "baseline-location-city" | "baseline-luggage" | "baseline-male" | "baseline-man" | "baseline-man-2" | "baseline-man-3" | "baseline-man-4" | "baseline-masks" | "baseline-military-tech" | "baseline-mood" | "baseline-mood-bad" | "baseline-nights-stay" | "baseline-no-adult-content" | "baseline-no-luggage" | "baseline-nordic-walking" | "baseline-notification-add" | "baseline-notifications" | "baseline-notifications-active" | "baseline-notifications-none" | "baseline-notifications-off" | "baseline-notifications-paused" | "baseline-outdoor-grill" | "baseline-pages" | "baseline-paragliding" | "baseline-party-mode" | "baseline-paypal" | "baseline-people" | "baseline-people-alt" | "baseline-people-outline" | "baseline-person" | "baseline-person-2" | "baseline-person-3" | "baseline-person-4" | "baseline-person-add" | "baseline-person-add-alt" | "baseline-person-add-alt-1" | "baseline-person-off" | "baseline-person-outline" | "baseline-person-remove" | "baseline-person-remove-alt-1" | "baseline-personal-injury" | "baseline-piano" | "baseline-piano-off" | "baseline-pix" | "baseline-plus-one" | "baseline-poll" | "baseline-precision-manufacturing" | "baseline-psychology" | "baseline-psychology-alt" | "baseline-public" | "baseline-public-off" | "baseline-quora" | "baseline-real-estate-agent" | "baseline-recommend" | "baseline-recycling" | "baseline-reddit" | "baseline-reduce-capacity" | "baseline-remove-moderator" | "baseline-roller-skating" | "baseline-safety-divider" | "baseline-sanitizer" | "baseline-scale" | "baseline-school" | "baseline-science" | "baseline-scoreboard" | "baseline-scuba-diving" | "baseline-self-improvement" | "baseline-sentiment-dissatisfied" | "baseline-sentiment-neutral" | "baseline-sentiment-satisfied" | "baseline-sentiment-slightly-dissatisfied" | "baseline-sentiment-very-dissatisfied" | "baseline-sentiment-very-satisfied" | "baseline-severe-cold" | "baseline-share" | "baseline-shopify" | "baseline-sick" | "baseline-sign-language" | "baseline-single-bed" | "baseline-skateboarding" | "baseline-sledding" | "baseline-snapchat" | "baseline-snowboarding" | "baseline-snowshoeing" | "baseline-social-distance" | "baseline-south-america" | "baseline-sports" | "baseline-sports-baseball" | "baseline-sports-basketball" | "baseline-sports-cricket" | "baseline-sports-esports" | "baseline-sports-football" | "baseline-sports-golf" | "baseline-sports-gymnastics" | "baseline-sports-handball" | "baseline-sports-hockey" | "baseline-sports-kabaddi" | "baseline-sports-martial-arts" | "baseline-sports-mma" | "baseline-sports-motorsports" | "baseline-sports-rugby" | "baseline-sports-soccer" | "baseline-sports-tennis" | "baseline-sports-volleyball" | "baseline-surfing" | "baseline-switch-account" | "baseline-telegram" | "baseline-thumb-down-alt" | "baseline-thumb-up-alt" | "baseline-thunderstorm" | "baseline-tiktok" | "baseline-tornado" | "baseline-transgender" | "baseline-travel-explore" | "baseline-tsunami" | "baseline-vaccines" | "baseline-volcano" | "baseline-wallet" | "baseline-water-drop" | "baseline-waving-hand" | "baseline-wechat" | "baseline-whatsapp" | "baseline-whatshot" | "baseline-woman" | "baseline-woman-2" | "baseline-woo-commerce" | "baseline-wordpress" | "baseline-workspace-premium" | "outline-18-up-rating" | "outline-6-ft-apart" | "outline-add-moderator" | "outline-add-reaction" | "outline-adobe" | "outline-apple" | "outline-architecture" | "outline-assist-walker" | "outline-back-hand" | "outline-blind" | "outline-boy" | "outline-cake" | "outline-catching-pokemon" | "outline-clean-hands" | "outline-co2" | "outline-compost" | "outline-connect-without-contact" | "outline-construction" | "outline-cookie" | "outline-coronavirus" | "outline-cruelty-free" | "outline-cyclone" | "outline-deck" | "outline-discord" | "outline-diversity-1" | "outline-diversity-2" | "outline-diversity-3" | "outline-domain" | "outline-domain-add" | "outline-downhill-skiing" | "outline-edit-notifications" | "outline-elderly" | "outline-elderly-woman" | "outline-emoji-emotions" | "outline-emoji-events" | "outline-emoji-flags" | "outline-emoji-food-beverage" | "outline-emoji-nature" | "outline-emoji-objects" | "outline-emoji-people" | "outline-emoji-symbols" | "outline-emoji-transportation" | "outline-engineering" | "outline-face-2" | "outline-face-3" | "outline-face-4" | "outline-face-5" | "outline-face-6" | "outline-facebook" | "outline-female" | "outline-fireplace" | "outline-fitbit" | "outline-flood" | "outline-follow-the-signs" | "outline-front-hand" | "outline-girl" | "outline-group" | "outline-group-add" | "outline-group-off" | "outline-group-remove" | "outline-groups" | "outline-groups-2" | "outline-groups-3" | "outline-handshake" | "outline-health-and-safety" | "outline-heart-broken" | "outline-hiking" | "outline-history-edu" | "outline-hive" | "outline-ice-skating" | "outline-interests" | "outline-ios-share" | "outline-kayaking" | "outline-king-bed" | "outline-kitesurfing" | "outline-landslide" | "outline-leave-bags-at-home" | "outline-location-city" | "outline-luggage" | "outline-male" | "outline-man" | "outline-man-2" | "outline-man-3" | "outline-man-4" | "outline-masks" | "outline-military-tech" | "outline-mood" | "outline-mood-bad" | "outline-nights-stay" | "outline-no-adult-content" | "outline-no-luggage" | "outline-nordic-walking" | "outline-notification-add" | "outline-notifications" | "outline-notifications-active" | "outline-notifications-none" | "outline-notifications-off" | "outline-notifications-paused" | "outline-outdoor-grill" | "outline-pages" | "outline-paragliding" | "outline-party-mode" | "outline-paypal" | "outline-people" | "outline-people-alt" | "outline-people-outline" | "outline-person" | "outline-person-2" | "outline-person-3" | "outline-person-4" | "outline-person-add" | "outline-person-add-alt" | "outline-person-add-alt-1" | "outline-person-off" | "outline-person-outline" | "outline-person-remove" | "outline-person-remove-alt-1" | "outline-personal-injury" | "outline-piano" | "outline-piano-off" | "outline-pix" | "outline-plus-one" | "outline-poll" | "outline-precision-manufacturing" | "outline-psychology" | "outline-psychology-alt" | "outline-public" | "outline-public-off" | "outline-quora" | "outline-real-estate-agent" | "outline-recommend" | "outline-recycling" | "outline-reddit" | "outline-reduce-capacity" | "outline-remove-moderator" | "outline-roller-skating" | "outline-safety-divider" | "outline-sanitizer" | "outline-scale" | "outline-school" | "outline-science" | "outline-scoreboard" | "outline-scuba-diving" | "outline-self-improvement" | "outline-sentiment-dissatisfied" | "outline-sentiment-neutral" | "outline-sentiment-satisfied" | "outline-sentiment-slightly-dissatisfied" | "outline-sentiment-very-dissatisfied" | "outline-sentiment-very-satisfied" | "outline-severe-cold" | "outline-share" | "outline-shopify" | "outline-sick" | "outline-sign-language" | "outline-single-bed" | "outline-skateboarding" | "outline-sledding" | "outline-snapchat" | "outline-snowboarding" | "outline-snowshoeing" | "outline-social-distance" | "outline-south-america" | "outline-sports" | "outline-sports-baseball" | "outline-sports-basketball" | "outline-sports-cricket" | "outline-sports-esports" | "outline-sports-football" | "outline-sports-golf" | "outline-sports-gymnastics" | "outline-sports-handball" | "outline-sports-hockey" | "outline-sports-kabaddi" | "outline-sports-martial-arts" | "outline-sports-mma" | "outline-sports-motorsports" | "outline-sports-rugby" | "outline-sports-soccer" | "outline-sports-tennis" | "outline-sports-volleyball" | "outline-surfing" | "outline-switch-account" | "outline-telegram" | "outline-thumb-down-alt" | "outline-thumb-up-alt" | "outline-thunderstorm" | "outline-tiktok" | "outline-tornado" | "outline-transgender" | "outline-travel-explore" | "outline-tsunami" | "outline-vaccines" | "outline-volcano" | "outline-wallet" | "outline-water-drop" | "outline-waving-hand" | "outline-wechat" | "outline-whatsapp" | "outline-whatshot" | "outline-woman" | "outline-woman-2" | "outline-woo-commerce" | "outline-wordpress" | "outline-workspace-premium" | "round-18-up-rating" | "round-6-ft-apart" | "round-add-moderator" | "round-add-reaction" | "round-adobe" | "round-apple" | "round-architecture" | "round-assist-walker" | "round-back-hand" | "round-blind" | "round-boy" | "round-cake" | "round-catching-pokemon" | "round-clean-hands" | "round-co2" | "round-compost" | "round-connect-without-contact" | "round-construction" | "round-cookie" | "round-coronavirus" | "round-cruelty-free" | "round-cyclone" | "round-deck" | "round-discord" | "round-diversity-1" | "round-diversity-2" | "round-diversity-3" | "round-domain" | "round-domain-add" | "round-downhill-skiing" | "round-edit-notifications" | "round-elderly" | "round-elderly-woman" | "round-emoji-emotions" | "round-emoji-events" | "round-emoji-flags" | "round-emoji-food-beverage" | "round-emoji-nature" | "round-emoji-objects" | "round-emoji-people" | "round-emoji-symbols" | "round-emoji-transportation" | "round-engineering" | "round-face-2" | "round-face-3" | "round-face-4" | "round-face-5" | "round-face-6" | "round-facebook" | "round-female" | "round-fireplace" | "round-fitbit" | "round-flood" | "round-follow-the-signs" | "round-front-hand" | "round-girl" | "round-group" | "round-group-add" | "round-group-off" | "round-group-remove" | "round-groups" | "round-groups-2" | "round-groups-3" | "round-handshake" | "round-health-and-safety" | "round-heart-broken" | "round-hiking" | "round-history-edu" | "round-hive" | "round-ice-skating" | "round-interests" | "round-ios-share" | "round-kayaking" | "round-king-bed" | "round-kitesurfing" | "round-landslide" | "round-leave-bags-at-home" | "round-location-city" | "round-luggage" | "round-male" | "round-man" | "round-man-2" | "round-man-3" | "round-man-4" | "round-masks" | "round-military-tech" | "round-mood" | "round-mood-bad" | "round-nights-stay" | "round-no-adult-content" | "round-no-luggage" | "round-nordic-walking" | "round-notification-add" | "round-notifications" | "round-notifications-active" | "round-notifications-none" | "round-notifications-off" | "round-notifications-paused" | "round-outdoor-grill" | "round-pages" | "round-paragliding" | "round-party-mode" | "round-paypal" | "round-people" | "round-people-alt" | "round-people-outline" | "round-person" | "round-person-2" | "round-person-3" | "round-person-4" | "round-person-add" | "round-person-add-alt" | "round-person-add-alt-1" | "round-person-off" | "round-person-outline" | "round-person-remove" | "round-person-remove-alt-1" | "round-personal-injury" | "round-piano" | "round-piano-off" | "round-pix" | "round-plus-one" | "round-poll" | "round-precision-manufacturing" | "round-psychology" | "round-psychology-alt" | "round-public" | "round-public-off" | "round-quora" | "round-real-estate-agent" | "round-recommend" | "round-recycling" | "round-reddit" | "round-reduce-capacity" | "round-remove-moderator" | "round-roller-skating" | "round-safety-divider" | "round-sanitizer" | "round-scale" | "round-school" | "round-science" | "round-scoreboard" | "round-scuba-diving" | "round-self-improvement" | "round-sentiment-dissatisfied" | "round-sentiment-neutral" | "round-sentiment-satisfied" | "round-sentiment-slightly-dissatisfied" | "round-sentiment-very-dissatisfied" | "round-sentiment-very-satisfied" | "round-severe-cold" | "round-share" | "round-shopify" | "round-sick" | "round-sign-language" | "round-single-bed" | "round-skateboarding" | "round-sledding" | "round-snapchat" | "round-snowboarding" | "round-snowshoeing" | "round-social-distance" | "round-south-america" | "round-sports" | "round-sports-baseball" | "round-sports-basketball" | "round-sports-cricket" | "round-sports-esports" | "round-sports-football" | "round-sports-golf" | "round-sports-gymnastics" | "round-sports-handball" | "round-sports-hockey" | "round-sports-kabaddi" | "round-sports-martial-arts" | "round-sports-mma" | "round-sports-motorsports" | "round-sports-rugby" | "round-sports-soccer" | "round-sports-tennis" | "round-sports-volleyball" | "round-surfing" | "round-switch-account" | "round-telegram" | "round-thumb-down-alt" | "round-thumb-up-alt" | "round-thunderstorm" | "round-tiktok" | "round-tornado" | "round-transgender" | "round-travel-explore" | "round-tsunami" | "round-vaccines" | "round-volcano" | "round-wallet" | "round-water-drop" | "round-waving-hand" | "round-wechat" | "round-whatsapp" | "round-whatshot" | "round-woman" | "round-woman-2" | "round-woo-commerce" | "round-wordpress" | "round-workspace-premium" | "sharp-18-up-rating" | "sharp-6-ft-apart" | "sharp-add-moderator" | "sharp-add-reaction" | "sharp-adobe" | "sharp-apple" | "sharp-architecture" | "sharp-assist-walker" | "sharp-back-hand" | "sharp-blind" | "sharp-boy" | "sharp-cake" | "sharp-catching-pokemon" | "sharp-clean-hands" | "sharp-co2" | "sharp-compost" | "sharp-connect-without-contact" | "sharp-construction" | "sharp-cookie" | "sharp-coronavirus" | "sharp-cruelty-free" | "sharp-cyclone" | "sharp-deck" | "sharp-discord" | "sharp-diversity-1" | "sharp-diversity-2" | "sharp-diversity-3" | "sharp-domain" | "sharp-domain-add" | "sharp-downhill-skiing" | "sharp-edit-notifications" | "sharp-elderly" | "sharp-elderly-woman" | "sharp-emoji-emotions" | "sharp-emoji-events" | "sharp-emoji-flags" | "sharp-emoji-food-beverage" | "sharp-emoji-nature" | "sharp-emoji-objects" | "sharp-emoji-people" | "sharp-emoji-symbols" | "sharp-emoji-transportation" | "sharp-engineering" | "sharp-face-2" | "sharp-face-3" | "sharp-face-4" | "sharp-face-5" | "sharp-face-6" | "sharp-facebook" | "sharp-female" | "sharp-fireplace" | "sharp-fitbit" | "sharp-flood" | "sharp-follow-the-signs" | "sharp-front-hand" | "sharp-girl" | "sharp-group" | "sharp-group-add" | "sharp-group-off" | "sharp-group-remove" | "sharp-groups" | "sharp-groups-2" | "sharp-groups-3" | "sharp-handshake" | "sharp-health-and-safety" | "sharp-heart-broken" | "sharp-hiking" | "sharp-history-edu" | "sharp-hive" | "sharp-ice-skating" | "sharp-interests" | "sharp-ios-share" | "sharp-kayaking" | "sharp-king-bed" | "sharp-kitesurfing" | "sharp-landslide" | "sharp-leave-bags-at-home" | "sharp-location-city" | "sharp-luggage" | "sharp-male" | "sharp-man" | "sharp-man-2" | "sharp-man-3" | "sharp-man-4" | "sharp-masks" | "sharp-military-tech" | "sharp-mood" | "sharp-mood-bad" | "sharp-nights-stay" | "sharp-no-adult-content" | "sharp-no-luggage" | "sharp-nordic-walking" | "sharp-notification-add" | "sharp-notifications" | "sharp-notifications-active" | "sharp-notifications-none" | "sharp-notifications-off" | "sharp-notifications-paused" | "sharp-outdoor-grill" | "sharp-pages" | "sharp-paragliding" | "sharp-party-mode" | "sharp-paypal" | "sharp-people" | "sharp-people-alt" | "sharp-people-outline" | "sharp-person" | "sharp-person-2" | "sharp-person-3" | "sharp-person-4" | "sharp-person-add" | "sharp-person-add-alt" | "sharp-person-add-alt-1" | "sharp-person-off" | "sharp-person-outline" | "sharp-person-remove" | "sharp-person-remove-alt-1" | "sharp-personal-injury" | "sharp-piano" | "sharp-piano-off" | "sharp-pix" | "sharp-plus-one" | "sharp-poll" | "sharp-precision-manufacturing" | "sharp-psychology" | "sharp-psychology-alt" | "sharp-public" | "sharp-public-off" | "sharp-quora" | "sharp-real-estate-agent" | "sharp-recommend" | "sharp-recycling" | "sharp-reddit" | "sharp-reduce-capacity" | "sharp-remove-moderator" | "sharp-roller-skating" | "sharp-safety-divider" | "sharp-sanitizer" | "sharp-scale" | "sharp-school" | "sharp-science" | "sharp-scoreboard" | "sharp-scuba-diving" | "sharp-self-improvement" | "sharp-sentiment-dissatisfied" | "sharp-sentiment-neutral" | "sharp-sentiment-satisfied" | "sharp-sentiment-slightly-dissatisfied" | "sharp-sentiment-very-dissatisfied" | "sharp-sentiment-very-satisfied" | "sharp-severe-cold" | "sharp-share" | "sharp-shopify" | "sharp-sick" | "sharp-sign-language" | "sharp-single-bed" | "sharp-skateboarding" | "sharp-sledding" | "sharp-snapchat" | "sharp-snowboarding" | "sharp-snowshoeing" | "sharp-social-distance" | "sharp-south-america" | "sharp-sports" | "sharp-sports-baseball" | "sharp-sports-basketball" | "sharp-sports-cricket" | "sharp-sports-esports" | "sharp-sports-football" | "sharp-sports-golf" | "sharp-sports-gymnastics" | "sharp-sports-handball" | "sharp-sports-hockey" | "sharp-sports-kabaddi" | "sharp-sports-martial-arts" | "sharp-sports-mma" | "sharp-sports-motorsports" | "sharp-sports-rugby" | "sharp-sports-soccer" | "sharp-sports-tennis" | "sharp-sports-volleyball" | "sharp-surfing" | "sharp-switch-account" | "sharp-telegram" | "sharp-thumb-down-alt" | "sharp-thumb-up-alt" | "sharp-thunderstorm" | "sharp-tiktok" | "sharp-tornado" | "sharp-transgender" | "sharp-travel-explore" | "sharp-tsunami" | "sharp-vaccines" | "sharp-volcano" | "sharp-wallet" | "sharp-water-drop" | "sharp-waving-hand" | "sharp-wechat" | "sharp-whatsapp" | "sharp-whatshot" | "sharp-woman" | "sharp-woman-2" | "sharp-woo-commerce" | "sharp-wordpress" | "sharp-workspace-premium" | "twotone-18-up-rating" | "twotone-6-ft-apart" | "twotone-add-moderator" | "twotone-add-reaction" | "twotone-adobe" | "twotone-apple" | "twotone-architecture" | "twotone-assist-walker" | "twotone-back-hand" | "twotone-blind" | "twotone-boy" | "twotone-cake" | "twotone-catching-pokemon" | "twotone-clean-hands" | "twotone-co2" | "twotone-compost" | "twotone-connect-without-contact" | "twotone-construction" | "twotone-cookie" | "twotone-coronavirus" | "twotone-cruelty-free" | "twotone-cyclone" | "twotone-deck" | "twotone-discord" | "twotone-diversity-1" | "twotone-diversity-2" | "twotone-diversity-3" | "twotone-domain" | "twotone-domain-add" | "twotone-downhill-skiing" | "twotone-edit-notifications" | "twotone-elderly" | "twotone-elderly-woman" | "twotone-emoji-emotions" | "twotone-emoji-events" | "twotone-emoji-flags" | "twotone-emoji-food-beverage" | "twotone-emoji-nature" | "twotone-emoji-objects" | "twotone-emoji-people" | "twotone-emoji-symbols" | "twotone-emoji-transportation" | "twotone-engineering" | "twotone-face-2" | "twotone-face-3" | "twotone-face-4" | "twotone-face-5" | "twotone-face-6" | "twotone-facebook" | "twotone-female" | "twotone-fireplace" | "twotone-fitbit" | "twotone-flood" | "twotone-follow-the-signs" | "twotone-front-hand" | "twotone-girl" | "twotone-group" | "twotone-group-add" | "twotone-group-off" | "twotone-group-remove" | "twotone-groups" | "twotone-groups-2" | "twotone-groups-3" | "twotone-handshake" | "twotone-health-and-safety" | "twotone-heart-broken" | "twotone-hiking" | "twotone-history-edu" | "twotone-hive" | "twotone-ice-skating" | "twotone-interests" | "twotone-ios-share" | "twotone-kayaking" | "twotone-king-bed" | "twotone-kitesurfing" | "twotone-landslide" | "twotone-leave-bags-at-home" | "twotone-location-city" | "twotone-luggage" | "twotone-male" | "twotone-man" | "twotone-man-2" | "twotone-man-3" | "twotone-man-4" | "twotone-masks" | "twotone-military-tech" | "twotone-mood" | "twotone-mood-bad" | "twotone-nights-stay" | "twotone-no-adult-content" | "twotone-no-luggage" | "twotone-nordic-walking" | "twotone-notification-add" | "twotone-notifications" | "twotone-notifications-active" | "twotone-notifications-none" | "twotone-notifications-off" | "twotone-notifications-paused" | "twotone-outdoor-grill" | "twotone-pages" | "twotone-paragliding" | "twotone-party-mode" | "twotone-paypal" | "twotone-people" | "twotone-people-alt" | "twotone-people-outline" | "twotone-person" | "twotone-person-2" | "twotone-person-3" | "twotone-person-4" | "twotone-person-add" | "twotone-person-add-alt" | "twotone-person-add-alt-1" | "twotone-person-off" | "twotone-person-outline" | "twotone-person-remove" | "twotone-person-remove-alt-1" | "twotone-personal-injury" | "twotone-piano" | "twotone-piano-off" | "twotone-pix" | "twotone-plus-one" | "twotone-poll" | "twotone-precision-manufacturing" | "twotone-psychology" | "twotone-psychology-alt" | "twotone-public" | "twotone-public-off" | "twotone-quora" | "twotone-real-estate-agent" | "twotone-recommend" | "twotone-recycling" | "twotone-reddit" | "twotone-reduce-capacity" | "twotone-remove-moderator" | "twotone-roller-skating" | "twotone-safety-divider" | "twotone-sanitizer" | "twotone-scale" | "twotone-school" | "twotone-science" | "twotone-scoreboard" | "twotone-scuba-diving" | "twotone-self-improvement" | "twotone-sentiment-dissatisfied" | "twotone-sentiment-neutral" | "twotone-sentiment-satisfied" | "twotone-sentiment-slightly-dissatisfied" | "twotone-sentiment-very-dissatisfied" | "twotone-sentiment-very-satisfied" | "twotone-severe-cold" | "twotone-share" | "twotone-shopify" | "twotone-sick" | "twotone-sign-language" | "twotone-single-bed" | "twotone-skateboarding" | "twotone-sledding" | "twotone-snapchat" | "twotone-snowboarding" | "twotone-snowshoeing" | "twotone-social-distance" | "twotone-south-america" | "twotone-sports" | "twotone-sports-baseball" | "twotone-sports-basketball" | "twotone-sports-cricket" | "twotone-sports-esports" | "twotone-sports-football" | "twotone-sports-golf" | "twotone-sports-gymnastics" | "twotone-sports-handball" | "twotone-sports-hockey" | "twotone-sports-kabaddi" | "twotone-sports-martial-arts" | "twotone-sports-mma" | "twotone-sports-motorsports" | "twotone-sports-rugby" | "twotone-sports-soccer" | "twotone-sports-tennis" | "twotone-sports-volleyball" | "twotone-surfing" | "twotone-switch-account" | "twotone-telegram" | "twotone-thumb-down-alt" | "twotone-thumb-up-alt" | "twotone-thunderstorm" | "twotone-tiktok" | "twotone-tornado" | "twotone-transgender" | "twotone-travel-explore" | "twotone-tsunami" | "twotone-vaccines" | "twotone-volcano" | "twotone-wallet" | "twotone-water-drop" | "twotone-waving-hand" | "twotone-wechat" | "twotone-whatsapp" | "twotone-whatshot" | "twotone-woman" | "twotone-woman-2" | "twotone-woo-commerce" | "twotone-wordpress" | "twotone-workspace-premium" | "baseline-check-box" | "baseline-check-box-outline-blank" | "baseline-indeterminate-check-box" | "baseline-radio-button-checked" | "baseline-radio-button-unchecked" | "baseline-star" | "baseline-star-border" | "baseline-star-border-purple500" | "baseline-star-half" | "baseline-star-outline" | "baseline-star-purple500" | "baseline-toggle-off" | "baseline-toggle-on" | "outline-check-box" | "outline-check-box-outline-blank" | "outline-indeterminate-check-box" | "outline-radio-button-checked" | "outline-radio-button-unchecked" | "outline-star" | "outline-star-border" | "outline-star-border-purple500" | "outline-star-half" | "outline-star-outline" | "outline-star-purple500" | "outline-toggle-off" | "outline-toggle-on" | "round-check-box" | "round-check-box-outline-blank" | "round-indeterminate-check-box" | "round-radio-button-checked" | "round-radio-button-unchecked" | "round-star-border" | "round-star-border-purple500" | "round-star-half" | "round-star-outline" | "round-star-purple500" | "round-toggle-off" | "round-toggle-on" | "sharp-check-box" | "sharp-check-box-outline-blank" | "sharp-indeterminate-check-box" | "sharp-radio-button-checked" | "sharp-radio-button-unchecked" | "sharp-star" | "sharp-star-border" | "sharp-star-border-purple500" | "sharp-star-half" | "sharp-star-outline" | "sharp-star-purple500" | "sharp-toggle-off" | "sharp-toggle-on" | "twotone-check-box" | "twotone-check-box-outline-blank" | "twotone-indeterminate-check-box" | "twotone-radio-button-checked" | "twotone-radio-button-unchecked" | "twotone-star" | "twotone-star-border" | "twotone-star-border-purple500" | "twotone-star-half" | "twotone-star-outline" | "twotone-star-purple500" | "twotone-toggle-off" | "twotone-toggle-on">): import("react").JSX.Element;
|
|
10966
|
+
({ 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<"baseline-density-large" | "baseline-density-medium" | "baseline-density-small" | "round-photo" | "round-sync" | "round-brush" | "round-shield" | "round-star" | "baseline-123" | "baseline-3d-rotation" | "baseline-abc" | "baseline-accessibility" | "baseline-accessibility-new" | "baseline-accessible" | "baseline-accessible-forward" | "baseline-account-balance" | "baseline-account-balance-wallet" | "baseline-account-box" | "baseline-account-circle" | "baseline-add-card" | "baseline-add-home" | "baseline-add-shopping-cart" | "baseline-add-task" | "baseline-add-to-drive" | "baseline-addchart" | "baseline-admin-panel-settings" | "baseline-ads-click" | "baseline-alarm" | "baseline-alarm-add" | "baseline-alarm-off" | "baseline-alarm-on" | "baseline-all-inbox" | "baseline-all-out" | "baseline-analytics" | "baseline-anchor" | "baseline-android" | "baseline-announcement" | "baseline-api" | "baseline-app-blocking" | "baseline-app-shortcut" | "baseline-arrow-circle-down" | "baseline-arrow-circle-left" | "baseline-arrow-circle-right" | "baseline-arrow-circle-up" | "baseline-arrow-outward" | "baseline-arrow-right-alt" | "baseline-article" | "baseline-aspect-ratio" | "baseline-assessment" | "baseline-assignment" | "baseline-assignment-ind" | "baseline-assignment-late" | "baseline-assignment-return" | "baseline-assignment-returned" | "baseline-assignment-turned-in" | "baseline-assured-workload" | "baseline-autorenew" | "baseline-backup" | "baseline-backup-table" | "baseline-balance" | "baseline-batch-prediction" | "baseline-book" | "baseline-book-online" | "baseline-bookmark" | "baseline-bookmark-add" | "baseline-bookmark-added" | "baseline-bookmark-border" | "baseline-bookmark-remove" | "baseline-bookmarks" | "baseline-browse-gallery" | "baseline-bug-report" | "baseline-build" | "baseline-build-circle" | "baseline-cached" | "baseline-calendar-month" | "baseline-calendar-today" | "baseline-calendar-view-day" | "baseline-calendar-view-month" | "baseline-calendar-view-week" | "baseline-camera-enhance" | "baseline-cancel-schedule-send" | "baseline-card-giftcard" | "baseline-card-membership" | "baseline-card-travel" | "baseline-change-history" | "baseline-check-circle" | "baseline-check-circle-outline" | "baseline-chrome-reader-mode" | "baseline-circle-notifications" | "baseline-class" | "baseline-close-fullscreen" | "baseline-code" | "baseline-code-off" | "baseline-comment-bank" | "baseline-commit" | "baseline-commute" | "baseline-compare-arrows" | "baseline-compress" | "baseline-contact-page" | "baseline-contact-support" | "baseline-contactless" | "baseline-copyright" | "baseline-credit-card" | "baseline-credit-card-off" | "baseline-css" | "baseline-currency-exchange" | "baseline-dangerous" | "baseline-dashboard" | "baseline-dashboard-customize" | "baseline-data-exploration" | "baseline-data-thresholding" | "baseline-date-range" | "baseline-delete" | "baseline-delete-forever" | "baseline-delete-outline" | "baseline-description" | "baseline-disabled-by-default" | "baseline-disabled-visible" | "baseline-display-settings" | "baseline-dns" | "baseline-done" | "baseline-done-all" | "baseline-done-outline" | "baseline-donut-large" | "baseline-donut-small" | "baseline-drag-indicator" | "baseline-dynamic-form" | "baseline-eco" | "baseline-edit-calendar" | "baseline-edit-off" | "baseline-eject" | "baseline-euro-symbol" | "baseline-event" | "baseline-event-repeat" | "baseline-event-seat" | "baseline-exit-to-app" | "baseline-expand" | "baseline-explore" | "baseline-explore-off" | "baseline-extension" | "baseline-extension-off" | "baseline-face" | "baseline-fact-check" | "baseline-favorite" | "baseline-favorite-border" | "baseline-fax" | "baseline-feedback" | "baseline-file-present" | "baseline-filter-alt" | "baseline-filter-alt-off" | "baseline-find-in-page" | "baseline-find-replace" | "baseline-fingerprint" | "baseline-fit-screen" | "baseline-flaky" | "baseline-flight-land" | "baseline-flight-takeoff" | "baseline-flip-to-back" | "baseline-flip-to-front" | "baseline-flutter-dash" | "baseline-free-cancellation" | "baseline-g-translate" | "baseline-gavel" | "baseline-generating-tokens" | "baseline-get-app" | "baseline-gif" | "baseline-gif-box" | "baseline-grade" | "baseline-grading" | "baseline-group-work" | "baseline-help" | "baseline-help-center" | "baseline-help-outline" | "baseline-hide-source" | "baseline-highlight-alt" | "baseline-highlight-off" | "baseline-history" | "baseline-history-toggle-off" | "baseline-hls" | "baseline-hls-off" | "baseline-home" | "baseline-horizontal-split" | "baseline-hotel-class" | "baseline-hourglass-disabled" | "baseline-hourglass-empty" | "baseline-hourglass-full" | "baseline-html" | "baseline-http" | "baseline-https" | "baseline-important-devices" | "baseline-info" | "baseline-input" | "baseline-install-desktop" | "baseline-install-mobile" | "baseline-integration-instructions" | "baseline-invert-colors" | "baseline-javascript" | "baseline-join-full" | "baseline-join-inner" | "baseline-join-left" | "baseline-join-right" | "baseline-label" | "baseline-label-important" | "baseline-label-off" | "baseline-language" | "baseline-launch" | "baseline-leaderboard" | "baseline-lightbulb" | "baseline-lightbulb-circle" | "baseline-line-style" | "baseline-line-weight" | "baseline-list" | "baseline-lock" | "baseline-lock-clock" | "baseline-lock-open" | "baseline-lock-person" | "baseline-lock-reset" | "baseline-log-in" | "baseline-log-out" | "baseline-login" | "baseline-logout" | "baseline-loyalty" | "baseline-manage-accounts" | "baseline-manage-history" | "baseline-mark-as-unread" | "baseline-markunread-mailbox" | "baseline-maximize" | "baseline-mediation" | "baseline-minimize" | "baseline-model-training" | "baseline-motorcycle" | "baseline-network-ping" | "baseline-new-label" | "baseline-next-plan" | "baseline-nightlight-round" | "baseline-no-accounts" | "baseline-noise-aware" | "baseline-noise-control-off" | "baseline-not-accessible" | "baseline-not-started" | "baseline-note-add" | "baseline-offline-bolt" | "baseline-offline-pin" | "baseline-on-device-training" | "baseline-online-prediction" | "baseline-opacity" | "baseline-open-in-browser" | "baseline-open-in-full" | "baseline-open-in-new" | "baseline-open-in-new-off" | "baseline-open-with" | "baseline-outbond" | "baseline-outbound" | "baseline-outbox" | "baseline-outlet" | "baseline-output" | "baseline-pageview" | "baseline-paid" | "baseline-pan-tool" | "baseline-pan-tool-alt" | "baseline-payment" | "baseline-pending" | "baseline-pending-actions" | "baseline-percent" | "baseline-perm-camera-mic" | "baseline-perm-contact-calendar" | "baseline-perm-data-setting" | "baseline-perm-device-information" | "baseline-perm-identity" | "baseline-perm-media" | "baseline-perm-phone-msg" | "baseline-perm-scan-wifi" | "baseline-pets" | "baseline-php" | "baseline-picture-in-picture" | "baseline-picture-in-picture-alt" | "baseline-pin-end" | "baseline-pin-invoke" | "baseline-pinch" | "baseline-plagiarism" | "baseline-play-for-work" | "baseline-polymer" | "baseline-power-settings-new" | "baseline-pregnant-woman" | "baseline-preview" | "baseline-print" | "baseline-privacy-tip" | "baseline-private-connectivity" | "baseline-production-quantity-limits" | "baseline-published-with-changes" | "baseline-query-builder" | "baseline-question-answer" | "baseline-question-mark" | "baseline-quickreply" | "baseline-receipt" | "baseline-record-voice-over" | "baseline-redeem" | "baseline-remove-done" | "baseline-remove-shopping-cart" | "baseline-reorder" | "baseline-repartition" | "baseline-report-problem" | "baseline-request-page" | "baseline-restore" | "baseline-restore-from-trash" | "baseline-restore-page" | "baseline-rocket" | "baseline-rocket-launch" | "baseline-room" | "baseline-rounded-corner" | "baseline-rowing" | "baseline-rule" | "baseline-satellite-alt" | "baseline-saved-search" | "baseline-savings" | "baseline-schedule" | "baseline-schedule-send" | "baseline-search" | "baseline-search-off" | "baseline-segment" | "baseline-send-and-archive" | "baseline-sensors" | "baseline-sensors-off" | "baseline-settings" | "baseline-settings-accessibility" | "baseline-settings-applications" | "baseline-settings-backup-restore" | "baseline-settings-bluetooth" | "baseline-settings-brightness" | "baseline-settings-cell" | "baseline-settings-ethernet" | "baseline-settings-input-antenna" | "baseline-settings-input-component" | "baseline-settings-input-composite" | "baseline-settings-input-hdmi" | "baseline-settings-input-svideo" | "baseline-settings-overscan" | "baseline-settings-phone" | "baseline-settings-power" | "baseline-settings-remote" | "baseline-settings-voice" | "baseline-shop" | "baseline-shop-2" | "baseline-shop-two" | "baseline-shopping-bag" | "baseline-shopping-basket" | "baseline-shopping-cart" | "baseline-shopping-cart-checkout" | "baseline-smart-button" | "baseline-source" | "baseline-space-dashboard" | "baseline-spatial-audio" | "baseline-spatial-audio-off" | "baseline-spatial-tracking" | "baseline-speaker-notes" | "baseline-speaker-notes-off" | "baseline-spellcheck" | "baseline-star-rate" | "baseline-stars" | "baseline-sticky-note-2" | "baseline-store" | "baseline-subject" | "baseline-subtitles-off" | "baseline-supervised-user-circle" | "baseline-supervisor-account" | "baseline-support" | "baseline-swap-horiz" | "baseline-swap-horizontal-circle" | "baseline-swap-vert" | "baseline-swap-vertical-circle" | "baseline-swipe" | "baseline-swipe-down" | "baseline-swipe-down-alt" | "baseline-swipe-left" | "baseline-swipe-left-alt" | "baseline-swipe-right" | "baseline-swipe-right-alt" | "baseline-swipe-up" | "baseline-swipe-up-alt" | "baseline-swipe-vertical" | "baseline-switch-access-shortcut" | "baseline-switch-access-shortcut-add" | "baseline-sync-alt" | "baseline-system-update-alt" | "baseline-tab" | "baseline-tab-unselected" | "baseline-table-view" | "baseline-task-alt" | "baseline-terminal" | "baseline-text-rotate-up" | "baseline-text-rotate-vertical" | "baseline-text-rotation-angledown" | "baseline-text-rotation-angleup" | "baseline-text-rotation-down" | "baseline-text-rotation-none" | "baseline-theaters" | "baseline-thumb-down" | "baseline-thumb-down-off-alt" | "baseline-thumb-up" | "baseline-thumb-up-off-alt" | "baseline-thumbs-up-down" | "baseline-timeline" | "baseline-tips-and-updates" | "baseline-toc" | "baseline-today" | "baseline-token" | "baseline-toll" | "baseline-touch-app" | "baseline-tour" | "baseline-track-changes" | "baseline-transcribe" | "baseline-translate" | "baseline-trending-down" | "baseline-trending-flat" | "baseline-trending-up" | "baseline-troubleshoot" | "baseline-try" | "baseline-turned-in" | "baseline-turned-in-not" | "baseline-unfold-less-double" | "baseline-unfold-more-double" | "baseline-unpublished" | "baseline-update" | "baseline-update-disabled" | "baseline-upgrade" | "baseline-verified" | "baseline-verified-user" | "baseline-vertical-split" | "baseline-view-agenda" | "baseline-view-array" | "baseline-view-carousel" | "baseline-view-column" | "baseline-view-comfy-alt" | "baseline-view-compact-alt" | "baseline-view-cozy" | "baseline-view-day" | "baseline-view-headline" | "baseline-view-in-ar" | "baseline-view-kanban" | "baseline-view-list" | "baseline-view-module" | "baseline-view-quilt" | "baseline-view-sidebar" | "baseline-view-stream" | "baseline-view-timeline" | "baseline-view-week" | "baseline-visibility" | "baseline-visibility-off" | "baseline-voice-over-off" | "baseline-watch-later" | "baseline-webhook" | "baseline-width-full" | "baseline-width-normal" | "baseline-width-wide" | "baseline-wifi-protected-setup" | "baseline-work" | "baseline-work-history" | "baseline-work-off" | "baseline-work-outline" | "baseline-wysiwyg" | "baseline-youtube-searched-for" | "baseline-zoom-in" | "baseline-zoom-out" | "outline-123" | "outline-3d-rotation" | "outline-abc" | "outline-accessibility" | "outline-accessibility-new" | "outline-accessible" | "outline-accessible-forward" | "outline-account-balance" | "outline-account-balance-wallet" | "outline-account-box" | "outline-account-circle" | "outline-add-card" | "outline-add-home" | "outline-add-shopping-cart" | "outline-add-task" | "outline-add-to-drive" | "outline-addchart" | "outline-admin-panel-settings" | "outline-ads-click" | "outline-alarm" | "outline-alarm-add" | "outline-alarm-off" | "outline-alarm-on" | "outline-all-inbox" | "outline-all-out" | "outline-analytics" | "outline-anchor" | "outline-android" | "outline-announcement" | "outline-api" | "outline-app-blocking" | "outline-app-shortcut" | "outline-arrow-circle-down" | "outline-arrow-circle-left" | "outline-arrow-circle-right" | "outline-arrow-circle-up" | "outline-arrow-outward" | "outline-arrow-right-alt" | "outline-article" | "outline-aspect-ratio" | "outline-assessment" | "outline-assignment" | "outline-assignment-ind" | "outline-assignment-late" | "outline-assignment-return" | "outline-assignment-returned" | "outline-assignment-turned-in" | "outline-assured-workload" | "outline-autorenew" | "outline-backup" | "outline-backup-table" | "outline-balance" | "outline-batch-prediction" | "outline-book" | "outline-book-online" | "outline-bookmark" | "outline-bookmark-add" | "outline-bookmark-added" | "outline-bookmark-border" | "outline-bookmark-remove" | "outline-bookmarks" | "outline-browse-gallery" | "outline-bug-report" | "outline-build" | "outline-build-circle" | "outline-cached" | "outline-calendar-month" | "outline-calendar-today" | "outline-calendar-view-day" | "outline-calendar-view-month" | "outline-calendar-view-week" | "outline-camera-enhance" | "outline-cancel-schedule-send" | "outline-card-giftcard" | "outline-card-membership" | "outline-card-travel" | "outline-change-history" | "outline-check-circle" | "outline-check-circle-outline" | "outline-chrome-reader-mode" | "outline-circle-notifications" | "outline-class" | "outline-close-fullscreen" | "outline-code" | "outline-code-off" | "outline-comment-bank" | "outline-commit" | "outline-commute" | "outline-compare-arrows" | "outline-compress" | "outline-contact-page" | "outline-contact-support" | "outline-contactless" | "outline-copyright" | "outline-credit-card" | "outline-credit-card-off" | "outline-css" | "outline-currency-exchange" | "outline-dangerous" | "outline-dashboard" | "outline-dashboard-customize" | "outline-data-exploration" | "outline-data-thresholding" | "outline-date-range" | "outline-delete" | "outline-delete-forever" | "outline-delete-outline" | "outline-density-large" | "outline-density-medium" | "outline-density-small" | "outline-description" | "outline-disabled-by-default" | "outline-disabled-visible" | "outline-display-settings" | "outline-dns" | "outline-done" | "outline-done-all" | "outline-done-outline" | "outline-donut-large" | "outline-donut-small" | "outline-drag-indicator" | "outline-dynamic-form" | "outline-eco" | "outline-edit-calendar" | "outline-edit-off" | "outline-eject" | "outline-euro-symbol" | "outline-event" | "outline-event-repeat" | "outline-event-seat" | "outline-exit-to-app" | "outline-expand" | "outline-explore" | "outline-explore-off" | "outline-extension" | "outline-extension-off" | "outline-face" | "outline-fact-check" | "outline-favorite" | "outline-favorite-border" | "outline-fax" | "outline-feedback" | "outline-file-present" | "outline-filter-alt" | "outline-filter-alt-off" | "outline-find-in-page" | "outline-find-replace" | "outline-fingerprint" | "outline-fit-screen" | "outline-flaky" | "outline-flight-land" | "outline-flight-takeoff" | "outline-flip-to-back" | "outline-flip-to-front" | "outline-flutter-dash" | "outline-free-cancellation" | "outline-g-translate" | "outline-gavel" | "outline-generating-tokens" | "outline-get-app" | "outline-gif" | "outline-gif-box" | "outline-grade" | "outline-grading" | "outline-group-work" | "outline-help" | "outline-help-center" | "outline-help-outline" | "outline-hide-source" | "outline-highlight-alt" | "outline-highlight-off" | "outline-history" | "outline-history-toggle-off" | "outline-hls" | "outline-hls-off" | "outline-home" | "outline-horizontal-split" | "outline-hotel-class" | "outline-hourglass-disabled" | "outline-hourglass-empty" | "outline-hourglass-full" | "outline-html" | "outline-http" | "outline-https" | "outline-important-devices" | "outline-info" | "outline-input" | "outline-install-desktop" | "outline-install-mobile" | "outline-integration-instructions" | "outline-invert-colors" | "outline-javascript" | "outline-join-full" | "outline-join-inner" | "outline-join-left" | "outline-join-right" | "outline-label" | "outline-label-important" | "outline-label-off" | "outline-language" | "outline-launch" | "outline-leaderboard" | "outline-lightbulb" | "outline-lightbulb-circle" | "outline-line-style" | "outline-line-weight" | "outline-list" | "outline-lock" | "outline-lock-clock" | "outline-lock-open" | "outline-lock-person" | "outline-lock-reset" | "outline-log-in" | "outline-log-out" | "outline-login" | "outline-logout" | "outline-loyalty" | "outline-manage-accounts" | "outline-manage-history" | "outline-mark-as-unread" | "outline-markunread-mailbox" | "outline-maximize" | "outline-mediation" | "outline-minimize" | "outline-model-training" | "outline-motorcycle" | "outline-network-ping" | "outline-new-label" | "outline-next-plan" | "outline-nightlight-round" | "outline-no-accounts" | "outline-noise-aware" | "outline-noise-control-off" | "outline-not-accessible" | "outline-not-started" | "outline-note-add" | "outline-offline-bolt" | "outline-offline-pin" | "outline-on-device-training" | "outline-online-prediction" | "outline-opacity" | "outline-open-in-browser" | "outline-open-in-full" | "outline-open-in-new" | "outline-open-in-new-off" | "outline-open-with" | "outline-outbond" | "outline-outbound" | "outline-outbox" | "outline-outlet" | "outline-output" | "outline-pageview" | "outline-paid" | "outline-pan-tool" | "outline-pan-tool-alt" | "outline-payment" | "outline-pending" | "outline-pending-actions" | "outline-percent" | "outline-perm-camera-mic" | "outline-perm-contact-calendar" | "outline-perm-data-setting" | "outline-perm-device-information" | "outline-perm-identity" | "outline-perm-media" | "outline-perm-phone-msg" | "outline-perm-scan-wifi" | "outline-pets" | "outline-php" | "outline-picture-in-picture" | "outline-picture-in-picture-alt" | "outline-pin-end" | "outline-pin-invoke" | "outline-pinch" | "outline-plagiarism" | "outline-play-for-work" | "outline-polymer" | "outline-power-settings-new" | "outline-pregnant-woman" | "outline-preview" | "outline-print" | "outline-privacy-tip" | "outline-private-connectivity" | "outline-production-quantity-limits" | "outline-published-with-changes" | "outline-query-builder" | "outline-question-answer" | "outline-question-mark" | "outline-quickreply" | "outline-receipt" | "outline-record-voice-over" | "outline-redeem" | "outline-remove-done" | "outline-remove-shopping-cart" | "outline-reorder" | "outline-repartition" | "outline-report-problem" | "outline-request-page" | "outline-restore" | "outline-restore-from-trash" | "outline-restore-page" | "outline-rocket" | "outline-rocket-launch" | "outline-room" | "outline-rounded-corner" | "outline-rowing" | "outline-rule" | "outline-satellite-alt" | "outline-saved-search" | "outline-savings" | "outline-schedule" | "outline-schedule-send" | "outline-search" | "outline-search-off" | "outline-segment" | "outline-send-and-archive" | "outline-sensors" | "outline-sensors-off" | "outline-settings" | "outline-settings-accessibility" | "outline-settings-applications" | "outline-settings-backup-restore" | "outline-settings-bluetooth" | "outline-settings-brightness" | "outline-settings-cell" | "outline-settings-ethernet" | "outline-settings-input-antenna" | "outline-settings-input-component" | "outline-settings-input-composite" | "outline-settings-input-hdmi" | "outline-settings-input-svideo" | "outline-settings-overscan" | "outline-settings-phone" | "outline-settings-power" | "outline-settings-remote" | "outline-settings-voice" | "outline-shop" | "outline-shop-2" | "outline-shop-two" | "outline-shopping-bag" | "outline-shopping-basket" | "outline-shopping-cart" | "outline-shopping-cart-checkout" | "outline-smart-button" | "outline-source" | "outline-space-dashboard" | "outline-spatial-audio" | "outline-spatial-audio-off" | "outline-spatial-tracking" | "outline-speaker-notes" | "outline-speaker-notes-off" | "outline-spellcheck" | "outline-star-rate" | "outline-stars" | "outline-sticky-note-2" | "outline-store" | "outline-subject" | "outline-subtitles-off" | "outline-supervised-user-circle" | "outline-supervisor-account" | "outline-support" | "outline-swap-horiz" | "outline-swap-horizontal-circle" | "outline-swap-vert" | "outline-swap-vertical-circle" | "outline-swipe" | "outline-swipe-down" | "outline-swipe-down-alt" | "outline-swipe-left" | "outline-swipe-left-alt" | "outline-swipe-right" | "outline-swipe-right-alt" | "outline-swipe-up" | "outline-swipe-up-alt" | "outline-swipe-vertical" | "outline-switch-access-shortcut" | "outline-switch-access-shortcut-add" | "outline-sync-alt" | "outline-system-update-alt" | "outline-tab" | "outline-tab-unselected" | "outline-table-view" | "outline-task-alt" | "outline-terminal" | "outline-text-rotate-up" | "outline-text-rotate-vertical" | "outline-text-rotation-angledown" | "outline-text-rotation-angleup" | "outline-text-rotation-down" | "outline-text-rotation-none" | "outline-theaters" | "outline-thumb-down" | "outline-thumb-down-off-alt" | "outline-thumb-up" | "outline-thumb-up-off-alt" | "outline-thumbs-up-down" | "outline-timeline" | "outline-tips-and-updates" | "outline-toc" | "outline-today" | "outline-token" | "outline-toll" | "outline-touch-app" | "outline-tour" | "outline-track-changes" | "outline-transcribe" | "outline-translate" | "outline-trending-down" | "outline-trending-flat" | "outline-trending-up" | "outline-troubleshoot" | "outline-try" | "outline-turned-in" | "outline-turned-in-not" | "outline-unfold-less-double" | "outline-unfold-more-double" | "outline-unpublished" | "outline-update" | "outline-update-disabled" | "outline-upgrade" | "outline-verified" | "outline-verified-user" | "outline-vertical-split" | "outline-view-agenda" | "outline-view-array" | "outline-view-carousel" | "outline-view-column" | "outline-view-comfy-alt" | "outline-view-compact-alt" | "outline-view-cozy" | "outline-view-day" | "outline-view-headline" | "outline-view-in-ar" | "outline-view-kanban" | "outline-view-list" | "outline-view-module" | "outline-view-quilt" | "outline-view-sidebar" | "outline-view-stream" | "outline-view-timeline" | "outline-view-week" | "outline-visibility" | "outline-visibility-off" | "outline-voice-over-off" | "outline-watch-later" | "outline-webhook" | "outline-width-full" | "outline-width-normal" | "outline-width-wide" | "outline-wifi-protected-setup" | "outline-work" | "outline-work-history" | "outline-work-off" | "outline-work-outline" | "outline-wysiwyg" | "outline-youtube-searched-for" | "outline-zoom-in" | "outline-zoom-out" | "round-123" | "round-3d-rotation" | "round-abc" | "round-accessibility" | "round-accessibility-new" | "round-accessible" | "round-accessible-forward" | "round-account-balance" | "round-account-balance-wallet" | "round-account-box" | "round-account-circle" | "round-add-card" | "round-add-home" | "round-add-shopping-cart" | "round-add-task" | "round-add-to-drive" | "round-addchart" | "round-admin-panel-settings" | "round-ads-click" | "round-alarm" | "round-alarm-add" | "round-alarm-off" | "round-alarm-on" | "round-all-inbox" | "round-all-out" | "round-analytics" | "round-anchor" | "round-android" | "round-announcement" | "round-api" | "round-app-blocking" | "round-app-shortcut" | "round-arrow-circle-down" | "round-arrow-circle-left" | "round-arrow-circle-right" | "round-arrow-circle-up" | "round-arrow-outward" | "round-arrow-right-alt" | "round-article" | "round-aspect-ratio" | "round-assessment" | "round-assignment" | "round-assignment-ind" | "round-assignment-late" | "round-assignment-return" | "round-assignment-returned" | "round-assignment-turned-in" | "round-assured-workload" | "round-autorenew" | "round-backup" | "round-backup-table" | "round-balance" | "round-batch-prediction" | "round-book" | "round-book-online" | "round-bookmark" | "round-bookmark-add" | "round-bookmark-added" | "round-bookmark-border" | "round-bookmark-remove" | "round-bookmarks" | "round-browse-gallery" | "round-bug-report" | "round-build" | "round-build-circle" | "round-cached" | "round-calendar-month" | "round-calendar-today" | "round-calendar-view-day" | "round-calendar-view-month" | "round-calendar-view-week" | "round-camera-enhance" | "round-cancel-schedule-send" | "round-card-giftcard" | "round-card-membership" | "round-card-travel" | "round-change-history" | "round-check-circle" | "round-check-circle-outline" | "round-chrome-reader-mode" | "round-circle-notifications" | "round-class" | "round-close-fullscreen" | "round-code" | "round-code-off" | "round-comment-bank" | "round-commit" | "round-commute" | "round-compare-arrows" | "round-compress" | "round-contact-page" | "round-contact-support" | "round-contactless" | "round-copyright" | "round-credit-card" | "round-credit-card-off" | "round-css" | "round-currency-exchange" | "round-dangerous" | "round-dashboard" | "round-dashboard-customize" | "round-data-exploration" | "round-data-thresholding" | "round-date-range" | "round-delete" | "round-delete-forever" | "round-delete-outline" | "round-density-large" | "round-density-medium" | "round-density-small" | "round-description" | "round-disabled-by-default" | "round-disabled-visible" | "round-display-settings" | "round-dns" | "round-done" | "round-done-all" | "round-done-outline" | "round-donut-large" | "round-donut-small" | "round-drag-indicator" | "round-dynamic-form" | "round-eco" | "round-edit-calendar" | "round-edit-off" | "round-eject" | "round-euro-symbol" | "round-event" | "round-event-repeat" | "round-event-seat" | "round-exit-to-app" | "round-expand" | "round-explore" | "round-explore-off" | "round-extension" | "round-extension-off" | "round-face" | "round-fact-check" | "round-favorite" | "round-favorite-border" | "round-fax" | "round-feedback" | "round-file-present" | "round-filter-alt" | "round-filter-alt-off" | "round-find-in-page" | "round-find-replace" | "round-fingerprint" | "round-fit-screen" | "round-flaky" | "round-flight-land" | "round-flight-takeoff" | "round-flip-to-back" | "round-flip-to-front" | "round-flutter-dash" | "round-free-cancellation" | "round-g-translate" | "round-gavel" | "round-generating-tokens" | "round-get-app" | "round-gif" | "round-gif-box" | "round-grade" | "round-grading" | "round-group-work" | "round-help" | "round-help-center" | "round-help-outline" | "round-hide-source" | "round-highlight-alt" | "round-highlight-off" | "round-history" | "round-history-toggle-off" | "round-hls" | "round-hls-off" | "round-home" | "round-horizontal-split" | "round-hotel-class" | "round-hourglass-disabled" | "round-hourglass-empty" | "round-hourglass-full" | "round-html" | "round-http" | "round-https" | "round-important-devices" | "round-info" | "round-input" | "round-install-desktop" | "round-install-mobile" | "round-integration-instructions" | "round-invert-colors" | "round-javascript" | "round-join-full" | "round-join-inner" | "round-join-left" | "round-join-right" | "round-label" | "round-label-important" | "round-label-off" | "round-language" | "round-launch" | "round-leaderboard" | "round-lightbulb" | "round-lightbulb-circle" | "round-line-style" | "round-line-weight" | "round-list" | "round-lock" | "round-lock-clock" | "round-lock-open" | "round-lock-person" | "round-lock-reset" | "round-log-in" | "round-log-out" | "round-login" | "round-logout" | "round-loyalty" | "round-manage-accounts" | "round-manage-history" | "round-mark-as-unread" | "round-markunread-mailbox" | "round-maximize" | "round-mediation" | "round-minimize" | "round-model-training" | "round-motorcycle" | "round-network-ping" | "round-new-label" | "round-next-plan" | "round-nightlight-round" | "round-no-accounts" | "round-noise-aware" | "round-noise-control-off" | "round-not-accessible" | "round-not-started" | "round-note-add" | "round-offline-bolt" | "round-offline-pin" | "round-on-device-training" | "round-online-prediction" | "round-opacity" | "round-open-in-browser" | "round-open-in-full" | "round-open-in-new" | "round-open-in-new-off" | "round-open-with" | "round-outbond" | "round-outbound" | "round-outbox" | "round-outlet" | "round-output" | "round-pageview" | "round-paid" | "round-pan-tool" | "round-pan-tool-alt" | "round-payment" | "round-pending" | "round-pending-actions" | "round-percent" | "round-perm-camera-mic" | "round-perm-contact-calendar" | "round-perm-data-setting" | "round-perm-device-information" | "round-perm-identity" | "round-perm-media" | "round-perm-phone-msg" | "round-perm-scan-wifi" | "round-pets" | "round-php" | "round-picture-in-picture" | "round-picture-in-picture-alt" | "round-pin-end" | "round-pin-invoke" | "round-pinch" | "round-plagiarism" | "round-play-for-work" | "round-polymer" | "round-power-settings-new" | "round-pregnant-woman" | "round-preview" | "round-print" | "round-privacy-tip" | "round-private-connectivity" | "round-production-quantity-limits" | "round-published-with-changes" | "round-query-builder" | "round-question-answer" | "round-question-mark" | "round-quickreply" | "round-receipt" | "round-record-voice-over" | "round-redeem" | "round-remove-done" | "round-remove-shopping-cart" | "round-reorder" | "round-repartition" | "round-report-problem" | "round-request-page" | "round-restore" | "round-restore-from-trash" | "round-restore-page" | "round-rocket" | "round-rocket-launch" | "round-room" | "round-rounded-corner" | "round-rowing" | "round-rule" | "round-satellite-alt" | "round-saved-search" | "round-savings" | "round-schedule" | "round-schedule-send" | "round-search" | "round-search-off" | "round-segment" | "round-send-and-archive" | "round-sensors" | "round-sensors-off" | "round-settings" | "round-settings-accessibility" | "round-settings-applications" | "round-settings-backup-restore" | "round-settings-bluetooth" | "round-settings-brightness" | "round-settings-cell" | "round-settings-ethernet" | "round-settings-input-antenna" | "round-settings-input-component" | "round-settings-input-composite" | "round-settings-input-hdmi" | "round-settings-input-svideo" | "round-settings-overscan" | "round-settings-phone" | "round-settings-power" | "round-settings-remote" | "round-settings-voice" | "round-shop" | "round-shop-2" | "round-shop-two" | "round-shopping-bag" | "round-shopping-basket" | "round-shopping-cart" | "round-shopping-cart-checkout" | "round-smart-button" | "round-source" | "round-space-dashboard" | "round-spatial-audio" | "round-spatial-audio-off" | "round-spatial-tracking" | "round-speaker-notes" | "round-speaker-notes-off" | "round-spellcheck" | "round-star-rate" | "round-stars" | "round-sticky-note-2" | "round-store" | "round-subject" | "round-subtitles-off" | "round-supervised-user-circle" | "round-supervisor-account" | "round-support" | "round-swap-horiz" | "round-swap-horizontal-circle" | "round-swap-vert" | "round-swap-vertical-circle" | "round-swipe" | "round-swipe-down" | "round-swipe-down-alt" | "round-swipe-left" | "round-swipe-left-alt" | "round-swipe-right" | "round-swipe-right-alt" | "round-swipe-up" | "round-swipe-up-alt" | "round-swipe-vertical" | "round-switch-access-shortcut" | "round-switch-access-shortcut-add" | "round-sync-alt" | "round-system-update-alt" | "round-tab" | "round-tab-unselected" | "round-table-view" | "round-task-alt" | "round-terminal" | "round-text-rotate-up" | "round-text-rotate-vertical" | "round-text-rotation-angledown" | "round-text-rotation-angleup" | "round-text-rotation-down" | "round-text-rotation-none" | "round-theaters" | "round-thumb-down" | "round-thumb-down-off-alt" | "round-thumb-up" | "round-thumb-up-off-alt" | "round-thumbs-up-down" | "round-timeline" | "round-tips-and-updates" | "round-toc" | "round-today" | "round-token" | "round-toll" | "round-touch-app" | "round-tour" | "round-track-changes" | "round-transcribe" | "round-translate" | "round-trending-down" | "round-trending-flat" | "round-trending-up" | "round-troubleshoot" | "round-try" | "round-turned-in" | "round-turned-in-not" | "round-unfold-less-double" | "round-unfold-more-double" | "round-unpublished" | "round-update" | "round-update-disabled" | "round-upgrade" | "round-verified" | "round-verified-user" | "round-vertical-split" | "round-view-agenda" | "round-view-array" | "round-view-carousel" | "round-view-column" | "round-view-comfy-alt" | "round-view-compact-alt" | "round-view-cozy" | "round-view-day" | "round-view-headline" | "round-view-in-ar" | "round-view-kanban" | "round-view-list" | "round-view-module" | "round-view-quilt" | "round-view-sidebar" | "round-view-stream" | "round-view-timeline" | "round-view-week" | "round-visibility" | "round-visibility-off" | "round-voice-over-off" | "round-watch-later" | "round-webhook" | "round-width-full" | "round-width-normal" | "round-width-wide" | "round-wifi-protected-setup" | "round-work" | "round-work-history" | "round-work-off" | "round-work-outline" | "round-wysiwyg" | "round-youtube-searched-for" | "round-zoom-in" | "round-zoom-out" | "sharp-123" | "sharp-3d-rotation" | "sharp-abc" | "sharp-accessibility" | "sharp-accessibility-new" | "sharp-accessible" | "sharp-accessible-forward" | "sharp-account-balance" | "sharp-account-balance-wallet" | "sharp-account-box" | "sharp-account-circle" | "sharp-add-card" | "sharp-add-home" | "sharp-add-shopping-cart" | "sharp-add-task" | "sharp-add-to-drive" | "sharp-addchart" | "sharp-admin-panel-settings" | "sharp-ads-click" | "sharp-alarm" | "sharp-alarm-add" | "sharp-alarm-off" | "sharp-alarm-on" | "sharp-all-inbox" | "sharp-all-out" | "sharp-analytics" | "sharp-anchor" | "sharp-android" | "sharp-announcement" | "sharp-api" | "sharp-app-blocking" | "sharp-app-shortcut" | "sharp-arrow-circle-down" | "sharp-arrow-circle-left" | "sharp-arrow-circle-right" | "sharp-arrow-circle-up" | "sharp-arrow-outward" | "sharp-arrow-right-alt" | "sharp-article" | "sharp-aspect-ratio" | "sharp-assessment" | "sharp-assignment" | "sharp-assignment-ind" | "sharp-assignment-late" | "sharp-assignment-return" | "sharp-assignment-returned" | "sharp-assignment-turned-in" | "sharp-assured-workload" | "sharp-autorenew" | "sharp-backup" | "sharp-backup-table" | "sharp-balance" | "sharp-batch-prediction" | "sharp-book" | "sharp-book-online" | "sharp-bookmark" | "sharp-bookmark-add" | "sharp-bookmark-added" | "sharp-bookmark-border" | "sharp-bookmark-remove" | "sharp-bookmarks" | "sharp-browse-gallery" | "sharp-bug-report" | "sharp-build" | "sharp-build-circle" | "sharp-cached" | "sharp-calendar-month" | "sharp-calendar-today" | "sharp-calendar-view-day" | "sharp-calendar-view-month" | "sharp-calendar-view-week" | "sharp-camera-enhance" | "sharp-cancel-schedule-send" | "sharp-card-giftcard" | "sharp-card-membership" | "sharp-card-travel" | "sharp-change-history" | "sharp-check-circle" | "sharp-check-circle-outline" | "sharp-chrome-reader-mode" | "sharp-circle-notifications" | "sharp-class" | "sharp-close-fullscreen" | "sharp-code" | "sharp-code-off" | "sharp-comment-bank" | "sharp-commit" | "sharp-commute" | "sharp-compare-arrows" | "sharp-compress" | "sharp-contact-page" | "sharp-contact-support" | "sharp-contactless" | "sharp-copyright" | "sharp-credit-card" | "sharp-credit-card-off" | "sharp-css" | "sharp-currency-exchange" | "sharp-dangerous" | "sharp-dashboard" | "sharp-dashboard-customize" | "sharp-data-exploration" | "sharp-data-thresholding" | "sharp-date-range" | "sharp-delete" | "sharp-delete-forever" | "sharp-delete-outline" | "sharp-density-large" | "sharp-density-medium" | "sharp-density-small" | "sharp-description" | "sharp-disabled-by-default" | "sharp-disabled-visible" | "sharp-display-settings" | "sharp-dns" | "sharp-done" | "sharp-done-all" | "sharp-done-outline" | "sharp-donut-large" | "sharp-donut-small" | "sharp-drag-indicator" | "sharp-dynamic-form" | "sharp-eco" | "sharp-edit-calendar" | "sharp-edit-off" | "sharp-eject" | "sharp-euro-symbol" | "sharp-event" | "sharp-event-repeat" | "sharp-event-seat" | "sharp-exit-to-app" | "sharp-expand" | "sharp-explore" | "sharp-explore-off" | "sharp-extension" | "sharp-extension-off" | "sharp-face" | "sharp-fact-check" | "sharp-favorite" | "sharp-favorite-border" | "sharp-fax" | "sharp-feedback" | "sharp-file-present" | "sharp-filter-alt" | "sharp-filter-alt-off" | "sharp-find-in-page" | "sharp-find-replace" | "sharp-fingerprint" | "sharp-fit-screen" | "sharp-flaky" | "sharp-flight-land" | "sharp-flight-takeoff" | "sharp-flip-to-back" | "sharp-flip-to-front" | "sharp-flutter-dash" | "sharp-free-cancellation" | "sharp-g-translate" | "sharp-gavel" | "sharp-generating-tokens" | "sharp-get-app" | "sharp-gif" | "sharp-gif-box" | "sharp-grade" | "sharp-grading" | "sharp-group-work" | "sharp-help" | "sharp-help-center" | "sharp-help-outline" | "sharp-hide-source" | "sharp-highlight-alt" | "sharp-highlight-off" | "sharp-history" | "sharp-history-toggle-off" | "sharp-hls" | "sharp-hls-off" | "sharp-home" | "sharp-horizontal-split" | "sharp-hotel-class" | "sharp-hourglass-disabled" | "sharp-hourglass-empty" | "sharp-hourglass-full" | "sharp-html" | "sharp-http" | "sharp-https" | "sharp-important-devices" | "sharp-info" | "sharp-input" | "sharp-install-desktop" | "sharp-install-mobile" | "sharp-integration-instructions" | "sharp-invert-colors" | "sharp-javascript" | "sharp-join-full" | "sharp-join-inner" | "sharp-join-left" | "sharp-join-right" | "sharp-label" | "sharp-label-important" | "sharp-label-off" | "sharp-language" | "sharp-launch" | "sharp-leaderboard" | "sharp-lightbulb" | "sharp-lightbulb-circle" | "sharp-line-style" | "sharp-line-weight" | "sharp-list" | "sharp-lock" | "sharp-lock-clock" | "sharp-lock-open" | "sharp-lock-person" | "sharp-lock-reset" | "sharp-log-in" | "sharp-log-out" | "sharp-login" | "sharp-logout" | "sharp-loyalty" | "sharp-manage-accounts" | "sharp-manage-history" | "sharp-mark-as-unread" | "sharp-markunread-mailbox" | "sharp-maximize" | "sharp-mediation" | "sharp-minimize" | "sharp-model-training" | "sharp-motorcycle" | "sharp-network-ping" | "sharp-new-label" | "sharp-next-plan" | "sharp-nightlight-round" | "sharp-no-accounts" | "sharp-noise-aware" | "sharp-noise-control-off" | "sharp-not-accessible" | "sharp-not-started" | "sharp-note-add" | "sharp-offline-bolt" | "sharp-offline-pin" | "sharp-on-device-training" | "sharp-online-prediction" | "sharp-opacity" | "sharp-open-in-browser" | "sharp-open-in-full" | "sharp-open-in-new" | "sharp-open-in-new-off" | "sharp-open-with" | "sharp-outbond" | "sharp-outbound" | "sharp-outbox" | "sharp-outlet" | "sharp-output" | "sharp-pageview" | "sharp-paid" | "sharp-pan-tool" | "sharp-pan-tool-alt" | "sharp-payment" | "sharp-pending" | "sharp-pending-actions" | "sharp-percent" | "sharp-perm-camera-mic" | "sharp-perm-contact-calendar" | "sharp-perm-data-setting" | "sharp-perm-device-information" | "sharp-perm-identity" | "sharp-perm-media" | "sharp-perm-phone-msg" | "sharp-perm-scan-wifi" | "sharp-pets" | "sharp-php" | "sharp-picture-in-picture" | "sharp-picture-in-picture-alt" | "sharp-pin-end" | "sharp-pin-invoke" | "sharp-pinch" | "sharp-plagiarism" | "sharp-play-for-work" | "sharp-polymer" | "sharp-power-settings-new" | "sharp-pregnant-woman" | "sharp-preview" | "sharp-print" | "sharp-privacy-tip" | "sharp-private-connectivity" | "sharp-production-quantity-limits" | "sharp-published-with-changes" | "sharp-query-builder" | "sharp-question-answer" | "sharp-question-mark" | "sharp-quickreply" | "sharp-receipt" | "sharp-record-voice-over" | "sharp-redeem" | "sharp-remove-done" | "sharp-remove-shopping-cart" | "sharp-reorder" | "sharp-repartition" | "sharp-report-problem" | "sharp-request-page" | "sharp-restore" | "sharp-restore-from-trash" | "sharp-restore-page" | "sharp-rocket" | "sharp-rocket-launch" | "sharp-room" | "sharp-rounded-corner" | "sharp-rowing" | "sharp-rule" | "sharp-satellite-alt" | "sharp-saved-search" | "sharp-savings" | "sharp-schedule" | "sharp-schedule-send" | "sharp-search" | "sharp-search-off" | "sharp-segment" | "sharp-send-and-archive" | "sharp-sensors" | "sharp-sensors-off" | "sharp-settings" | "sharp-settings-accessibility" | "sharp-settings-applications" | "sharp-settings-backup-restore" | "sharp-settings-bluetooth" | "sharp-settings-brightness" | "sharp-settings-cell" | "sharp-settings-ethernet" | "sharp-settings-input-antenna" | "sharp-settings-input-component" | "sharp-settings-input-composite" | "sharp-settings-input-hdmi" | "sharp-settings-input-svideo" | "sharp-settings-overscan" | "sharp-settings-phone" | "sharp-settings-power" | "sharp-settings-remote" | "sharp-settings-voice" | "sharp-shop" | "sharp-shop-2" | "sharp-shop-two" | "sharp-shopping-bag" | "sharp-shopping-basket" | "sharp-shopping-cart" | "sharp-shopping-cart-checkout" | "sharp-smart-button" | "sharp-source" | "sharp-space-dashboard" | "sharp-spatial-audio" | "sharp-spatial-audio-off" | "sharp-spatial-tracking" | "sharp-speaker-notes" | "sharp-speaker-notes-off" | "sharp-spellcheck" | "sharp-star-rate" | "sharp-stars" | "sharp-sticky-note-2" | "sharp-store" | "sharp-subject" | "sharp-subtitles-off" | "sharp-supervised-user-circle" | "sharp-supervisor-account" | "sharp-support" | "sharp-swap-horiz" | "sharp-swap-horizontal-circle" | "sharp-swap-vert" | "sharp-swap-vertical-circle" | "sharp-swipe" | "sharp-swipe-down" | "sharp-swipe-down-alt" | "sharp-swipe-left" | "sharp-swipe-left-alt" | "sharp-swipe-right" | "sharp-swipe-right-alt" | "sharp-swipe-up" | "sharp-swipe-up-alt" | "sharp-swipe-vertical" | "sharp-switch-access-shortcut" | "sharp-switch-access-shortcut-add" | "sharp-sync-alt" | "sharp-system-update-alt" | "sharp-tab" | "sharp-tab-unselected" | "sharp-table-view" | "sharp-task-alt" | "sharp-terminal" | "sharp-text-rotate-up" | "sharp-text-rotate-vertical" | "sharp-text-rotation-angledown" | "sharp-text-rotation-angleup" | "sharp-text-rotation-down" | "sharp-text-rotation-none" | "sharp-theaters" | "sharp-thumb-down" | "sharp-thumb-down-off-alt" | "sharp-thumb-up" | "sharp-thumb-up-off-alt" | "sharp-thumbs-up-down" | "sharp-timeline" | "sharp-tips-and-updates" | "sharp-toc" | "sharp-today" | "sharp-token" | "sharp-toll" | "sharp-touch-app" | "sharp-tour" | "sharp-track-changes" | "sharp-transcribe" | "sharp-translate" | "sharp-trending-down" | "sharp-trending-flat" | "sharp-trending-up" | "sharp-troubleshoot" | "sharp-try" | "sharp-turned-in" | "sharp-turned-in-not" | "sharp-unfold-less-double" | "sharp-unfold-more-double" | "sharp-unpublished" | "sharp-update" | "sharp-update-disabled" | "sharp-upgrade" | "sharp-verified" | "sharp-verified-user" | "sharp-vertical-split" | "sharp-view-agenda" | "sharp-view-array" | "sharp-view-carousel" | "sharp-view-column" | "sharp-view-comfy-alt" | "sharp-view-compact-alt" | "sharp-view-cozy" | "sharp-view-day" | "sharp-view-headline" | "sharp-view-in-ar" | "sharp-view-kanban" | "sharp-view-list" | "sharp-view-module" | "sharp-view-quilt" | "sharp-view-sidebar" | "sharp-view-stream" | "sharp-view-timeline" | "sharp-view-week" | "sharp-visibility" | "sharp-visibility-off" | "sharp-voice-over-off" | "sharp-watch-later" | "sharp-webhook" | "sharp-width-full" | "sharp-width-normal" | "sharp-width-wide" | "sharp-wifi-protected-setup" | "sharp-work" | "sharp-work-history" | "sharp-work-off" | "sharp-work-outline" | "sharp-wysiwyg" | "sharp-youtube-searched-for" | "sharp-zoom-in" | "sharp-zoom-out" | "twotone-123" | "twotone-3d-rotation" | "twotone-abc" | "twotone-accessibility" | "twotone-accessibility-new" | "twotone-accessible" | "twotone-accessible-forward" | "twotone-account-balance" | "twotone-account-balance-wallet" | "twotone-account-box" | "twotone-account-circle" | "twotone-add-card" | "twotone-add-home" | "twotone-add-shopping-cart" | "twotone-add-task" | "twotone-add-to-drive" | "twotone-addchart" | "twotone-admin-panel-settings" | "twotone-ads-click" | "twotone-alarm" | "twotone-alarm-add" | "twotone-alarm-off" | "twotone-alarm-on" | "twotone-all-inbox" | "twotone-all-out" | "twotone-analytics" | "twotone-anchor" | "twotone-android" | "twotone-announcement" | "twotone-api" | "twotone-app-blocking" | "twotone-app-shortcut" | "twotone-arrow-circle-down" | "twotone-arrow-circle-left" | "twotone-arrow-circle-right" | "twotone-arrow-circle-up" | "twotone-arrow-outward" | "twotone-arrow-right-alt" | "twotone-article" | "twotone-aspect-ratio" | "twotone-assessment" | "twotone-assignment" | "twotone-assignment-ind" | "twotone-assignment-late" | "twotone-assignment-return" | "twotone-assignment-returned" | "twotone-assignment-turned-in" | "twotone-assured-workload" | "twotone-autorenew" | "twotone-backup" | "twotone-backup-table" | "twotone-balance" | "twotone-batch-prediction" | "twotone-book" | "twotone-book-online" | "twotone-bookmark" | "twotone-bookmark-add" | "twotone-bookmark-added" | "twotone-bookmark-border" | "twotone-bookmark-remove" | "twotone-bookmarks" | "twotone-browse-gallery" | "twotone-bug-report" | "twotone-build" | "twotone-build-circle" | "twotone-cached" | "twotone-calendar-month" | "twotone-calendar-today" | "twotone-calendar-view-day" | "twotone-calendar-view-month" | "twotone-calendar-view-week" | "twotone-camera-enhance" | "twotone-cancel-schedule-send" | "twotone-card-giftcard" | "twotone-card-membership" | "twotone-card-travel" | "twotone-change-history" | "twotone-check-circle" | "twotone-check-circle-outline" | "twotone-chrome-reader-mode" | "twotone-circle-notifications" | "twotone-class" | "twotone-close-fullscreen" | "twotone-code" | "twotone-code-off" | "twotone-comment-bank" | "twotone-commit" | "twotone-commute" | "twotone-compare-arrows" | "twotone-compress" | "twotone-contact-page" | "twotone-contact-support" | "twotone-contactless" | "twotone-copyright" | "twotone-credit-card" | "twotone-credit-card-off" | "twotone-css" | "twotone-currency-exchange" | "twotone-dangerous" | "twotone-dashboard" | "twotone-dashboard-customize" | "twotone-data-exploration" | "twotone-data-thresholding" | "twotone-date-range" | "twotone-delete" | "twotone-delete-forever" | "twotone-delete-outline" | "twotone-density-large" | "twotone-density-medium" | "twotone-density-small" | "twotone-description" | "twotone-disabled-by-default" | "twotone-disabled-visible" | "twotone-display-settings" | "twotone-dns" | "twotone-done" | "twotone-done-all" | "twotone-done-outline" | "twotone-donut-large" | "twotone-donut-small" | "twotone-drag-indicator" | "twotone-dynamic-form" | "twotone-eco" | "twotone-edit-calendar" | "twotone-edit-off" | "twotone-eject" | "twotone-euro-symbol" | "twotone-event" | "twotone-event-repeat" | "twotone-event-seat" | "twotone-exit-to-app" | "twotone-expand" | "twotone-explore" | "twotone-explore-off" | "twotone-extension" | "twotone-extension-off" | "twotone-face" | "twotone-fact-check" | "twotone-favorite" | "twotone-favorite-border" | "twotone-fax" | "twotone-feedback" | "twotone-file-present" | "twotone-filter-alt" | "twotone-filter-alt-off" | "twotone-find-in-page" | "twotone-find-replace" | "twotone-fingerprint" | "twotone-fit-screen" | "twotone-flaky" | "twotone-flight-land" | "twotone-flight-takeoff" | "twotone-flip-to-back" | "twotone-flip-to-front" | "twotone-flutter-dash" | "twotone-free-cancellation" | "twotone-g-translate" | "twotone-gavel" | "twotone-generating-tokens" | "twotone-get-app" | "twotone-gif" | "twotone-gif-box" | "twotone-grade" | "twotone-grading" | "twotone-group-work" | "twotone-help" | "twotone-help-center" | "twotone-help-outline" | "twotone-hide-source" | "twotone-highlight-alt" | "twotone-highlight-off" | "twotone-history" | "twotone-history-toggle-off" | "twotone-hls" | "twotone-hls-off" | "twotone-home" | "twotone-horizontal-split" | "twotone-hotel-class" | "twotone-hourglass-disabled" | "twotone-hourglass-empty" | "twotone-hourglass-full" | "twotone-html" | "twotone-http" | "twotone-https" | "twotone-important-devices" | "twotone-info" | "twotone-input" | "twotone-install-desktop" | "twotone-install-mobile" | "twotone-integration-instructions" | "twotone-invert-colors" | "twotone-javascript" | "twotone-join-full" | "twotone-join-inner" | "twotone-join-left" | "twotone-join-right" | "twotone-label" | "twotone-label-important" | "twotone-label-off" | "twotone-language" | "twotone-launch" | "twotone-leaderboard" | "twotone-lightbulb" | "twotone-lightbulb-circle" | "twotone-line-style" | "twotone-line-weight" | "twotone-list" | "twotone-lock" | "twotone-lock-clock" | "twotone-lock-open" | "twotone-lock-person" | "twotone-lock-reset" | "twotone-log-in" | "twotone-log-out" | "twotone-login" | "twotone-logout" | "twotone-loyalty" | "twotone-manage-accounts" | "twotone-manage-history" | "twotone-mark-as-unread" | "twotone-markunread-mailbox" | "twotone-maximize" | "twotone-mediation" | "twotone-minimize" | "twotone-model-training" | "twotone-motorcycle" | "twotone-network-ping" | "twotone-new-label" | "twotone-next-plan" | "twotone-nightlight-round" | "twotone-no-accounts" | "twotone-noise-aware" | "twotone-noise-control-off" | "twotone-not-accessible" | "twotone-not-started" | "twotone-note-add" | "twotone-offline-bolt" | "twotone-offline-pin" | "twotone-on-device-training" | "twotone-online-prediction" | "twotone-opacity" | "twotone-open-in-browser" | "twotone-open-in-full" | "twotone-open-in-new" | "twotone-open-in-new-off" | "twotone-open-with" | "twotone-outbond" | "twotone-outbound" | "twotone-outbox" | "twotone-outlet" | "twotone-output" | "twotone-pageview" | "twotone-paid" | "twotone-pan-tool" | "twotone-pan-tool-alt" | "twotone-payment" | "twotone-pending" | "twotone-pending-actions" | "twotone-percent" | "twotone-perm-camera-mic" | "twotone-perm-contact-calendar" | "twotone-perm-data-setting" | "twotone-perm-device-information" | "twotone-perm-identity" | "twotone-perm-media" | "twotone-perm-phone-msg" | "twotone-perm-scan-wifi" | "twotone-pets" | "twotone-php" | "twotone-picture-in-picture" | "twotone-picture-in-picture-alt" | "twotone-pin-end" | "twotone-pin-invoke" | "twotone-pinch" | "twotone-plagiarism" | "twotone-play-for-work" | "twotone-polymer" | "twotone-power-settings-new" | "twotone-pregnant-woman" | "twotone-preview" | "twotone-print" | "twotone-privacy-tip" | "twotone-private-connectivity" | "twotone-production-quantity-limits" | "twotone-published-with-changes" | "twotone-query-builder" | "twotone-question-answer" | "twotone-question-mark" | "twotone-quickreply" | "twotone-receipt" | "twotone-record-voice-over" | "twotone-redeem" | "twotone-remove-done" | "twotone-remove-shopping-cart" | "twotone-reorder" | "twotone-repartition" | "twotone-report-problem" | "twotone-request-page" | "twotone-restore" | "twotone-restore-from-trash" | "twotone-restore-page" | "twotone-rocket" | "twotone-rocket-launch" | "twotone-room" | "twotone-rounded-corner" | "twotone-rowing" | "twotone-rule" | "twotone-satellite-alt" | "twotone-saved-search" | "twotone-savings" | "twotone-schedule" | "twotone-schedule-send" | "twotone-search" | "twotone-search-off" | "twotone-segment" | "twotone-send-and-archive" | "twotone-sensors" | "twotone-sensors-off" | "twotone-settings" | "twotone-settings-accessibility" | "twotone-settings-applications" | "twotone-settings-backup-restore" | "twotone-settings-bluetooth" | "twotone-settings-brightness" | "twotone-settings-cell" | "twotone-settings-ethernet" | "twotone-settings-input-antenna" | "twotone-settings-input-component" | "twotone-settings-input-composite" | "twotone-settings-input-hdmi" | "twotone-settings-input-svideo" | "twotone-settings-overscan" | "twotone-settings-phone" | "twotone-settings-power" | "twotone-settings-remote" | "twotone-settings-voice" | "twotone-shop" | "twotone-shop-2" | "twotone-shop-two" | "twotone-shopping-bag" | "twotone-shopping-basket" | "twotone-shopping-cart" | "twotone-shopping-cart-checkout" | "twotone-smart-button" | "twotone-source" | "twotone-space-dashboard" | "twotone-spatial-audio" | "twotone-spatial-audio-off" | "twotone-spatial-tracking" | "twotone-speaker-notes" | "twotone-speaker-notes-off" | "twotone-spellcheck" | "twotone-star-rate" | "twotone-stars" | "twotone-sticky-note-2" | "twotone-store" | "twotone-subject" | "twotone-subtitles-off" | "twotone-supervised-user-circle" | "twotone-supervisor-account" | "twotone-support" | "twotone-swap-horiz" | "twotone-swap-horizontal-circle" | "twotone-swap-vert" | "twotone-swap-vertical-circle" | "twotone-swipe" | "twotone-swipe-down" | "twotone-swipe-down-alt" | "twotone-swipe-left" | "twotone-swipe-left-alt" | "twotone-swipe-right" | "twotone-swipe-right-alt" | "twotone-swipe-up" | "twotone-swipe-up-alt" | "twotone-swipe-vertical" | "twotone-switch-access-shortcut" | "twotone-switch-access-shortcut-add" | "twotone-sync-alt" | "twotone-system-update-alt" | "twotone-tab" | "twotone-tab-unselected" | "twotone-table-view" | "twotone-task-alt" | "twotone-terminal" | "twotone-text-rotate-up" | "twotone-text-rotate-vertical" | "twotone-text-rotation-angledown" | "twotone-text-rotation-angleup" | "twotone-text-rotation-down" | "twotone-text-rotation-none" | "twotone-theaters" | "twotone-thumb-down" | "twotone-thumb-down-off-alt" | "twotone-thumb-up" | "twotone-thumb-up-off-alt" | "twotone-thumbs-up-down" | "twotone-timeline" | "twotone-tips-and-updates" | "twotone-toc" | "twotone-today" | "twotone-token" | "twotone-toll" | "twotone-touch-app" | "twotone-tour" | "twotone-track-changes" | "twotone-transcribe" | "twotone-translate" | "twotone-trending-down" | "twotone-trending-flat" | "twotone-trending-up" | "twotone-troubleshoot" | "twotone-try" | "twotone-turned-in" | "twotone-turned-in-not" | "twotone-unfold-less-double" | "twotone-unfold-more-double" | "twotone-unpublished" | "twotone-update" | "twotone-update-disabled" | "twotone-upgrade" | "twotone-verified" | "twotone-verified-user" | "twotone-vertical-split" | "twotone-view-agenda" | "twotone-view-array" | "twotone-view-carousel" | "twotone-view-column" | "twotone-view-comfy-alt" | "twotone-view-compact-alt" | "twotone-view-cozy" | "twotone-view-day" | "twotone-view-headline" | "twotone-view-in-ar" | "twotone-view-kanban" | "twotone-view-list" | "twotone-view-module" | "twotone-view-quilt" | "twotone-view-sidebar" | "twotone-view-stream" | "twotone-view-timeline" | "twotone-view-week" | "twotone-visibility" | "twotone-visibility-off" | "twotone-voice-over-off" | "twotone-watch-later" | "twotone-webhook" | "twotone-width-full" | "twotone-width-normal" | "twotone-width-wide" | "twotone-wifi-protected-setup" | "twotone-work" | "twotone-work-history" | "twotone-work-off" | "twotone-work-outline" | "twotone-wysiwyg" | "twotone-youtube-searched-for" | "twotone-zoom-in" | "twotone-zoom-out" | "baseline-add-alert" | "baseline-auto-delete" | "baseline-error" | "baseline-error-outline" | "baseline-notification-important" | "baseline-warning" | "baseline-warning-amber" | "outline-add-alert" | "outline-auto-delete" | "outline-error" | "outline-error-outline" | "outline-notification-important" | "outline-warning" | "outline-warning-amber" | "round-add-alert" | "round-auto-delete" | "round-error" | "round-error-outline" | "round-notification-important" | "round-warning" | "round-warning-amber" | "sharp-add-alert" | "sharp-auto-delete" | "sharp-error" | "sharp-error-outline" | "sharp-notification-important" | "sharp-warning" | "sharp-warning-amber" | "twotone-add-alert" | "twotone-auto-delete" | "twotone-error" | "twotone-error-outline" | "twotone-notification-important" | "twotone-warning" | "twotone-warning-amber" | "baseline-10k" | "baseline-1k" | "baseline-1k-plus" | "baseline-2k" | "baseline-2k-plus" | "baseline-3k" | "baseline-3k-plus" | "baseline-4k" | "baseline-4k-plus" | "baseline-5g" | "baseline-5k" | "baseline-5k-plus" | "baseline-6k" | "baseline-6k-plus" | "baseline-7k" | "baseline-7k-plus" | "baseline-8k" | "baseline-8k-plus" | "baseline-9k" | "baseline-9k-plus" | "baseline-add-to-queue" | "baseline-airplay" | "baseline-album" | "baseline-art-track" | "baseline-audio-file" | "baseline-av-timer" | "baseline-branding-watermark" | "baseline-call-to-action" | "baseline-closed-caption" | "baseline-closed-caption-disabled" | "baseline-closed-caption-off" | "baseline-control-camera" | "baseline-equalizer" | "baseline-explicit" | "baseline-fast-forward" | "baseline-fast-rewind" | "baseline-featured-play-list" | "baseline-featured-video" | "baseline-fiber-dvr" | "baseline-fiber-manual-record" | "baseline-fiber-new" | "baseline-fiber-pin" | "baseline-fiber-smart-record" | "baseline-forward-10" | "baseline-forward-30" | "baseline-forward-5" | "baseline-games" | "baseline-hd" | "baseline-hearing" | "baseline-hearing-disabled" | "baseline-high-quality" | "baseline-interpreter-mode" | "baseline-library-add" | "baseline-library-add-check" | "baseline-library-books" | "baseline-library-music" | "baseline-loop" | "baseline-lyrics" | "baseline-mic" | "baseline-mic-none" | "baseline-mic-off" | "baseline-missed-video-call" | "baseline-movie" | "baseline-music-video" | "baseline-new-releases" | "baseline-not-interested" | "baseline-note" | "baseline-pause" | "baseline-pause-circle" | "baseline-pause-circle-filled" | "baseline-pause-circle-outline" | "baseline-play-arrow" | "baseline-play-circle" | "baseline-play-circle-filled" | "baseline-play-circle-filled-white" | "baseline-play-circle-outline" | "baseline-play-disabled" | "baseline-playlist-add" | "baseline-playlist-add-check" | "baseline-playlist-add-check-circle" | "baseline-playlist-add-circle" | "baseline-playlist-play" | "baseline-playlist-remove" | "baseline-queue" | "baseline-queue-music" | "baseline-queue-play-next" | "baseline-radio" | "baseline-recent-actors" | "baseline-remove-from-queue" | "baseline-repeat" | "baseline-repeat-on" | "baseline-repeat-one" | "baseline-repeat-one-on" | "baseline-replay" | "baseline-replay-10" | "baseline-replay-30" | "baseline-replay-5" | "baseline-replay-circle-filled" | "baseline-sd" | "baseline-shuffle" | "baseline-shuffle-on" | "baseline-skip-next" | "baseline-skip-previous" | "baseline-slow-motion-video" | "baseline-snooze" | "baseline-sort-by-alpha" | "baseline-speed" | "baseline-stop" | "baseline-stop-circle" | "baseline-subscriptions" | "baseline-subtitles" | "baseline-surround-sound" | "baseline-video-call" | "baseline-video-file" | "baseline-video-label" | "baseline-video-library" | "baseline-video-settings" | "baseline-videocam" | "baseline-videocam-off" | "baseline-volume-down" | "baseline-volume-mute" | "baseline-volume-off" | "baseline-volume-up" | "baseline-web" | "baseline-web-asset" | "baseline-web-asset-off" | "outline-10k" | "outline-1k" | "outline-1k-plus" | "outline-2k" | "outline-2k-plus" | "outline-3k" | "outline-3k-plus" | "outline-4k" | "outline-4k-plus" | "outline-5g" | "outline-5k" | "outline-5k-plus" | "outline-6k" | "outline-6k-plus" | "outline-7k" | "outline-7k-plus" | "outline-8k" | "outline-8k-plus" | "outline-9k" | "outline-9k-plus" | "outline-add-to-queue" | "outline-airplay" | "outline-album" | "outline-art-track" | "outline-audio-file" | "outline-av-timer" | "outline-branding-watermark" | "outline-call-to-action" | "outline-closed-caption" | "outline-closed-caption-disabled" | "outline-closed-caption-off" | "outline-control-camera" | "outline-equalizer" | "outline-explicit" | "outline-fast-forward" | "outline-fast-rewind" | "outline-featured-play-list" | "outline-featured-video" | "outline-fiber-dvr" | "outline-fiber-manual-record" | "outline-fiber-new" | "outline-fiber-pin" | "outline-fiber-smart-record" | "outline-forward-10" | "outline-forward-30" | "outline-forward-5" | "outline-games" | "outline-hd" | "outline-hearing" | "outline-hearing-disabled" | "outline-high-quality" | "outline-interpreter-mode" | "outline-library-add" | "outline-library-add-check" | "outline-library-books" | "outline-library-music" | "outline-loop" | "outline-lyrics" | "outline-mic" | "outline-mic-none" | "outline-mic-off" | "outline-missed-video-call" | "outline-movie" | "outline-music-video" | "outline-new-releases" | "outline-not-interested" | "outline-note" | "outline-pause" | "outline-pause-circle" | "outline-pause-circle-filled" | "outline-pause-circle-outline" | "outline-play-arrow" | "outline-play-circle" | "outline-play-circle-filled" | "outline-play-circle-filled-white" | "outline-play-circle-outline" | "outline-play-disabled" | "outline-playlist-add" | "outline-playlist-add-check" | "outline-playlist-add-check-circle" | "outline-playlist-add-circle" | "outline-playlist-play" | "outline-playlist-remove" | "outline-queue" | "outline-queue-music" | "outline-queue-play-next" | "outline-radio" | "outline-recent-actors" | "outline-remove-from-queue" | "outline-repeat" | "outline-repeat-on" | "outline-repeat-one" | "outline-repeat-one-on" | "outline-replay" | "outline-replay-10" | "outline-replay-30" | "outline-replay-5" | "outline-replay-circle-filled" | "outline-sd" | "outline-shuffle" | "outline-shuffle-on" | "outline-skip-next" | "outline-skip-previous" | "outline-slow-motion-video" | "outline-snooze" | "outline-sort-by-alpha" | "outline-speed" | "outline-stop" | "outline-stop-circle" | "outline-subscriptions" | "outline-subtitles" | "outline-surround-sound" | "outline-video-call" | "outline-video-file" | "outline-video-label" | "outline-video-library" | "outline-video-settings" | "outline-videocam" | "outline-videocam-off" | "outline-volume-down" | "outline-volume-mute" | "outline-volume-off" | "outline-volume-up" | "outline-web" | "outline-web-asset" | "outline-web-asset-off" | "round-10k" | "round-1k" | "round-1k-plus" | "round-2k" | "round-2k-plus" | "round-3k" | "round-3k-plus" | "round-4k" | "round-4k-plus" | "round-5g" | "round-5k" | "round-5k-plus" | "round-6k" | "round-6k-plus" | "round-7k" | "round-7k-plus" | "round-8k" | "round-8k-plus" | "round-9k" | "round-9k-plus" | "round-add-to-queue" | "round-airplay" | "round-album" | "round-art-track" | "round-audio-file" | "round-av-timer" | "round-branding-watermark" | "round-call-to-action" | "round-closed-caption" | "round-closed-caption-disabled" | "round-closed-caption-off" | "round-control-camera" | "round-equalizer" | "round-explicit" | "round-fast-forward" | "round-fast-rewind" | "round-featured-play-list" | "round-featured-video" | "round-fiber-dvr" | "round-fiber-manual-record" | "round-fiber-new" | "round-fiber-pin" | "round-fiber-smart-record" | "round-forward-10" | "round-forward-30" | "round-forward-5" | "round-games" | "round-hd" | "round-hearing" | "round-hearing-disabled" | "round-high-quality" | "round-interpreter-mode" | "round-library-add" | "round-library-add-check" | "round-library-books" | "round-library-music" | "round-loop" | "round-lyrics" | "round-mic" | "round-mic-none" | "round-mic-off" | "round-missed-video-call" | "round-movie" | "round-music-video" | "round-new-releases" | "round-not-interested" | "round-note" | "round-pause" | "round-pause-circle" | "round-pause-circle-filled" | "round-pause-circle-outline" | "round-play-arrow" | "round-play-circle" | "round-play-circle-filled" | "round-play-circle-filled-white" | "round-play-circle-outline" | "round-play-disabled" | "round-playlist-add" | "round-playlist-add-check" | "round-playlist-add-check-circle" | "round-playlist-add-circle" | "round-playlist-play" | "round-playlist-remove" | "round-queue" | "round-queue-music" | "round-queue-play-next" | "round-radio" | "round-recent-actors" | "round-remove-from-queue" | "round-repeat" | "round-repeat-on" | "round-repeat-one" | "round-repeat-one-on" | "round-replay" | "round-replay-10" | "round-replay-30" | "round-replay-5" | "round-replay-circle-filled" | "round-sd" | "round-shuffle" | "round-shuffle-on" | "round-skip-next" | "round-skip-previous" | "round-slow-motion-video" | "round-snooze" | "round-sort-by-alpha" | "round-speed" | "round-stop" | "round-stop-circle" | "round-subscriptions" | "round-subtitles" | "round-surround-sound" | "round-video-call" | "round-video-file" | "round-video-label" | "round-video-library" | "round-video-settings" | "round-videocam" | "round-videocam-off" | "round-volume-down" | "round-volume-mute" | "round-volume-off" | "round-volume-up" | "round-web" | "round-web-asset" | "round-web-asset-off" | "sharp-10k" | "sharp-1k" | "sharp-1k-plus" | "sharp-2k" | "sharp-2k-plus" | "sharp-3k" | "sharp-3k-plus" | "sharp-4k" | "sharp-4k-plus" | "sharp-5g" | "sharp-5k" | "sharp-5k-plus" | "sharp-6k" | "sharp-6k-plus" | "sharp-7k" | "sharp-7k-plus" | "sharp-8k" | "sharp-8k-plus" | "sharp-9k" | "sharp-9k-plus" | "sharp-add-to-queue" | "sharp-airplay" | "sharp-album" | "sharp-art-track" | "sharp-audio-file" | "sharp-av-timer" | "sharp-branding-watermark" | "sharp-call-to-action" | "sharp-closed-caption" | "sharp-closed-caption-disabled" | "sharp-closed-caption-off" | "sharp-control-camera" | "sharp-equalizer" | "sharp-explicit" | "sharp-fast-forward" | "sharp-fast-rewind" | "sharp-featured-play-list" | "sharp-featured-video" | "sharp-fiber-dvr" | "sharp-fiber-manual-record" | "sharp-fiber-new" | "sharp-fiber-pin" | "sharp-fiber-smart-record" | "sharp-forward-10" | "sharp-forward-30" | "sharp-forward-5" | "sharp-games" | "sharp-hd" | "sharp-hearing" | "sharp-hearing-disabled" | "sharp-high-quality" | "sharp-interpreter-mode" | "sharp-library-add" | "sharp-library-add-check" | "sharp-library-books" | "sharp-library-music" | "sharp-loop" | "sharp-lyrics" | "sharp-mic" | "sharp-mic-none" | "sharp-mic-off" | "sharp-missed-video-call" | "sharp-movie" | "sharp-music-video" | "sharp-new-releases" | "sharp-not-interested" | "sharp-note" | "sharp-pause" | "sharp-pause-circle" | "sharp-pause-circle-filled" | "sharp-pause-circle-outline" | "sharp-play-arrow" | "sharp-play-circle" | "sharp-play-circle-filled" | "sharp-play-circle-filled-white" | "sharp-play-circle-outline" | "sharp-play-disabled" | "sharp-playlist-add" | "sharp-playlist-add-check" | "sharp-playlist-add-check-circle" | "sharp-playlist-add-circle" | "sharp-playlist-play" | "sharp-playlist-remove" | "sharp-queue" | "sharp-queue-music" | "sharp-queue-play-next" | "sharp-radio" | "sharp-recent-actors" | "sharp-remove-from-queue" | "sharp-repeat" | "sharp-repeat-on" | "sharp-repeat-one" | "sharp-repeat-one-on" | "sharp-replay" | "sharp-replay-10" | "sharp-replay-30" | "sharp-replay-5" | "sharp-replay-circle-filled" | "sharp-sd" | "sharp-shuffle" | "sharp-shuffle-on" | "sharp-skip-next" | "sharp-skip-previous" | "sharp-slow-motion-video" | "sharp-snooze" | "sharp-sort-by-alpha" | "sharp-speed" | "sharp-stop" | "sharp-stop-circle" | "sharp-subscriptions" | "sharp-subtitles" | "sharp-surround-sound" | "sharp-video-call" | "sharp-video-file" | "sharp-video-label" | "sharp-video-library" | "sharp-video-settings" | "sharp-videocam" | "sharp-videocam-off" | "sharp-volume-down" | "sharp-volume-mute" | "sharp-volume-off" | "sharp-volume-up" | "sharp-web" | "sharp-web-asset" | "sharp-web-asset-off" | "twotone-10k" | "twotone-1k" | "twotone-1k-plus" | "twotone-2k" | "twotone-2k-plus" | "twotone-3k" | "twotone-3k-plus" | "twotone-4k" | "twotone-4k-plus" | "twotone-5g" | "twotone-5k" | "twotone-5k-plus" | "twotone-6k" | "twotone-6k-plus" | "twotone-7k" | "twotone-7k-plus" | "twotone-8k" | "twotone-8k-plus" | "twotone-9k" | "twotone-9k-plus" | "twotone-add-to-queue" | "twotone-airplay" | "twotone-album" | "twotone-art-track" | "twotone-audio-file" | "twotone-av-timer" | "twotone-branding-watermark" | "twotone-call-to-action" | "twotone-closed-caption" | "twotone-closed-caption-disabled" | "twotone-closed-caption-off" | "twotone-control-camera" | "twotone-equalizer" | "twotone-explicit" | "twotone-fast-forward" | "twotone-fast-rewind" | "twotone-featured-play-list" | "twotone-featured-video" | "twotone-fiber-dvr" | "twotone-fiber-manual-record" | "twotone-fiber-new" | "twotone-fiber-pin" | "twotone-fiber-smart-record" | "twotone-forward-10" | "twotone-forward-30" | "twotone-forward-5" | "twotone-games" | "twotone-hd" | "twotone-hearing" | "twotone-hearing-disabled" | "twotone-high-quality" | "twotone-interpreter-mode" | "twotone-library-add" | "twotone-library-add-check" | "twotone-library-books" | "twotone-library-music" | "twotone-loop" | "twotone-lyrics" | "twotone-mic" | "twotone-mic-none" | "twotone-mic-off" | "twotone-missed-video-call" | "twotone-movie" | "twotone-music-video" | "twotone-new-releases" | "twotone-not-interested" | "twotone-note" | "twotone-pause" | "twotone-pause-circle" | "twotone-pause-circle-filled" | "twotone-pause-circle-outline" | "twotone-play-arrow" | "twotone-play-circle" | "twotone-play-circle-filled" | "twotone-play-circle-filled-white" | "twotone-play-circle-outline" | "twotone-play-disabled" | "twotone-playlist-add" | "twotone-playlist-add-check" | "twotone-playlist-add-check-circle" | "twotone-playlist-add-circle" | "twotone-playlist-play" | "twotone-playlist-remove" | "twotone-queue" | "twotone-queue-music" | "twotone-queue-play-next" | "twotone-radio" | "twotone-recent-actors" | "twotone-remove-from-queue" | "twotone-repeat" | "twotone-repeat-on" | "twotone-repeat-one" | "twotone-repeat-one-on" | "twotone-replay" | "twotone-replay-10" | "twotone-replay-30" | "twotone-replay-5" | "twotone-replay-circle-filled" | "twotone-sd" | "twotone-shuffle" | "twotone-shuffle-on" | "twotone-skip-next" | "twotone-skip-previous" | "twotone-slow-motion-video" | "twotone-snooze" | "twotone-sort-by-alpha" | "twotone-speed" | "twotone-stop" | "twotone-stop-circle" | "twotone-subscriptions" | "twotone-subtitles" | "twotone-surround-sound" | "twotone-video-call" | "twotone-video-file" | "twotone-video-label" | "twotone-video-library" | "twotone-video-settings" | "twotone-videocam" | "twotone-videocam-off" | "twotone-volume-down" | "twotone-volume-mute" | "twotone-volume-off" | "twotone-volume-up" | "twotone-web" | "twotone-web-asset" | "twotone-web-asset-off" | "baseline-3p" | "baseline-add-ic-call" | "baseline-alternate-email" | "baseline-app-registration" | "baseline-business" | "baseline-call" | "baseline-call-end" | "baseline-call-made" | "baseline-call-merge" | "baseline-call-missed" | "baseline-call-missed-outgoing" | "baseline-call-received" | "baseline-call-split" | "baseline-cancel-presentation" | "baseline-cell-tower" | "baseline-cell-wifi" | "baseline-chat" | "baseline-chat-bubble" | "baseline-chat-bubble-outline" | "baseline-clear-all" | "baseline-co-present" | "baseline-comment" | "baseline-comments-disabled" | "baseline-contact-emergency" | "baseline-contact-mail" | "baseline-contact-phone" | "baseline-contacts" | "baseline-desktop-access-disabled" | "baseline-dialer-sip" | "baseline-dialpad" | "baseline-document-scanner" | "baseline-domain-disabled" | "baseline-domain-verification" | "baseline-duo" | "baseline-email" | "baseline-forum" | "baseline-forward-to-inbox" | "baseline-hourglass-bottom" | "baseline-hourglass-top" | "baseline-hub" | "baseline-import-contacts" | "baseline-import-export" | "baseline-invert-colors-off" | "baseline-key" | "baseline-key-off" | "baseline-list-alt" | "baseline-live-help" | "baseline-location-off" | "baseline-location-on" | "baseline-mail-lock" | "baseline-mail-outline" | "baseline-mark-chat-read" | "baseline-mark-chat-unread" | "baseline-mark-email-read" | "baseline-mark-email-unread" | "baseline-mark-unread-chat-alt" | "baseline-message" | "baseline-mobile-screen-share" | "baseline-more-time" | "baseline-nat" | "baseline-no-sim" | "baseline-pause-presentation" | "baseline-person-add-disabled" | "baseline-person-search" | "baseline-phone" | "baseline-phone-disabled" | "baseline-phone-enabled" | "baseline-phonelink-erase" | "baseline-phonelink-lock" | "baseline-phonelink-ring" | "baseline-phonelink-setup" | "baseline-portable-wifi-off" | "baseline-present-to-all" | "baseline-print-disabled" | "baseline-qr-code" | "baseline-qr-code-2" | "baseline-qr-code-scanner" | "baseline-read-more" | "baseline-ring-volume" | "baseline-rss-feed" | "baseline-rtt" | "baseline-screen-share" | "baseline-send-time-extension" | "baseline-sentiment-satisfied-alt" | "baseline-sip" | "baseline-speaker-phone" | "baseline-spoke" | "baseline-stay-current-landscape" | "baseline-stay-current-portrait" | "baseline-stay-primary-landscape" | "baseline-stay-primary-portrait" | "baseline-stop-screen-share" | "baseline-swap-calls" | "baseline-textsms" | "baseline-unsubscribe" | "baseline-voicemail" | "baseline-vpn-key" | "baseline-vpn-key-off" | "baseline-wifi-calling" | "outline-3p" | "outline-add-ic-call" | "outline-alternate-email" | "outline-app-registration" | "outline-business" | "outline-call" | "outline-call-end" | "outline-call-made" | "outline-call-merge" | "outline-call-missed" | "outline-call-missed-outgoing" | "outline-call-received" | "outline-call-split" | "outline-cancel-presentation" | "outline-cell-tower" | "outline-cell-wifi" | "outline-chat" | "outline-chat-bubble" | "outline-chat-bubble-outline" | "outline-clear-all" | "outline-co-present" | "outline-comment" | "outline-comments-disabled" | "outline-contact-emergency" | "outline-contact-mail" | "outline-contact-phone" | "outline-contacts" | "outline-desktop-access-disabled" | "outline-dialer-sip" | "outline-dialpad" | "outline-document-scanner" | "outline-domain-disabled" | "outline-domain-verification" | "outline-duo" | "outline-email" | "outline-forum" | "outline-forward-to-inbox" | "outline-hourglass-bottom" | "outline-hourglass-top" | "outline-hub" | "outline-import-contacts" | "outline-import-export" | "outline-invert-colors-off" | "outline-key" | "outline-key-off" | "outline-list-alt" | "outline-live-help" | "outline-location-off" | "outline-location-on" | "outline-mail-lock" | "outline-mail-outline" | "outline-mark-chat-read" | "outline-mark-chat-unread" | "outline-mark-email-read" | "outline-mark-email-unread" | "outline-mark-unread-chat-alt" | "outline-message" | "outline-mobile-screen-share" | "outline-more-time" | "outline-nat" | "outline-no-sim" | "outline-pause-presentation" | "outline-person-add-disabled" | "outline-person-search" | "outline-phone" | "outline-phone-disabled" | "outline-phone-enabled" | "outline-phonelink-erase" | "outline-phonelink-lock" | "outline-phonelink-ring" | "outline-phonelink-setup" | "outline-portable-wifi-off" | "outline-present-to-all" | "outline-print-disabled" | "outline-qr-code" | "outline-qr-code-2" | "outline-qr-code-scanner" | "outline-read-more" | "outline-ring-volume" | "outline-rss-feed" | "outline-rtt" | "outline-screen-share" | "outline-send-time-extension" | "outline-sentiment-satisfied-alt" | "outline-sip" | "outline-speaker-phone" | "outline-spoke" | "outline-stay-current-landscape" | "outline-stay-current-portrait" | "outline-stay-primary-landscape" | "outline-stay-primary-portrait" | "outline-stop-screen-share" | "outline-swap-calls" | "outline-textsms" | "outline-unsubscribe" | "outline-voicemail" | "outline-vpn-key" | "outline-vpn-key-off" | "outline-wifi-calling" | "round-3p" | "round-add-ic-call" | "round-alternate-email" | "round-app-registration" | "round-business" | "round-call" | "round-call-end" | "round-call-made" | "round-call-merge" | "round-call-missed" | "round-call-missed-outgoing" | "round-call-received" | "round-call-split" | "round-cancel-presentation" | "round-cell-tower" | "round-cell-wifi" | "round-chat" | "round-chat-bubble" | "round-chat-bubble-outline" | "round-clear-all" | "round-co-present" | "round-comment" | "round-comments-disabled" | "round-contact-emergency" | "round-contact-mail" | "round-contact-phone" | "round-contacts" | "round-desktop-access-disabled" | "round-dialer-sip" | "round-dialpad" | "round-document-scanner" | "round-domain-disabled" | "round-domain-verification" | "round-duo" | "round-email" | "round-forum" | "round-forward-to-inbox" | "round-hourglass-bottom" | "round-hourglass-top" | "round-hub" | "round-import-contacts" | "round-import-export" | "round-invert-colors-off" | "round-key" | "round-key-off" | "round-list-alt" | "round-live-help" | "round-location-off" | "round-location-on" | "round-mail-lock" | "round-mail-outline" | "round-mark-chat-read" | "round-mark-chat-unread" | "round-mark-email-read" | "round-mark-email-unread" | "round-mark-unread-chat-alt" | "round-message" | "round-mobile-screen-share" | "round-more-time" | "round-nat" | "round-no-sim" | "round-pause-presentation" | "round-person-add-disabled" | "round-person-search" | "round-phone" | "round-phone-disabled" | "round-phone-enabled" | "round-phonelink-erase" | "round-phonelink-lock" | "round-phonelink-ring" | "round-phonelink-setup" | "round-portable-wifi-off" | "round-present-to-all" | "round-print-disabled" | "round-qr-code" | "round-qr-code-2" | "round-qr-code-scanner" | "round-read-more" | "round-ring-volume" | "round-rss-feed" | "round-rtt" | "round-screen-share" | "round-send-time-extension" | "round-sentiment-satisfied-alt" | "round-sip" | "round-speaker-phone" | "round-spoke" | "round-stay-current-landscape" | "round-stay-current-portrait" | "round-stay-primary-landscape" | "round-stay-primary-portrait" | "round-stop-screen-share" | "round-swap-calls" | "round-textsms" | "round-unsubscribe" | "round-voicemail" | "round-vpn-key" | "round-vpn-key-off" | "round-wifi-calling" | "sharp-3p" | "sharp-add-ic-call" | "sharp-alternate-email" | "sharp-app-registration" | "sharp-business" | "sharp-call" | "sharp-call-end" | "sharp-call-made" | "sharp-call-merge" | "sharp-call-missed" | "sharp-call-missed-outgoing" | "sharp-call-received" | "sharp-call-split" | "sharp-cancel-presentation" | "sharp-cell-tower" | "sharp-cell-wifi" | "sharp-chat" | "sharp-chat-bubble" | "sharp-chat-bubble-outline" | "sharp-clear-all" | "sharp-co-present" | "sharp-comment" | "sharp-comments-disabled" | "sharp-contact-emergency" | "sharp-contact-mail" | "sharp-contact-phone" | "sharp-contacts" | "sharp-desktop-access-disabled" | "sharp-dialer-sip" | "sharp-dialpad" | "sharp-document-scanner" | "sharp-domain-disabled" | "sharp-domain-verification" | "sharp-duo" | "sharp-email" | "sharp-forum" | "sharp-forward-to-inbox" | "sharp-hourglass-bottom" | "sharp-hourglass-top" | "sharp-hub" | "sharp-import-contacts" | "sharp-import-export" | "sharp-invert-colors-off" | "sharp-key" | "sharp-key-off" | "sharp-list-alt" | "sharp-live-help" | "sharp-location-off" | "sharp-location-on" | "sharp-mail-lock" | "sharp-mail-outline" | "sharp-mark-chat-read" | "sharp-mark-chat-unread" | "sharp-mark-email-read" | "sharp-mark-email-unread" | "sharp-mark-unread-chat-alt" | "sharp-message" | "sharp-mobile-screen-share" | "sharp-more-time" | "sharp-nat" | "sharp-no-sim" | "sharp-pause-presentation" | "sharp-person-add-disabled" | "sharp-person-search" | "sharp-phone" | "sharp-phone-disabled" | "sharp-phone-enabled" | "sharp-phonelink-erase" | "sharp-phonelink-lock" | "sharp-phonelink-ring" | "sharp-phonelink-setup" | "sharp-portable-wifi-off" | "sharp-present-to-all" | "sharp-print-disabled" | "sharp-qr-code" | "sharp-qr-code-2" | "sharp-qr-code-scanner" | "sharp-read-more" | "sharp-ring-volume" | "sharp-rss-feed" | "sharp-rtt" | "sharp-screen-share" | "sharp-send-time-extension" | "sharp-sentiment-satisfied-alt" | "sharp-sip" | "sharp-speaker-phone" | "sharp-spoke" | "sharp-stay-current-landscape" | "sharp-stay-current-portrait" | "sharp-stay-primary-landscape" | "sharp-stay-primary-portrait" | "sharp-stop-screen-share" | "sharp-swap-calls" | "sharp-textsms" | "sharp-unsubscribe" | "sharp-voicemail" | "sharp-vpn-key" | "sharp-vpn-key-off" | "sharp-wifi-calling" | "twotone-3p" | "twotone-add-ic-call" | "twotone-alternate-email" | "twotone-app-registration" | "twotone-business" | "twotone-call" | "twotone-call-end" | "twotone-call-made" | "twotone-call-merge" | "twotone-call-missed" | "twotone-call-missed-outgoing" | "twotone-call-received" | "twotone-call-split" | "twotone-cancel-presentation" | "twotone-cell-tower" | "twotone-cell-wifi" | "twotone-chat" | "twotone-chat-bubble" | "twotone-chat-bubble-outline" | "twotone-clear-all" | "twotone-co-present" | "twotone-comment" | "twotone-comments-disabled" | "twotone-contact-emergency" | "twotone-contact-mail" | "twotone-contact-phone" | "twotone-contacts" | "twotone-desktop-access-disabled" | "twotone-dialer-sip" | "twotone-dialpad" | "twotone-document-scanner" | "twotone-domain-disabled" | "twotone-domain-verification" | "twotone-duo" | "twotone-email" | "twotone-forum" | "twotone-forward-to-inbox" | "twotone-hourglass-bottom" | "twotone-hourglass-top" | "twotone-hub" | "twotone-import-contacts" | "twotone-import-export" | "twotone-invert-colors-off" | "twotone-key" | "twotone-key-off" | "twotone-list-alt" | "twotone-live-help" | "twotone-location-off" | "twotone-location-on" | "twotone-mail-lock" | "twotone-mail-outline" | "twotone-mark-chat-read" | "twotone-mark-chat-unread" | "twotone-mark-email-read" | "twotone-mark-email-unread" | "twotone-mark-unread-chat-alt" | "twotone-message" | "twotone-mobile-screen-share" | "twotone-more-time" | "twotone-nat" | "twotone-no-sim" | "twotone-pause-presentation" | "twotone-person-add-disabled" | "twotone-person-search" | "twotone-phone" | "twotone-phone-disabled" | "twotone-phone-enabled" | "twotone-phonelink-erase" | "twotone-phonelink-lock" | "twotone-phonelink-ring" | "twotone-phonelink-setup" | "twotone-portable-wifi-off" | "twotone-present-to-all" | "twotone-print-disabled" | "twotone-qr-code" | "twotone-qr-code-2" | "twotone-qr-code-scanner" | "twotone-read-more" | "twotone-ring-volume" | "twotone-rss-feed" | "twotone-rtt" | "twotone-screen-share" | "twotone-send-time-extension" | "twotone-sentiment-satisfied-alt" | "twotone-sip" | "twotone-speaker-phone" | "twotone-spoke" | "twotone-stay-current-landscape" | "twotone-stay-current-portrait" | "twotone-stay-primary-landscape" | "twotone-stay-primary-portrait" | "twotone-stop-screen-share" | "twotone-swap-calls" | "twotone-textsms" | "twotone-unsubscribe" | "twotone-voicemail" | "twotone-vpn-key" | "twotone-vpn-key-off" | "twotone-wifi-calling" | "baseline-add" | "baseline-add-box" | "baseline-add-circle" | "baseline-add-circle-outline" | "baseline-add-link" | "baseline-amp-stories" | "baseline-archive" | "baseline-attribution" | "baseline-backspace" | "baseline-ballot" | "baseline-biotech" | "baseline-block" | "baseline-bolt" | "baseline-calculate" | "baseline-change-circle" | "baseline-clear" | "baseline-content-copy" | "baseline-content-cut" | "baseline-content-paste" | "baseline-content-paste-go" | "baseline-content-paste-off" | "baseline-content-paste-search" | "baseline-copy-all" | "baseline-create" | "baseline-delete-sweep" | "baseline-deselect" | "baseline-drafts" | "baseline-dynamic-feed" | "baseline-file-copy" | "baseline-filter-list" | "baseline-filter-list-off" | "baseline-flag" | "baseline-flag-circle" | "baseline-font-download" | "baseline-font-download-off" | "baseline-forward" | "baseline-gesture" | "baseline-how-to-reg" | "baseline-how-to-vote" | "baseline-inbox" | "baseline-insights" | "baseline-inventory" | "baseline-inventory-2" | "baseline-link" | "baseline-link-off" | "baseline-low-priority" | "baseline-mail" | "baseline-markunread" | "baseline-move-to-inbox" | "baseline-next-week" | "baseline-outlined-flag" | "baseline-pin-off" | "baseline-policy" | "baseline-push-pin" | "baseline-redo" | "baseline-remove" | "baseline-remove-circle" | "baseline-remove-circle-outline" | "baseline-reply" | "baseline-reply-all" | "baseline-report" | "baseline-report-gmailerrorred" | "baseline-report-off" | "baseline-save" | "baseline-save-all" | "baseline-save-alt" | "baseline-save-as" | "baseline-select-all" | "baseline-send" | "baseline-shield" | "baseline-sort" | "baseline-square-foot" | "baseline-stacked-bar-chart" | "baseline-stream" | "baseline-tag" | "baseline-text-format" | "baseline-unarchive" | "baseline-undo" | "baseline-upcoming" | "baseline-waves" | "baseline-web-stories" | "baseline-weekend" | "baseline-where-to-vote" | "outline-add" | "outline-add-box" | "outline-add-circle" | "outline-add-circle-outline" | "outline-add-link" | "outline-amp-stories" | "outline-archive" | "outline-attribution" | "outline-backspace" | "outline-ballot" | "outline-biotech" | "outline-block" | "outline-bolt" | "outline-calculate" | "outline-change-circle" | "outline-clear" | "outline-content-copy" | "outline-content-cut" | "outline-content-paste" | "outline-content-paste-go" | "outline-content-paste-off" | "outline-content-paste-search" | "outline-copy-all" | "outline-create" | "outline-delete-sweep" | "outline-deselect" | "outline-drafts" | "outline-dynamic-feed" | "outline-file-copy" | "outline-filter-list" | "outline-filter-list-off" | "outline-flag" | "outline-flag-circle" | "outline-font-download" | "outline-font-download-off" | "outline-forward" | "outline-gesture" | "outline-how-to-reg" | "outline-how-to-vote" | "outline-inbox" | "outline-insights" | "outline-inventory" | "outline-inventory-2" | "outline-link" | "outline-link-off" | "outline-low-priority" | "outline-mail" | "outline-markunread" | "outline-move-to-inbox" | "outline-next-week" | "outline-outlined-flag" | "outline-pin-off" | "outline-policy" | "outline-push-pin" | "outline-redo" | "outline-remove" | "outline-remove-circle" | "outline-remove-circle-outline" | "outline-reply" | "outline-reply-all" | "outline-report" | "outline-report-gmailerrorred" | "outline-report-off" | "outline-save" | "outline-save-all" | "outline-save-alt" | "outline-save-as" | "outline-select-all" | "outline-send" | "outline-shield" | "outline-sort" | "outline-square-foot" | "outline-stacked-bar-chart" | "outline-stream" | "outline-tag" | "outline-text-format" | "outline-unarchive" | "outline-undo" | "outline-upcoming" | "outline-waves" | "outline-web-stories" | "outline-weekend" | "outline-where-to-vote" | "round-add" | "round-add-box" | "round-add-circle" | "round-add-circle-outline" | "round-add-link" | "round-amp-stories" | "round-archive" | "round-attribution" | "round-backspace" | "round-ballot" | "round-biotech" | "round-block" | "round-bolt" | "round-calculate" | "round-change-circle" | "round-clear" | "round-content-copy" | "round-content-cut" | "round-content-paste" | "round-content-paste-go" | "round-content-paste-off" | "round-content-paste-search" | "round-copy-all" | "round-create" | "round-delete-sweep" | "round-deselect" | "round-drafts" | "round-dynamic-feed" | "round-file-copy" | "round-filter-list" | "round-filter-list-off" | "round-flag" | "round-flag-circle" | "round-font-download" | "round-font-download-off" | "round-forward" | "round-gesture" | "round-how-to-reg" | "round-how-to-vote" | "round-inbox" | "round-insights" | "round-inventory" | "round-inventory-2" | "round-link" | "round-link-off" | "round-low-priority" | "round-mail" | "round-markunread" | "round-move-to-inbox" | "round-next-week" | "round-outlined-flag" | "round-pin-off" | "round-policy" | "round-push-pin" | "round-redo" | "round-remove" | "round-remove-circle" | "round-remove-circle-outline" | "round-reply" | "round-reply-all" | "round-report" | "round-report-gmailerrorred" | "round-report-off" | "round-save" | "round-save-all" | "round-save-alt" | "round-save-as" | "round-select-all" | "round-send" | "round-sort" | "round-square-foot" | "round-stacked-bar-chart" | "round-stream" | "round-tag" | "round-text-format" | "round-unarchive" | "round-undo" | "round-upcoming" | "round-waves" | "round-web-stories" | "round-weekend" | "round-where-to-vote" | "sharp-add" | "sharp-add-box" | "sharp-add-circle" | "sharp-add-circle-outline" | "sharp-add-link" | "sharp-amp-stories" | "sharp-archive" | "sharp-attribution" | "sharp-backspace" | "sharp-ballot" | "sharp-biotech" | "sharp-block" | "sharp-bolt" | "sharp-calculate" | "sharp-change-circle" | "sharp-clear" | "sharp-content-copy" | "sharp-content-cut" | "sharp-content-paste" | "sharp-content-paste-go" | "sharp-content-paste-off" | "sharp-content-paste-search" | "sharp-copy-all" | "sharp-create" | "sharp-delete-sweep" | "sharp-deselect" | "sharp-drafts" | "sharp-dynamic-feed" | "sharp-file-copy" | "sharp-filter-list" | "sharp-filter-list-off" | "sharp-flag" | "sharp-flag-circle" | "sharp-font-download" | "sharp-font-download-off" | "sharp-forward" | "sharp-gesture" | "sharp-how-to-reg" | "sharp-how-to-vote" | "sharp-inbox" | "sharp-insights" | "sharp-inventory" | "sharp-inventory-2" | "sharp-link" | "sharp-link-off" | "sharp-low-priority" | "sharp-mail" | "sharp-markunread" | "sharp-move-to-inbox" | "sharp-next-week" | "sharp-outlined-flag" | "sharp-pin-off" | "sharp-policy" | "sharp-push-pin" | "sharp-redo" | "sharp-remove" | "sharp-remove-circle" | "sharp-remove-circle-outline" | "sharp-reply" | "sharp-reply-all" | "sharp-report" | "sharp-report-gmailerrorred" | "sharp-report-off" | "sharp-save" | "sharp-save-all" | "sharp-save-alt" | "sharp-save-as" | "sharp-select-all" | "sharp-send" | "sharp-shield" | "sharp-sort" | "sharp-square-foot" | "sharp-stacked-bar-chart" | "sharp-stream" | "sharp-tag" | "sharp-text-format" | "sharp-unarchive" | "sharp-undo" | "sharp-upcoming" | "sharp-waves" | "sharp-web-stories" | "sharp-weekend" | "sharp-where-to-vote" | "twotone-add" | "twotone-add-box" | "twotone-add-circle" | "twotone-add-circle-outline" | "twotone-add-link" | "twotone-amp-stories" | "twotone-archive" | "twotone-attribution" | "twotone-backspace" | "twotone-ballot" | "twotone-biotech" | "twotone-block" | "twotone-bolt" | "twotone-calculate" | "twotone-change-circle" | "twotone-clear" | "twotone-content-copy" | "twotone-content-cut" | "twotone-content-paste" | "twotone-content-paste-go" | "twotone-content-paste-off" | "twotone-content-paste-search" | "twotone-copy-all" | "twotone-create" | "twotone-delete-sweep" | "twotone-deselect" | "twotone-drafts" | "twotone-dynamic-feed" | "twotone-file-copy" | "twotone-filter-list" | "twotone-filter-list-off" | "twotone-flag" | "twotone-flag-circle" | "twotone-font-download" | "twotone-font-download-off" | "twotone-forward" | "twotone-gesture" | "twotone-how-to-reg" | "twotone-how-to-vote" | "twotone-inbox" | "twotone-insights" | "twotone-inventory" | "twotone-inventory-2" | "twotone-link" | "twotone-link-off" | "twotone-low-priority" | "twotone-mail" | "twotone-markunread" | "twotone-move-to-inbox" | "twotone-next-week" | "twotone-outlined-flag" | "twotone-pin-off" | "twotone-policy" | "twotone-push-pin" | "twotone-redo" | "twotone-remove" | "twotone-remove-circle" | "twotone-remove-circle-outline" | "twotone-reply" | "twotone-reply-all" | "twotone-report" | "twotone-report-gmailerrorred" | "twotone-report-off" | "twotone-save" | "twotone-save-all" | "twotone-save-alt" | "twotone-save-as" | "twotone-select-all" | "twotone-send" | "twotone-shield" | "twotone-sort" | "twotone-square-foot" | "twotone-stacked-bar-chart" | "twotone-stream" | "twotone-tag" | "twotone-text-format" | "twotone-unarchive" | "twotone-undo" | "twotone-upcoming" | "twotone-waves" | "twotone-web-stories" | "twotone-weekend" | "twotone-where-to-vote" | "baseline-1x-mobiledata" | "baseline-30fps" | "baseline-3g-mobiledata" | "baseline-4g-mobiledata" | "baseline-4g-plus-mobiledata" | "baseline-60fps" | "baseline-access-alarm" | "baseline-access-alarms" | "baseline-access-time" | "baseline-access-time-filled" | "baseline-ad-units" | "baseline-add-alarm" | "baseline-add-to-home-screen" | "baseline-air" | "baseline-airplane-ticket" | "baseline-airplanemode-active" | "baseline-airplanemode-inactive" | "baseline-aod" | "baseline-battery-0-bar" | "baseline-battery-1-bar" | "baseline-battery-2-bar" | "baseline-battery-20" | "baseline-battery-3-bar" | "baseline-battery-30" | "baseline-battery-4-bar" | "baseline-battery-5-bar" | "baseline-battery-50" | "baseline-battery-6-bar" | "baseline-battery-60" | "baseline-battery-80" | "baseline-battery-90" | "baseline-battery-alert" | "baseline-battery-charging-20" | "baseline-battery-charging-30" | "baseline-battery-charging-50" | "baseline-battery-charging-60" | "baseline-battery-charging-80" | "baseline-battery-charging-90" | "baseline-battery-charging-full" | "baseline-battery-full" | "baseline-battery-saver" | "baseline-battery-std" | "baseline-battery-unknown" | "baseline-bloodtype" | "baseline-bluetooth" | "baseline-bluetooth-connected" | "baseline-bluetooth-disabled" | "baseline-bluetooth-drive" | "baseline-bluetooth-searching" | "baseline-brightness-auto" | "baseline-brightness-high" | "baseline-brightness-low" | "baseline-brightness-medium" | "baseline-cable" | "baseline-cameraswitch" | "baseline-credit-score" | "baseline-dark-mode" | "baseline-data-saver-off" | "baseline-data-saver-on" | "baseline-data-usage" | "baseline-dataset" | "baseline-dataset-linked" | "baseline-developer-mode" | "baseline-device-thermostat" | "baseline-devices" | "baseline-devices-fold" | "baseline-discount" | "baseline-do-not-disturb-on-total-silence" | "baseline-dvr" | "baseline-e-mobiledata" | "baseline-edgesensor-high" | "baseline-edgesensor-low" | "baseline-flashlight-off" | "baseline-flashlight-on" | "baseline-flourescent" | "baseline-fluorescent" | "baseline-fmd-bad" | "baseline-fmd-good" | "baseline-g-mobiledata" | "baseline-gpp-bad" | "baseline-gpp-good" | "baseline-gpp-maybe" | "baseline-gps-fixed" | "baseline-gps-not-fixed" | "baseline-gps-off" | "baseline-graphic-eq" | "baseline-grid-3x3" | "baseline-grid-4x4" | "baseline-grid-goldenratio" | "baseline-h-mobiledata" | "baseline-h-plus-mobiledata" | "baseline-hdr-auto" | "baseline-hdr-auto-select" | "baseline-hdr-off-select" | "baseline-hdr-on-select" | "baseline-lan" | "baseline-lens-blur" | "baseline-light-mode" | "baseline-location-disabled" | "baseline-location-searching" | "baseline-lte-mobiledata" | "baseline-lte-plus-mobiledata" | "baseline-macro-off" | "baseline-media-bluetooth-off" | "baseline-media-bluetooth-on" | "baseline-medication" | "baseline-medication-liquid" | "baseline-mobile-friendly" | "baseline-mobile-off" | "baseline-mobiledata-off" | "baseline-mode-night" | "baseline-mode-standby" | "baseline-monitor-heart" | "baseline-monitor-weight" | "baseline-nearby-error" | "baseline-nearby-off" | "baseline-network-cell" | "baseline-network-wifi" | "baseline-network-wifi-1-bar" | "baseline-network-wifi-2-bar" | "baseline-network-wifi-3-bar" | "baseline-nfc" | "baseline-nightlight" | "baseline-note-alt" | "baseline-password" | "baseline-pattern" | "baseline-phishing" | "baseline-pin" | "baseline-play-lesson" | "baseline-price-change" | "baseline-price-check" | "baseline-punch-clock" | "baseline-quiz" | "baseline-r-mobiledata" | "baseline-radar" | "baseline-remember-me" | "baseline-reset-tv" | "baseline-restart-alt" | "baseline-reviews" | "baseline-rsvp" | "baseline-screen-lock-landscape" | "baseline-screen-lock-portrait" | "baseline-screen-lock-rotation" | "baseline-screen-rotation" | "baseline-screen-search-desktop" | "baseline-screenshot" | "baseline-screenshot-monitor" | "baseline-sd-storage" | "baseline-security-update" | "baseline-security-update-good" | "baseline-security-update-warning" | "baseline-sell" | "baseline-send-to-mobile" | "baseline-settings-suggest" | "baseline-settings-system-daydream" | "baseline-share-location" | "baseline-shortcut" | "baseline-signal-cellular-0-bar" | "baseline-signal-cellular-1-bar" | "baseline-signal-cellular-2-bar" | "baseline-signal-cellular-3-bar" | "baseline-signal-cellular-4-bar" | "baseline-signal-cellular-alt" | "baseline-signal-cellular-alt-1-bar" | "baseline-signal-cellular-alt-2-bar" | "baseline-signal-cellular-connected-no-internet-0-bar" | "baseline-signal-cellular-connected-no-internet-1-bar" | "baseline-signal-cellular-connected-no-internet-2-bar" | "baseline-signal-cellular-connected-no-internet-3-bar" | "baseline-signal-cellular-connected-no-internet-4-bar" | "baseline-signal-cellular-no-sim" | "baseline-signal-cellular-nodata" | "baseline-signal-cellular-null" | "baseline-signal-cellular-off" | "baseline-signal-wifi-0-bar" | "baseline-signal-wifi-1-bar" | "baseline-signal-wifi-1-bar-lock" | "baseline-signal-wifi-2-bar" | "baseline-signal-wifi-2-bar-lock" | "baseline-signal-wifi-3-bar" | "baseline-signal-wifi-3-bar-lock" | "baseline-signal-wifi-4-bar" | "baseline-signal-wifi-4-bar-lock" | "baseline-signal-wifi-bad" | "baseline-signal-wifi-connected-no-internet-4" | "baseline-signal-wifi-off" | "baseline-signal-wifi-statusbar-4-bar" | "baseline-signal-wifi-statusbar-connected-no-internet-4" | "baseline-signal-wifi-statusbar-null" | "baseline-sim-card-download" | "baseline-splitscreen" | "baseline-sports-score" | "baseline-ssid-chart" | "baseline-storage" | "baseline-storm" | "baseline-summarize" | "baseline-system-security-update" | "baseline-system-security-update-good" | "baseline-system-security-update-warning" | "baseline-task" | "baseline-thermostat" | "baseline-timer-10-select" | "baseline-timer-3-select" | "baseline-tungsten" | "baseline-usb" | "baseline-usb-off" | "baseline-wallpaper" | "baseline-water" | "baseline-widgets" | "baseline-wifi-1-bar" | "baseline-wifi-2-bar" | "baseline-wifi-calling-3" | "baseline-wifi-channel" | "baseline-wifi-find" | "baseline-wifi-lock" | "baseline-wifi-password" | "baseline-wifi-tethering" | "baseline-wifi-tethering-error" | "baseline-wifi-tethering-error-rounded" | "baseline-wifi-tethering-off" | "outline-1x-mobiledata" | "outline-30fps" | "outline-3g-mobiledata" | "outline-4g-mobiledata" | "outline-4g-plus-mobiledata" | "outline-60fps" | "outline-access-alarm" | "outline-access-alarms" | "outline-access-time" | "outline-access-time-filled" | "outline-ad-units" | "outline-add-alarm" | "outline-add-to-home-screen" | "outline-air" | "outline-airplane-ticket" | "outline-airplanemode-active" | "outline-airplanemode-inactive" | "outline-aod" | "outline-battery-0-bar" | "outline-battery-1-bar" | "outline-battery-2-bar" | "outline-battery-20" | "outline-battery-3-bar" | "outline-battery-30" | "outline-battery-4-bar" | "outline-battery-5-bar" | "outline-battery-50" | "outline-battery-6-bar" | "outline-battery-60" | "outline-battery-80" | "outline-battery-90" | "outline-battery-alert" | "outline-battery-charging-20" | "outline-battery-charging-30" | "outline-battery-charging-50" | "outline-battery-charging-60" | "outline-battery-charging-80" | "outline-battery-charging-90" | "outline-battery-charging-full" | "outline-battery-full" | "outline-battery-saver" | "outline-battery-std" | "outline-battery-unknown" | "outline-bloodtype" | "outline-bluetooth" | "outline-bluetooth-connected" | "outline-bluetooth-disabled" | "outline-bluetooth-drive" | "outline-bluetooth-searching" | "outline-brightness-auto" | "outline-brightness-high" | "outline-brightness-low" | "outline-brightness-medium" | "outline-cable" | "outline-cameraswitch" | "outline-credit-score" | "outline-dark-mode" | "outline-data-saver-off" | "outline-data-saver-on" | "outline-data-usage" | "outline-dataset" | "outline-dataset-linked" | "outline-developer-mode" | "outline-device-thermostat" | "outline-devices" | "outline-devices-fold" | "outline-discount" | "outline-do-not-disturb-on-total-silence" | "outline-dvr" | "outline-e-mobiledata" | "outline-edgesensor-high" | "outline-edgesensor-low" | "outline-flashlight-off" | "outline-flashlight-on" | "outline-flourescent" | "outline-fluorescent" | "outline-fmd-bad" | "outline-fmd-good" | "outline-g-mobiledata" | "outline-gpp-bad" | "outline-gpp-good" | "outline-gpp-maybe" | "outline-gps-fixed" | "outline-gps-not-fixed" | "outline-gps-off" | "outline-graphic-eq" | "outline-grid-3x3" | "outline-grid-4x4" | "outline-grid-goldenratio" | "outline-h-mobiledata" | "outline-h-plus-mobiledata" | "outline-hdr-auto" | "outline-hdr-auto-select" | "outline-hdr-off-select" | "outline-hdr-on-select" | "outline-lan" | "outline-lens-blur" | "outline-light-mode" | "outline-location-disabled" | "outline-location-searching" | "outline-lte-mobiledata" | "outline-lte-plus-mobiledata" | "outline-macro-off" | "outline-media-bluetooth-off" | "outline-media-bluetooth-on" | "outline-medication" | "outline-medication-liquid" | "outline-mobile-friendly" | "outline-mobile-off" | "outline-mobiledata-off" | "outline-mode-night" | "outline-mode-standby" | "outline-monitor-heart" | "outline-monitor-weight" | "outline-nearby-error" | "outline-nearby-off" | "outline-network-cell" | "outline-network-wifi" | "outline-network-wifi-1-bar" | "outline-network-wifi-2-bar" | "outline-network-wifi-3-bar" | "outline-nfc" | "outline-nightlight" | "outline-note-alt" | "outline-password" | "outline-pattern" | "outline-phishing" | "outline-pin" | "outline-play-lesson" | "outline-price-change" | "outline-price-check" | "outline-punch-clock" | "outline-quiz" | "outline-r-mobiledata" | "outline-radar" | "outline-remember-me" | "outline-reset-tv" | "outline-restart-alt" | "outline-reviews" | "outline-rsvp" | "outline-screen-lock-landscape" | "outline-screen-lock-portrait" | "outline-screen-lock-rotation" | "outline-screen-rotation" | "outline-screen-search-desktop" | "outline-screenshot" | "outline-screenshot-monitor" | "outline-sd-storage" | "outline-security-update" | "outline-security-update-good" | "outline-security-update-warning" | "outline-sell" | "outline-send-to-mobile" | "outline-settings-suggest" | "outline-settings-system-daydream" | "outline-share-location" | "outline-shortcut" | "outline-signal-cellular-0-bar" | "outline-signal-cellular-1-bar" | "outline-signal-cellular-2-bar" | "outline-signal-cellular-3-bar" | "outline-signal-cellular-4-bar" | "outline-signal-cellular-alt" | "outline-signal-cellular-alt-1-bar" | "outline-signal-cellular-alt-2-bar" | "outline-signal-cellular-connected-no-internet-0-bar" | "outline-signal-cellular-connected-no-internet-1-bar" | "outline-signal-cellular-connected-no-internet-2-bar" | "outline-signal-cellular-connected-no-internet-3-bar" | "outline-signal-cellular-connected-no-internet-4-bar" | "outline-signal-cellular-no-sim" | "outline-signal-cellular-nodata" | "outline-signal-cellular-null" | "outline-signal-cellular-off" | "outline-signal-wifi-0-bar" | "outline-signal-wifi-1-bar" | "outline-signal-wifi-1-bar-lock" | "outline-signal-wifi-2-bar" | "outline-signal-wifi-2-bar-lock" | "outline-signal-wifi-3-bar" | "outline-signal-wifi-3-bar-lock" | "outline-signal-wifi-4-bar" | "outline-signal-wifi-4-bar-lock" | "outline-signal-wifi-bad" | "outline-signal-wifi-connected-no-internet-4" | "outline-signal-wifi-off" | "outline-signal-wifi-statusbar-4-bar" | "outline-signal-wifi-statusbar-connected-no-internet-4" | "outline-signal-wifi-statusbar-null" | "outline-sim-card-download" | "outline-splitscreen" | "outline-sports-score" | "outline-ssid-chart" | "outline-storage" | "outline-storm" | "outline-summarize" | "outline-system-security-update" | "outline-system-security-update-good" | "outline-system-security-update-warning" | "outline-task" | "outline-thermostat" | "outline-timer-10-select" | "outline-timer-3-select" | "outline-tungsten" | "outline-usb" | "outline-usb-off" | "outline-wallpaper" | "outline-water" | "outline-widgets" | "outline-wifi-1-bar" | "outline-wifi-2-bar" | "outline-wifi-calling-3" | "outline-wifi-channel" | "outline-wifi-find" | "outline-wifi-lock" | "outline-wifi-password" | "outline-wifi-tethering" | "outline-wifi-tethering-error" | "outline-wifi-tethering-error-rounded" | "outline-wifi-tethering-off" | "round-1x-mobiledata" | "round-30fps" | "round-3g-mobiledata" | "round-4g-mobiledata" | "round-4g-plus-mobiledata" | "round-60fps" | "round-access-alarm" | "round-access-alarms" | "round-access-time" | "round-access-time-filled" | "round-ad-units" | "round-add-alarm" | "round-add-to-home-screen" | "round-air" | "round-airplane-ticket" | "round-airplanemode-active" | "round-airplanemode-inactive" | "round-aod" | "round-battery-0-bar" | "round-battery-1-bar" | "round-battery-2-bar" | "round-battery-20" | "round-battery-3-bar" | "round-battery-30" | "round-battery-4-bar" | "round-battery-5-bar" | "round-battery-50" | "round-battery-6-bar" | "round-battery-60" | "round-battery-80" | "round-battery-90" | "round-battery-alert" | "round-battery-charging-20" | "round-battery-charging-30" | "round-battery-charging-50" | "round-battery-charging-60" | "round-battery-charging-80" | "round-battery-charging-90" | "round-battery-charging-full" | "round-battery-full" | "round-battery-saver" | "round-battery-std" | "round-battery-unknown" | "round-bloodtype" | "round-bluetooth" | "round-bluetooth-connected" | "round-bluetooth-disabled" | "round-bluetooth-drive" | "round-bluetooth-searching" | "round-brightness-auto" | "round-brightness-high" | "round-brightness-low" | "round-brightness-medium" | "round-cable" | "round-cameraswitch" | "round-credit-score" | "round-dark-mode" | "round-data-saver-off" | "round-data-saver-on" | "round-data-usage" | "round-dataset" | "round-dataset-linked" | "round-developer-mode" | "round-device-thermostat" | "round-devices" | "round-devices-fold" | "round-discount" | "round-do-not-disturb-on-total-silence" | "round-dvr" | "round-e-mobiledata" | "round-edgesensor-high" | "round-edgesensor-low" | "round-flashlight-off" | "round-flashlight-on" | "round-flourescent" | "round-fluorescent" | "round-fmd-bad" | "round-fmd-good" | "round-g-mobiledata" | "round-gpp-bad" | "round-gpp-good" | "round-gpp-maybe" | "round-gps-fixed" | "round-gps-not-fixed" | "round-gps-off" | "round-graphic-eq" | "round-grid-3x3" | "round-grid-4x4" | "round-grid-goldenratio" | "round-h-mobiledata" | "round-h-plus-mobiledata" | "round-hdr-auto" | "round-hdr-auto-select" | "round-hdr-off-select" | "round-hdr-on-select" | "round-lan" | "round-lens-blur" | "round-light-mode" | "round-location-disabled" | "round-location-searching" | "round-lte-mobiledata" | "round-lte-plus-mobiledata" | "round-macro-off" | "round-media-bluetooth-off" | "round-media-bluetooth-on" | "round-medication" | "round-medication-liquid" | "round-mobile-friendly" | "round-mobile-off" | "round-mobiledata-off" | "round-mode-night" | "round-mode-standby" | "round-monitor-heart" | "round-monitor-weight" | "round-nearby-error" | "round-nearby-off" | "round-network-cell" | "round-network-wifi" | "round-network-wifi-1-bar" | "round-network-wifi-2-bar" | "round-network-wifi-3-bar" | "round-nfc" | "round-nightlight" | "round-note-alt" | "round-password" | "round-pattern" | "round-phishing" | "round-pin" | "round-play-lesson" | "round-price-change" | "round-price-check" | "round-punch-clock" | "round-quiz" | "round-r-mobiledata" | "round-radar" | "round-remember-me" | "round-reset-tv" | "round-restart-alt" | "round-reviews" | "round-rsvp" | "round-screen-lock-landscape" | "round-screen-lock-portrait" | "round-screen-lock-rotation" | "round-screen-rotation" | "round-screen-search-desktop" | "round-screenshot" | "round-screenshot-monitor" | "round-sd-storage" | "round-security-update" | "round-security-update-good" | "round-security-update-warning" | "round-sell" | "round-send-to-mobile" | "round-settings-suggest" | "round-settings-system-daydream" | "round-share-location" | "round-shortcut" | "round-signal-cellular-0-bar" | "round-signal-cellular-1-bar" | "round-signal-cellular-2-bar" | "round-signal-cellular-3-bar" | "round-signal-cellular-4-bar" | "round-signal-cellular-alt" | "round-signal-cellular-alt-1-bar" | "round-signal-cellular-alt-2-bar" | "round-signal-cellular-connected-no-internet-0-bar" | "round-signal-cellular-connected-no-internet-1-bar" | "round-signal-cellular-connected-no-internet-2-bar" | "round-signal-cellular-connected-no-internet-3-bar" | "round-signal-cellular-connected-no-internet-4-bar" | "round-signal-cellular-no-sim" | "round-signal-cellular-nodata" | "round-signal-cellular-null" | "round-signal-cellular-off" | "round-signal-wifi-0-bar" | "round-signal-wifi-1-bar" | "round-signal-wifi-1-bar-lock" | "round-signal-wifi-2-bar" | "round-signal-wifi-2-bar-lock" | "round-signal-wifi-3-bar" | "round-signal-wifi-3-bar-lock" | "round-signal-wifi-4-bar" | "round-signal-wifi-4-bar-lock" | "round-signal-wifi-bad" | "round-signal-wifi-connected-no-internet-4" | "round-signal-wifi-off" | "round-signal-wifi-statusbar-4-bar" | "round-signal-wifi-statusbar-connected-no-internet-4" | "round-signal-wifi-statusbar-null" | "round-sim-card-download" | "round-splitscreen" | "round-sports-score" | "round-ssid-chart" | "round-storage" | "round-storm" | "round-summarize" | "round-system-security-update" | "round-system-security-update-good" | "round-system-security-update-warning" | "round-task" | "round-thermostat" | "round-timer-10-select" | "round-timer-3-select" | "round-tungsten" | "round-usb" | "round-usb-off" | "round-wallpaper" | "round-water" | "round-widgets" | "round-wifi-1-bar" | "round-wifi-2-bar" | "round-wifi-calling-3" | "round-wifi-channel" | "round-wifi-find" | "round-wifi-lock" | "round-wifi-password" | "round-wifi-tethering" | "round-wifi-tethering-error" | "round-wifi-tethering-error-rounded" | "round-wifi-tethering-off" | "sharp-1x-mobiledata" | "sharp-30fps" | "sharp-3g-mobiledata" | "sharp-4g-mobiledata" | "sharp-4g-plus-mobiledata" | "sharp-60fps" | "sharp-access-alarm" | "sharp-access-alarms" | "sharp-access-time" | "sharp-access-time-filled" | "sharp-ad-units" | "sharp-add-alarm" | "sharp-add-to-home-screen" | "sharp-air" | "sharp-airplane-ticket" | "sharp-airplanemode-active" | "sharp-airplanemode-inactive" | "sharp-aod" | "sharp-battery-0-bar" | "sharp-battery-1-bar" | "sharp-battery-2-bar" | "sharp-battery-20" | "sharp-battery-3-bar" | "sharp-battery-30" | "sharp-battery-4-bar" | "sharp-battery-5-bar" | "sharp-battery-50" | "sharp-battery-6-bar" | "sharp-battery-60" | "sharp-battery-80" | "sharp-battery-90" | "sharp-battery-alert" | "sharp-battery-charging-20" | "sharp-battery-charging-30" | "sharp-battery-charging-50" | "sharp-battery-charging-60" | "sharp-battery-charging-80" | "sharp-battery-charging-90" | "sharp-battery-charging-full" | "sharp-battery-full" | "sharp-battery-saver" | "sharp-battery-std" | "sharp-battery-unknown" | "sharp-bloodtype" | "sharp-bluetooth" | "sharp-bluetooth-connected" | "sharp-bluetooth-disabled" | "sharp-bluetooth-drive" | "sharp-bluetooth-searching" | "sharp-brightness-auto" | "sharp-brightness-high" | "sharp-brightness-low" | "sharp-brightness-medium" | "sharp-cable" | "sharp-cameraswitch" | "sharp-credit-score" | "sharp-dark-mode" | "sharp-data-saver-off" | "sharp-data-saver-on" | "sharp-data-usage" | "sharp-dataset" | "sharp-dataset-linked" | "sharp-developer-mode" | "sharp-device-thermostat" | "sharp-devices" | "sharp-devices-fold" | "sharp-discount" | "sharp-do-not-disturb-on-total-silence" | "sharp-dvr" | "sharp-e-mobiledata" | "sharp-edgesensor-high" | "sharp-edgesensor-low" | "sharp-flashlight-off" | "sharp-flashlight-on" | "sharp-flourescent" | "sharp-fluorescent" | "sharp-fmd-bad" | "sharp-fmd-good" | "sharp-g-mobiledata" | "sharp-gpp-bad" | "sharp-gpp-good" | "sharp-gpp-maybe" | "sharp-gps-fixed" | "sharp-gps-not-fixed" | "sharp-gps-off" | "sharp-graphic-eq" | "sharp-grid-3x3" | "sharp-grid-4x4" | "sharp-grid-goldenratio" | "sharp-h-mobiledata" | "sharp-h-plus-mobiledata" | "sharp-hdr-auto" | "sharp-hdr-auto-select" | "sharp-hdr-off-select" | "sharp-hdr-on-select" | "sharp-lan" | "sharp-lens-blur" | "sharp-light-mode" | "sharp-location-disabled" | "sharp-location-searching" | "sharp-lte-mobiledata" | "sharp-lte-plus-mobiledata" | "sharp-macro-off" | "sharp-media-bluetooth-off" | "sharp-media-bluetooth-on" | "sharp-medication" | "sharp-medication-liquid" | "sharp-mobile-friendly" | "sharp-mobile-off" | "sharp-mobiledata-off" | "sharp-mode-night" | "sharp-mode-standby" | "sharp-monitor-heart" | "sharp-monitor-weight" | "sharp-nearby-error" | "sharp-nearby-off" | "sharp-network-cell" | "sharp-network-wifi" | "sharp-network-wifi-1-bar" | "sharp-network-wifi-2-bar" | "sharp-network-wifi-3-bar" | "sharp-nfc" | "sharp-nightlight" | "sharp-note-alt" | "sharp-password" | "sharp-pattern" | "sharp-phishing" | "sharp-pin" | "sharp-play-lesson" | "sharp-price-change" | "sharp-price-check" | "sharp-punch-clock" | "sharp-quiz" | "sharp-r-mobiledata" | "sharp-radar" | "sharp-remember-me" | "sharp-reset-tv" | "sharp-restart-alt" | "sharp-reviews" | "sharp-rsvp" | "sharp-screen-lock-landscape" | "sharp-screen-lock-portrait" | "sharp-screen-lock-rotation" | "sharp-screen-rotation" | "sharp-screen-search-desktop" | "sharp-screenshot" | "sharp-screenshot-monitor" | "sharp-sd-storage" | "sharp-security-update" | "sharp-security-update-good" | "sharp-security-update-warning" | "sharp-sell" | "sharp-send-to-mobile" | "sharp-settings-suggest" | "sharp-settings-system-daydream" | "sharp-share-location" | "sharp-shortcut" | "sharp-signal-cellular-0-bar" | "sharp-signal-cellular-1-bar" | "sharp-signal-cellular-2-bar" | "sharp-signal-cellular-3-bar" | "sharp-signal-cellular-4-bar" | "sharp-signal-cellular-alt" | "sharp-signal-cellular-alt-1-bar" | "sharp-signal-cellular-alt-2-bar" | "sharp-signal-cellular-connected-no-internet-0-bar" | "sharp-signal-cellular-connected-no-internet-1-bar" | "sharp-signal-cellular-connected-no-internet-2-bar" | "sharp-signal-cellular-connected-no-internet-3-bar" | "sharp-signal-cellular-connected-no-internet-4-bar" | "sharp-signal-cellular-no-sim" | "sharp-signal-cellular-nodata" | "sharp-signal-cellular-null" | "sharp-signal-cellular-off" | "sharp-signal-wifi-0-bar" | "sharp-signal-wifi-1-bar" | "sharp-signal-wifi-1-bar-lock" | "sharp-signal-wifi-2-bar" | "sharp-signal-wifi-2-bar-lock" | "sharp-signal-wifi-3-bar" | "sharp-signal-wifi-3-bar-lock" | "sharp-signal-wifi-4-bar" | "sharp-signal-wifi-4-bar-lock" | "sharp-signal-wifi-bad" | "sharp-signal-wifi-connected-no-internet-4" | "sharp-signal-wifi-off" | "sharp-signal-wifi-statusbar-4-bar" | "sharp-signal-wifi-statusbar-connected-no-internet-4" | "sharp-signal-wifi-statusbar-null" | "sharp-sim-card-download" | "sharp-splitscreen" | "sharp-sports-score" | "sharp-ssid-chart" | "sharp-storage" | "sharp-storm" | "sharp-summarize" | "sharp-system-security-update" | "sharp-system-security-update-good" | "sharp-system-security-update-warning" | "sharp-task" | "sharp-thermostat" | "sharp-timer-10-select" | "sharp-timer-3-select" | "sharp-tungsten" | "sharp-usb" | "sharp-usb-off" | "sharp-wallpaper" | "sharp-water" | "sharp-widgets" | "sharp-wifi-1-bar" | "sharp-wifi-2-bar" | "sharp-wifi-calling-3" | "sharp-wifi-channel" | "sharp-wifi-find" | "sharp-wifi-lock" | "sharp-wifi-password" | "sharp-wifi-tethering" | "sharp-wifi-tethering-error" | "sharp-wifi-tethering-error-rounded" | "sharp-wifi-tethering-off" | "twotone-1x-mobiledata" | "twotone-30fps" | "twotone-3g-mobiledata" | "twotone-4g-mobiledata" | "twotone-4g-plus-mobiledata" | "twotone-60fps" | "twotone-access-alarm" | "twotone-access-alarms" | "twotone-access-time" | "twotone-access-time-filled" | "twotone-ad-units" | "twotone-add-alarm" | "twotone-add-to-home-screen" | "twotone-air" | "twotone-airplane-ticket" | "twotone-airplanemode-active" | "twotone-airplanemode-inactive" | "twotone-aod" | "twotone-battery-0-bar" | "twotone-battery-1-bar" | "twotone-battery-2-bar" | "twotone-battery-20" | "twotone-battery-3-bar" | "twotone-battery-30" | "twotone-battery-4-bar" | "twotone-battery-5-bar" | "twotone-battery-50" | "twotone-battery-6-bar" | "twotone-battery-60" | "twotone-battery-80" | "twotone-battery-90" | "twotone-battery-alert" | "twotone-battery-charging-20" | "twotone-battery-charging-30" | "twotone-battery-charging-50" | "twotone-battery-charging-60" | "twotone-battery-charging-80" | "twotone-battery-charging-90" | "twotone-battery-charging-full" | "twotone-battery-full" | "twotone-battery-saver" | "twotone-battery-std" | "twotone-battery-unknown" | "twotone-bloodtype" | "twotone-bluetooth" | "twotone-bluetooth-connected" | "twotone-bluetooth-disabled" | "twotone-bluetooth-drive" | "twotone-bluetooth-searching" | "twotone-brightness-auto" | "twotone-brightness-high" | "twotone-brightness-low" | "twotone-brightness-medium" | "twotone-cable" | "twotone-cameraswitch" | "twotone-credit-score" | "twotone-dark-mode" | "twotone-data-saver-off" | "twotone-data-saver-on" | "twotone-data-usage" | "twotone-dataset" | "twotone-dataset-linked" | "twotone-developer-mode" | "twotone-device-thermostat" | "twotone-devices" | "twotone-devices-fold" | "twotone-discount" | "twotone-do-not-disturb-on-total-silence" | "twotone-dvr" | "twotone-e-mobiledata" | "twotone-edgesensor-high" | "twotone-edgesensor-low" | "twotone-flashlight-off" | "twotone-flashlight-on" | "twotone-flourescent" | "twotone-fluorescent" | "twotone-fmd-bad" | "twotone-fmd-good" | "twotone-g-mobiledata" | "twotone-gpp-bad" | "twotone-gpp-good" | "twotone-gpp-maybe" | "twotone-gps-fixed" | "twotone-gps-not-fixed" | "twotone-gps-off" | "twotone-graphic-eq" | "twotone-grid-3x3" | "twotone-grid-4x4" | "twotone-grid-goldenratio" | "twotone-h-mobiledata" | "twotone-h-plus-mobiledata" | "twotone-hdr-auto" | "twotone-hdr-auto-select" | "twotone-hdr-off-select" | "twotone-hdr-on-select" | "twotone-lan" | "twotone-lens-blur" | "twotone-light-mode" | "twotone-location-disabled" | "twotone-location-searching" | "twotone-lte-mobiledata" | "twotone-lte-plus-mobiledata" | "twotone-macro-off" | "twotone-media-bluetooth-off" | "twotone-media-bluetooth-on" | "twotone-medication" | "twotone-medication-liquid" | "twotone-mobile-friendly" | "twotone-mobile-off" | "twotone-mobiledata-off" | "twotone-mode-night" | "twotone-mode-standby" | "twotone-monitor-heart" | "twotone-monitor-weight" | "twotone-nearby-error" | "twotone-nearby-off" | "twotone-network-cell" | "twotone-network-wifi" | "twotone-network-wifi-1-bar" | "twotone-network-wifi-2-bar" | "twotone-network-wifi-3-bar" | "twotone-nfc" | "twotone-nightlight" | "twotone-note-alt" | "twotone-password" | "twotone-pattern" | "twotone-phishing" | "twotone-pin" | "twotone-play-lesson" | "twotone-price-change" | "twotone-price-check" | "twotone-punch-clock" | "twotone-quiz" | "twotone-r-mobiledata" | "twotone-radar" | "twotone-remember-me" | "twotone-reset-tv" | "twotone-restart-alt" | "twotone-reviews" | "twotone-rsvp" | "twotone-screen-lock-landscape" | "twotone-screen-lock-portrait" | "twotone-screen-lock-rotation" | "twotone-screen-rotation" | "twotone-screen-search-desktop" | "twotone-screenshot" | "twotone-screenshot-monitor" | "twotone-sd-storage" | "twotone-security-update" | "twotone-security-update-good" | "twotone-security-update-warning" | "twotone-sell" | "twotone-send-to-mobile" | "twotone-settings-suggest" | "twotone-settings-system-daydream" | "twotone-share-location" | "twotone-shortcut" | "twotone-signal-cellular-0-bar" | "twotone-signal-cellular-1-bar" | "twotone-signal-cellular-2-bar" | "twotone-signal-cellular-3-bar" | "twotone-signal-cellular-4-bar" | "twotone-signal-cellular-alt" | "twotone-signal-cellular-alt-1-bar" | "twotone-signal-cellular-alt-2-bar" | "twotone-signal-cellular-connected-no-internet-0-bar" | "twotone-signal-cellular-connected-no-internet-1-bar" | "twotone-signal-cellular-connected-no-internet-2-bar" | "twotone-signal-cellular-connected-no-internet-3-bar" | "twotone-signal-cellular-connected-no-internet-4-bar" | "twotone-signal-cellular-no-sim" | "twotone-signal-cellular-nodata" | "twotone-signal-cellular-null" | "twotone-signal-cellular-off" | "twotone-signal-wifi-0-bar" | "twotone-signal-wifi-1-bar" | "twotone-signal-wifi-1-bar-lock" | "twotone-signal-wifi-2-bar" | "twotone-signal-wifi-2-bar-lock" | "twotone-signal-wifi-3-bar" | "twotone-signal-wifi-3-bar-lock" | "twotone-signal-wifi-4-bar" | "twotone-signal-wifi-4-bar-lock" | "twotone-signal-wifi-bad" | "twotone-signal-wifi-connected-no-internet-4" | "twotone-signal-wifi-off" | "twotone-signal-wifi-statusbar-4-bar" | "twotone-signal-wifi-statusbar-connected-no-internet-4" | "twotone-signal-wifi-statusbar-null" | "twotone-sim-card-download" | "twotone-splitscreen" | "twotone-sports-score" | "twotone-ssid-chart" | "twotone-storage" | "twotone-storm" | "twotone-summarize" | "twotone-system-security-update" | "twotone-system-security-update-good" | "twotone-system-security-update-warning" | "twotone-task" | "twotone-thermostat" | "twotone-timer-10-select" | "twotone-timer-3-select" | "twotone-tungsten" | "twotone-usb" | "twotone-usb-off" | "twotone-wallpaper" | "twotone-water" | "twotone-widgets" | "twotone-wifi-1-bar" | "twotone-wifi-2-bar" | "twotone-wifi-calling-3" | "twotone-wifi-channel" | "twotone-wifi-find" | "twotone-wifi-lock" | "twotone-wifi-password" | "twotone-wifi-tethering" | "twotone-wifi-tethering-error" | "twotone-wifi-tethering-error-rounded" | "twotone-wifi-tethering-off" | "baseline-add-chart" | "baseline-add-comment" | "baseline-align-horizontal-center" | "baseline-align-horizontal-left" | "baseline-align-horizontal-right" | "baseline-align-vertical-bottom" | "baseline-align-vertical-center" | "baseline-align-vertical-top" | "baseline-area-chart" | "baseline-attach-file" | "baseline-attach-money" | "baseline-auto-graph" | "baseline-bar-chart" | "baseline-border-all" | "baseline-border-bottom" | "baseline-border-clear" | "baseline-border-color" | "baseline-border-horizontal" | "baseline-border-inner" | "baseline-border-left" | "baseline-border-outer" | "baseline-border-right" | "baseline-border-style" | "baseline-border-top" | "baseline-border-vertical" | "baseline-bubble-chart" | "baseline-candlestick-chart" | "baseline-checklist" | "baseline-checklist-rtl" | "baseline-data-array" | "baseline-data-object" | "baseline-drag-handle" | "baseline-draw" | "baseline-edit-note" | "baseline-format-align-center" | "baseline-format-align-justify" | "baseline-format-align-left" | "baseline-format-align-right" | "baseline-format-bold" | "baseline-format-clear" | "baseline-format-color-fill" | "baseline-format-color-reset" | "baseline-format-color-text" | "baseline-format-indent-decrease" | "baseline-format-indent-increase" | "baseline-format-italic" | "baseline-format-line-spacing" | "baseline-format-list-bulleted" | "baseline-format-list-numbered" | "baseline-format-list-numbered-rtl" | "baseline-format-paint" | "baseline-format-quote" | "baseline-format-shapes" | "baseline-format-size" | "baseline-format-strikethrough" | "baseline-format-textdirection-l-to-r" | "baseline-format-textdirection-r-to-l" | "baseline-format-underlined" | "baseline-functions" | "baseline-height" | "baseline-hexagon" | "baseline-highlight" | "baseline-horizontal-distribute" | "baseline-horizontal-rule" | "baseline-insert-chart" | "baseline-insert-chart-outlined" | "baseline-insert-comment" | "baseline-insert-drive-file" | "baseline-insert-emoticon" | "baseline-insert-invitation" | "baseline-insert-link" | "baseline-insert-page-break" | "baseline-insert-photo" | "baseline-line-axis" | "baseline-linear-scale" | "baseline-margin" | "baseline-merge-type" | "baseline-mode" | "baseline-mode-comment" | "baseline-mode-edit" | "baseline-mode-edit-outline" | "baseline-monetization-on" | "baseline-money-off" | "baseline-money-off-csred" | "baseline-move-down" | "baseline-move-up" | "baseline-multiline-chart" | "baseline-notes" | "baseline-numbers" | "baseline-padding" | "baseline-pentagon" | "baseline-pie-chart" | "baseline-pie-chart-outline" | "baseline-polyline" | "baseline-post-add" | "baseline-publish" | "baseline-query-stats" | "baseline-rectangle" | "baseline-scatter-plot" | "baseline-schema" | "baseline-score" | "baseline-shape-line" | "baseline-short-text" | "baseline-show-chart" | "baseline-space-bar" | "baseline-square" | "baseline-stacked-line-chart" | "baseline-strikethrough-s" | "baseline-subscript" | "baseline-superscript" | "baseline-table-chart" | "baseline-table-rows" | "baseline-text-decrease" | "baseline-text-fields" | "baseline-text-increase" | "baseline-title" | "baseline-type-specimen" | "baseline-vertical-align-bottom" | "baseline-vertical-align-center" | "baseline-vertical-align-top" | "baseline-vertical-distribute" | "baseline-wrap-text" | "outline-add-chart" | "outline-add-comment" | "outline-align-horizontal-center" | "outline-align-horizontal-left" | "outline-align-horizontal-right" | "outline-align-vertical-bottom" | "outline-align-vertical-center" | "outline-align-vertical-top" | "outline-area-chart" | "outline-attach-file" | "outline-attach-money" | "outline-auto-graph" | "outline-bar-chart" | "outline-border-all" | "outline-border-bottom" | "outline-border-clear" | "outline-border-color" | "outline-border-horizontal" | "outline-border-inner" | "outline-border-left" | "outline-border-outer" | "outline-border-right" | "outline-border-style" | "outline-border-top" | "outline-border-vertical" | "outline-bubble-chart" | "outline-candlestick-chart" | "outline-checklist" | "outline-checklist-rtl" | "outline-data-array" | "outline-data-object" | "outline-drag-handle" | "outline-draw" | "outline-edit-note" | "outline-format-align-center" | "outline-format-align-justify" | "outline-format-align-left" | "outline-format-align-right" | "outline-format-bold" | "outline-format-clear" | "outline-format-color-fill" | "outline-format-color-reset" | "outline-format-color-text" | "outline-format-indent-decrease" | "outline-format-indent-increase" | "outline-format-italic" | "outline-format-line-spacing" | "outline-format-list-bulleted" | "outline-format-list-numbered" | "outline-format-list-numbered-rtl" | "outline-format-paint" | "outline-format-quote" | "outline-format-shapes" | "outline-format-size" | "outline-format-strikethrough" | "outline-format-textdirection-l-to-r" | "outline-format-textdirection-r-to-l" | "outline-format-underlined" | "outline-functions" | "outline-height" | "outline-hexagon" | "outline-highlight" | "outline-horizontal-distribute" | "outline-horizontal-rule" | "outline-insert-chart" | "outline-insert-chart-outlined" | "outline-insert-comment" | "outline-insert-drive-file" | "outline-insert-emoticon" | "outline-insert-invitation" | "outline-insert-link" | "outline-insert-page-break" | "outline-insert-photo" | "outline-line-axis" | "outline-linear-scale" | "outline-margin" | "outline-merge-type" | "outline-mode" | "outline-mode-comment" | "outline-mode-edit" | "outline-mode-edit-outline" | "outline-monetization-on" | "outline-money-off" | "outline-money-off-csred" | "outline-move-down" | "outline-move-up" | "outline-multiline-chart" | "outline-notes" | "outline-numbers" | "outline-padding" | "outline-pentagon" | "outline-pie-chart" | "outline-pie-chart-outline" | "outline-polyline" | "outline-post-add" | "outline-publish" | "outline-query-stats" | "outline-rectangle" | "outline-scatter-plot" | "outline-schema" | "outline-score" | "outline-shape-line" | "outline-short-text" | "outline-show-chart" | "outline-space-bar" | "outline-square" | "outline-stacked-line-chart" | "outline-strikethrough-s" | "outline-subscript" | "outline-superscript" | "outline-table-chart" | "outline-table-rows" | "outline-text-decrease" | "outline-text-fields" | "outline-text-increase" | "outline-title" | "outline-type-specimen" | "outline-vertical-align-bottom" | "outline-vertical-align-center" | "outline-vertical-align-top" | "outline-vertical-distribute" | "outline-wrap-text" | "round-add-chart" | "round-add-comment" | "round-align-horizontal-center" | "round-align-horizontal-left" | "round-align-horizontal-right" | "round-align-vertical-bottom" | "round-align-vertical-center" | "round-align-vertical-top" | "round-area-chart" | "round-attach-file" | "round-attach-money" | "round-auto-graph" | "round-bar-chart" | "round-border-all" | "round-border-bottom" | "round-border-clear" | "round-border-color" | "round-border-horizontal" | "round-border-inner" | "round-border-left" | "round-border-outer" | "round-border-right" | "round-border-style" | "round-border-top" | "round-border-vertical" | "round-bubble-chart" | "round-candlestick-chart" | "round-checklist" | "round-checklist-rtl" | "round-data-array" | "round-data-object" | "round-drag-handle" | "round-draw" | "round-edit-note" | "round-format-align-center" | "round-format-align-justify" | "round-format-align-left" | "round-format-align-right" | "round-format-bold" | "round-format-clear" | "round-format-color-fill" | "round-format-color-reset" | "round-format-color-text" | "round-format-indent-decrease" | "round-format-indent-increase" | "round-format-italic" | "round-format-line-spacing" | "round-format-list-bulleted" | "round-format-list-numbered" | "round-format-list-numbered-rtl" | "round-format-paint" | "round-format-quote" | "round-format-shapes" | "round-format-size" | "round-format-strikethrough" | "round-format-textdirection-l-to-r" | "round-format-textdirection-r-to-l" | "round-format-underlined" | "round-functions" | "round-height" | "round-hexagon" | "round-highlight" | "round-horizontal-distribute" | "round-horizontal-rule" | "round-insert-chart" | "round-insert-chart-outlined" | "round-insert-comment" | "round-insert-drive-file" | "round-insert-emoticon" | "round-insert-invitation" | "round-insert-link" | "round-insert-page-break" | "round-insert-photo" | "round-line-axis" | "round-linear-scale" | "round-margin" | "round-merge-type" | "round-mode" | "round-mode-comment" | "round-mode-edit" | "round-mode-edit-outline" | "round-monetization-on" | "round-money-off" | "round-money-off-csred" | "round-move-down" | "round-move-up" | "round-multiline-chart" | "round-notes" | "round-numbers" | "round-padding" | "round-pentagon" | "round-pie-chart" | "round-pie-chart-outline" | "round-polyline" | "round-post-add" | "round-publish" | "round-query-stats" | "round-rectangle" | "round-scatter-plot" | "round-schema" | "round-score" | "round-shape-line" | "round-short-text" | "round-show-chart" | "round-space-bar" | "round-square" | "round-stacked-line-chart" | "round-strikethrough-s" | "round-subscript" | "round-superscript" | "round-table-chart" | "round-table-rows" | "round-text-decrease" | "round-text-fields" | "round-text-increase" | "round-title" | "round-type-specimen" | "round-vertical-align-bottom" | "round-vertical-align-center" | "round-vertical-align-top" | "round-vertical-distribute" | "round-wrap-text" | "sharp-add-chart" | "sharp-add-comment" | "sharp-align-horizontal-center" | "sharp-align-horizontal-left" | "sharp-align-horizontal-right" | "sharp-align-vertical-bottom" | "sharp-align-vertical-center" | "sharp-align-vertical-top" | "sharp-area-chart" | "sharp-attach-file" | "sharp-attach-money" | "sharp-auto-graph" | "sharp-bar-chart" | "sharp-border-all" | "sharp-border-bottom" | "sharp-border-clear" | "sharp-border-color" | "sharp-border-horizontal" | "sharp-border-inner" | "sharp-border-left" | "sharp-border-outer" | "sharp-border-right" | "sharp-border-style" | "sharp-border-top" | "sharp-border-vertical" | "sharp-bubble-chart" | "sharp-candlestick-chart" | "sharp-checklist" | "sharp-checklist-rtl" | "sharp-data-array" | "sharp-data-object" | "sharp-drag-handle" | "sharp-draw" | "sharp-edit-note" | "sharp-format-align-center" | "sharp-format-align-justify" | "sharp-format-align-left" | "sharp-format-align-right" | "sharp-format-bold" | "sharp-format-clear" | "sharp-format-color-fill" | "sharp-format-color-reset" | "sharp-format-color-text" | "sharp-format-indent-decrease" | "sharp-format-indent-increase" | "sharp-format-italic" | "sharp-format-line-spacing" | "sharp-format-list-bulleted" | "sharp-format-list-numbered" | "sharp-format-list-numbered-rtl" | "sharp-format-paint" | "sharp-format-quote" | "sharp-format-shapes" | "sharp-format-size" | "sharp-format-strikethrough" | "sharp-format-textdirection-l-to-r" | "sharp-format-textdirection-r-to-l" | "sharp-format-underlined" | "sharp-functions" | "sharp-height" | "sharp-hexagon" | "sharp-highlight" | "sharp-horizontal-distribute" | "sharp-horizontal-rule" | "sharp-insert-chart" | "sharp-insert-chart-outlined" | "sharp-insert-comment" | "sharp-insert-drive-file" | "sharp-insert-emoticon" | "sharp-insert-invitation" | "sharp-insert-link" | "sharp-insert-page-break" | "sharp-insert-photo" | "sharp-line-axis" | "sharp-linear-scale" | "sharp-margin" | "sharp-merge-type" | "sharp-mode" | "sharp-mode-comment" | "sharp-mode-edit" | "sharp-mode-edit-outline" | "sharp-monetization-on" | "sharp-money-off" | "sharp-money-off-csred" | "sharp-move-down" | "sharp-move-up" | "sharp-multiline-chart" | "sharp-notes" | "sharp-numbers" | "sharp-padding" | "sharp-pentagon" | "sharp-pie-chart" | "sharp-pie-chart-outline" | "sharp-polyline" | "sharp-post-add" | "sharp-publish" | "sharp-query-stats" | "sharp-rectangle" | "sharp-scatter-plot" | "sharp-schema" | "sharp-score" | "sharp-shape-line" | "sharp-short-text" | "sharp-show-chart" | "sharp-space-bar" | "sharp-square" | "sharp-stacked-line-chart" | "sharp-strikethrough-s" | "sharp-subscript" | "sharp-superscript" | "sharp-table-chart" | "sharp-table-rows" | "sharp-text-decrease" | "sharp-text-fields" | "sharp-text-increase" | "sharp-title" | "sharp-type-specimen" | "sharp-vertical-align-bottom" | "sharp-vertical-align-center" | "sharp-vertical-align-top" | "sharp-vertical-distribute" | "sharp-wrap-text" | "twotone-add-chart" | "twotone-add-comment" | "twotone-align-horizontal-center" | "twotone-align-horizontal-left" | "twotone-align-horizontal-right" | "twotone-align-vertical-bottom" | "twotone-align-vertical-center" | "twotone-align-vertical-top" | "twotone-area-chart" | "twotone-attach-file" | "twotone-attach-money" | "twotone-auto-graph" | "twotone-bar-chart" | "twotone-border-all" | "twotone-border-bottom" | "twotone-border-clear" | "twotone-border-color" | "twotone-border-horizontal" | "twotone-border-inner" | "twotone-border-left" | "twotone-border-outer" | "twotone-border-right" | "twotone-border-style" | "twotone-border-top" | "twotone-border-vertical" | "twotone-bubble-chart" | "twotone-candlestick-chart" | "twotone-checklist" | "twotone-checklist-rtl" | "twotone-data-array" | "twotone-data-object" | "twotone-drag-handle" | "twotone-draw" | "twotone-edit-note" | "twotone-format-align-center" | "twotone-format-align-justify" | "twotone-format-align-left" | "twotone-format-align-right" | "twotone-format-bold" | "twotone-format-clear" | "twotone-format-color-fill" | "twotone-format-color-reset" | "twotone-format-color-text" | "twotone-format-indent-decrease" | "twotone-format-indent-increase" | "twotone-format-italic" | "twotone-format-line-spacing" | "twotone-format-list-bulleted" | "twotone-format-list-numbered" | "twotone-format-list-numbered-rtl" | "twotone-format-paint" | "twotone-format-quote" | "twotone-format-shapes" | "twotone-format-size" | "twotone-format-strikethrough" | "twotone-format-textdirection-l-to-r" | "twotone-format-textdirection-r-to-l" | "twotone-format-underlined" | "twotone-functions" | "twotone-height" | "twotone-hexagon" | "twotone-highlight" | "twotone-horizontal-distribute" | "twotone-horizontal-rule" | "twotone-insert-chart" | "twotone-insert-chart-outlined" | "twotone-insert-comment" | "twotone-insert-drive-file" | "twotone-insert-emoticon" | "twotone-insert-invitation" | "twotone-insert-link" | "twotone-insert-page-break" | "twotone-insert-photo" | "twotone-line-axis" | "twotone-linear-scale" | "twotone-margin" | "twotone-merge-type" | "twotone-mode" | "twotone-mode-comment" | "twotone-mode-edit" | "twotone-mode-edit-outline" | "twotone-monetization-on" | "twotone-money-off" | "twotone-money-off-csred" | "twotone-move-down" | "twotone-move-up" | "twotone-multiline-chart" | "twotone-notes" | "twotone-numbers" | "twotone-padding" | "twotone-pentagon" | "twotone-pie-chart" | "twotone-pie-chart-outline" | "twotone-polyline" | "twotone-post-add" | "twotone-publish" | "twotone-query-stats" | "twotone-rectangle" | "twotone-scatter-plot" | "twotone-schema" | "twotone-score" | "twotone-shape-line" | "twotone-short-text" | "twotone-show-chart" | "twotone-space-bar" | "twotone-square" | "twotone-stacked-line-chart" | "twotone-strikethrough-s" | "twotone-subscript" | "twotone-superscript" | "twotone-table-chart" | "twotone-table-rows" | "twotone-text-decrease" | "twotone-text-fields" | "twotone-text-increase" | "twotone-title" | "twotone-type-specimen" | "twotone-vertical-align-bottom" | "twotone-vertical-align-center" | "twotone-vertical-align-top" | "twotone-vertical-distribute" | "twotone-wrap-text" | "baseline-approval" | "baseline-attach-email" | "baseline-attachment" | "baseline-cloud" | "baseline-cloud-circle" | "baseline-cloud-done" | "baseline-cloud-download" | "baseline-cloud-off" | "baseline-cloud-queue" | "baseline-cloud-sync" | "baseline-cloud-upload" | "baseline-create-new-folder" | "baseline-difference" | "baseline-download" | "baseline-download-done" | "baseline-download-for-offline" | "baseline-downloading" | "baseline-drive-file-move" | "baseline-drive-file-move-rtl" | "baseline-drive-file-rename-outline" | "baseline-drive-folder-upload" | "baseline-file-download" | "baseline-file-download-done" | "baseline-file-download-off" | "baseline-file-open" | "baseline-file-upload" | "baseline-folder" | "baseline-folder-copy" | "baseline-folder-delete" | "baseline-folder-off" | "baseline-folder-open" | "baseline-folder-shared" | "baseline-folder-zip" | "baseline-format-overline" | "baseline-grid-view" | "baseline-newspaper" | "baseline-request-quote" | "baseline-rule-folder" | "baseline-snippet-folder" | "baseline-text-snippet" | "baseline-topic" | "baseline-upload" | "baseline-upload-file" | "baseline-workspaces" | "outline-approval" | "outline-attach-email" | "outline-attachment" | "outline-cloud" | "outline-cloud-circle" | "outline-cloud-done" | "outline-cloud-download" | "outline-cloud-off" | "outline-cloud-queue" | "outline-cloud-sync" | "outline-cloud-upload" | "outline-create-new-folder" | "outline-difference" | "outline-download" | "outline-download-done" | "outline-download-for-offline" | "outline-downloading" | "outline-drive-file-move" | "outline-drive-file-move-rtl" | "outline-drive-file-rename-outline" | "outline-drive-folder-upload" | "outline-file-download" | "outline-file-download-done" | "outline-file-download-off" | "outline-file-open" | "outline-file-upload" | "outline-folder" | "outline-folder-copy" | "outline-folder-delete" | "outline-folder-off" | "outline-folder-open" | "outline-folder-shared" | "outline-folder-zip" | "outline-format-overline" | "outline-grid-view" | "outline-newspaper" | "outline-request-quote" | "outline-rule-folder" | "outline-snippet-folder" | "outline-text-snippet" | "outline-topic" | "outline-upload" | "outline-upload-file" | "outline-workspaces" | "round-approval" | "round-attach-email" | "round-attachment" | "round-cloud" | "round-cloud-circle" | "round-cloud-done" | "round-cloud-download" | "round-cloud-off" | "round-cloud-queue" | "round-cloud-sync" | "round-cloud-upload" | "round-create-new-folder" | "round-difference" | "round-download" | "round-download-done" | "round-download-for-offline" | "round-downloading" | "round-drive-file-move" | "round-drive-file-move-rtl" | "round-drive-file-rename-outline" | "round-drive-folder-upload" | "round-file-download" | "round-file-download-done" | "round-file-download-off" | "round-file-open" | "round-file-upload" | "round-folder" | "round-folder-copy" | "round-folder-delete" | "round-folder-off" | "round-folder-open" | "round-folder-shared" | "round-folder-zip" | "round-format-overline" | "round-grid-view" | "round-newspaper" | "round-request-quote" | "round-rule-folder" | "round-snippet-folder" | "round-text-snippet" | "round-topic" | "round-upload" | "round-upload-file" | "round-workspaces" | "sharp-approval" | "sharp-attach-email" | "sharp-attachment" | "sharp-cloud" | "sharp-cloud-circle" | "sharp-cloud-done" | "sharp-cloud-download" | "sharp-cloud-off" | "sharp-cloud-queue" | "sharp-cloud-sync" | "sharp-cloud-upload" | "sharp-create-new-folder" | "sharp-difference" | "sharp-download" | "sharp-download-done" | "sharp-download-for-offline" | "sharp-downloading" | "sharp-drive-file-move" | "sharp-drive-file-move-rtl" | "sharp-drive-file-rename-outline" | "sharp-drive-folder-upload" | "sharp-file-download" | "sharp-file-download-done" | "sharp-file-download-off" | "sharp-file-open" | "sharp-file-upload" | "sharp-folder" | "sharp-folder-copy" | "sharp-folder-delete" | "sharp-folder-off" | "sharp-folder-open" | "sharp-folder-shared" | "sharp-folder-zip" | "sharp-format-overline" | "sharp-grid-view" | "sharp-newspaper" | "sharp-request-quote" | "sharp-rule-folder" | "sharp-snippet-folder" | "sharp-text-snippet" | "sharp-topic" | "sharp-upload" | "sharp-upload-file" | "sharp-workspaces" | "twotone-approval" | "twotone-attach-email" | "twotone-attachment" | "twotone-cloud" | "twotone-cloud-circle" | "twotone-cloud-done" | "twotone-cloud-download" | "twotone-cloud-off" | "twotone-cloud-queue" | "twotone-cloud-sync" | "twotone-cloud-upload" | "twotone-create-new-folder" | "twotone-difference" | "twotone-download" | "twotone-download-done" | "twotone-download-for-offline" | "twotone-downloading" | "twotone-drive-file-move" | "twotone-drive-file-move-rtl" | "twotone-drive-file-rename-outline" | "twotone-drive-folder-upload" | "twotone-file-download" | "twotone-file-download-done" | "twotone-file-download-off" | "twotone-file-open" | "twotone-file-upload" | "twotone-folder" | "twotone-folder-copy" | "twotone-folder-delete" | "twotone-folder-off" | "twotone-folder-open" | "twotone-folder-shared" | "twotone-folder-zip" | "twotone-format-overline" | "twotone-grid-view" | "twotone-newspaper" | "twotone-request-quote" | "twotone-rule-folder" | "twotone-snippet-folder" | "twotone-text-snippet" | "twotone-topic" | "twotone-upload" | "twotone-upload-file" | "twotone-workspaces" | "baseline-adf-scanner" | "baseline-browser-not-supported" | "baseline-browser-updated" | "baseline-cast" | "baseline-cast-connected" | "baseline-cast-for-education" | "baseline-computer" | "baseline-connected-tv" | "baseline-desktop-mac" | "baseline-desktop-windows" | "baseline-developer-board" | "baseline-developer-board-off" | "baseline-device-hub" | "baseline-device-unknown" | "baseline-devices-other" | "baseline-dock" | "baseline-earbuds" | "baseline-earbuds-battery" | "baseline-gamepad" | "baseline-headphones" | "baseline-headphones-battery" | "baseline-headset" | "baseline-headset-mic" | "baseline-headset-off" | "baseline-home-max" | "baseline-home-mini" | "baseline-keyboard" | "baseline-keyboard-alt" | "baseline-keyboard-arrow-down" | "baseline-keyboard-arrow-left" | "baseline-keyboard-arrow-right" | "baseline-keyboard-arrow-up" | "baseline-keyboard-backspace" | "baseline-keyboard-capslock" | "baseline-keyboard-command-key" | "baseline-keyboard-control-key" | "baseline-keyboard-double-arrow-down" | "baseline-keyboard-double-arrow-left" | "baseline-keyboard-double-arrow-right" | "baseline-keyboard-double-arrow-up" | "baseline-keyboard-hide" | "baseline-keyboard-option-key" | "baseline-keyboard-return" | "baseline-keyboard-tab" | "baseline-keyboard-voice" | "baseline-laptop" | "baseline-laptop-chromebook" | "baseline-laptop-mac" | "baseline-laptop-windows" | "baseline-memory" | "baseline-monitor" | "baseline-mouse" | "baseline-phone-android" | "baseline-phone-iphone" | "baseline-phonelink" | "baseline-phonelink-off" | "baseline-point-of-sale" | "baseline-power-input" | "baseline-router" | "baseline-scanner" | "baseline-security" | "baseline-sim-card" | "baseline-smart-display" | "baseline-smart-screen" | "baseline-smart-toy" | "baseline-smartphone" | "baseline-speaker" | "baseline-speaker-group" | "baseline-start" | "baseline-tablet" | "baseline-tablet-android" | "baseline-tablet-mac" | "baseline-toys" | "baseline-tv" | "baseline-videogame-asset" | "baseline-videogame-asset-off" | "baseline-watch" | "baseline-watch-off" | "outline-adf-scanner" | "outline-browser-not-supported" | "outline-browser-updated" | "outline-cast" | "outline-cast-connected" | "outline-cast-for-education" | "outline-computer" | "outline-connected-tv" | "outline-desktop-mac" | "outline-desktop-windows" | "outline-developer-board" | "outline-developer-board-off" | "outline-device-hub" | "outline-device-unknown" | "outline-devices-other" | "outline-dock" | "outline-earbuds" | "outline-earbuds-battery" | "outline-gamepad" | "outline-headphones" | "outline-headphones-battery" | "outline-headset" | "outline-headset-mic" | "outline-headset-off" | "outline-home-max" | "outline-home-mini" | "outline-keyboard" | "outline-keyboard-alt" | "outline-keyboard-arrow-down" | "outline-keyboard-arrow-left" | "outline-keyboard-arrow-right" | "outline-keyboard-arrow-up" | "outline-keyboard-backspace" | "outline-keyboard-capslock" | "outline-keyboard-command-key" | "outline-keyboard-control-key" | "outline-keyboard-double-arrow-down" | "outline-keyboard-double-arrow-left" | "outline-keyboard-double-arrow-right" | "outline-keyboard-double-arrow-up" | "outline-keyboard-hide" | "outline-keyboard-option-key" | "outline-keyboard-return" | "outline-keyboard-tab" | "outline-keyboard-voice" | "outline-laptop" | "outline-laptop-chromebook" | "outline-laptop-mac" | "outline-laptop-windows" | "outline-memory" | "outline-monitor" | "outline-mouse" | "outline-phone-android" | "outline-phone-iphone" | "outline-phonelink" | "outline-phonelink-off" | "outline-point-of-sale" | "outline-power-input" | "outline-router" | "outline-scanner" | "outline-security" | "outline-sim-card" | "outline-smart-display" | "outline-smart-screen" | "outline-smart-toy" | "outline-smartphone" | "outline-speaker" | "outline-speaker-group" | "outline-start" | "outline-tablet" | "outline-tablet-android" | "outline-tablet-mac" | "outline-toys" | "outline-tv" | "outline-videogame-asset" | "outline-videogame-asset-off" | "outline-watch" | "outline-watch-off" | "round-adf-scanner" | "round-browser-not-supported" | "round-browser-updated" | "round-cast" | "round-cast-connected" | "round-cast-for-education" | "round-computer" | "round-connected-tv" | "round-desktop-mac" | "round-desktop-windows" | "round-developer-board" | "round-developer-board-off" | "round-device-hub" | "round-device-unknown" | "round-devices-other" | "round-dock" | "round-earbuds" | "round-earbuds-battery" | "round-gamepad" | "round-headphones" | "round-headphones-battery" | "round-headset" | "round-headset-mic" | "round-headset-off" | "round-home-max" | "round-home-mini" | "round-keyboard" | "round-keyboard-alt" | "round-keyboard-arrow-down" | "round-keyboard-arrow-left" | "round-keyboard-arrow-right" | "round-keyboard-arrow-up" | "round-keyboard-backspace" | "round-keyboard-capslock" | "round-keyboard-command-key" | "round-keyboard-control-key" | "round-keyboard-double-arrow-down" | "round-keyboard-double-arrow-left" | "round-keyboard-double-arrow-right" | "round-keyboard-double-arrow-up" | "round-keyboard-hide" | "round-keyboard-option-key" | "round-keyboard-return" | "round-keyboard-tab" | "round-keyboard-voice" | "round-laptop" | "round-laptop-chromebook" | "round-laptop-mac" | "round-laptop-windows" | "round-memory" | "round-monitor" | "round-mouse" | "round-phone-android" | "round-phone-iphone" | "round-phonelink" | "round-phonelink-off" | "round-point-of-sale" | "round-power-input" | "round-router" | "round-scanner" | "round-security" | "round-sim-card" | "round-smart-display" | "round-smart-screen" | "round-smart-toy" | "round-smartphone" | "round-speaker" | "round-speaker-group" | "round-start" | "round-tablet" | "round-tablet-android" | "round-tablet-mac" | "round-toys" | "round-tv" | "round-videogame-asset" | "round-videogame-asset-off" | "round-watch" | "round-watch-off" | "sharp-adf-scanner" | "sharp-browser-not-supported" | "sharp-browser-updated" | "sharp-cast" | "sharp-cast-connected" | "sharp-cast-for-education" | "sharp-computer" | "sharp-connected-tv" | "sharp-desktop-mac" | "sharp-desktop-windows" | "sharp-developer-board" | "sharp-developer-board-off" | "sharp-device-hub" | "sharp-device-unknown" | "sharp-devices-other" | "sharp-dock" | "sharp-earbuds" | "sharp-earbuds-battery" | "sharp-gamepad" | "sharp-headphones" | "sharp-headphones-battery" | "sharp-headset" | "sharp-headset-mic" | "sharp-headset-off" | "sharp-home-max" | "sharp-home-mini" | "sharp-keyboard" | "sharp-keyboard-alt" | "sharp-keyboard-arrow-down" | "sharp-keyboard-arrow-left" | "sharp-keyboard-arrow-right" | "sharp-keyboard-arrow-up" | "sharp-keyboard-backspace" | "sharp-keyboard-capslock" | "sharp-keyboard-command-key" | "sharp-keyboard-control-key" | "sharp-keyboard-double-arrow-down" | "sharp-keyboard-double-arrow-left" | "sharp-keyboard-double-arrow-right" | "sharp-keyboard-double-arrow-up" | "sharp-keyboard-hide" | "sharp-keyboard-option-key" | "sharp-keyboard-return" | "sharp-keyboard-tab" | "sharp-keyboard-voice" | "sharp-laptop" | "sharp-laptop-chromebook" | "sharp-laptop-mac" | "sharp-laptop-windows" | "sharp-memory" | "sharp-monitor" | "sharp-mouse" | "sharp-phone-android" | "sharp-phone-iphone" | "sharp-phonelink" | "sharp-phonelink-off" | "sharp-point-of-sale" | "sharp-power-input" | "sharp-router" | "sharp-scanner" | "sharp-security" | "sharp-sim-card" | "sharp-smart-display" | "sharp-smart-screen" | "sharp-smart-toy" | "sharp-smartphone" | "sharp-speaker" | "sharp-speaker-group" | "sharp-start" | "sharp-tablet" | "sharp-tablet-android" | "sharp-tablet-mac" | "sharp-toys" | "sharp-tv" | "sharp-videogame-asset" | "sharp-videogame-asset-off" | "sharp-watch" | "sharp-watch-off" | "twotone-adf-scanner" | "twotone-browser-not-supported" | "twotone-browser-updated" | "twotone-cast" | "twotone-cast-connected" | "twotone-cast-for-education" | "twotone-computer" | "twotone-connected-tv" | "twotone-desktop-mac" | "twotone-desktop-windows" | "twotone-developer-board" | "twotone-developer-board-off" | "twotone-device-hub" | "twotone-device-unknown" | "twotone-devices-other" | "twotone-dock" | "twotone-earbuds" | "twotone-earbuds-battery" | "twotone-gamepad" | "twotone-headphones" | "twotone-headphones-battery" | "twotone-headset" | "twotone-headset-mic" | "twotone-headset-off" | "twotone-home-max" | "twotone-home-mini" | "twotone-keyboard" | "twotone-keyboard-alt" | "twotone-keyboard-arrow-down" | "twotone-keyboard-arrow-left" | "twotone-keyboard-arrow-right" | "twotone-keyboard-arrow-up" | "twotone-keyboard-backspace" | "twotone-keyboard-capslock" | "twotone-keyboard-command-key" | "twotone-keyboard-control-key" | "twotone-keyboard-double-arrow-down" | "twotone-keyboard-double-arrow-left" | "twotone-keyboard-double-arrow-right" | "twotone-keyboard-double-arrow-up" | "twotone-keyboard-hide" | "twotone-keyboard-option-key" | "twotone-keyboard-return" | "twotone-keyboard-tab" | "twotone-keyboard-voice" | "twotone-laptop" | "twotone-laptop-chromebook" | "twotone-laptop-mac" | "twotone-laptop-windows" | "twotone-memory" | "twotone-monitor" | "twotone-mouse" | "twotone-phone-android" | "twotone-phone-iphone" | "twotone-phonelink" | "twotone-phonelink-off" | "twotone-point-of-sale" | "twotone-power-input" | "twotone-router" | "twotone-scanner" | "twotone-security" | "twotone-sim-card" | "twotone-smart-display" | "twotone-smart-screen" | "twotone-smart-toy" | "twotone-smartphone" | "twotone-speaker" | "twotone-speaker-group" | "twotone-start" | "twotone-tablet" | "twotone-tablet-android" | "twotone-tablet-mac" | "twotone-toys" | "twotone-tv" | "twotone-videogame-asset" | "twotone-videogame-asset-off" | "twotone-watch" | "twotone-watch-off" | "baseline-auto-mode" | "baseline-blinds" | "baseline-blinds-closed" | "baseline-broadcast-on-home" | "baseline-broadcast-on-personal" | "baseline-curtains" | "baseline-curtains-closed" | "baseline-electric-bolt" | "baseline-electric-meter" | "baseline-energy-savings-leaf" | "baseline-gas-meter" | "baseline-heat-pump" | "baseline-mode-fan-off" | "baseline-nest-cam-wired-stand" | "baseline-oil-barrel" | "baseline-propane" | "baseline-propane-tank" | "baseline-roller-shades" | "baseline-roller-shades-closed" | "baseline-sensor-door" | "baseline-sensor-occupied" | "baseline-sensor-window" | "baseline-shield-moon" | "baseline-solar-power" | "baseline-vertical-shades" | "baseline-vertical-shades-closed" | "baseline-wind-power" | "outline-auto-mode" | "outline-blinds" | "outline-blinds-closed" | "outline-broadcast-on-home" | "outline-broadcast-on-personal" | "outline-curtains" | "outline-curtains-closed" | "outline-electric-bolt" | "outline-electric-meter" | "outline-energy-savings-leaf" | "outline-gas-meter" | "outline-heat-pump" | "outline-mode-fan-off" | "outline-nest-cam-wired-stand" | "outline-oil-barrel" | "outline-propane" | "outline-propane-tank" | "outline-roller-shades" | "outline-roller-shades-closed" | "outline-sensor-door" | "outline-sensor-occupied" | "outline-sensor-window" | "outline-shield-moon" | "outline-solar-power" | "outline-vertical-shades" | "outline-vertical-shades-closed" | "outline-wind-power" | "round-auto-mode" | "round-blinds" | "round-blinds-closed" | "round-broadcast-on-home" | "round-broadcast-on-personal" | "round-curtains" | "round-curtains-closed" | "round-electric-bolt" | "round-electric-meter" | "round-energy-savings-leaf" | "round-gas-meter" | "round-heat-pump" | "round-mode-fan-off" | "round-nest-cam-wired-stand" | "round-oil-barrel" | "round-propane" | "round-propane-tank" | "round-roller-shades" | "round-roller-shades-closed" | "round-sensor-door" | "round-sensor-occupied" | "round-sensor-window" | "round-shield-moon" | "round-solar-power" | "round-vertical-shades" | "round-vertical-shades-closed" | "round-wind-power" | "sharp-auto-mode" | "sharp-blinds" | "sharp-blinds-closed" | "sharp-broadcast-on-home" | "sharp-broadcast-on-personal" | "sharp-curtains" | "sharp-curtains-closed" | "sharp-electric-bolt" | "sharp-electric-meter" | "sharp-energy-savings-leaf" | "sharp-gas-meter" | "sharp-heat-pump" | "sharp-mode-fan-off" | "sharp-nest-cam-wired-stand" | "sharp-oil-barrel" | "sharp-propane" | "sharp-propane-tank" | "sharp-roller-shades" | "sharp-roller-shades-closed" | "sharp-sensor-door" | "sharp-sensor-occupied" | "sharp-sensor-window" | "sharp-shield-moon" | "sharp-solar-power" | "sharp-vertical-shades" | "sharp-vertical-shades-closed" | "sharp-wind-power" | "twotone-auto-mode" | "twotone-blinds" | "twotone-blinds-closed" | "twotone-broadcast-on-home" | "twotone-broadcast-on-personal" | "twotone-curtains" | "twotone-curtains-closed" | "twotone-electric-bolt" | "twotone-electric-meter" | "twotone-energy-savings-leaf" | "twotone-gas-meter" | "twotone-heat-pump" | "twotone-mode-fan-off" | "twotone-nest-cam-wired-stand" | "twotone-oil-barrel" | "twotone-propane" | "twotone-propane-tank" | "twotone-roller-shades" | "twotone-roller-shades-closed" | "twotone-sensor-door" | "twotone-sensor-occupied" | "twotone-sensor-window" | "twotone-shield-moon" | "twotone-solar-power" | "twotone-vertical-shades" | "twotone-vertical-shades-closed" | "twotone-wind-power" | "baseline-10mp" | "baseline-11mp" | "baseline-12mp" | "baseline-13mp" | "baseline-14mp" | "baseline-15mp" | "baseline-16mp" | "baseline-17mp" | "baseline-18mp" | "baseline-19mp" | "baseline-20mp" | "baseline-21mp" | "baseline-22mp" | "baseline-23mp" | "baseline-24mp" | "baseline-2mp" | "baseline-30fps-select" | "baseline-3mp" | "baseline-4mp" | "baseline-5mp" | "baseline-60fps-select" | "baseline-6mp" | "baseline-7mp" | "baseline-8mp" | "baseline-9mp" | "baseline-add-a-photo" | "baseline-add-photo-alternate" | "baseline-add-to-photos" | "baseline-adjust" | "baseline-animation" | "baseline-assistant" | "baseline-assistant-photo" | "baseline-audiotrack" | "baseline-auto-awesome" | "baseline-auto-awesome-mosaic" | "baseline-auto-awesome-motion" | "baseline-auto-fix-high" | "baseline-auto-fix-normal" | "baseline-auto-fix-off" | "baseline-auto-stories" | "baseline-autofps-select" | "baseline-bedtime" | "baseline-bedtime-off" | "baseline-blur-circular" | "baseline-blur-linear" | "baseline-blur-off" | "baseline-blur-on" | "baseline-brightness-1" | "baseline-brightness-2" | "baseline-brightness-3" | "baseline-brightness-4" | "baseline-brightness-5" | "baseline-brightness-6" | "baseline-brightness-7" | "baseline-broken-image" | "baseline-brush" | "baseline-burst-mode" | "baseline-camera" | "baseline-camera-alt" | "baseline-camera-front" | "baseline-camera-rear" | "baseline-camera-roll" | "baseline-cases" | "baseline-center-focus-strong" | "baseline-center-focus-weak" | "baseline-circle" | "baseline-collections" | "baseline-collections-bookmark" | "baseline-color-lens" | "baseline-colorize" | "baseline-compare" | "baseline-contrast" | "baseline-control-point" | "baseline-control-point-duplicate" | "baseline-crop" | "baseline-crop-16-9" | "baseline-crop-3-2" | "baseline-crop-5-4" | "baseline-crop-7-5" | "baseline-crop-din" | "baseline-crop-free" | "baseline-crop-landscape" | "baseline-crop-original" | "baseline-crop-portrait" | "baseline-crop-rotate" | "baseline-crop-square" | "baseline-currency-bitcoin" | "baseline-currency-franc" | "baseline-currency-lira" | "baseline-currency-pound" | "baseline-currency-ruble" | "baseline-currency-rupee" | "baseline-currency-yen" | "baseline-currency-yuan" | "baseline-deblur" | "baseline-dehaze" | "baseline-details" | "baseline-dirty-lens" | "baseline-edit" | "baseline-euro" | "baseline-exposure" | "baseline-exposure-neg-1" | "baseline-exposure-neg-2" | "baseline-exposure-plus-1" | "baseline-exposure-plus-2" | "baseline-exposure-zero" | "baseline-face-retouching-natural" | "baseline-face-retouching-off" | "baseline-filter" | "baseline-filter-1" | "baseline-filter-2" | "baseline-filter-3" | "baseline-filter-4" | "baseline-filter-5" | "baseline-filter-6" | "baseline-filter-7" | "baseline-filter-8" | "baseline-filter-9" | "baseline-filter-9-plus" | "baseline-filter-b-and-w" | "baseline-filter-center-focus" | "baseline-filter-drama" | "baseline-filter-frames" | "baseline-filter-hdr" | "baseline-filter-none" | "baseline-filter-tilt-shift" | "baseline-filter-vintage" | "baseline-flare" | "baseline-flash-auto" | "baseline-flash-off" | "baseline-flash-on" | "baseline-flip" | "baseline-flip-camera-android" | "baseline-flip-camera-ios" | "baseline-gradient" | "baseline-grain" | "baseline-grid-off" | "baseline-grid-on" | "baseline-hdr-enhanced-select" | "baseline-hdr-off" | "baseline-hdr-on" | "baseline-hdr-plus" | "baseline-hdr-strong" | "baseline-hdr-weak" | "baseline-healing" | "baseline-hevc" | "baseline-hide-image" | "baseline-image" | "baseline-image-aspect-ratio" | "baseline-image-not-supported" | "baseline-image-search" | "baseline-incomplete-circle" | "baseline-iso" | "baseline-landscape" | "baseline-leak-add" | "baseline-leak-remove" | "baseline-lens" | "baseline-linked-camera" | "baseline-logo-dev" | "baseline-looks" | "baseline-looks-3" | "baseline-looks-4" | "baseline-looks-5" | "baseline-looks-6" | "baseline-looks-one" | "baseline-looks-two" | "baseline-loupe" | "baseline-mic-external-off" | "baseline-mic-external-on" | "baseline-monochrome-photos" | "baseline-motion-photos-auto" | "baseline-motion-photos-off" | "baseline-motion-photos-on" | "baseline-motion-photos-pause" | "baseline-motion-photos-paused" | "baseline-movie-creation" | "baseline-movie-filter" | "baseline-mp" | "baseline-music-note" | "baseline-music-off" | "baseline-nature" | "baseline-nature-people" | "baseline-navigate-before" | "baseline-navigate-next" | "baseline-palette" | "baseline-panorama" | "baseline-panorama-fish-eye" | "baseline-panorama-horizontal" | "baseline-panorama-horizontal-select" | "baseline-panorama-photosphere" | "baseline-panorama-photosphere-select" | "baseline-panorama-vertical" | "baseline-panorama-vertical-select" | "baseline-panorama-wide-angle" | "baseline-panorama-wide-angle-select" | "baseline-photo" | "baseline-photo-album" | "baseline-photo-camera" | "baseline-photo-camera-back" | "baseline-photo-camera-front" | "baseline-photo-filter" | "baseline-photo-library" | "baseline-photo-size-select-actual" | "baseline-photo-size-select-large" | "baseline-photo-size-select-small" | "baseline-picture-as-pdf" | "baseline-portrait" | "baseline-raw-off" | "baseline-raw-on" | "baseline-receipt-long" | "baseline-remove-red-eye" | "baseline-rotate-90-degrees-ccw" | "baseline-rotate-90-degrees-cw" | "baseline-rotate-left" | "baseline-rotate-right" | "baseline-shutter-speed" | "baseline-slideshow" | "baseline-straighten" | "baseline-style" | "baseline-switch-camera" | "baseline-switch-video" | "baseline-tag-faces" | "baseline-texture" | "baseline-thermostat-auto" | "baseline-timelapse" | "baseline-timer" | "baseline-timer-10" | "baseline-timer-3" | "baseline-timer-off" | "baseline-tonality" | "baseline-transform" | "baseline-tune" | "baseline-video-camera-back" | "baseline-video-camera-front" | "baseline-video-stable" | "baseline-view-comfy" | "baseline-view-compact" | "baseline-vignette" | "baseline-vrpano" | "baseline-wb-auto" | "baseline-wb-cloudy" | "baseline-wb-incandescent" | "baseline-wb-iridescent" | "baseline-wb-shade" | "baseline-wb-sunny" | "baseline-wb-twilight" | "outline-10mp" | "outline-11mp" | "outline-12mp" | "outline-13mp" | "outline-14mp" | "outline-15mp" | "outline-16mp" | "outline-17mp" | "outline-18mp" | "outline-19mp" | "outline-20mp" | "outline-21mp" | "outline-22mp" | "outline-23mp" | "outline-24mp" | "outline-2mp" | "outline-30fps-select" | "outline-3mp" | "outline-4mp" | "outline-5mp" | "outline-60fps-select" | "outline-6mp" | "outline-7mp" | "outline-8mp" | "outline-9mp" | "outline-add-a-photo" | "outline-add-photo-alternate" | "outline-add-to-photos" | "outline-adjust" | "outline-animation" | "outline-assistant" | "outline-assistant-photo" | "outline-audiotrack" | "outline-auto-awesome" | "outline-auto-awesome-mosaic" | "outline-auto-awesome-motion" | "outline-auto-fix-high" | "outline-auto-fix-normal" | "outline-auto-fix-off" | "outline-auto-stories" | "outline-autofps-select" | "outline-bedtime" | "outline-bedtime-off" | "outline-blur-circular" | "outline-blur-linear" | "outline-blur-off" | "outline-blur-on" | "outline-brightness-1" | "outline-brightness-2" | "outline-brightness-3" | "outline-brightness-4" | "outline-brightness-5" | "outline-brightness-6" | "outline-brightness-7" | "outline-broken-image" | "outline-brush" | "outline-burst-mode" | "outline-camera" | "outline-camera-alt" | "outline-camera-front" | "outline-camera-rear" | "outline-camera-roll" | "outline-cases" | "outline-center-focus-strong" | "outline-center-focus-weak" | "outline-circle" | "outline-collections" | "outline-collections-bookmark" | "outline-color-lens" | "outline-colorize" | "outline-compare" | "outline-contrast" | "outline-control-point" | "outline-control-point-duplicate" | "outline-crop" | "outline-crop-16-9" | "outline-crop-3-2" | "outline-crop-5-4" | "outline-crop-7-5" | "outline-crop-din" | "outline-crop-free" | "outline-crop-landscape" | "outline-crop-original" | "outline-crop-portrait" | "outline-crop-rotate" | "outline-crop-square" | "outline-currency-bitcoin" | "outline-currency-franc" | "outline-currency-lira" | "outline-currency-pound" | "outline-currency-ruble" | "outline-currency-rupee" | "outline-currency-yen" | "outline-currency-yuan" | "outline-deblur" | "outline-dehaze" | "outline-details" | "outline-dirty-lens" | "outline-edit" | "outline-euro" | "outline-exposure" | "outline-exposure-neg-1" | "outline-exposure-neg-2" | "outline-exposure-plus-1" | "outline-exposure-plus-2" | "outline-exposure-zero" | "outline-face-retouching-natural" | "outline-face-retouching-off" | "outline-filter" | "outline-filter-1" | "outline-filter-2" | "outline-filter-3" | "outline-filter-4" | "outline-filter-5" | "outline-filter-6" | "outline-filter-7" | "outline-filter-8" | "outline-filter-9" | "outline-filter-9-plus" | "outline-filter-b-and-w" | "outline-filter-center-focus" | "outline-filter-drama" | "outline-filter-frames" | "outline-filter-hdr" | "outline-filter-none" | "outline-filter-tilt-shift" | "outline-filter-vintage" | "outline-flare" | "outline-flash-auto" | "outline-flash-off" | "outline-flash-on" | "outline-flip" | "outline-flip-camera-android" | "outline-flip-camera-ios" | "outline-gradient" | "outline-grain" | "outline-grid-off" | "outline-grid-on" | "outline-hdr-enhanced-select" | "outline-hdr-off" | "outline-hdr-on" | "outline-hdr-plus" | "outline-hdr-strong" | "outline-hdr-weak" | "outline-healing" | "outline-hevc" | "outline-hide-image" | "outline-image" | "outline-image-aspect-ratio" | "outline-image-not-supported" | "outline-image-search" | "outline-incomplete-circle" | "outline-iso" | "outline-landscape" | "outline-leak-add" | "outline-leak-remove" | "outline-lens" | "outline-linked-camera" | "outline-logo-dev" | "outline-looks" | "outline-looks-3" | "outline-looks-4" | "outline-looks-5" | "outline-looks-6" | "outline-looks-one" | "outline-looks-two" | "outline-loupe" | "outline-mic-external-off" | "outline-mic-external-on" | "outline-monochrome-photos" | "outline-motion-photos-auto" | "outline-motion-photos-off" | "outline-motion-photos-on" | "outline-motion-photos-pause" | "outline-motion-photos-paused" | "outline-movie-creation" | "outline-movie-filter" | "outline-mp" | "outline-music-note" | "outline-music-off" | "outline-nature" | "outline-nature-people" | "outline-navigate-before" | "outline-navigate-next" | "outline-palette" | "outline-panorama" | "outline-panorama-fish-eye" | "outline-panorama-horizontal" | "outline-panorama-horizontal-select" | "outline-panorama-photosphere" | "outline-panorama-photosphere-select" | "outline-panorama-vertical" | "outline-panorama-vertical-select" | "outline-panorama-wide-angle" | "outline-panorama-wide-angle-select" | "outline-photo" | "outline-photo-album" | "outline-photo-camera" | "outline-photo-camera-back" | "outline-photo-camera-front" | "outline-photo-filter" | "outline-photo-library" | "outline-photo-size-select-actual" | "outline-photo-size-select-large" | "outline-photo-size-select-small" | "outline-picture-as-pdf" | "outline-portrait" | "outline-raw-off" | "outline-raw-on" | "outline-receipt-long" | "outline-remove-red-eye" | "outline-rotate-90-degrees-ccw" | "outline-rotate-90-degrees-cw" | "outline-rotate-left" | "outline-rotate-right" | "outline-shutter-speed" | "outline-slideshow" | "outline-straighten" | "outline-style" | "outline-switch-camera" | "outline-switch-video" | "outline-tag-faces" | "outline-texture" | "outline-thermostat-auto" | "outline-timelapse" | "outline-timer" | "outline-timer-10" | "outline-timer-3" | "outline-timer-off" | "outline-tonality" | "outline-transform" | "outline-tune" | "outline-video-camera-back" | "outline-video-camera-front" | "outline-video-stable" | "outline-view-comfy" | "outline-view-compact" | "outline-vignette" | "outline-vrpano" | "outline-wb-auto" | "outline-wb-cloudy" | "outline-wb-incandescent" | "outline-wb-iridescent" | "outline-wb-shade" | "outline-wb-sunny" | "outline-wb-twilight" | "round-10mp" | "round-11mp" | "round-12mp" | "round-13mp" | "round-14mp" | "round-15mp" | "round-16mp" | "round-17mp" | "round-18mp" | "round-19mp" | "round-20mp" | "round-21mp" | "round-22mp" | "round-23mp" | "round-24mp" | "round-2mp" | "round-30fps-select" | "round-3mp" | "round-4mp" | "round-5mp" | "round-60fps-select" | "round-6mp" | "round-7mp" | "round-8mp" | "round-9mp" | "round-add-a-photo" | "round-add-photo-alternate" | "round-add-to-photos" | "round-adjust" | "round-animation" | "round-assistant" | "round-assistant-photo" | "round-audiotrack" | "round-auto-awesome" | "round-auto-awesome-mosaic" | "round-auto-awesome-motion" | "round-auto-fix-high" | "round-auto-fix-normal" | "round-auto-fix-off" | "round-auto-stories" | "round-autofps-select" | "round-bedtime" | "round-bedtime-off" | "round-blur-circular" | "round-blur-linear" | "round-blur-off" | "round-blur-on" | "round-brightness-1" | "round-brightness-2" | "round-brightness-3" | "round-brightness-4" | "round-brightness-5" | "round-brightness-6" | "round-brightness-7" | "round-broken-image" | "round-burst-mode" | "round-camera" | "round-camera-alt" | "round-camera-front" | "round-camera-rear" | "round-camera-roll" | "round-cases" | "round-center-focus-strong" | "round-center-focus-weak" | "round-circle" | "round-collections" | "round-collections-bookmark" | "round-color-lens" | "round-colorize" | "round-compare" | "round-contrast" | "round-control-point" | "round-control-point-duplicate" | "round-crop" | "round-crop-16-9" | "round-crop-3-2" | "round-crop-5-4" | "round-crop-7-5" | "round-crop-din" | "round-crop-free" | "round-crop-landscape" | "round-crop-original" | "round-crop-portrait" | "round-crop-rotate" | "round-crop-square" | "round-currency-bitcoin" | "round-currency-franc" | "round-currency-lira" | "round-currency-pound" | "round-currency-ruble" | "round-currency-rupee" | "round-currency-yen" | "round-currency-yuan" | "round-deblur" | "round-dehaze" | "round-details" | "round-dirty-lens" | "round-edit" | "round-euro" | "round-exposure" | "round-exposure-neg-1" | "round-exposure-neg-2" | "round-exposure-plus-1" | "round-exposure-plus-2" | "round-exposure-zero" | "round-face-retouching-natural" | "round-face-retouching-off" | "round-filter" | "round-filter-1" | "round-filter-2" | "round-filter-3" | "round-filter-4" | "round-filter-5" | "round-filter-6" | "round-filter-7" | "round-filter-8" | "round-filter-9" | "round-filter-9-plus" | "round-filter-b-and-w" | "round-filter-center-focus" | "round-filter-drama" | "round-filter-frames" | "round-filter-hdr" | "round-filter-none" | "round-filter-tilt-shift" | "round-filter-vintage" | "round-flare" | "round-flash-auto" | "round-flash-off" | "round-flash-on" | "round-flip" | "round-flip-camera-android" | "round-flip-camera-ios" | "round-gradient" | "round-grain" | "round-grid-off" | "round-grid-on" | "round-hdr-enhanced-select" | "round-hdr-off" | "round-hdr-on" | "round-hdr-plus" | "round-hdr-strong" | "round-hdr-weak" | "round-healing" | "round-hevc" | "round-hide-image" | "round-image" | "round-image-aspect-ratio" | "round-image-not-supported" | "round-image-search" | "round-incomplete-circle" | "round-iso" | "round-landscape" | "round-leak-add" | "round-leak-remove" | "round-lens" | "round-linked-camera" | "round-logo-dev" | "round-looks" | "round-looks-3" | "round-looks-4" | "round-looks-5" | "round-looks-6" | "round-looks-one" | "round-looks-two" | "round-loupe" | "round-mic-external-off" | "round-mic-external-on" | "round-monochrome-photos" | "round-motion-photos-auto" | "round-motion-photos-off" | "round-motion-photos-on" | "round-motion-photos-pause" | "round-motion-photos-paused" | "round-movie-creation" | "round-movie-filter" | "round-mp" | "round-music-note" | "round-music-off" | "round-nature" | "round-nature-people" | "round-navigate-before" | "round-navigate-next" | "round-palette" | "round-panorama" | "round-panorama-fish-eye" | "round-panorama-horizontal" | "round-panorama-horizontal-select" | "round-panorama-photosphere" | "round-panorama-photosphere-select" | "round-panorama-vertical" | "round-panorama-vertical-select" | "round-panorama-wide-angle" | "round-panorama-wide-angle-select" | "round-photo-album" | "round-photo-camera" | "round-photo-camera-back" | "round-photo-camera-front" | "round-photo-filter" | "round-photo-library" | "round-photo-size-select-actual" | "round-photo-size-select-large" | "round-photo-size-select-small" | "round-picture-as-pdf" | "round-portrait" | "round-raw-off" | "round-raw-on" | "round-receipt-long" | "round-remove-red-eye" | "round-rotate-90-degrees-ccw" | "round-rotate-90-degrees-cw" | "round-rotate-left" | "round-rotate-right" | "round-shutter-speed" | "round-slideshow" | "round-straighten" | "round-style" | "round-switch-camera" | "round-switch-video" | "round-tag-faces" | "round-texture" | "round-thermostat-auto" | "round-timelapse" | "round-timer" | "round-timer-10" | "round-timer-3" | "round-timer-off" | "round-tonality" | "round-transform" | "round-tune" | "round-video-camera-back" | "round-video-camera-front" | "round-video-stable" | "round-view-comfy" | "round-view-compact" | "round-vignette" | "round-vrpano" | "round-wb-auto" | "round-wb-cloudy" | "round-wb-incandescent" | "round-wb-iridescent" | "round-wb-shade" | "round-wb-sunny" | "round-wb-twilight" | "sharp-10mp" | "sharp-11mp" | "sharp-12mp" | "sharp-13mp" | "sharp-14mp" | "sharp-15mp" | "sharp-16mp" | "sharp-17mp" | "sharp-18mp" | "sharp-19mp" | "sharp-20mp" | "sharp-21mp" | "sharp-22mp" | "sharp-23mp" | "sharp-24mp" | "sharp-2mp" | "sharp-30fps-select" | "sharp-3mp" | "sharp-4mp" | "sharp-5mp" | "sharp-60fps-select" | "sharp-6mp" | "sharp-7mp" | "sharp-8mp" | "sharp-9mp" | "sharp-add-a-photo" | "sharp-add-photo-alternate" | "sharp-add-to-photos" | "sharp-adjust" | "sharp-animation" | "sharp-assistant" | "sharp-assistant-photo" | "sharp-audiotrack" | "sharp-auto-awesome" | "sharp-auto-awesome-mosaic" | "sharp-auto-awesome-motion" | "sharp-auto-fix-high" | "sharp-auto-fix-normal" | "sharp-auto-fix-off" | "sharp-auto-stories" | "sharp-autofps-select" | "sharp-bedtime" | "sharp-bedtime-off" | "sharp-blur-circular" | "sharp-blur-linear" | "sharp-blur-off" | "sharp-blur-on" | "sharp-brightness-1" | "sharp-brightness-2" | "sharp-brightness-3" | "sharp-brightness-4" | "sharp-brightness-5" | "sharp-brightness-6" | "sharp-brightness-7" | "sharp-broken-image" | "sharp-brush" | "sharp-burst-mode" | "sharp-camera" | "sharp-camera-alt" | "sharp-camera-front" | "sharp-camera-rear" | "sharp-camera-roll" | "sharp-cases" | "sharp-center-focus-strong" | "sharp-center-focus-weak" | "sharp-circle" | "sharp-collections" | "sharp-collections-bookmark" | "sharp-color-lens" | "sharp-colorize" | "sharp-compare" | "sharp-contrast" | "sharp-control-point" | "sharp-control-point-duplicate" | "sharp-crop" | "sharp-crop-16-9" | "sharp-crop-3-2" | "sharp-crop-5-4" | "sharp-crop-7-5" | "sharp-crop-din" | "sharp-crop-free" | "sharp-crop-landscape" | "sharp-crop-original" | "sharp-crop-portrait" | "sharp-crop-rotate" | "sharp-crop-square" | "sharp-currency-bitcoin" | "sharp-currency-franc" | "sharp-currency-lira" | "sharp-currency-pound" | "sharp-currency-ruble" | "sharp-currency-rupee" | "sharp-currency-yen" | "sharp-currency-yuan" | "sharp-deblur" | "sharp-dehaze" | "sharp-details" | "sharp-dirty-lens" | "sharp-edit" | "sharp-euro" | "sharp-exposure" | "sharp-exposure-neg-1" | "sharp-exposure-neg-2" | "sharp-exposure-plus-1" | "sharp-exposure-plus-2" | "sharp-exposure-zero" | "sharp-face-retouching-natural" | "sharp-face-retouching-off" | "sharp-filter" | "sharp-filter-1" | "sharp-filter-2" | "sharp-filter-3" | "sharp-filter-4" | "sharp-filter-5" | "sharp-filter-6" | "sharp-filter-7" | "sharp-filter-8" | "sharp-filter-9" | "sharp-filter-9-plus" | "sharp-filter-b-and-w" | "sharp-filter-center-focus" | "sharp-filter-drama" | "sharp-filter-frames" | "sharp-filter-hdr" | "sharp-filter-none" | "sharp-filter-tilt-shift" | "sharp-filter-vintage" | "sharp-flare" | "sharp-flash-auto" | "sharp-flash-off" | "sharp-flash-on" | "sharp-flip" | "sharp-flip-camera-android" | "sharp-flip-camera-ios" | "sharp-gradient" | "sharp-grain" | "sharp-grid-off" | "sharp-grid-on" | "sharp-hdr-enhanced-select" | "sharp-hdr-off" | "sharp-hdr-on" | "sharp-hdr-plus" | "sharp-hdr-strong" | "sharp-hdr-weak" | "sharp-healing" | "sharp-hevc" | "sharp-hide-image" | "sharp-image" | "sharp-image-aspect-ratio" | "sharp-image-not-supported" | "sharp-image-search" | "sharp-incomplete-circle" | "sharp-iso" | "sharp-landscape" | "sharp-leak-add" | "sharp-leak-remove" | "sharp-lens" | "sharp-linked-camera" | "sharp-logo-dev" | "sharp-looks" | "sharp-looks-3" | "sharp-looks-4" | "sharp-looks-5" | "sharp-looks-6" | "sharp-looks-one" | "sharp-looks-two" | "sharp-loupe" | "sharp-mic-external-off" | "sharp-mic-external-on" | "sharp-monochrome-photos" | "sharp-motion-photos-auto" | "sharp-motion-photos-off" | "sharp-motion-photos-on" | "sharp-motion-photos-pause" | "sharp-motion-photos-paused" | "sharp-movie-creation" | "sharp-movie-filter" | "sharp-mp" | "sharp-music-note" | "sharp-music-off" | "sharp-nature" | "sharp-nature-people" | "sharp-navigate-before" | "sharp-navigate-next" | "sharp-palette" | "sharp-panorama" | "sharp-panorama-fish-eye" | "sharp-panorama-horizontal" | "sharp-panorama-horizontal-select" | "sharp-panorama-photosphere" | "sharp-panorama-photosphere-select" | "sharp-panorama-vertical" | "sharp-panorama-vertical-select" | "sharp-panorama-wide-angle" | "sharp-panorama-wide-angle-select" | "sharp-photo" | "sharp-photo-album" | "sharp-photo-camera" | "sharp-photo-camera-back" | "sharp-photo-camera-front" | "sharp-photo-filter" | "sharp-photo-library" | "sharp-photo-size-select-actual" | "sharp-photo-size-select-large" | "sharp-photo-size-select-small" | "sharp-picture-as-pdf" | "sharp-portrait" | "sharp-raw-off" | "sharp-raw-on" | "sharp-receipt-long" | "sharp-remove-red-eye" | "sharp-rotate-90-degrees-ccw" | "sharp-rotate-90-degrees-cw" | "sharp-rotate-left" | "sharp-rotate-right" | "sharp-shutter-speed" | "sharp-slideshow" | "sharp-straighten" | "sharp-style" | "sharp-switch-camera" | "sharp-switch-video" | "sharp-tag-faces" | "sharp-texture" | "sharp-thermostat-auto" | "sharp-timelapse" | "sharp-timer" | "sharp-timer-10" | "sharp-timer-3" | "sharp-timer-off" | "sharp-tonality" | "sharp-transform" | "sharp-tune" | "sharp-video-camera-back" | "sharp-video-camera-front" | "sharp-video-stable" | "sharp-view-comfy" | "sharp-view-compact" | "sharp-vignette" | "sharp-vrpano" | "sharp-wb-auto" | "sharp-wb-cloudy" | "sharp-wb-incandescent" | "sharp-wb-iridescent" | "sharp-wb-shade" | "sharp-wb-sunny" | "sharp-wb-twilight" | "twotone-10mp" | "twotone-11mp" | "twotone-12mp" | "twotone-13mp" | "twotone-14mp" | "twotone-15mp" | "twotone-16mp" | "twotone-17mp" | "twotone-18mp" | "twotone-19mp" | "twotone-20mp" | "twotone-21mp" | "twotone-22mp" | "twotone-23mp" | "twotone-24mp" | "twotone-2mp" | "twotone-30fps-select" | "twotone-3mp" | "twotone-4mp" | "twotone-5mp" | "twotone-60fps-select" | "twotone-6mp" | "twotone-7mp" | "twotone-8mp" | "twotone-9mp" | "twotone-add-a-photo" | "twotone-add-photo-alternate" | "twotone-add-to-photos" | "twotone-adjust" | "twotone-animation" | "twotone-assistant" | "twotone-assistant-photo" | "twotone-audiotrack" | "twotone-auto-awesome" | "twotone-auto-awesome-mosaic" | "twotone-auto-awesome-motion" | "twotone-auto-fix-high" | "twotone-auto-fix-normal" | "twotone-auto-fix-off" | "twotone-auto-stories" | "twotone-autofps-select" | "twotone-bedtime" | "twotone-bedtime-off" | "twotone-blur-circular" | "twotone-blur-linear" | "twotone-blur-off" | "twotone-blur-on" | "twotone-brightness-1" | "twotone-brightness-2" | "twotone-brightness-3" | "twotone-brightness-4" | "twotone-brightness-5" | "twotone-brightness-6" | "twotone-brightness-7" | "twotone-broken-image" | "twotone-brush" | "twotone-burst-mode" | "twotone-camera" | "twotone-camera-alt" | "twotone-camera-front" | "twotone-camera-rear" | "twotone-camera-roll" | "twotone-cases" | "twotone-center-focus-strong" | "twotone-center-focus-weak" | "twotone-circle" | "twotone-collections" | "twotone-collections-bookmark" | "twotone-color-lens" | "twotone-colorize" | "twotone-compare" | "twotone-contrast" | "twotone-control-point" | "twotone-control-point-duplicate" | "twotone-crop" | "twotone-crop-16-9" | "twotone-crop-3-2" | "twotone-crop-5-4" | "twotone-crop-7-5" | "twotone-crop-din" | "twotone-crop-free" | "twotone-crop-landscape" | "twotone-crop-original" | "twotone-crop-portrait" | "twotone-crop-rotate" | "twotone-crop-square" | "twotone-currency-bitcoin" | "twotone-currency-franc" | "twotone-currency-lira" | "twotone-currency-pound" | "twotone-currency-ruble" | "twotone-currency-rupee" | "twotone-currency-yen" | "twotone-currency-yuan" | "twotone-deblur" | "twotone-dehaze" | "twotone-details" | "twotone-dirty-lens" | "twotone-edit" | "twotone-euro" | "twotone-exposure" | "twotone-exposure-neg-1" | "twotone-exposure-neg-2" | "twotone-exposure-plus-1" | "twotone-exposure-plus-2" | "twotone-exposure-zero" | "twotone-face-retouching-natural" | "twotone-face-retouching-off" | "twotone-filter" | "twotone-filter-1" | "twotone-filter-2" | "twotone-filter-3" | "twotone-filter-4" | "twotone-filter-5" | "twotone-filter-6" | "twotone-filter-7" | "twotone-filter-8" | "twotone-filter-9" | "twotone-filter-9-plus" | "twotone-filter-b-and-w" | "twotone-filter-center-focus" | "twotone-filter-drama" | "twotone-filter-frames" | "twotone-filter-hdr" | "twotone-filter-none" | "twotone-filter-tilt-shift" | "twotone-filter-vintage" | "twotone-flare" | "twotone-flash-auto" | "twotone-flash-off" | "twotone-flash-on" | "twotone-flip" | "twotone-flip-camera-android" | "twotone-flip-camera-ios" | "twotone-gradient" | "twotone-grain" | "twotone-grid-off" | "twotone-grid-on" | "twotone-hdr-enhanced-select" | "twotone-hdr-off" | "twotone-hdr-on" | "twotone-hdr-plus" | "twotone-hdr-strong" | "twotone-hdr-weak" | "twotone-healing" | "twotone-hevc" | "twotone-hide-image" | "twotone-image" | "twotone-image-aspect-ratio" | "twotone-image-not-supported" | "twotone-image-search" | "twotone-incomplete-circle" | "twotone-iso" | "twotone-landscape" | "twotone-leak-add" | "twotone-leak-remove" | "twotone-lens" | "twotone-linked-camera" | "twotone-logo-dev" | "twotone-looks" | "twotone-looks-3" | "twotone-looks-4" | "twotone-looks-5" | "twotone-looks-6" | "twotone-looks-one" | "twotone-looks-two" | "twotone-loupe" | "twotone-mic-external-off" | "twotone-mic-external-on" | "twotone-monochrome-photos" | "twotone-motion-photos-auto" | "twotone-motion-photos-off" | "twotone-motion-photos-on" | "twotone-motion-photos-pause" | "twotone-motion-photos-paused" | "twotone-movie-creation" | "twotone-movie-filter" | "twotone-mp" | "twotone-music-note" | "twotone-music-off" | "twotone-nature" | "twotone-nature-people" | "twotone-navigate-before" | "twotone-navigate-next" | "twotone-palette" | "twotone-panorama" | "twotone-panorama-fish-eye" | "twotone-panorama-horizontal" | "twotone-panorama-horizontal-select" | "twotone-panorama-photosphere" | "twotone-panorama-photosphere-select" | "twotone-panorama-vertical" | "twotone-panorama-vertical-select" | "twotone-panorama-wide-angle" | "twotone-panorama-wide-angle-select" | "twotone-photo" | "twotone-photo-album" | "twotone-photo-camera" | "twotone-photo-camera-back" | "twotone-photo-camera-front" | "twotone-photo-filter" | "twotone-photo-library" | "twotone-photo-size-select-actual" | "twotone-photo-size-select-large" | "twotone-photo-size-select-small" | "twotone-picture-as-pdf" | "twotone-portrait" | "twotone-raw-off" | "twotone-raw-on" | "twotone-receipt-long" | "twotone-remove-red-eye" | "twotone-rotate-90-degrees-ccw" | "twotone-rotate-90-degrees-cw" | "twotone-rotate-left" | "twotone-rotate-right" | "twotone-shutter-speed" | "twotone-slideshow" | "twotone-straighten" | "twotone-style" | "twotone-switch-camera" | "twotone-switch-video" | "twotone-tag-faces" | "twotone-texture" | "twotone-thermostat-auto" | "twotone-timelapse" | "twotone-timer" | "twotone-timer-10" | "twotone-timer-3" | "twotone-timer-off" | "twotone-tonality" | "twotone-transform" | "twotone-tune" | "twotone-video-camera-back" | "twotone-video-camera-front" | "twotone-video-stable" | "twotone-view-comfy" | "twotone-view-compact" | "twotone-vignette" | "twotone-vrpano" | "twotone-wb-auto" | "twotone-wb-cloudy" | "twotone-wb-incandescent" | "twotone-wb-iridescent" | "twotone-wb-shade" | "twotone-wb-sunny" | "twotone-wb-twilight" | "baseline-360" | "baseline-add-business" | "baseline-add-location" | "baseline-add-location-alt" | "baseline-add-road" | "baseline-agriculture" | "baseline-airline-stops" | "baseline-airlines" | "baseline-alt-route" | "baseline-atm" | "baseline-attractions" | "baseline-badge" | "baseline-bakery-dining" | "baseline-beenhere" | "baseline-bike-scooter" | "baseline-breakfast-dining" | "baseline-brunch-dining" | "baseline-bus-alert" | "baseline-car-crash" | "baseline-car-rental" | "baseline-car-repair" | "baseline-castle" | "baseline-category" | "baseline-celebration" | "baseline-church" | "baseline-cleaning-services" | "baseline-compass-calibration" | "baseline-connecting-airports" | "baseline-crisis-alert" | "baseline-delivery-dining" | "baseline-departure-board" | "baseline-design-services" | "baseline-diamond" | "baseline-dinner-dining" | "baseline-directions" | "baseline-directions-bike" | "baseline-directions-boat" | "baseline-directions-boat-filled" | "baseline-directions-bus" | "baseline-directions-bus-filled" | "baseline-directions-car" | "baseline-directions-car-filled" | "baseline-directions-railway" | "baseline-directions-railway-filled" | "baseline-directions-run" | "baseline-directions-subway" | "baseline-directions-subway-filled" | "baseline-directions-transit" | "baseline-directions-transit-filled" | "baseline-directions-walk" | "baseline-dry-cleaning" | "baseline-edit-attributes" | "baseline-edit-location" | "baseline-edit-location-alt" | "baseline-edit-road" | "baseline-egg" | "baseline-egg-alt" | "baseline-electric-bike" | "baseline-electric-car" | "baseline-electric-moped" | "baseline-electric-rickshaw" | "baseline-electric-scooter" | "baseline-electrical-services" | "baseline-emergency" | "baseline-emergency-recording" | "baseline-emergency-share" | "baseline-ev-station" | "baseline-factory" | "baseline-fastfood" | "baseline-festival" | "baseline-fire-hydrant-alt" | "baseline-fire-truck" | "baseline-flight" | "baseline-flight-class" | "baseline-forest" | "baseline-fork-left" | "baseline-fork-right" | "baseline-fort" | "baseline-hail" | "baseline-handyman" | "baseline-hardware" | "baseline-home-repair-service" | "baseline-hotel" | "baseline-hvac" | "baseline-icecream" | "baseline-kebab-dining" | "baseline-layers" | "baseline-layers-clear" | "baseline-liquor" | "baseline-local-activity" | "baseline-local-airport" | "baseline-local-atm" | "baseline-local-bar" | "baseline-local-cafe" | "baseline-local-car-wash" | "baseline-local-convenience-store" | "baseline-local-dining" | "baseline-local-drink" | "baseline-local-fire-department" | "baseline-local-florist" | "baseline-local-gas-station" | "baseline-local-grocery-store" | "baseline-local-hospital" | "baseline-local-hotel" | "baseline-local-laundry-service" | "baseline-local-library" | "baseline-local-mall" | "baseline-local-movies" | "baseline-local-offer" | "baseline-local-parking" | "baseline-local-pharmacy" | "baseline-local-phone" | "baseline-local-pizza" | "baseline-local-play" | "baseline-local-police" | "baseline-local-post-office" | "baseline-local-printshop" | "baseline-local-see" | "baseline-local-shipping" | "baseline-local-taxi" | "baseline-lunch-dining" | "baseline-map" | "baseline-maps-ugc" | "baseline-medical-information" | "baseline-medical-services" | "baseline-menu-book" | "baseline-merge" | "baseline-minor-crash" | "baseline-miscellaneous-services" | "baseline-mode-of-travel" | "baseline-money" | "baseline-moped" | "baseline-mosque" | "baseline-moving" | "baseline-multiple-stop" | "baseline-museum" | "baseline-my-location" | "baseline-navigation" | "baseline-near-me" | "baseline-near-me-disabled" | "baseline-nightlife" | "baseline-no-crash" | "baseline-no-meals" | "baseline-no-transfer" | "baseline-not-listed-location" | "baseline-park" | "baseline-pedal-bike" | "baseline-person-pin" | "baseline-person-pin-circle" | "baseline-pest-control" | "baseline-pest-control-rodent" | "baseline-pin-drop" | "baseline-place" | "baseline-plumbing" | "baseline-railway-alert" | "baseline-ramen-dining" | "baseline-ramp-left" | "baseline-ramp-right" | "baseline-rate-review" | "baseline-remove-road" | "baseline-restaurant" | "baseline-restaurant-menu" | "baseline-roundabout-left" | "baseline-roundabout-right" | "baseline-route" | "baseline-run-circle" | "baseline-safety-check" | "baseline-sailing" | "baseline-satellite" | "baseline-screen-rotation-alt" | "baseline-set-meal" | "baseline-share-arrival-time" | "baseline-signpost" | "baseline-snowmobile" | "baseline-sos" | "baseline-soup-kitchen" | "baseline-stadium" | "baseline-store-mall-directory" | "baseline-straight" | "baseline-streetview" | "baseline-subway" | "baseline-synagogue" | "baseline-takeout-dining" | "baseline-taxi-alert" | "baseline-temple-buddhist" | "baseline-temple-hindu" | "baseline-terrain" | "baseline-theater-comedy" | "baseline-tire-repair" | "baseline-traffic" | "baseline-train" | "baseline-tram" | "baseline-transfer-within-a-station" | "baseline-transit-enterexit" | "baseline-trip-origin" | "baseline-turn-left" | "baseline-turn-right" | "baseline-turn-sharp-left" | "baseline-turn-sharp-right" | "baseline-turn-slight-left" | "baseline-turn-slight-right" | "baseline-two-wheeler" | "baseline-u-turn-left" | "baseline-u-turn-right" | "baseline-volunteer-activism" | "baseline-warehouse" | "baseline-wine-bar" | "baseline-wrong-location" | "baseline-zoom-in-map" | "baseline-zoom-out-map" | "outline-360" | "outline-add-business" | "outline-add-location" | "outline-add-location-alt" | "outline-add-road" | "outline-agriculture" | "outline-airline-stops" | "outline-airlines" | "outline-alt-route" | "outline-atm" | "outline-attractions" | "outline-badge" | "outline-bakery-dining" | "outline-beenhere" | "outline-bike-scooter" | "outline-breakfast-dining" | "outline-brunch-dining" | "outline-bus-alert" | "outline-car-crash" | "outline-car-rental" | "outline-car-repair" | "outline-castle" | "outline-category" | "outline-celebration" | "outline-church" | "outline-cleaning-services" | "outline-compass-calibration" | "outline-connecting-airports" | "outline-crisis-alert" | "outline-delivery-dining" | "outline-departure-board" | "outline-design-services" | "outline-diamond" | "outline-dinner-dining" | "outline-directions" | "outline-directions-bike" | "outline-directions-boat" | "outline-directions-boat-filled" | "outline-directions-bus" | "outline-directions-bus-filled" | "outline-directions-car" | "outline-directions-car-filled" | "outline-directions-railway" | "outline-directions-railway-filled" | "outline-directions-run" | "outline-directions-subway" | "outline-directions-subway-filled" | "outline-directions-transit" | "outline-directions-transit-filled" | "outline-directions-walk" | "outline-dry-cleaning" | "outline-edit-attributes" | "outline-edit-location" | "outline-edit-location-alt" | "outline-edit-road" | "outline-egg" | "outline-egg-alt" | "outline-electric-bike" | "outline-electric-car" | "outline-electric-moped" | "outline-electric-rickshaw" | "outline-electric-scooter" | "outline-electrical-services" | "outline-emergency" | "outline-emergency-recording" | "outline-emergency-share" | "outline-ev-station" | "outline-factory" | "outline-fastfood" | "outline-festival" | "outline-fire-hydrant-alt" | "outline-fire-truck" | "outline-flight" | "outline-flight-class" | "outline-forest" | "outline-fork-left" | "outline-fork-right" | "outline-fort" | "outline-hail" | "outline-handyman" | "outline-hardware" | "outline-home-repair-service" | "outline-hotel" | "outline-hvac" | "outline-icecream" | "outline-kebab-dining" | "outline-layers" | "outline-layers-clear" | "outline-liquor" | "outline-local-activity" | "outline-local-airport" | "outline-local-atm" | "outline-local-bar" | "outline-local-cafe" | "outline-local-car-wash" | "outline-local-convenience-store" | "outline-local-dining" | "outline-local-drink" | "outline-local-fire-department" | "outline-local-florist" | "outline-local-gas-station" | "outline-local-grocery-store" | "outline-local-hospital" | "outline-local-hotel" | "outline-local-laundry-service" | "outline-local-library" | "outline-local-mall" | "outline-local-movies" | "outline-local-offer" | "outline-local-parking" | "outline-local-pharmacy" | "outline-local-phone" | "outline-local-pizza" | "outline-local-play" | "outline-local-police" | "outline-local-post-office" | "outline-local-printshop" | "outline-local-see" | "outline-local-shipping" | "outline-local-taxi" | "outline-lunch-dining" | "outline-map" | "outline-maps-ugc" | "outline-medical-information" | "outline-medical-services" | "outline-menu-book" | "outline-merge" | "outline-minor-crash" | "outline-miscellaneous-services" | "outline-mode-of-travel" | "outline-money" | "outline-moped" | "outline-mosque" | "outline-moving" | "outline-multiple-stop" | "outline-museum" | "outline-my-location" | "outline-navigation" | "outline-near-me" | "outline-near-me-disabled" | "outline-nightlife" | "outline-no-crash" | "outline-no-meals" | "outline-no-transfer" | "outline-not-listed-location" | "outline-park" | "outline-pedal-bike" | "outline-person-pin" | "outline-person-pin-circle" | "outline-pest-control" | "outline-pest-control-rodent" | "outline-pin-drop" | "outline-place" | "outline-plumbing" | "outline-railway-alert" | "outline-ramen-dining" | "outline-ramp-left" | "outline-ramp-right" | "outline-rate-review" | "outline-remove-road" | "outline-restaurant" | "outline-restaurant-menu" | "outline-roundabout-left" | "outline-roundabout-right" | "outline-route" | "outline-run-circle" | "outline-safety-check" | "outline-sailing" | "outline-satellite" | "outline-screen-rotation-alt" | "outline-set-meal" | "outline-share-arrival-time" | "outline-signpost" | "outline-snowmobile" | "outline-sos" | "outline-soup-kitchen" | "outline-stadium" | "outline-store-mall-directory" | "outline-straight" | "outline-streetview" | "outline-subway" | "outline-synagogue" | "outline-takeout-dining" | "outline-taxi-alert" | "outline-temple-buddhist" | "outline-temple-hindu" | "outline-terrain" | "outline-theater-comedy" | "outline-tire-repair" | "outline-traffic" | "outline-train" | "outline-tram" | "outline-transfer-within-a-station" | "outline-transit-enterexit" | "outline-trip-origin" | "outline-turn-left" | "outline-turn-right" | "outline-turn-sharp-left" | "outline-turn-sharp-right" | "outline-turn-slight-left" | "outline-turn-slight-right" | "outline-two-wheeler" | "outline-u-turn-left" | "outline-u-turn-right" | "outline-volunteer-activism" | "outline-warehouse" | "outline-wine-bar" | "outline-wrong-location" | "outline-zoom-in-map" | "outline-zoom-out-map" | "round-360" | "round-add-business" | "round-add-location" | "round-add-location-alt" | "round-add-road" | "round-agriculture" | "round-airline-stops" | "round-airlines" | "round-alt-route" | "round-atm" | "round-attractions" | "round-badge" | "round-bakery-dining" | "round-beenhere" | "round-bike-scooter" | "round-breakfast-dining" | "round-brunch-dining" | "round-bus-alert" | "round-car-crash" | "round-car-rental" | "round-car-repair" | "round-castle" | "round-category" | "round-celebration" | "round-church" | "round-cleaning-services" | "round-compass-calibration" | "round-connecting-airports" | "round-crisis-alert" | "round-delivery-dining" | "round-departure-board" | "round-design-services" | "round-diamond" | "round-dinner-dining" | "round-directions" | "round-directions-bike" | "round-directions-boat" | "round-directions-boat-filled" | "round-directions-bus" | "round-directions-bus-filled" | "round-directions-car" | "round-directions-car-filled" | "round-directions-railway" | "round-directions-railway-filled" | "round-directions-run" | "round-directions-subway" | "round-directions-subway-filled" | "round-directions-transit" | "round-directions-transit-filled" | "round-directions-walk" | "round-dry-cleaning" | "round-edit-attributes" | "round-edit-location" | "round-edit-location-alt" | "round-edit-road" | "round-egg" | "round-egg-alt" | "round-electric-bike" | "round-electric-car" | "round-electric-moped" | "round-electric-rickshaw" | "round-electric-scooter" | "round-electrical-services" | "round-emergency" | "round-emergency-recording" | "round-emergency-share" | "round-ev-station" | "round-factory" | "round-fastfood" | "round-festival" | "round-fire-hydrant-alt" | "round-fire-truck" | "round-flight" | "round-flight-class" | "round-forest" | "round-fork-left" | "round-fork-right" | "round-fort" | "round-hail" | "round-handyman" | "round-hardware" | "round-home-repair-service" | "round-hotel" | "round-hvac" | "round-icecream" | "round-kebab-dining" | "round-layers" | "round-layers-clear" | "round-liquor" | "round-local-activity" | "round-local-airport" | "round-local-atm" | "round-local-bar" | "round-local-cafe" | "round-local-car-wash" | "round-local-convenience-store" | "round-local-dining" | "round-local-drink" | "round-local-fire-department" | "round-local-florist" | "round-local-gas-station" | "round-local-grocery-store" | "round-local-hospital" | "round-local-hotel" | "round-local-laundry-service" | "round-local-library" | "round-local-mall" | "round-local-movies" | "round-local-offer" | "round-local-parking" | "round-local-pharmacy" | "round-local-phone" | "round-local-pizza" | "round-local-play" | "round-local-police" | "round-local-post-office" | "round-local-printshop" | "round-local-see" | "round-local-shipping" | "round-local-taxi" | "round-lunch-dining" | "round-map" | "round-maps-ugc" | "round-medical-information" | "round-medical-services" | "round-menu-book" | "round-merge" | "round-minor-crash" | "round-miscellaneous-services" | "round-mode-of-travel" | "round-money" | "round-moped" | "round-mosque" | "round-moving" | "round-multiple-stop" | "round-museum" | "round-my-location" | "round-navigation" | "round-near-me" | "round-near-me-disabled" | "round-nightlife" | "round-no-crash" | "round-no-meals" | "round-no-transfer" | "round-not-listed-location" | "round-park" | "round-pedal-bike" | "round-person-pin" | "round-person-pin-circle" | "round-pest-control" | "round-pest-control-rodent" | "round-pin-drop" | "round-place" | "round-plumbing" | "round-railway-alert" | "round-ramen-dining" | "round-ramp-left" | "round-ramp-right" | "round-rate-review" | "round-remove-road" | "round-restaurant" | "round-restaurant-menu" | "round-roundabout-left" | "round-roundabout-right" | "round-route" | "round-run-circle" | "round-safety-check" | "round-sailing" | "round-satellite" | "round-screen-rotation-alt" | "round-set-meal" | "round-share-arrival-time" | "round-signpost" | "round-snowmobile" | "round-sos" | "round-soup-kitchen" | "round-stadium" | "round-store-mall-directory" | "round-straight" | "round-streetview" | "round-subway" | "round-synagogue" | "round-takeout-dining" | "round-taxi-alert" | "round-temple-buddhist" | "round-temple-hindu" | "round-terrain" | "round-theater-comedy" | "round-tire-repair" | "round-traffic" | "round-train" | "round-tram" | "round-transfer-within-a-station" | "round-transit-enterexit" | "round-trip-origin" | "round-turn-left" | "round-turn-right" | "round-turn-sharp-left" | "round-turn-sharp-right" | "round-turn-slight-left" | "round-turn-slight-right" | "round-two-wheeler" | "round-u-turn-left" | "round-u-turn-right" | "round-volunteer-activism" | "round-warehouse" | "round-wine-bar" | "round-wrong-location" | "round-zoom-in-map" | "round-zoom-out-map" | "sharp-360" | "sharp-add-business" | "sharp-add-location" | "sharp-add-location-alt" | "sharp-add-road" | "sharp-agriculture" | "sharp-airline-stops" | "sharp-airlines" | "sharp-alt-route" | "sharp-atm" | "sharp-attractions" | "sharp-badge" | "sharp-bakery-dining" | "sharp-beenhere" | "sharp-bike-scooter" | "sharp-breakfast-dining" | "sharp-brunch-dining" | "sharp-bus-alert" | "sharp-car-crash" | "sharp-car-rental" | "sharp-car-repair" | "sharp-castle" | "sharp-category" | "sharp-celebration" | "sharp-church" | "sharp-cleaning-services" | "sharp-compass-calibration" | "sharp-connecting-airports" | "sharp-crisis-alert" | "sharp-delivery-dining" | "sharp-departure-board" | "sharp-design-services" | "sharp-diamond" | "sharp-dinner-dining" | "sharp-directions" | "sharp-directions-bike" | "sharp-directions-boat" | "sharp-directions-boat-filled" | "sharp-directions-bus" | "sharp-directions-bus-filled" | "sharp-directions-car" | "sharp-directions-car-filled" | "sharp-directions-railway" | "sharp-directions-railway-filled" | "sharp-directions-run" | "sharp-directions-subway" | "sharp-directions-subway-filled" | "sharp-directions-transit" | "sharp-directions-transit-filled" | "sharp-directions-walk" | "sharp-dry-cleaning" | "sharp-edit-attributes" | "sharp-edit-location" | "sharp-edit-location-alt" | "sharp-edit-road" | "sharp-egg" | "sharp-egg-alt" | "sharp-electric-bike" | "sharp-electric-car" | "sharp-electric-moped" | "sharp-electric-rickshaw" | "sharp-electric-scooter" | "sharp-electrical-services" | "sharp-emergency" | "sharp-emergency-recording" | "sharp-emergency-share" | "sharp-ev-station" | "sharp-factory" | "sharp-fastfood" | "sharp-festival" | "sharp-fire-hydrant-alt" | "sharp-fire-truck" | "sharp-flight" | "sharp-flight-class" | "sharp-forest" | "sharp-fork-left" | "sharp-fork-right" | "sharp-fort" | "sharp-hail" | "sharp-handyman" | "sharp-hardware" | "sharp-home-repair-service" | "sharp-hotel" | "sharp-hvac" | "sharp-icecream" | "sharp-kebab-dining" | "sharp-layers" | "sharp-layers-clear" | "sharp-liquor" | "sharp-local-activity" | "sharp-local-airport" | "sharp-local-atm" | "sharp-local-bar" | "sharp-local-cafe" | "sharp-local-car-wash" | "sharp-local-convenience-store" | "sharp-local-dining" | "sharp-local-drink" | "sharp-local-fire-department" | "sharp-local-florist" | "sharp-local-gas-station" | "sharp-local-grocery-store" | "sharp-local-hospital" | "sharp-local-hotel" | "sharp-local-laundry-service" | "sharp-local-library" | "sharp-local-mall" | "sharp-local-movies" | "sharp-local-offer" | "sharp-local-parking" | "sharp-local-pharmacy" | "sharp-local-phone" | "sharp-local-pizza" | "sharp-local-play" | "sharp-local-police" | "sharp-local-post-office" | "sharp-local-printshop" | "sharp-local-see" | "sharp-local-shipping" | "sharp-local-taxi" | "sharp-lunch-dining" | "sharp-map" | "sharp-maps-ugc" | "sharp-medical-information" | "sharp-medical-services" | "sharp-menu-book" | "sharp-merge" | "sharp-minor-crash" | "sharp-miscellaneous-services" | "sharp-mode-of-travel" | "sharp-money" | "sharp-moped" | "sharp-mosque" | "sharp-moving" | "sharp-multiple-stop" | "sharp-museum" | "sharp-my-location" | "sharp-navigation" | "sharp-near-me" | "sharp-near-me-disabled" | "sharp-nightlife" | "sharp-no-crash" | "sharp-no-meals" | "sharp-no-transfer" | "sharp-not-listed-location" | "sharp-park" | "sharp-pedal-bike" | "sharp-person-pin" | "sharp-person-pin-circle" | "sharp-pest-control" | "sharp-pest-control-rodent" | "sharp-pin-drop" | "sharp-place" | "sharp-plumbing" | "sharp-railway-alert" | "sharp-ramen-dining" | "sharp-ramp-left" | "sharp-ramp-right" | "sharp-rate-review" | "sharp-remove-road" | "sharp-restaurant" | "sharp-restaurant-menu" | "sharp-roundabout-left" | "sharp-roundabout-right" | "sharp-route" | "sharp-run-circle" | "sharp-safety-check" | "sharp-sailing" | "sharp-satellite" | "sharp-screen-rotation-alt" | "sharp-set-meal" | "sharp-share-arrival-time" | "sharp-signpost" | "sharp-snowmobile" | "sharp-sos" | "sharp-soup-kitchen" | "sharp-stadium" | "sharp-store-mall-directory" | "sharp-straight" | "sharp-streetview" | "sharp-subway" | "sharp-synagogue" | "sharp-takeout-dining" | "sharp-taxi-alert" | "sharp-temple-buddhist" | "sharp-temple-hindu" | "sharp-terrain" | "sharp-theater-comedy" | "sharp-tire-repair" | "sharp-traffic" | "sharp-train" | "sharp-tram" | "sharp-transfer-within-a-station" | "sharp-transit-enterexit" | "sharp-trip-origin" | "sharp-turn-left" | "sharp-turn-right" | "sharp-turn-sharp-left" | "sharp-turn-sharp-right" | "sharp-turn-slight-left" | "sharp-turn-slight-right" | "sharp-two-wheeler" | "sharp-u-turn-left" | "sharp-u-turn-right" | "sharp-volunteer-activism" | "sharp-warehouse" | "sharp-wine-bar" | "sharp-wrong-location" | "sharp-zoom-in-map" | "sharp-zoom-out-map" | "twotone-360" | "twotone-add-business" | "twotone-add-location" | "twotone-add-location-alt" | "twotone-add-road" | "twotone-agriculture" | "twotone-airline-stops" | "twotone-airlines" | "twotone-alt-route" | "twotone-atm" | "twotone-attractions" | "twotone-badge" | "twotone-bakery-dining" | "twotone-beenhere" | "twotone-bike-scooter" | "twotone-breakfast-dining" | "twotone-brunch-dining" | "twotone-bus-alert" | "twotone-car-crash" | "twotone-car-rental" | "twotone-car-repair" | "twotone-castle" | "twotone-category" | "twotone-celebration" | "twotone-church" | "twotone-cleaning-services" | "twotone-compass-calibration" | "twotone-connecting-airports" | "twotone-crisis-alert" | "twotone-delivery-dining" | "twotone-departure-board" | "twotone-design-services" | "twotone-diamond" | "twotone-dinner-dining" | "twotone-directions" | "twotone-directions-bike" | "twotone-directions-boat" | "twotone-directions-boat-filled" | "twotone-directions-bus" | "twotone-directions-bus-filled" | "twotone-directions-car" | "twotone-directions-car-filled" | "twotone-directions-railway" | "twotone-directions-railway-filled" | "twotone-directions-run" | "twotone-directions-subway" | "twotone-directions-subway-filled" | "twotone-directions-transit" | "twotone-directions-transit-filled" | "twotone-directions-walk" | "twotone-dry-cleaning" | "twotone-edit-attributes" | "twotone-edit-location" | "twotone-edit-location-alt" | "twotone-edit-road" | "twotone-egg" | "twotone-egg-alt" | "twotone-electric-bike" | "twotone-electric-car" | "twotone-electric-moped" | "twotone-electric-rickshaw" | "twotone-electric-scooter" | "twotone-electrical-services" | "twotone-emergency" | "twotone-emergency-recording" | "twotone-emergency-share" | "twotone-ev-station" | "twotone-factory" | "twotone-fastfood" | "twotone-festival" | "twotone-fire-hydrant-alt" | "twotone-fire-truck" | "twotone-flight" | "twotone-flight-class" | "twotone-forest" | "twotone-fork-left" | "twotone-fork-right" | "twotone-fort" | "twotone-hail" | "twotone-handyman" | "twotone-hardware" | "twotone-home-repair-service" | "twotone-hotel" | "twotone-hvac" | "twotone-icecream" | "twotone-kebab-dining" | "twotone-layers" | "twotone-layers-clear" | "twotone-liquor" | "twotone-local-activity" | "twotone-local-airport" | "twotone-local-atm" | "twotone-local-bar" | "twotone-local-cafe" | "twotone-local-car-wash" | "twotone-local-convenience-store" | "twotone-local-dining" | "twotone-local-drink" | "twotone-local-fire-department" | "twotone-local-florist" | "twotone-local-gas-station" | "twotone-local-grocery-store" | "twotone-local-hospital" | "twotone-local-hotel" | "twotone-local-laundry-service" | "twotone-local-library" | "twotone-local-mall" | "twotone-local-movies" | "twotone-local-offer" | "twotone-local-parking" | "twotone-local-pharmacy" | "twotone-local-phone" | "twotone-local-pizza" | "twotone-local-play" | "twotone-local-police" | "twotone-local-post-office" | "twotone-local-printshop" | "twotone-local-see" | "twotone-local-shipping" | "twotone-local-taxi" | "twotone-lunch-dining" | "twotone-map" | "twotone-maps-ugc" | "twotone-medical-information" | "twotone-medical-services" | "twotone-menu-book" | "twotone-merge" | "twotone-minor-crash" | "twotone-miscellaneous-services" | "twotone-mode-of-travel" | "twotone-money" | "twotone-moped" | "twotone-mosque" | "twotone-moving" | "twotone-multiple-stop" | "twotone-museum" | "twotone-my-location" | "twotone-navigation" | "twotone-near-me" | "twotone-near-me-disabled" | "twotone-nightlife" | "twotone-no-crash" | "twotone-no-meals" | "twotone-no-transfer" | "twotone-not-listed-location" | "twotone-park" | "twotone-pedal-bike" | "twotone-person-pin" | "twotone-person-pin-circle" | "twotone-pest-control" | "twotone-pest-control-rodent" | "twotone-pin-drop" | "twotone-place" | "twotone-plumbing" | "twotone-railway-alert" | "twotone-ramen-dining" | "twotone-ramp-left" | "twotone-ramp-right" | "twotone-rate-review" | "twotone-remove-road" | "twotone-restaurant" | "twotone-restaurant-menu" | "twotone-roundabout-left" | "twotone-roundabout-right" | "twotone-route" | "twotone-run-circle" | "twotone-safety-check" | "twotone-sailing" | "twotone-satellite" | "twotone-screen-rotation-alt" | "twotone-set-meal" | "twotone-share-arrival-time" | "twotone-signpost" | "twotone-snowmobile" | "twotone-sos" | "twotone-soup-kitchen" | "twotone-stadium" | "twotone-store-mall-directory" | "twotone-straight" | "twotone-streetview" | "twotone-subway" | "twotone-synagogue" | "twotone-takeout-dining" | "twotone-taxi-alert" | "twotone-temple-buddhist" | "twotone-temple-hindu" | "twotone-terrain" | "twotone-theater-comedy" | "twotone-tire-repair" | "twotone-traffic" | "twotone-train" | "twotone-tram" | "twotone-transfer-within-a-station" | "twotone-transit-enterexit" | "twotone-trip-origin" | "twotone-turn-left" | "twotone-turn-right" | "twotone-turn-sharp-left" | "twotone-turn-sharp-right" | "twotone-turn-slight-left" | "twotone-turn-slight-right" | "twotone-two-wheeler" | "twotone-u-turn-left" | "twotone-u-turn-right" | "twotone-volunteer-activism" | "twotone-warehouse" | "twotone-wine-bar" | "twotone-wrong-location" | "twotone-zoom-in-map" | "twotone-zoom-out-map" | "baseline-divide" | "baseline-equals" | "baseline-greater-than" | "baseline-greater-than-equal" | "baseline-less-than" | "baseline-less-than-equal" | "baseline-minus" | "baseline-not-equal" | "baseline-percentage" | "baseline-plus" | "baseline-plus-minus" | "baseline-plus-minus-alt" | "outline-divide" | "outline-equals" | "outline-greater-than" | "outline-greater-than-equal" | "outline-less-than" | "outline-less-than-equal" | "outline-minus" | "outline-not-equal" | "outline-percentage" | "outline-plus" | "outline-plus-minus" | "outline-plus-minus-alt" | "round-divide" | "round-equals" | "round-greater-than" | "round-greater-than-equal" | "round-less-than" | "round-less-than-equal" | "round-minus" | "round-not-equal" | "round-percentage" | "round-plus" | "round-plus-minus" | "round-plus-minus-alt" | "sharp-divide" | "sharp-equals" | "sharp-greater-than" | "sharp-greater-than-equal" | "sharp-less-than" | "sharp-less-than-equal" | "sharp-minus" | "sharp-not-equal" | "sharp-percentage" | "sharp-plus" | "sharp-plus-minus" | "sharp-plus-minus-alt" | "twotone-divide" | "twotone-equals" | "twotone-greater-than" | "twotone-greater-than-equal" | "twotone-less-than" | "twotone-less-than-equal" | "twotone-minus" | "twotone-not-equal" | "twotone-percentage" | "twotone-plus" | "twotone-plus-minus" | "twotone-plus-minus-alt" | "baseline-add-home-work" | "baseline-app-settings-alt" | "baseline-apps" | "baseline-apps-outage" | "baseline-arrow-back" | "baseline-arrow-back-ios" | "baseline-arrow-back-ios-new" | "baseline-arrow-downward" | "baseline-arrow-drop-down" | "baseline-arrow-drop-down-circle" | "baseline-arrow-drop-up" | "baseline-arrow-forward" | "baseline-arrow-forward-ios" | "baseline-arrow-left" | "baseline-arrow-right" | "baseline-arrow-upward" | "baseline-assistant-direction" | "baseline-campaign" | "baseline-cancel" | "baseline-check" | "baseline-chevron-left" | "baseline-chevron-right" | "baseline-close" | "baseline-double-arrow" | "baseline-east" | "baseline-expand-circle-down" | "baseline-expand-less" | "baseline-expand-more" | "baseline-first-page" | "baseline-fullscreen" | "baseline-fullscreen-exit" | "baseline-home-work" | "baseline-last-page" | "baseline-legend-toggle" | "baseline-maps-home-work" | "baseline-menu" | "baseline-menu-open" | "baseline-more-horiz" | "baseline-more-vert" | "baseline-north" | "baseline-north-east" | "baseline-north-west" | "baseline-offline-share" | "baseline-payments" | "baseline-pivot-table-chart" | "baseline-refresh" | "baseline-south" | "baseline-south-east" | "baseline-south-west" | "baseline-subdirectory-arrow-left" | "baseline-subdirectory-arrow-right" | "baseline-switch-left" | "baseline-switch-right" | "baseline-unfold-less" | "baseline-unfold-more" | "baseline-waterfall-chart" | "baseline-west" | "outline-add-home-work" | "outline-app-settings-alt" | "outline-apps" | "outline-apps-outage" | "outline-arrow-back" | "outline-arrow-back-ios" | "outline-arrow-back-ios-new" | "outline-arrow-downward" | "outline-arrow-drop-down" | "outline-arrow-drop-down-circle" | "outline-arrow-drop-up" | "outline-arrow-forward" | "outline-arrow-forward-ios" | "outline-arrow-left" | "outline-arrow-right" | "outline-arrow-upward" | "outline-assistant-direction" | "outline-campaign" | "outline-cancel" | "outline-check" | "outline-chevron-left" | "outline-chevron-right" | "outline-close" | "outline-double-arrow" | "outline-east" | "outline-expand-circle-down" | "outline-expand-less" | "outline-expand-more" | "outline-first-page" | "outline-fullscreen" | "outline-fullscreen-exit" | "outline-home-work" | "outline-last-page" | "outline-legend-toggle" | "outline-maps-home-work" | "outline-menu" | "outline-menu-open" | "outline-more-horiz" | "outline-more-vert" | "outline-north" | "outline-north-east" | "outline-north-west" | "outline-offline-share" | "outline-payments" | "outline-pivot-table-chart" | "outline-refresh" | "outline-south" | "outline-south-east" | "outline-south-west" | "outline-subdirectory-arrow-left" | "outline-subdirectory-arrow-right" | "outline-switch-left" | "outline-switch-right" | "outline-unfold-less" | "outline-unfold-more" | "outline-waterfall-chart" | "outline-west" | "round-add-home-work" | "round-app-settings-alt" | "round-apps" | "round-apps-outage" | "round-arrow-back" | "round-arrow-back-ios" | "round-arrow-back-ios-new" | "round-arrow-downward" | "round-arrow-drop-down" | "round-arrow-drop-down-circle" | "round-arrow-drop-up" | "round-arrow-forward" | "round-arrow-forward-ios" | "round-arrow-left" | "round-arrow-right" | "round-arrow-upward" | "round-assistant-direction" | "round-campaign" | "round-cancel" | "round-check" | "round-chevron-left" | "round-chevron-right" | "round-close" | "round-double-arrow" | "round-east" | "round-expand-circle-down" | "round-expand-less" | "round-expand-more" | "round-first-page" | "round-fullscreen" | "round-fullscreen-exit" | "round-home-work" | "round-last-page" | "round-legend-toggle" | "round-maps-home-work" | "round-menu" | "round-menu-open" | "round-more-horiz" | "round-more-vert" | "round-north" | "round-north-east" | "round-north-west" | "round-offline-share" | "round-payments" | "round-pivot-table-chart" | "round-refresh" | "round-south" | "round-south-east" | "round-south-west" | "round-subdirectory-arrow-left" | "round-subdirectory-arrow-right" | "round-switch-left" | "round-switch-right" | "round-unfold-less" | "round-unfold-more" | "round-waterfall-chart" | "round-west" | "sharp-add-home-work" | "sharp-app-settings-alt" | "sharp-apps" | "sharp-apps-outage" | "sharp-arrow-back" | "sharp-arrow-back-ios" | "sharp-arrow-back-ios-new" | "sharp-arrow-downward" | "sharp-arrow-drop-down" | "sharp-arrow-drop-down-circle" | "sharp-arrow-drop-up" | "sharp-arrow-forward" | "sharp-arrow-forward-ios" | "sharp-arrow-left" | "sharp-arrow-right" | "sharp-arrow-upward" | "sharp-assistant-direction" | "sharp-campaign" | "sharp-cancel" | "sharp-check" | "sharp-chevron-left" | "sharp-chevron-right" | "sharp-close" | "sharp-double-arrow" | "sharp-east" | "sharp-expand-circle-down" | "sharp-expand-less" | "sharp-expand-more" | "sharp-first-page" | "sharp-fullscreen" | "sharp-fullscreen-exit" | "sharp-home-work" | "sharp-last-page" | "sharp-legend-toggle" | "sharp-maps-home-work" | "sharp-menu" | "sharp-menu-open" | "sharp-more-horiz" | "sharp-more-vert" | "sharp-north" | "sharp-north-east" | "sharp-north-west" | "sharp-offline-share" | "sharp-payments" | "sharp-pivot-table-chart" | "sharp-refresh" | "sharp-south" | "sharp-south-east" | "sharp-south-west" | "sharp-subdirectory-arrow-left" | "sharp-subdirectory-arrow-right" | "sharp-switch-left" | "sharp-switch-right" | "sharp-unfold-less" | "sharp-unfold-more" | "sharp-waterfall-chart" | "sharp-west" | "twotone-add-home-work" | "twotone-app-settings-alt" | "twotone-apps" | "twotone-apps-outage" | "twotone-arrow-back" | "twotone-arrow-back-ios" | "twotone-arrow-back-ios-new" | "twotone-arrow-downward" | "twotone-arrow-drop-down" | "twotone-arrow-drop-down-circle" | "twotone-arrow-drop-up" | "twotone-arrow-forward" | "twotone-arrow-forward-ios" | "twotone-arrow-left" | "twotone-arrow-right" | "twotone-arrow-upward" | "twotone-assistant-direction" | "twotone-campaign" | "twotone-cancel" | "twotone-check" | "twotone-chevron-left" | "twotone-chevron-right" | "twotone-close" | "twotone-double-arrow" | "twotone-east" | "twotone-expand-circle-down" | "twotone-expand-less" | "twotone-expand-more" | "twotone-first-page" | "twotone-fullscreen" | "twotone-fullscreen-exit" | "twotone-home-work" | "twotone-last-page" | "twotone-legend-toggle" | "twotone-maps-home-work" | "twotone-menu" | "twotone-menu-open" | "twotone-more-horiz" | "twotone-more-vert" | "twotone-north" | "twotone-north-east" | "twotone-north-west" | "twotone-offline-share" | "twotone-payments" | "twotone-pivot-table-chart" | "twotone-refresh" | "twotone-south" | "twotone-south-east" | "twotone-south-west" | "twotone-subdirectory-arrow-left" | "twotone-subdirectory-arrow-right" | "twotone-switch-left" | "twotone-switch-right" | "twotone-unfold-less" | "twotone-unfold-more" | "twotone-waterfall-chart" | "twotone-west" | "baseline-account-tree" | "baseline-adb" | "baseline-airline-seat-flat" | "baseline-airline-seat-flat-angled" | "baseline-airline-seat-individual-suite" | "baseline-airline-seat-legroom-extra" | "baseline-airline-seat-legroom-normal" | "baseline-airline-seat-legroom-reduced" | "baseline-airline-seat-recline-extra" | "baseline-airline-seat-recline-normal" | "baseline-bluetooth-audio" | "baseline-confirmation-number" | "baseline-directions-off" | "baseline-disc-full" | "baseline-do-disturb" | "baseline-do-disturb-alt" | "baseline-do-disturb-off" | "baseline-do-disturb-on" | "baseline-do-not-disturb" | "baseline-do-not-disturb-alt" | "baseline-do-not-disturb-off" | "baseline-do-not-disturb-on" | "baseline-drive-eta" | "baseline-enhanced-encryption" | "baseline-event-available" | "baseline-event-busy" | "baseline-event-note" | "baseline-folder-special" | "baseline-imagesearch-roller" | "baseline-live-tv" | "baseline-mms" | "baseline-more" | "baseline-network-check" | "baseline-network-locked" | "baseline-no-encryption" | "baseline-no-encryption-gmailerrorred" | "baseline-ondemand-video" | "baseline-personal-video" | "baseline-phone-bluetooth-speaker" | "baseline-phone-callback" | "baseline-phone-forwarded" | "baseline-phone-in-talk" | "baseline-phone-locked" | "baseline-phone-missed" | "baseline-phone-paused" | "baseline-power" | "baseline-power-off" | "baseline-priority-high" | "baseline-running-with-errors" | "baseline-sd-card" | "baseline-sd-card-alert" | "baseline-sim-card-alert" | "baseline-sms" | "baseline-sms-failed" | "baseline-support-agent" | "baseline-sync" | "baseline-sync-disabled" | "baseline-sync-lock" | "baseline-sync-problem" | "baseline-system-update" | "baseline-tap-and-play" | "baseline-time-to-leave" | "baseline-tv-off" | "baseline-vibration" | "baseline-video-chat" | "baseline-voice-chat" | "baseline-vpn-lock" | "baseline-wc" | "baseline-wifi" | "baseline-wifi-off" | "outline-account-tree" | "outline-adb" | "outline-airline-seat-flat" | "outline-airline-seat-flat-angled" | "outline-airline-seat-individual-suite" | "outline-airline-seat-legroom-extra" | "outline-airline-seat-legroom-normal" | "outline-airline-seat-legroom-reduced" | "outline-airline-seat-recline-extra" | "outline-airline-seat-recline-normal" | "outline-bluetooth-audio" | "outline-confirmation-number" | "outline-directions-off" | "outline-disc-full" | "outline-do-disturb" | "outline-do-disturb-alt" | "outline-do-disturb-off" | "outline-do-disturb-on" | "outline-do-not-disturb" | "outline-do-not-disturb-alt" | "outline-do-not-disturb-off" | "outline-do-not-disturb-on" | "outline-drive-eta" | "outline-enhanced-encryption" | "outline-event-available" | "outline-event-busy" | "outline-event-note" | "outline-folder-special" | "outline-imagesearch-roller" | "outline-live-tv" | "outline-mms" | "outline-more" | "outline-network-check" | "outline-network-locked" | "outline-no-encryption" | "outline-no-encryption-gmailerrorred" | "outline-ondemand-video" | "outline-personal-video" | "outline-phone-bluetooth-speaker" | "outline-phone-callback" | "outline-phone-forwarded" | "outline-phone-in-talk" | "outline-phone-locked" | "outline-phone-missed" | "outline-phone-paused" | "outline-power" | "outline-power-off" | "outline-priority-high" | "outline-running-with-errors" | "outline-sd-card" | "outline-sd-card-alert" | "outline-sim-card-alert" | "outline-sms" | "outline-sms-failed" | "outline-support-agent" | "outline-sync" | "outline-sync-disabled" | "outline-sync-lock" | "outline-sync-problem" | "outline-system-update" | "outline-tap-and-play" | "outline-time-to-leave" | "outline-tv-off" | "outline-vibration" | "outline-video-chat" | "outline-voice-chat" | "outline-vpn-lock" | "outline-wc" | "outline-wifi" | "outline-wifi-off" | "round-account-tree" | "round-adb" | "round-airline-seat-flat" | "round-airline-seat-flat-angled" | "round-airline-seat-individual-suite" | "round-airline-seat-legroom-extra" | "round-airline-seat-legroom-normal" | "round-airline-seat-legroom-reduced" | "round-airline-seat-recline-extra" | "round-airline-seat-recline-normal" | "round-bluetooth-audio" | "round-confirmation-number" | "round-directions-off" | "round-disc-full" | "round-do-disturb" | "round-do-disturb-alt" | "round-do-disturb-off" | "round-do-disturb-on" | "round-do-not-disturb" | "round-do-not-disturb-alt" | "round-do-not-disturb-off" | "round-do-not-disturb-on" | "round-drive-eta" | "round-enhanced-encryption" | "round-event-available" | "round-event-busy" | "round-event-note" | "round-folder-special" | "round-imagesearch-roller" | "round-live-tv" | "round-mms" | "round-more" | "round-network-check" | "round-network-locked" | "round-no-encryption" | "round-no-encryption-gmailerrorred" | "round-ondemand-video" | "round-personal-video" | "round-phone-bluetooth-speaker" | "round-phone-callback" | "round-phone-forwarded" | "round-phone-in-talk" | "round-phone-locked" | "round-phone-missed" | "round-phone-paused" | "round-power" | "round-power-off" | "round-priority-high" | "round-running-with-errors" | "round-sd-card" | "round-sd-card-alert" | "round-sim-card-alert" | "round-sms" | "round-sms-failed" | "round-support-agent" | "round-sync-disabled" | "round-sync-lock" | "round-sync-problem" | "round-system-update" | "round-tap-and-play" | "round-time-to-leave" | "round-tv-off" | "round-vibration" | "round-video-chat" | "round-voice-chat" | "round-vpn-lock" | "round-wc" | "round-wifi" | "round-wifi-off" | "sharp-account-tree" | "sharp-adb" | "sharp-airline-seat-flat" | "sharp-airline-seat-flat-angled" | "sharp-airline-seat-individual-suite" | "sharp-airline-seat-legroom-extra" | "sharp-airline-seat-legroom-normal" | "sharp-airline-seat-legroom-reduced" | "sharp-airline-seat-recline-extra" | "sharp-airline-seat-recline-normal" | "sharp-bluetooth-audio" | "sharp-confirmation-number" | "sharp-directions-off" | "sharp-disc-full" | "sharp-do-disturb" | "sharp-do-disturb-alt" | "sharp-do-disturb-off" | "sharp-do-disturb-on" | "sharp-do-not-disturb" | "sharp-do-not-disturb-alt" | "sharp-do-not-disturb-off" | "sharp-do-not-disturb-on" | "sharp-drive-eta" | "sharp-enhanced-encryption" | "sharp-event-available" | "sharp-event-busy" | "sharp-event-note" | "sharp-folder-special" | "sharp-imagesearch-roller" | "sharp-live-tv" | "sharp-mms" | "sharp-more" | "sharp-network-check" | "sharp-network-locked" | "sharp-no-encryption" | "sharp-no-encryption-gmailerrorred" | "sharp-ondemand-video" | "sharp-personal-video" | "sharp-phone-bluetooth-speaker" | "sharp-phone-callback" | "sharp-phone-forwarded" | "sharp-phone-in-talk" | "sharp-phone-locked" | "sharp-phone-missed" | "sharp-phone-paused" | "sharp-power" | "sharp-power-off" | "sharp-priority-high" | "sharp-running-with-errors" | "sharp-sd-card" | "sharp-sd-card-alert" | "sharp-sim-card-alert" | "sharp-sms" | "sharp-sms-failed" | "sharp-support-agent" | "sharp-sync" | "sharp-sync-disabled" | "sharp-sync-lock" | "sharp-sync-problem" | "sharp-system-update" | "sharp-tap-and-play" | "sharp-time-to-leave" | "sharp-tv-off" | "sharp-vibration" | "sharp-video-chat" | "sharp-voice-chat" | "sharp-vpn-lock" | "sharp-wc" | "sharp-wifi" | "sharp-wifi-off" | "twotone-account-tree" | "twotone-adb" | "twotone-airline-seat-flat" | "twotone-airline-seat-flat-angled" | "twotone-airline-seat-individual-suite" | "twotone-airline-seat-legroom-extra" | "twotone-airline-seat-legroom-normal" | "twotone-airline-seat-legroom-reduced" | "twotone-airline-seat-recline-extra" | "twotone-airline-seat-recline-normal" | "twotone-bluetooth-audio" | "twotone-confirmation-number" | "twotone-directions-off" | "twotone-disc-full" | "twotone-do-disturb" | "twotone-do-disturb-alt" | "twotone-do-disturb-off" | "twotone-do-disturb-on" | "twotone-do-not-disturb" | "twotone-do-not-disturb-alt" | "twotone-do-not-disturb-off" | "twotone-do-not-disturb-on" | "twotone-drive-eta" | "twotone-enhanced-encryption" | "twotone-event-available" | "twotone-event-busy" | "twotone-event-note" | "twotone-folder-special" | "twotone-imagesearch-roller" | "twotone-live-tv" | "twotone-mms" | "twotone-more" | "twotone-network-check" | "twotone-network-locked" | "twotone-no-encryption" | "twotone-no-encryption-gmailerrorred" | "twotone-ondemand-video" | "twotone-personal-video" | "twotone-phone-bluetooth-speaker" | "twotone-phone-callback" | "twotone-phone-forwarded" | "twotone-phone-in-talk" | "twotone-phone-locked" | "twotone-phone-missed" | "twotone-phone-paused" | "twotone-power" | "twotone-power-off" | "twotone-priority-high" | "twotone-running-with-errors" | "twotone-sd-card" | "twotone-sd-card-alert" | "twotone-sim-card-alert" | "twotone-sms" | "twotone-sms-failed" | "twotone-support-agent" | "twotone-sync" | "twotone-sync-disabled" | "twotone-sync-lock" | "twotone-sync-problem" | "twotone-system-update" | "twotone-tap-and-play" | "twotone-time-to-leave" | "twotone-tv-off" | "twotone-vibration" | "twotone-video-chat" | "twotone-voice-chat" | "twotone-vpn-lock" | "twotone-wc" | "twotone-wifi" | "twotone-wifi-off" | "baseline-ac-unit" | "baseline-airport-shuttle" | "baseline-all-inclusive" | "baseline-apartment" | "baseline-baby-changing-station" | "baseline-backpack" | "baseline-balcony" | "baseline-bathtub" | "baseline-beach-access" | "baseline-bento" | "baseline-bungalow" | "baseline-business-center" | "baseline-cabin" | "baseline-carpenter" | "baseline-casino" | "baseline-chalet" | "baseline-charging-station" | "baseline-checkroom" | "baseline-child-care" | "baseline-child-friendly" | "baseline-corporate-fare" | "baseline-cottage" | "baseline-countertops" | "baseline-crib" | "baseline-desk" | "baseline-do-not-step" | "baseline-do-not-touch" | "baseline-dry" | "baseline-elevator" | "baseline-escalator" | "baseline-escalator-warning" | "baseline-family-restroom" | "baseline-fence" | "baseline-fire-extinguisher" | "baseline-fitness-center" | "baseline-food-bank" | "baseline-foundation" | "baseline-free-breakfast" | "baseline-gite" | "baseline-golf-course" | "baseline-grass" | "baseline-holiday-village" | "baseline-hot-tub" | "baseline-house" | "baseline-house-siding" | "baseline-houseboat" | "baseline-iron" | "baseline-kitchen" | "baseline-meeting-room" | "baseline-microwave" | "baseline-night-shelter" | "baseline-no-backpack" | "baseline-no-cell" | "baseline-no-drinks" | "baseline-no-flash" | "baseline-no-food" | "baseline-no-meeting-room" | "baseline-no-photography" | "baseline-no-stroller" | "baseline-other-houses" | "baseline-pool" | "baseline-rice-bowl" | "baseline-roofing" | "baseline-room-preferences" | "baseline-room-service" | "baseline-rv-hookup" | "baseline-smoke-free" | "baseline-smoking-rooms" | "baseline-soap" | "baseline-spa" | "baseline-sports-bar" | "baseline-stairs" | "baseline-storefront" | "baseline-stroller" | "baseline-tapas" | "baseline-tty" | "baseline-umbrella" | "baseline-vape-free" | "baseline-vaping-rooms" | "baseline-villa" | "baseline-wash" | "baseline-water-damage" | "baseline-wheelchair-pickup" | "outline-ac-unit" | "outline-airport-shuttle" | "outline-all-inclusive" | "outline-apartment" | "outline-baby-changing-station" | "outline-backpack" | "outline-balcony" | "outline-bathtub" | "outline-beach-access" | "outline-bento" | "outline-bungalow" | "outline-business-center" | "outline-cabin" | "outline-carpenter" | "outline-casino" | "outline-chalet" | "outline-charging-station" | "outline-checkroom" | "outline-child-care" | "outline-child-friendly" | "outline-corporate-fare" | "outline-cottage" | "outline-countertops" | "outline-crib" | "outline-desk" | "outline-do-not-step" | "outline-do-not-touch" | "outline-dry" | "outline-elevator" | "outline-escalator" | "outline-escalator-warning" | "outline-family-restroom" | "outline-fence" | "outline-fire-extinguisher" | "outline-fitness-center" | "outline-food-bank" | "outline-foundation" | "outline-free-breakfast" | "outline-gite" | "outline-golf-course" | "outline-grass" | "outline-holiday-village" | "outline-hot-tub" | "outline-house" | "outline-house-siding" | "outline-houseboat" | "outline-iron" | "outline-kitchen" | "outline-meeting-room" | "outline-microwave" | "outline-night-shelter" | "outline-no-backpack" | "outline-no-cell" | "outline-no-drinks" | "outline-no-flash" | "outline-no-food" | "outline-no-meeting-room" | "outline-no-photography" | "outline-no-stroller" | "outline-other-houses" | "outline-pool" | "outline-rice-bowl" | "outline-roofing" | "outline-room-preferences" | "outline-room-service" | "outline-rv-hookup" | "outline-smoke-free" | "outline-smoking-rooms" | "outline-soap" | "outline-spa" | "outline-sports-bar" | "outline-stairs" | "outline-storefront" | "outline-stroller" | "outline-tapas" | "outline-tty" | "outline-umbrella" | "outline-vape-free" | "outline-vaping-rooms" | "outline-villa" | "outline-wash" | "outline-water-damage" | "outline-wheelchair-pickup" | "round-ac-unit" | "round-airport-shuttle" | "round-all-inclusive" | "round-apartment" | "round-baby-changing-station" | "round-backpack" | "round-balcony" | "round-bathtub" | "round-beach-access" | "round-bento" | "round-bungalow" | "round-business-center" | "round-cabin" | "round-carpenter" | "round-casino" | "round-chalet" | "round-charging-station" | "round-checkroom" | "round-child-care" | "round-child-friendly" | "round-corporate-fare" | "round-cottage" | "round-countertops" | "round-crib" | "round-desk" | "round-do-not-step" | "round-do-not-touch" | "round-dry" | "round-elevator" | "round-escalator" | "round-escalator-warning" | "round-family-restroom" | "round-fence" | "round-fire-extinguisher" | "round-fitness-center" | "round-food-bank" | "round-foundation" | "round-free-breakfast" | "round-gite" | "round-golf-course" | "round-grass" | "round-holiday-village" | "round-hot-tub" | "round-house" | "round-house-siding" | "round-houseboat" | "round-iron" | "round-kitchen" | "round-meeting-room" | "round-microwave" | "round-night-shelter" | "round-no-backpack" | "round-no-cell" | "round-no-drinks" | "round-no-flash" | "round-no-food" | "round-no-meeting-room" | "round-no-photography" | "round-no-stroller" | "round-other-houses" | "round-pool" | "round-rice-bowl" | "round-roofing" | "round-room-preferences" | "round-room-service" | "round-rv-hookup" | "round-smoke-free" | "round-smoking-rooms" | "round-soap" | "round-spa" | "round-sports-bar" | "round-stairs" | "round-storefront" | "round-stroller" | "round-tapas" | "round-tty" | "round-umbrella" | "round-vape-free" | "round-vaping-rooms" | "round-villa" | "round-wash" | "round-water-damage" | "round-wheelchair-pickup" | "sharp-ac-unit" | "sharp-airport-shuttle" | "sharp-all-inclusive" | "sharp-apartment" | "sharp-baby-changing-station" | "sharp-backpack" | "sharp-balcony" | "sharp-bathtub" | "sharp-beach-access" | "sharp-bento" | "sharp-bungalow" | "sharp-business-center" | "sharp-cabin" | "sharp-carpenter" | "sharp-casino" | "sharp-chalet" | "sharp-charging-station" | "sharp-checkroom" | "sharp-child-care" | "sharp-child-friendly" | "sharp-corporate-fare" | "sharp-cottage" | "sharp-countertops" | "sharp-crib" | "sharp-desk" | "sharp-do-not-step" | "sharp-do-not-touch" | "sharp-dry" | "sharp-elevator" | "sharp-escalator" | "sharp-escalator-warning" | "sharp-family-restroom" | "sharp-fence" | "sharp-fire-extinguisher" | "sharp-fitness-center" | "sharp-food-bank" | "sharp-foundation" | "sharp-free-breakfast" | "sharp-gite" | "sharp-golf-course" | "sharp-grass" | "sharp-holiday-village" | "sharp-hot-tub" | "sharp-house" | "sharp-house-siding" | "sharp-houseboat" | "sharp-iron" | "sharp-kitchen" | "sharp-meeting-room" | "sharp-microwave" | "sharp-night-shelter" | "sharp-no-backpack" | "sharp-no-cell" | "sharp-no-drinks" | "sharp-no-flash" | "sharp-no-food" | "sharp-no-meeting-room" | "sharp-no-photography" | "sharp-no-stroller" | "sharp-other-houses" | "sharp-pool" | "sharp-rice-bowl" | "sharp-roofing" | "sharp-room-preferences" | "sharp-room-service" | "sharp-rv-hookup" | "sharp-smoke-free" | "sharp-smoking-rooms" | "sharp-soap" | "sharp-spa" | "sharp-sports-bar" | "sharp-stairs" | "sharp-storefront" | "sharp-stroller" | "sharp-tapas" | "sharp-tty" | "sharp-umbrella" | "sharp-vape-free" | "sharp-vaping-rooms" | "sharp-villa" | "sharp-wash" | "sharp-water-damage" | "sharp-wheelchair-pickup" | "twotone-ac-unit" | "twotone-airport-shuttle" | "twotone-all-inclusive" | "twotone-apartment" | "twotone-baby-changing-station" | "twotone-backpack" | "twotone-balcony" | "twotone-bathtub" | "twotone-beach-access" | "twotone-bento" | "twotone-bungalow" | "twotone-business-center" | "twotone-cabin" | "twotone-carpenter" | "twotone-casino" | "twotone-chalet" | "twotone-charging-station" | "twotone-checkroom" | "twotone-child-care" | "twotone-child-friendly" | "twotone-corporate-fare" | "twotone-cottage" | "twotone-countertops" | "twotone-crib" | "twotone-desk" | "twotone-do-not-step" | "twotone-do-not-touch" | "twotone-dry" | "twotone-elevator" | "twotone-escalator" | "twotone-escalator-warning" | "twotone-family-restroom" | "twotone-fence" | "twotone-fire-extinguisher" | "twotone-fitness-center" | "twotone-food-bank" | "twotone-foundation" | "twotone-free-breakfast" | "twotone-gite" | "twotone-golf-course" | "twotone-grass" | "twotone-holiday-village" | "twotone-hot-tub" | "twotone-house" | "twotone-house-siding" | "twotone-houseboat" | "twotone-iron" | "twotone-kitchen" | "twotone-meeting-room" | "twotone-microwave" | "twotone-night-shelter" | "twotone-no-backpack" | "twotone-no-cell" | "twotone-no-drinks" | "twotone-no-flash" | "twotone-no-food" | "twotone-no-meeting-room" | "twotone-no-photography" | "twotone-no-stroller" | "twotone-other-houses" | "twotone-pool" | "twotone-rice-bowl" | "twotone-roofing" | "twotone-room-preferences" | "twotone-room-service" | "twotone-rv-hookup" | "twotone-smoke-free" | "twotone-smoking-rooms" | "twotone-soap" | "twotone-spa" | "twotone-sports-bar" | "twotone-stairs" | "twotone-storefront" | "twotone-stroller" | "twotone-tapas" | "twotone-tty" | "twotone-umbrella" | "twotone-vape-free" | "twotone-vaping-rooms" | "twotone-villa" | "twotone-wash" | "twotone-water-damage" | "twotone-wheelchair-pickup" | "baseline-bathroom" | "baseline-bed" | "baseline-bedroom-baby" | "baseline-bedroom-child" | "baseline-bedroom-parent" | "baseline-blender" | "baseline-camera-indoor" | "baseline-camera-outdoor" | "baseline-chair" | "baseline-chair-alt" | "baseline-coffee" | "baseline-coffee-maker" | "baseline-dining" | "baseline-door-back" | "baseline-door-front" | "baseline-door-sliding" | "baseline-doorbell" | "baseline-feed" | "baseline-flatware" | "baseline-garage" | "baseline-light" | "baseline-living" | "baseline-manage-search" | "baseline-podcasts" | "baseline-shower" | "baseline-table-bar" | "baseline-table-restaurant" | "baseline-window" | "baseline-yard" | "outline-bathroom" | "outline-bed" | "outline-bedroom-baby" | "outline-bedroom-child" | "outline-bedroom-parent" | "outline-blender" | "outline-camera-indoor" | "outline-camera-outdoor" | "outline-chair" | "outline-chair-alt" | "outline-coffee" | "outline-coffee-maker" | "outline-dining" | "outline-door-back" | "outline-door-front" | "outline-door-sliding" | "outline-doorbell" | "outline-feed" | "outline-flatware" | "outline-garage" | "outline-light" | "outline-living" | "outline-manage-search" | "outline-podcasts" | "outline-shower" | "outline-table-bar" | "outline-table-restaurant" | "outline-window" | "outline-yard" | "round-bathroom" | "round-bed" | "round-bedroom-baby" | "round-bedroom-child" | "round-bedroom-parent" | "round-blender" | "round-camera-indoor" | "round-camera-outdoor" | "round-chair" | "round-chair-alt" | "round-coffee" | "round-coffee-maker" | "round-dining" | "round-door-back" | "round-door-front" | "round-door-sliding" | "round-doorbell" | "round-feed" | "round-flatware" | "round-garage" | "round-light" | "round-living" | "round-manage-search" | "round-podcasts" | "round-shower" | "round-table-bar" | "round-table-restaurant" | "round-window" | "round-yard" | "sharp-bathroom" | "sharp-bed" | "sharp-bedroom-baby" | "sharp-bedroom-child" | "sharp-bedroom-parent" | "sharp-blender" | "sharp-camera-indoor" | "sharp-camera-outdoor" | "sharp-chair" | "sharp-chair-alt" | "sharp-coffee" | "sharp-coffee-maker" | "sharp-dining" | "sharp-door-back" | "sharp-door-front" | "sharp-door-sliding" | "sharp-doorbell" | "sharp-feed" | "sharp-flatware" | "sharp-garage" | "sharp-light" | "sharp-living" | "sharp-manage-search" | "sharp-podcasts" | "sharp-shower" | "sharp-table-bar" | "sharp-table-restaurant" | "sharp-window" | "sharp-yard" | "twotone-bathroom" | "twotone-bed" | "twotone-bedroom-baby" | "twotone-bedroom-child" | "twotone-bedroom-parent" | "twotone-blender" | "twotone-camera-indoor" | "twotone-camera-outdoor" | "twotone-chair" | "twotone-chair-alt" | "twotone-coffee" | "twotone-coffee-maker" | "twotone-dining" | "twotone-door-back" | "twotone-door-front" | "twotone-door-sliding" | "twotone-doorbell" | "twotone-feed" | "twotone-flatware" | "twotone-garage" | "twotone-light" | "twotone-living" | "twotone-manage-search" | "twotone-podcasts" | "twotone-shower" | "twotone-table-bar" | "twotone-table-restaurant" | "twotone-window" | "twotone-yard" | "baseline-barcode" | "baseline-qrcode" | "outline-barcode" | "outline-qrcode" | "round-barcode" | "round-qrcode" | "sharp-barcode" | "sharp-qrcode" | "twotone-barcode" | "twotone-qrcode" | "baseline-18-up-rating" | "baseline-6-ft-apart" | "baseline-add-moderator" | "baseline-add-reaction" | "baseline-adobe" | "baseline-apple" | "baseline-architecture" | "baseline-assist-walker" | "baseline-back-hand" | "baseline-blind" | "baseline-boy" | "baseline-cake" | "baseline-catching-pokemon" | "baseline-clean-hands" | "baseline-co2" | "baseline-compost" | "baseline-connect-without-contact" | "baseline-construction" | "baseline-cookie" | "baseline-coronavirus" | "baseline-cruelty-free" | "baseline-cyclone" | "baseline-deck" | "baseline-discord" | "baseline-diversity-1" | "baseline-diversity-2" | "baseline-diversity-3" | "baseline-domain" | "baseline-domain-add" | "baseline-downhill-skiing" | "baseline-edit-notifications" | "baseline-elderly" | "baseline-elderly-woman" | "baseline-emoji-emotions" | "baseline-emoji-events" | "baseline-emoji-flags" | "baseline-emoji-food-beverage" | "baseline-emoji-nature" | "baseline-emoji-objects" | "baseline-emoji-people" | "baseline-emoji-symbols" | "baseline-emoji-transportation" | "baseline-engineering" | "baseline-face-2" | "baseline-face-3" | "baseline-face-4" | "baseline-face-5" | "baseline-face-6" | "baseline-facebook" | "baseline-female" | "baseline-fireplace" | "baseline-fitbit" | "baseline-flood" | "baseline-follow-the-signs" | "baseline-front-hand" | "baseline-girl" | "baseline-group" | "baseline-group-add" | "baseline-group-off" | "baseline-group-remove" | "baseline-groups" | "baseline-groups-2" | "baseline-groups-3" | "baseline-handshake" | "baseline-health-and-safety" | "baseline-heart-broken" | "baseline-hiking" | "baseline-history-edu" | "baseline-hive" | "baseline-ice-skating" | "baseline-interests" | "baseline-ios-share" | "baseline-kayaking" | "baseline-king-bed" | "baseline-kitesurfing" | "baseline-landslide" | "baseline-leave-bags-at-home" | "baseline-location-city" | "baseline-luggage" | "baseline-male" | "baseline-man" | "baseline-man-2" | "baseline-man-3" | "baseline-man-4" | "baseline-masks" | "baseline-military-tech" | "baseline-mood" | "baseline-mood-bad" | "baseline-nights-stay" | "baseline-no-adult-content" | "baseline-no-luggage" | "baseline-nordic-walking" | "baseline-notification-add" | "baseline-notifications" | "baseline-notifications-active" | "baseline-notifications-none" | "baseline-notifications-off" | "baseline-notifications-paused" | "baseline-outdoor-grill" | "baseline-pages" | "baseline-paragliding" | "baseline-party-mode" | "baseline-paypal" | "baseline-people" | "baseline-people-alt" | "baseline-people-outline" | "baseline-person" | "baseline-person-2" | "baseline-person-3" | "baseline-person-4" | "baseline-person-add" | "baseline-person-add-alt" | "baseline-person-add-alt-1" | "baseline-person-off" | "baseline-person-outline" | "baseline-person-remove" | "baseline-person-remove-alt-1" | "baseline-personal-injury" | "baseline-piano" | "baseline-piano-off" | "baseline-pix" | "baseline-plus-one" | "baseline-poll" | "baseline-precision-manufacturing" | "baseline-psychology" | "baseline-psychology-alt" | "baseline-public" | "baseline-public-off" | "baseline-quora" | "baseline-real-estate-agent" | "baseline-recommend" | "baseline-recycling" | "baseline-reddit" | "baseline-reduce-capacity" | "baseline-remove-moderator" | "baseline-roller-skating" | "baseline-safety-divider" | "baseline-sanitizer" | "baseline-scale" | "baseline-school" | "baseline-science" | "baseline-scoreboard" | "baseline-scuba-diving" | "baseline-self-improvement" | "baseline-sentiment-dissatisfied" | "baseline-sentiment-neutral" | "baseline-sentiment-satisfied" | "baseline-sentiment-slightly-dissatisfied" | "baseline-sentiment-very-dissatisfied" | "baseline-sentiment-very-satisfied" | "baseline-severe-cold" | "baseline-share" | "baseline-shopify" | "baseline-sick" | "baseline-sign-language" | "baseline-single-bed" | "baseline-skateboarding" | "baseline-sledding" | "baseline-snapchat" | "baseline-snowboarding" | "baseline-snowshoeing" | "baseline-social-distance" | "baseline-south-america" | "baseline-sports" | "baseline-sports-baseball" | "baseline-sports-basketball" | "baseline-sports-cricket" | "baseline-sports-esports" | "baseline-sports-football" | "baseline-sports-golf" | "baseline-sports-gymnastics" | "baseline-sports-handball" | "baseline-sports-hockey" | "baseline-sports-kabaddi" | "baseline-sports-martial-arts" | "baseline-sports-mma" | "baseline-sports-motorsports" | "baseline-sports-rugby" | "baseline-sports-soccer" | "baseline-sports-tennis" | "baseline-sports-volleyball" | "baseline-surfing" | "baseline-switch-account" | "baseline-telegram" | "baseline-thumb-down-alt" | "baseline-thumb-up-alt" | "baseline-thunderstorm" | "baseline-tiktok" | "baseline-tornado" | "baseline-transgender" | "baseline-travel-explore" | "baseline-tsunami" | "baseline-vaccines" | "baseline-volcano" | "baseline-wallet" | "baseline-water-drop" | "baseline-waving-hand" | "baseline-wechat" | "baseline-whatsapp" | "baseline-whatshot" | "baseline-woman" | "baseline-woman-2" | "baseline-woo-commerce" | "baseline-wordpress" | "baseline-workspace-premium" | "outline-18-up-rating" | "outline-6-ft-apart" | "outline-add-moderator" | "outline-add-reaction" | "outline-adobe" | "outline-apple" | "outline-architecture" | "outline-assist-walker" | "outline-back-hand" | "outline-blind" | "outline-boy" | "outline-cake" | "outline-catching-pokemon" | "outline-clean-hands" | "outline-co2" | "outline-compost" | "outline-connect-without-contact" | "outline-construction" | "outline-cookie" | "outline-coronavirus" | "outline-cruelty-free" | "outline-cyclone" | "outline-deck" | "outline-discord" | "outline-diversity-1" | "outline-diversity-2" | "outline-diversity-3" | "outline-domain" | "outline-domain-add" | "outline-downhill-skiing" | "outline-edit-notifications" | "outline-elderly" | "outline-elderly-woman" | "outline-emoji-emotions" | "outline-emoji-events" | "outline-emoji-flags" | "outline-emoji-food-beverage" | "outline-emoji-nature" | "outline-emoji-objects" | "outline-emoji-people" | "outline-emoji-symbols" | "outline-emoji-transportation" | "outline-engineering" | "outline-face-2" | "outline-face-3" | "outline-face-4" | "outline-face-5" | "outline-face-6" | "outline-facebook" | "outline-female" | "outline-fireplace" | "outline-fitbit" | "outline-flood" | "outline-follow-the-signs" | "outline-front-hand" | "outline-girl" | "outline-group" | "outline-group-add" | "outline-group-off" | "outline-group-remove" | "outline-groups" | "outline-groups-2" | "outline-groups-3" | "outline-handshake" | "outline-health-and-safety" | "outline-heart-broken" | "outline-hiking" | "outline-history-edu" | "outline-hive" | "outline-ice-skating" | "outline-interests" | "outline-ios-share" | "outline-kayaking" | "outline-king-bed" | "outline-kitesurfing" | "outline-landslide" | "outline-leave-bags-at-home" | "outline-location-city" | "outline-luggage" | "outline-male" | "outline-man" | "outline-man-2" | "outline-man-3" | "outline-man-4" | "outline-masks" | "outline-military-tech" | "outline-mood" | "outline-mood-bad" | "outline-nights-stay" | "outline-no-adult-content" | "outline-no-luggage" | "outline-nordic-walking" | "outline-notification-add" | "outline-notifications" | "outline-notifications-active" | "outline-notifications-none" | "outline-notifications-off" | "outline-notifications-paused" | "outline-outdoor-grill" | "outline-pages" | "outline-paragliding" | "outline-party-mode" | "outline-paypal" | "outline-people" | "outline-people-alt" | "outline-people-outline" | "outline-person" | "outline-person-2" | "outline-person-3" | "outline-person-4" | "outline-person-add" | "outline-person-add-alt" | "outline-person-add-alt-1" | "outline-person-off" | "outline-person-outline" | "outline-person-remove" | "outline-person-remove-alt-1" | "outline-personal-injury" | "outline-piano" | "outline-piano-off" | "outline-pix" | "outline-plus-one" | "outline-poll" | "outline-precision-manufacturing" | "outline-psychology" | "outline-psychology-alt" | "outline-public" | "outline-public-off" | "outline-quora" | "outline-real-estate-agent" | "outline-recommend" | "outline-recycling" | "outline-reddit" | "outline-reduce-capacity" | "outline-remove-moderator" | "outline-roller-skating" | "outline-safety-divider" | "outline-sanitizer" | "outline-scale" | "outline-school" | "outline-science" | "outline-scoreboard" | "outline-scuba-diving" | "outline-self-improvement" | "outline-sentiment-dissatisfied" | "outline-sentiment-neutral" | "outline-sentiment-satisfied" | "outline-sentiment-slightly-dissatisfied" | "outline-sentiment-very-dissatisfied" | "outline-sentiment-very-satisfied" | "outline-severe-cold" | "outline-share" | "outline-shopify" | "outline-sick" | "outline-sign-language" | "outline-single-bed" | "outline-skateboarding" | "outline-sledding" | "outline-snapchat" | "outline-snowboarding" | "outline-snowshoeing" | "outline-social-distance" | "outline-south-america" | "outline-sports" | "outline-sports-baseball" | "outline-sports-basketball" | "outline-sports-cricket" | "outline-sports-esports" | "outline-sports-football" | "outline-sports-golf" | "outline-sports-gymnastics" | "outline-sports-handball" | "outline-sports-hockey" | "outline-sports-kabaddi" | "outline-sports-martial-arts" | "outline-sports-mma" | "outline-sports-motorsports" | "outline-sports-rugby" | "outline-sports-soccer" | "outline-sports-tennis" | "outline-sports-volleyball" | "outline-surfing" | "outline-switch-account" | "outline-telegram" | "outline-thumb-down-alt" | "outline-thumb-up-alt" | "outline-thunderstorm" | "outline-tiktok" | "outline-tornado" | "outline-transgender" | "outline-travel-explore" | "outline-tsunami" | "outline-vaccines" | "outline-volcano" | "outline-wallet" | "outline-water-drop" | "outline-waving-hand" | "outline-wechat" | "outline-whatsapp" | "outline-whatshot" | "outline-woman" | "outline-woman-2" | "outline-woo-commerce" | "outline-wordpress" | "outline-workspace-premium" | "round-18-up-rating" | "round-6-ft-apart" | "round-add-moderator" | "round-add-reaction" | "round-adobe" | "round-apple" | "round-architecture" | "round-assist-walker" | "round-back-hand" | "round-blind" | "round-boy" | "round-cake" | "round-catching-pokemon" | "round-clean-hands" | "round-co2" | "round-compost" | "round-connect-without-contact" | "round-construction" | "round-cookie" | "round-coronavirus" | "round-cruelty-free" | "round-cyclone" | "round-deck" | "round-discord" | "round-diversity-1" | "round-diversity-2" | "round-diversity-3" | "round-domain" | "round-domain-add" | "round-downhill-skiing" | "round-edit-notifications" | "round-elderly" | "round-elderly-woman" | "round-emoji-emotions" | "round-emoji-events" | "round-emoji-flags" | "round-emoji-food-beverage" | "round-emoji-nature" | "round-emoji-objects" | "round-emoji-people" | "round-emoji-symbols" | "round-emoji-transportation" | "round-engineering" | "round-face-2" | "round-face-3" | "round-face-4" | "round-face-5" | "round-face-6" | "round-facebook" | "round-female" | "round-fireplace" | "round-fitbit" | "round-flood" | "round-follow-the-signs" | "round-front-hand" | "round-girl" | "round-group" | "round-group-add" | "round-group-off" | "round-group-remove" | "round-groups" | "round-groups-2" | "round-groups-3" | "round-handshake" | "round-health-and-safety" | "round-heart-broken" | "round-hiking" | "round-history-edu" | "round-hive" | "round-ice-skating" | "round-interests" | "round-ios-share" | "round-kayaking" | "round-king-bed" | "round-kitesurfing" | "round-landslide" | "round-leave-bags-at-home" | "round-location-city" | "round-luggage" | "round-male" | "round-man" | "round-man-2" | "round-man-3" | "round-man-4" | "round-masks" | "round-military-tech" | "round-mood" | "round-mood-bad" | "round-nights-stay" | "round-no-adult-content" | "round-no-luggage" | "round-nordic-walking" | "round-notification-add" | "round-notifications" | "round-notifications-active" | "round-notifications-none" | "round-notifications-off" | "round-notifications-paused" | "round-outdoor-grill" | "round-pages" | "round-paragliding" | "round-party-mode" | "round-paypal" | "round-people" | "round-people-alt" | "round-people-outline" | "round-person" | "round-person-2" | "round-person-3" | "round-person-4" | "round-person-add" | "round-person-add-alt" | "round-person-add-alt-1" | "round-person-off" | "round-person-outline" | "round-person-remove" | "round-person-remove-alt-1" | "round-personal-injury" | "round-piano" | "round-piano-off" | "round-pix" | "round-plus-one" | "round-poll" | "round-precision-manufacturing" | "round-psychology" | "round-psychology-alt" | "round-public" | "round-public-off" | "round-quora" | "round-real-estate-agent" | "round-recommend" | "round-recycling" | "round-reddit" | "round-reduce-capacity" | "round-remove-moderator" | "round-roller-skating" | "round-safety-divider" | "round-sanitizer" | "round-scale" | "round-school" | "round-science" | "round-scoreboard" | "round-scuba-diving" | "round-self-improvement" | "round-sentiment-dissatisfied" | "round-sentiment-neutral" | "round-sentiment-satisfied" | "round-sentiment-slightly-dissatisfied" | "round-sentiment-very-dissatisfied" | "round-sentiment-very-satisfied" | "round-severe-cold" | "round-share" | "round-shopify" | "round-sick" | "round-sign-language" | "round-single-bed" | "round-skateboarding" | "round-sledding" | "round-snapchat" | "round-snowboarding" | "round-snowshoeing" | "round-social-distance" | "round-south-america" | "round-sports" | "round-sports-baseball" | "round-sports-basketball" | "round-sports-cricket" | "round-sports-esports" | "round-sports-football" | "round-sports-golf" | "round-sports-gymnastics" | "round-sports-handball" | "round-sports-hockey" | "round-sports-kabaddi" | "round-sports-martial-arts" | "round-sports-mma" | "round-sports-motorsports" | "round-sports-rugby" | "round-sports-soccer" | "round-sports-tennis" | "round-sports-volleyball" | "round-surfing" | "round-switch-account" | "round-telegram" | "round-thumb-down-alt" | "round-thumb-up-alt" | "round-thunderstorm" | "round-tiktok" | "round-tornado" | "round-transgender" | "round-travel-explore" | "round-tsunami" | "round-vaccines" | "round-volcano" | "round-wallet" | "round-water-drop" | "round-waving-hand" | "round-wechat" | "round-whatsapp" | "round-whatshot" | "round-woman" | "round-woman-2" | "round-woo-commerce" | "round-wordpress" | "round-workspace-premium" | "sharp-18-up-rating" | "sharp-6-ft-apart" | "sharp-add-moderator" | "sharp-add-reaction" | "sharp-adobe" | "sharp-apple" | "sharp-architecture" | "sharp-assist-walker" | "sharp-back-hand" | "sharp-blind" | "sharp-boy" | "sharp-cake" | "sharp-catching-pokemon" | "sharp-clean-hands" | "sharp-co2" | "sharp-compost" | "sharp-connect-without-contact" | "sharp-construction" | "sharp-cookie" | "sharp-coronavirus" | "sharp-cruelty-free" | "sharp-cyclone" | "sharp-deck" | "sharp-discord" | "sharp-diversity-1" | "sharp-diversity-2" | "sharp-diversity-3" | "sharp-domain" | "sharp-domain-add" | "sharp-downhill-skiing" | "sharp-edit-notifications" | "sharp-elderly" | "sharp-elderly-woman" | "sharp-emoji-emotions" | "sharp-emoji-events" | "sharp-emoji-flags" | "sharp-emoji-food-beverage" | "sharp-emoji-nature" | "sharp-emoji-objects" | "sharp-emoji-people" | "sharp-emoji-symbols" | "sharp-emoji-transportation" | "sharp-engineering" | "sharp-face-2" | "sharp-face-3" | "sharp-face-4" | "sharp-face-5" | "sharp-face-6" | "sharp-facebook" | "sharp-female" | "sharp-fireplace" | "sharp-fitbit" | "sharp-flood" | "sharp-follow-the-signs" | "sharp-front-hand" | "sharp-girl" | "sharp-group" | "sharp-group-add" | "sharp-group-off" | "sharp-group-remove" | "sharp-groups" | "sharp-groups-2" | "sharp-groups-3" | "sharp-handshake" | "sharp-health-and-safety" | "sharp-heart-broken" | "sharp-hiking" | "sharp-history-edu" | "sharp-hive" | "sharp-ice-skating" | "sharp-interests" | "sharp-ios-share" | "sharp-kayaking" | "sharp-king-bed" | "sharp-kitesurfing" | "sharp-landslide" | "sharp-leave-bags-at-home" | "sharp-location-city" | "sharp-luggage" | "sharp-male" | "sharp-man" | "sharp-man-2" | "sharp-man-3" | "sharp-man-4" | "sharp-masks" | "sharp-military-tech" | "sharp-mood" | "sharp-mood-bad" | "sharp-nights-stay" | "sharp-no-adult-content" | "sharp-no-luggage" | "sharp-nordic-walking" | "sharp-notification-add" | "sharp-notifications" | "sharp-notifications-active" | "sharp-notifications-none" | "sharp-notifications-off" | "sharp-notifications-paused" | "sharp-outdoor-grill" | "sharp-pages" | "sharp-paragliding" | "sharp-party-mode" | "sharp-paypal" | "sharp-people" | "sharp-people-alt" | "sharp-people-outline" | "sharp-person" | "sharp-person-2" | "sharp-person-3" | "sharp-person-4" | "sharp-person-add" | "sharp-person-add-alt" | "sharp-person-add-alt-1" | "sharp-person-off" | "sharp-person-outline" | "sharp-person-remove" | "sharp-person-remove-alt-1" | "sharp-personal-injury" | "sharp-piano" | "sharp-piano-off" | "sharp-pix" | "sharp-plus-one" | "sharp-poll" | "sharp-precision-manufacturing" | "sharp-psychology" | "sharp-psychology-alt" | "sharp-public" | "sharp-public-off" | "sharp-quora" | "sharp-real-estate-agent" | "sharp-recommend" | "sharp-recycling" | "sharp-reddit" | "sharp-reduce-capacity" | "sharp-remove-moderator" | "sharp-roller-skating" | "sharp-safety-divider" | "sharp-sanitizer" | "sharp-scale" | "sharp-school" | "sharp-science" | "sharp-scoreboard" | "sharp-scuba-diving" | "sharp-self-improvement" | "sharp-sentiment-dissatisfied" | "sharp-sentiment-neutral" | "sharp-sentiment-satisfied" | "sharp-sentiment-slightly-dissatisfied" | "sharp-sentiment-very-dissatisfied" | "sharp-sentiment-very-satisfied" | "sharp-severe-cold" | "sharp-share" | "sharp-shopify" | "sharp-sick" | "sharp-sign-language" | "sharp-single-bed" | "sharp-skateboarding" | "sharp-sledding" | "sharp-snapchat" | "sharp-snowboarding" | "sharp-snowshoeing" | "sharp-social-distance" | "sharp-south-america" | "sharp-sports" | "sharp-sports-baseball" | "sharp-sports-basketball" | "sharp-sports-cricket" | "sharp-sports-esports" | "sharp-sports-football" | "sharp-sports-golf" | "sharp-sports-gymnastics" | "sharp-sports-handball" | "sharp-sports-hockey" | "sharp-sports-kabaddi" | "sharp-sports-martial-arts" | "sharp-sports-mma" | "sharp-sports-motorsports" | "sharp-sports-rugby" | "sharp-sports-soccer" | "sharp-sports-tennis" | "sharp-sports-volleyball" | "sharp-surfing" | "sharp-switch-account" | "sharp-telegram" | "sharp-thumb-down-alt" | "sharp-thumb-up-alt" | "sharp-thunderstorm" | "sharp-tiktok" | "sharp-tornado" | "sharp-transgender" | "sharp-travel-explore" | "sharp-tsunami" | "sharp-vaccines" | "sharp-volcano" | "sharp-wallet" | "sharp-water-drop" | "sharp-waving-hand" | "sharp-wechat" | "sharp-whatsapp" | "sharp-whatshot" | "sharp-woman" | "sharp-woman-2" | "sharp-woo-commerce" | "sharp-wordpress" | "sharp-workspace-premium" | "twotone-18-up-rating" | "twotone-6-ft-apart" | "twotone-add-moderator" | "twotone-add-reaction" | "twotone-adobe" | "twotone-apple" | "twotone-architecture" | "twotone-assist-walker" | "twotone-back-hand" | "twotone-blind" | "twotone-boy" | "twotone-cake" | "twotone-catching-pokemon" | "twotone-clean-hands" | "twotone-co2" | "twotone-compost" | "twotone-connect-without-contact" | "twotone-construction" | "twotone-cookie" | "twotone-coronavirus" | "twotone-cruelty-free" | "twotone-cyclone" | "twotone-deck" | "twotone-discord" | "twotone-diversity-1" | "twotone-diversity-2" | "twotone-diversity-3" | "twotone-domain" | "twotone-domain-add" | "twotone-downhill-skiing" | "twotone-edit-notifications" | "twotone-elderly" | "twotone-elderly-woman" | "twotone-emoji-emotions" | "twotone-emoji-events" | "twotone-emoji-flags" | "twotone-emoji-food-beverage" | "twotone-emoji-nature" | "twotone-emoji-objects" | "twotone-emoji-people" | "twotone-emoji-symbols" | "twotone-emoji-transportation" | "twotone-engineering" | "twotone-face-2" | "twotone-face-3" | "twotone-face-4" | "twotone-face-5" | "twotone-face-6" | "twotone-facebook" | "twotone-female" | "twotone-fireplace" | "twotone-fitbit" | "twotone-flood" | "twotone-follow-the-signs" | "twotone-front-hand" | "twotone-girl" | "twotone-group" | "twotone-group-add" | "twotone-group-off" | "twotone-group-remove" | "twotone-groups" | "twotone-groups-2" | "twotone-groups-3" | "twotone-handshake" | "twotone-health-and-safety" | "twotone-heart-broken" | "twotone-hiking" | "twotone-history-edu" | "twotone-hive" | "twotone-ice-skating" | "twotone-interests" | "twotone-ios-share" | "twotone-kayaking" | "twotone-king-bed" | "twotone-kitesurfing" | "twotone-landslide" | "twotone-leave-bags-at-home" | "twotone-location-city" | "twotone-luggage" | "twotone-male" | "twotone-man" | "twotone-man-2" | "twotone-man-3" | "twotone-man-4" | "twotone-masks" | "twotone-military-tech" | "twotone-mood" | "twotone-mood-bad" | "twotone-nights-stay" | "twotone-no-adult-content" | "twotone-no-luggage" | "twotone-nordic-walking" | "twotone-notification-add" | "twotone-notifications" | "twotone-notifications-active" | "twotone-notifications-none" | "twotone-notifications-off" | "twotone-notifications-paused" | "twotone-outdoor-grill" | "twotone-pages" | "twotone-paragliding" | "twotone-party-mode" | "twotone-paypal" | "twotone-people" | "twotone-people-alt" | "twotone-people-outline" | "twotone-person" | "twotone-person-2" | "twotone-person-3" | "twotone-person-4" | "twotone-person-add" | "twotone-person-add-alt" | "twotone-person-add-alt-1" | "twotone-person-off" | "twotone-person-outline" | "twotone-person-remove" | "twotone-person-remove-alt-1" | "twotone-personal-injury" | "twotone-piano" | "twotone-piano-off" | "twotone-pix" | "twotone-plus-one" | "twotone-poll" | "twotone-precision-manufacturing" | "twotone-psychology" | "twotone-psychology-alt" | "twotone-public" | "twotone-public-off" | "twotone-quora" | "twotone-real-estate-agent" | "twotone-recommend" | "twotone-recycling" | "twotone-reddit" | "twotone-reduce-capacity" | "twotone-remove-moderator" | "twotone-roller-skating" | "twotone-safety-divider" | "twotone-sanitizer" | "twotone-scale" | "twotone-school" | "twotone-science" | "twotone-scoreboard" | "twotone-scuba-diving" | "twotone-self-improvement" | "twotone-sentiment-dissatisfied" | "twotone-sentiment-neutral" | "twotone-sentiment-satisfied" | "twotone-sentiment-slightly-dissatisfied" | "twotone-sentiment-very-dissatisfied" | "twotone-sentiment-very-satisfied" | "twotone-severe-cold" | "twotone-share" | "twotone-shopify" | "twotone-sick" | "twotone-sign-language" | "twotone-single-bed" | "twotone-skateboarding" | "twotone-sledding" | "twotone-snapchat" | "twotone-snowboarding" | "twotone-snowshoeing" | "twotone-social-distance" | "twotone-south-america" | "twotone-sports" | "twotone-sports-baseball" | "twotone-sports-basketball" | "twotone-sports-cricket" | "twotone-sports-esports" | "twotone-sports-football" | "twotone-sports-golf" | "twotone-sports-gymnastics" | "twotone-sports-handball" | "twotone-sports-hockey" | "twotone-sports-kabaddi" | "twotone-sports-martial-arts" | "twotone-sports-mma" | "twotone-sports-motorsports" | "twotone-sports-rugby" | "twotone-sports-soccer" | "twotone-sports-tennis" | "twotone-sports-volleyball" | "twotone-surfing" | "twotone-switch-account" | "twotone-telegram" | "twotone-thumb-down-alt" | "twotone-thumb-up-alt" | "twotone-thunderstorm" | "twotone-tiktok" | "twotone-tornado" | "twotone-transgender" | "twotone-travel-explore" | "twotone-tsunami" | "twotone-vaccines" | "twotone-volcano" | "twotone-wallet" | "twotone-water-drop" | "twotone-waving-hand" | "twotone-wechat" | "twotone-whatsapp" | "twotone-whatshot" | "twotone-woman" | "twotone-woman-2" | "twotone-woo-commerce" | "twotone-wordpress" | "twotone-workspace-premium" | "baseline-check-box" | "baseline-check-box-outline-blank" | "baseline-indeterminate-check-box" | "baseline-radio-button-checked" | "baseline-radio-button-unchecked" | "baseline-star" | "baseline-star-border" | "baseline-star-border-purple500" | "baseline-star-half" | "baseline-star-outline" | "baseline-star-purple500" | "baseline-toggle-off" | "baseline-toggle-on" | "outline-check-box" | "outline-check-box-outline-blank" | "outline-indeterminate-check-box" | "outline-radio-button-checked" | "outline-radio-button-unchecked" | "outline-star" | "outline-star-border" | "outline-star-border-purple500" | "outline-star-half" | "outline-star-outline" | "outline-star-purple500" | "outline-toggle-off" | "outline-toggle-on" | "round-check-box" | "round-check-box-outline-blank" | "round-indeterminate-check-box" | "round-radio-button-checked" | "round-radio-button-unchecked" | "round-star-border" | "round-star-border-purple500" | "round-star-half" | "round-star-outline" | "round-star-purple500" | "round-toggle-off" | "round-toggle-on" | "sharp-check-box" | "sharp-check-box-outline-blank" | "sharp-indeterminate-check-box" | "sharp-radio-button-checked" | "sharp-radio-button-unchecked" | "sharp-star" | "sharp-star-border" | "sharp-star-border-purple500" | "sharp-star-half" | "sharp-star-outline" | "sharp-star-purple500" | "sharp-toggle-off" | "sharp-toggle-on" | "twotone-check-box" | "twotone-check-box-outline-blank" | "twotone-indeterminate-check-box" | "twotone-radio-button-checked" | "twotone-radio-button-unchecked" | "twotone-star" | "twotone-star-border" | "twotone-star-border-purple500" | "twotone-star-half" | "twotone-star-outline" | "twotone-star-purple500" | "twotone-toggle-off" | "twotone-toggle-on">): import("react").JSX.Element;
|
|
10967
10967
|
displayName: string;
|
|
10968
10968
|
};
|
|
10969
10969
|
export {};
|