{"version":3,"sources":["node_modules/@ngneat/svg-icon/fesm2020/ngneat-svg-icon.mjs","libs/icons/src/lib/svg/icons.svg.ts","libs/icons/src/lib/icons.logos.module.ts","libs/icons/src/lib/icons.module.ts"],"sourcesContent":["import * as i0 from '@angular/core';\nimport { inject, forwardRef, Injectable, Inject, InjectionToken, makeEnvironmentProviders, ENVIRONMENT_INITIALIZER, Component, ChangeDetectionStrategy, Input, Pipe } from '@angular/core';\nimport { DOCUMENT } from '@angular/common';\nclass SvgIcon {\n constructor(content) {\n this.content = content;\n this.init = false;\n }\n}\nlet SvgIconRegistry = /*#__PURE__*/(() => {\n class SvgIconRegistry {\n constructor(config) {\n this.svgMap = new Map();\n this.document = inject(DOCUMENT);\n if (config?.icons) {\n this.register(config.icons);\n }\n if (config?.missingIconFallback) {\n this.register(config.missingIconFallback);\n }\n }\n getAll() {\n return this.svgMap;\n }\n get(key, config = {}) {\n const icon = key && this.svgMap.get(key);\n if (!icon) {\n return undefined;\n }\n if (!icon.init) {\n const svg = this.toElement(icon.content);\n svg.setAttribute('fit', '');\n svg.setAttribute('height', '100%');\n svg.setAttribute('width', '100%');\n svg.setAttribute('preserveAspectRatio', config.preserveAspectRatio ?? 'xMidYMid meet');\n svg.setAttribute('focusable', 'false');\n icon.content = svg.outerHTML;\n icon.init = true;\n }\n if (config.asDataUrl) {\n const svg = this.toElement(icon.content).outerHTML;\n return `data:image/svg+xml;base64,${btoa(svg)}`;\n }\n return icon.content;\n }\n register(icons) {\n for (const {\n name,\n data\n } of Array.isArray(icons) ? icons : [icons]) {\n if (!this.svgMap.has(name)) {\n this.svgMap.set(name, new SvgIcon(data));\n }\n }\n }\n getSvgElement(name) {\n const content = this.get(name);\n if (!content) {\n return undefined;\n }\n const div = this.document.createElement('div');\n div.innerHTML = content;\n return div.querySelector('svg');\n }\n toElement(content) {\n const div = this.document.createElement('div');\n div.innerHTML = content;\n return div.querySelector('svg');\n }\n }\n SvgIconRegistry.ɵfac = function SvgIconRegistry_Factory(t) {\n return new (t || SvgIconRegistry)(i0.ɵɵinject(forwardRef(() => SVG_ICONS_CONFIG)));\n };\n SvgIconRegistry.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SvgIconRegistry,\n factory: SvgIconRegistry.ɵfac,\n providedIn: 'root'\n });\n return SvgIconRegistry;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst SVG_ICONS_CONFIG = new InjectionToken('SVG_ICONS_CONFIG', {\n providedIn: 'root',\n factory() {\n return {};\n }\n});\nconst SVG_ICONS = new InjectionToken('SVG_ICONS');\nconst SVG_MISSING_ICON_FALLBACK = new InjectionToken('SVG_MISSING_ICON_FALLBACK', {\n providedIn: 'root',\n factory() {\n return undefined;\n }\n});\nfunction provideSvgIcons(icons) {\n return makeEnvironmentProviders([{\n provide: ENVIRONMENT_INITIALIZER,\n multi: true,\n useValue() {\n inject(SvgIconRegistry).register(icons);\n }\n }]);\n}\nfunction provideSvgIconsConfig(config) {\n return makeEnvironmentProviders([{\n provide: SVG_ICONS_CONFIG,\n useValue: config\n }]);\n}\nlet SvgIconComponent = /*#__PURE__*/(() => {\n class SvgIconComponent {\n constructor(host, registry, config) {\n this.host = host;\n this.registry = registry;\n this.config = config;\n this.noShrink = false;\n this.init = false;\n this.mergedConfig = this.createConfig();\n }\n get element() {\n return this.host.nativeElement;\n }\n ngOnChanges(changes) {\n if (changes.key) {\n this.setIcon(this.key);\n }\n if (changes.size?.currentValue) {\n this.setIconSize(this.mergedConfig.sizes[this.size]);\n }\n if (changes.fontSize?.currentValue) {\n this.setIconSize(coerceCssPixelValue(this.fontSize));\n }\n // If on the first change no size was passed, set the default size\n if (!this.init && !changes.size?.currentValue && !changes.fontSize?.currentValue) {\n this.setIconSize(this.mergedConfig.sizes[this.mergedConfig.defaultSize || 'md']);\n }\n if (changes.width?.currentValue) {\n this.element.style.width = `var(--svg-icon-width, ${coerceCssPixelValue(this.width)})`;\n }\n if (changes.height?.currentValue) {\n this.element.style.height = `var(--svg-icon-height, ${coerceCssPixelValue(this.height)})`;\n }\n if (changes.color?.currentValue) {\n this.element.style.color = `var(--svg-icon-color, ${this.color})`;\n }\n this.init = true;\n }\n createConfig() {\n const defaults = {\n sizes: {\n xs: '0.5rem',\n sm: '0.75rem',\n md: `1rem`,\n lg: '1.5rem',\n xl: '2rem',\n xxl: '2.5rem'\n }\n };\n const mergedConfig = {\n ...defaults,\n ...this.config\n };\n mergedConfig.sizes = Object.entries({\n ...defaults.sizes,\n ...mergedConfig.sizes\n }).reduce((acc, [key, value]) => {\n acc[key] = `var(--svg-icon-font-size-${key}, ${value})`;\n return acc;\n }, {});\n return mergedConfig;\n }\n setIconSize(size) {\n this.element.style.fontSize = size;\n if (this.noShrink) {\n this.element.style.minWidth = size;\n }\n }\n setIcon(name) {\n const config = {\n preserveAspectRatio: this.preserveAspectRatio\n };\n const icon = this.registry.get(name, config) ?? this.registry.get(this.fallback ?? this.config.missingIconFallback?.name, config);\n if (icon) {\n this.element.setAttribute('aria-label', `${name}-icon`);\n if (this.lastKey) {\n this.element.classList.remove(getIconClassName(this.lastKey));\n }\n this.lastKey = name;\n if (name) {\n this.element.classList.add(getIconClassName(name));\n }\n this.element.innerHTML = icon;\n }\n }\n }\n SvgIconComponent.ɵfac = function SvgIconComponent_Factory(t) {\n return new (t || SvgIconComponent)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(SvgIconRegistry), i0.ɵɵdirectiveInject(SVG_ICONS_CONFIG));\n };\n SvgIconComponent.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: SvgIconComponent,\n selectors: [[\"svg-icon\"]],\n hostAttrs: [\"role\", \"img\", \"aria-hidden\", \"true\"],\n inputs: {\n key: \"key\",\n fallback: \"fallback\",\n size: \"size\",\n width: \"width\",\n height: \"height\",\n fontSize: \"fontSize\",\n color: \"color\",\n noShrink: \"noShrink\",\n preserveAspectRatio: \"preserveAspectRatio\"\n },\n standalone: true,\n features: [i0.ɵɵNgOnChangesFeature, i0.ɵɵStandaloneFeature],\n decls: 0,\n vars: 0,\n template: function SvgIconComponent_Template(rf, ctx) {},\n styles: [\"[_nghost-%COMP%]{display:inline-block;fill:currentColor;width:var(--svg-icon-width, 1em);height:var(--svg-icon-height, 1em)}\"],\n changeDetection: 0\n });\n return SvgIconComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nfunction coerceCssPixelValue(value) {\n if (value == null) {\n return '';\n }\n return typeof value === 'string' ? value : `${value}px`;\n}\nfunction getIconClassName(key) {\n return `svg-icon-${key.replace(/ /g, '-')}`;\n}\nlet SvgToDataUrlPipe = /*#__PURE__*/(() => {\n class SvgToDataUrlPipe {\n constructor() {\n this.registry = inject(SvgIconRegistry);\n }\n transform(key) {\n return this.registry.get(key, {\n asDataUrl: true\n });\n }\n }\n SvgToDataUrlPipe.ɵfac = function SvgToDataUrlPipe_Factory(t) {\n return new (t || SvgToDataUrlPipe)();\n };\n SvgToDataUrlPipe.ɵpipe = /* @__PURE__ */i0.ɵɵdefinePipe({\n name: \"svgToDataUrl\",\n type: SvgToDataUrlPipe,\n pure: true,\n standalone: true\n });\n return SvgToDataUrlPipe;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nfunction injectRegisterIcons(...params) {\n inject(SvgIconRegistry).register(...params);\n}\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { SvgIconComponent, SvgIconRegistry, SvgToDataUrlPipe, injectRegisterIcons, provideSvgIcons, provideSvgIconsConfig };\n","// @ts-nocheck\n/* eslint-disable */\nexport const material10KIcon = {\n data: ``,\n name: '10-k' as const\n};\n\nexport const material10MpIcon = {\n data: ``,\n name: '10-mp' as const\n};\n\nexport const material11MpIcon = {\n data: ``,\n name: '11-mp' as const\n};\n\nexport const material123Icon = {\n data: ``,\n name: '123' as const\n};\n\nexport const material12MpIcon = {\n data: ``,\n name: '12-mp' as const\n};\n\nexport const material13MpIcon = {\n data: ``,\n name: '13-mp' as const\n};\n\nexport const material14MpIcon = {\n data: ``,\n name: '14-mp' as const\n};\n\nexport const material15MpIcon = {\n data: ``,\n name: '15-mp' as const\n};\n\nexport const material16MpIcon = {\n data: ``,\n name: '16-mp' as const\n};\n\nexport const material17MpIcon = {\n data: ``,\n name: '17-mp' as const\n};\n\nexport const material18UpRatingIcon = {\n data: ``,\n name: '18-up-rating' as const\n};\n\nexport const material18MpIcon = {\n data: ``,\n name: '18-mp' as const\n};\n\nexport const material19MpIcon = {\n data: ``,\n name: '19-mp' as const\n};\n\nexport const material1KIcon = {\n data: ``,\n name: '1-k' as const\n};\n\nexport const material1KPlusIcon = {\n data: ``,\n name: '1-k-plus' as const\n};\n\nexport const material1XMobiledataIcon = {\n data: ``,\n name: '1-x-mobiledata' as const\n};\n\nexport const material20MpIcon = {\n data: ``,\n name: '20-mp' as const\n};\n\nexport const material21MpIcon = {\n data: ``,\n name: '21-mp' as const\n};\n\nexport const material22MpIcon = {\n data: ``,\n name: '22-mp' as const\n};\n\nexport const material23MpIcon = {\n data: ``,\n name: '23-mp' as const\n};\n\nexport const material24MpIcon = {\n data: ``,\n name: '24-mp' as const\n};\n\nexport const material2KIcon = {\n data: ``,\n name: '2-k' as const\n};\n\nexport const material2KPlusIcon = {\n data: ``,\n name: '2-k-plus' as const\n};\n\nexport const material2MpIcon = {\n data: ``,\n name: '2-mp' as const\n};\n\nexport const material30FpsIcon = {\n data: ``,\n name: '30-fps' as const\n};\n\nexport const material30FpsSelectIcon = {\n data: ``,\n name: '30-fps-select' as const\n};\n\nexport const material360Icon = {\n data: ``,\n name: '360' as const\n};\n\nexport const material3DRotationIcon = {\n data: ``,\n name: '3-d-rotation' as const\n};\n\nexport const material3GMobiledataIcon = {\n data: ``,\n name: '3-g-mobiledata' as const\n};\n\nexport const material3KIcon = {\n data: ``,\n name: '3-k' as const\n};\n\nexport const material3KPlusIcon = {\n data: ``,\n name: '3-k-plus' as const\n};\n\nexport const material3MpIcon = {\n data: ``,\n name: '3-mp' as const\n};\n\nexport const material3PIcon = {\n data: ``,\n name: '3-p' as const\n};\n\nexport const material4GMobiledataIcon = {\n data: ``,\n name: '4-g-mobiledata' as const\n};\n\nexport const material4GPlusMobiledataIcon = {\n data: ``,\n name: '4-g-plus-mobiledata' as const\n};\n\nexport const material4KIcon = {\n data: ``,\n name: '4-k' as const\n};\n\nexport const material4KPlusIcon = {\n data: ``,\n name: '4-k-plus' as const\n};\n\nexport const material4MpIcon = {\n data: ``,\n name: '4-mp' as const\n};\n\nexport const material5GIcon = {\n data: ``,\n name: '5-g' as const\n};\n\nexport const material5KIcon = {\n data: ``,\n name: '5-k' as const\n};\n\nexport const material5KPlusIcon = {\n data: ``,\n name: '5-k-plus' as const\n};\n\nexport const material5MpIcon = {\n data: ``,\n name: '5-mp' as const\n};\n\nexport const material60FpsIcon = {\n data: ``,\n name: '60-fps' as const\n};\n\nexport const material60FpsSelectIcon = {\n data: ``,\n name: '60-fps-select' as const\n};\n\nexport const material6FtApartIcon = {\n data: ``,\n name: '6-ft-apart' as const\n};\n\nexport const material6KIcon = {\n data: ``,\n name: '6-k' as const\n};\n\nexport const material6KPlusIcon = {\n data: ``,\n name: '6-k-plus' as const\n};\n\nexport const material6MpIcon = {\n data: ``,\n name: '6-mp' as const\n};\n\nexport const material7KIcon = {\n data: ``,\n name: '7-k' as const\n};\n\nexport const material7KPlusIcon = {\n data: ``,\n name: '7-k-plus' as const\n};\n\nexport const material7MpIcon = {\n data: ``,\n name: '7-mp' as const\n};\n\nexport const material8KIcon = {\n data: ``,\n name: '8-k' as const\n};\n\nexport const material8KPlusIcon = {\n data: ``,\n name: '8-k-plus' as const\n};\n\nexport const material8MpIcon = {\n data: ``,\n name: '8-mp' as const\n};\n\nexport const material9KIcon = {\n data: ``,\n name: '9-k' as const\n};\n\nexport const material9KPlusIcon = {\n data: ``,\n name: '9-k-plus' as const\n};\n\nexport const material9MpIcon = {\n data: ``,\n name: '9-mp' as const\n};\n\nexport const materialAbcIcon = {\n data: ``,\n name: 'abc' as const\n};\n\nexport const materialAcUnitIcon = {\n data: ``,\n name: 'ac-unit' as const\n};\n\nexport const materialAccessAlarmIcon = {\n data: ``,\n name: 'access-alarm' as const\n};\n\nexport const materialAccessAlarmsIcon = {\n data: ``,\n name: 'access-alarms' as const\n};\n\nexport const materialAccessTimeIcon = {\n data: ``,\n name: 'access-time' as const\n};\n\nexport const materialAccessTimeFilledIcon = {\n data: ``,\n name: 'access-time-filled' as const\n};\n\nexport const materialAccessibilityIcon = {\n data: ``,\n name: 'accessibility' as const\n};\n\nexport const materialAccessibilityNewIcon = {\n data: ``,\n name: 'accessibility-new' as const\n};\n\nexport const materialAccessibleIcon = {\n data: ``,\n name: 'accessible' as const\n};\n\nexport const materialAccessibleForwardIcon = {\n data: ``,\n name: 'accessible-forward' as const\n};\n\nexport const materialAccountBalanceIcon = {\n data: ``,\n name: 'account-balance' as const\n};\n\nexport const materialAccountBalanceWalletIcon = {\n data: ``,\n name: 'account-balance-wallet' as const\n};\n\nexport const materialAccountBoxIcon = {\n data: ``,\n name: 'account-box' as const\n};\n\nexport const materialAccountCircleIcon = {\n data: ``,\n name: 'account-circle' as const\n};\n\nexport const materialAccountTreeIcon = {\n data: ``,\n name: 'account-tree' as const\n};\n\nexport const materialAdUnitsIcon = {\n data: ``,\n name: 'ad-units' as const\n};\n\nexport const materialAdbIcon = {\n data: ``,\n name: 'adb' as const\n};\n\nexport const materialAddIcon = {\n data: ``,\n name: 'add' as const\n};\n\nexport const materialAddAPhotoIcon = {\n data: ``,\n name: 'add-a-photo' as const\n};\n\nexport const materialAddAlarmIcon = {\n data: ``,\n name: 'add-alarm' as const\n};\n\nexport const materialAddAlertIcon = {\n data: ``,\n name: 'add-alert' as const\n};\n\nexport const materialAddBoxIcon = {\n data: ``,\n name: 'add-box' as const\n};\n\nexport const materialAddBusinessIcon = {\n data: ``,\n name: 'add-business' as const\n};\n\nexport const materialAddCardIcon = {\n data: ``,\n name: 'add-card' as const\n};\n\nexport const materialAddChartIcon = {\n data: ``,\n name: 'add-chart' as const\n};\n\nexport const materialAddCircleIcon = {\n data: ``,\n name: 'add-circle' as const\n};\n\nexport const materialAddCircleOutlineIcon = {\n data: ``,\n name: 'add-circle-outline' as const\n};\n\nexport const materialAddCommentIcon = {\n data: ``,\n name: 'add-comment' as const\n};\n\nexport const materialAddHomeIcon = {\n data: ``,\n name: 'add-home' as const\n};\n\nexport const materialAddHomeWorkIcon = {\n data: ``,\n name: 'add-home-work' as const\n};\n\nexport const materialAddIcCallIcon = {\n data: ``,\n name: 'add-ic-call' as const\n};\n\nexport const materialAddLinkIcon = {\n data: ``,\n name: 'add-link' as const\n};\n\nexport const materialAddLocationIcon = {\n data: ``,\n name: 'add-location' as const\n};\n\nexport const materialAddLocationAltIcon = {\n data: ``,\n name: 'add-location-alt' as const\n};\n\nexport const materialAddModeratorIcon = {\n data: ``,\n name: 'add-moderator' as const\n};\n\nexport const materialAddPhotoAlternateIcon = {\n data: ``,\n name: 'add-photo-alternate' as const\n};\n\nexport const materialAddReactionIcon = {\n data: ``,\n name: 'add-reaction' as const\n};\n\nexport const materialAddRoadIcon = {\n data: ``,\n name: 'add-road' as const\n};\n\nexport const materialAddShoppingCartIcon = {\n data: ``,\n name: 'add-shopping-cart' as const\n};\n\nexport const materialAddTaskIcon = {\n data: ``,\n name: 'add-task' as const\n};\n\nexport const materialAddToDriveIcon = {\n data: ``,\n name: 'add-to-drive' as const\n};\n\nexport const materialAddToHomeScreenIcon = {\n data: ``,\n name: 'add-to-home-screen' as const\n};\n\nexport const materialAddToPhotosIcon = {\n data: ``,\n name: 'add-to-photos' as const\n};\n\nexport const materialAddToQueueIcon = {\n data: ``,\n name: 'add-to-queue' as const\n};\n\nexport const materialAddchartIcon = {\n data: ``,\n name: 'addchart' as const\n};\n\nexport const materialAdfScannerIcon = {\n data: ``,\n name: 'adf-scanner' as const\n};\n\nexport const materialAdjustIcon = {\n data: ``,\n name: 'adjust' as const\n};\n\nexport const materialAdminPanelSettingsIcon = {\n data: ``,\n name: 'admin-panel-settings' as const\n};\n\nexport const materialAdsClickIcon = {\n data: ``,\n name: 'ads-click' as const\n};\n\nexport const materialAgricultureIcon = {\n data: ``,\n name: 'agriculture' as const\n};\n\nexport const materialAirIcon = {\n data: ``,\n name: 'air' as const\n};\n\nexport const materialAirlineSeatFlatIcon = {\n data: ``,\n name: 'airline-seat-flat' as const\n};\n\nexport const materialAirlineSeatFlatAngledIcon = {\n data: ``,\n name: 'airline-seat-flat-angled' as const\n};\n\nexport const materialAirlineSeatIndividualSuiteIcon = {\n data: ``,\n name: 'airline-seat-individual-suite' as const\n};\n\nexport const materialAirlineSeatLegroomExtraIcon = {\n data: ``,\n name: 'airline-seat-legroom-extra' as const\n};\n\nexport const materialAirlineSeatLegroomNormalIcon = {\n data: ``,\n name: 'airline-seat-legroom-normal' as const\n};\n\nexport const materialAirlineSeatLegroomReducedIcon = {\n data: ``,\n name: 'airline-seat-legroom-reduced' as const\n};\n\nexport const materialAirlineSeatReclineExtraIcon = {\n data: ``,\n name: 'airline-seat-recline-extra' as const\n};\n\nexport const materialAirlineSeatReclineNormalIcon = {\n data: ``,\n name: 'airline-seat-recline-normal' as const\n};\n\nexport const materialAirlineStopsIcon = {\n data: ``,\n name: 'airline-stops' as const\n};\n\nexport const materialAirlinesIcon = {\n data: ``,\n name: 'airlines' as const\n};\n\nexport const materialAirplaneTicketIcon = {\n data: ``,\n name: 'airplane-ticket' as const\n};\n\nexport const materialAirplanemodeActiveIcon = {\n data: ``,\n name: 'airplanemode-active' as const\n};\n\nexport const materialAirplanemodeInactiveIcon = {\n data: ``,\n name: 'airplanemode-inactive' as const\n};\n\nexport const materialAirplayIcon = {\n data: ``,\n name: 'airplay' as const\n};\n\nexport const materialAirportShuttleIcon = {\n data: ``,\n name: 'airport-shuttle' as const\n};\n\nexport const materialAlarmIcon = {\n data: ``,\n name: 'alarm' as const\n};\n\nexport const materialAlarmAddIcon = {\n data: ``,\n name: 'alarm-add' as const\n};\n\nexport const materialAlarmOffIcon = {\n data: ``,\n name: 'alarm-off' as const\n};\n\nexport const materialAlarmOnIcon = {\n data: ``,\n name: 'alarm-on' as const\n};\n\nexport const materialAlbumIcon = {\n data: ``,\n name: 'album' as const\n};\n\nexport const materialAlignHorizontalCenterIcon = {\n data: ``,\n name: 'align-horizontal-center' as const\n};\n\nexport const materialAlignHorizontalLeftIcon = {\n data: ``,\n name: 'align-horizontal-left' as const\n};\n\nexport const materialAlignHorizontalRightIcon = {\n data: ``,\n name: 'align-horizontal-right' as const\n};\n\nexport const materialAlignVerticalBottomIcon = {\n data: ``,\n name: 'align-vertical-bottom' as const\n};\n\nexport const materialAlignVerticalCenterIcon = {\n data: ``,\n name: 'align-vertical-center' as const\n};\n\nexport const materialAlignVerticalTopIcon = {\n data: ``,\n name: 'align-vertical-top' as const\n};\n\nexport const materialAllInboxIcon = {\n data: ``,\n name: 'all-inbox' as const\n};\n\nexport const materialAllInclusiveIcon = {\n data: ``,\n name: 'all-inclusive' as const\n};\n\nexport const materialAllOutIcon = {\n data: ``,\n name: 'all-out' as const\n};\n\nexport const materialAltRouteIcon = {\n data: ``,\n name: 'alt-route' as const\n};\n\nexport const materialAlternateEmailIcon = {\n data: ``,\n name: 'alternate-email' as const\n};\n\nexport const materialAnalyticsIcon = {\n data: ``,\n name: 'analytics' as const\n};\n\nexport const materialAnchorIcon = {\n data: ``,\n name: 'anchor' as const\n};\n\nexport const materialAndroidIcon = {\n data: ``,\n name: 'android' as const\n};\n\nexport const materialAnimationIcon = {\n data: ``,\n name: 'animation' as const\n};\n\nexport const materialAnnouncementIcon = {\n data: ``,\n name: 'announcement' as const\n};\n\nexport const materialAodIcon = {\n data: ``,\n name: 'aod' as const\n};\n\nexport const materialApartmentIcon = {\n data: ``,\n name: 'apartment' as const\n};\n\nexport const materialApiIcon = {\n data: ``,\n name: 'api' as const\n};\n\nexport const materialAppBlockingIcon = {\n data: ``,\n name: 'app-blocking' as const\n};\n\nexport const materialAppRegistrationIcon = {\n data: ``,\n name: 'app-registration' as const\n};\n\nexport const materialAppSettingsAltIcon = {\n data: ``,\n name: 'app-settings-alt' as const\n};\n\nexport const materialAppShortcutIcon = {\n data: ``,\n name: 'app-shortcut' as const\n};\n\nexport const materialApprovalIcon = {\n data: ``,\n name: 'approval' as const\n};\n\nexport const materialAppsIcon = {\n data: ``,\n name: 'apps' as const\n};\n\nexport const materialAppsOutageIcon = {\n data: ``,\n name: 'apps-outage' as const\n};\n\nexport const materialArchitectureIcon = {\n data: ``,\n name: 'architecture' as const\n};\n\nexport const materialArchiveIcon = {\n data: ``,\n name: 'archive' as const\n};\n\nexport const materialAreaChartIcon = {\n data: ``,\n name: 'area-chart' as const\n};\n\nexport const materialArrowBackIcon = {\n data: ``,\n name: 'arrow-back' as const\n};\n\nexport const materialArrowBackIosIcon = {\n data: ``,\n name: 'arrow-back-ios' as const\n};\n\nexport const materialArrowBackIosNewIcon = {\n data: ``,\n name: 'arrow-back-ios-new' as const\n};\n\nexport const materialArrowCircleDownIcon = {\n data: ``,\n name: 'arrow-circle-down' as const\n};\n\nexport const materialArrowCircleLeftIcon = {\n data: ``,\n name: 'arrow-circle-left' as const\n};\n\nexport const materialArrowCircleRightIcon = {\n data: ``,\n name: 'arrow-circle-right' as const\n};\n\nexport const materialArrowCircleUpIcon = {\n data: ``,\n name: 'arrow-circle-up' as const\n};\n\nexport const materialArrowDownwardIcon = {\n data: ``,\n name: 'arrow-downward' as const\n};\n\nexport const materialArrowDropDownIcon = {\n data: ``,\n name: 'arrow-drop-down' as const\n};\n\nexport const materialArrowDropDownCircleIcon = {\n data: ``,\n name: 'arrow-drop-down-circle' as const\n};\n\nexport const materialArrowDropUpIcon = {\n data: ``,\n name: 'arrow-drop-up' as const\n};\n\nexport const materialArrowForwardIcon = {\n data: ``,\n name: 'arrow-forward' as const\n};\n\nexport const materialArrowForwardIosIcon = {\n data: ``,\n name: 'arrow-forward-ios' as const\n};\n\nexport const materialArrowLeftIcon = {\n data: ``,\n name: 'arrow-left' as const\n};\n\nexport const materialArrowOutwardIcon = {\n data: ``,\n name: 'arrow-outward' as const\n};\n\nexport const materialArrowRightIcon = {\n data: ``,\n name: 'arrow-right' as const\n};\n\nexport const materialArrowRightAltIcon = {\n data: ``,\n name: 'arrow-right-alt' as const\n};\n\nexport const materialArrowUpwardIcon = {\n data: ``,\n name: 'arrow-upward' as const\n};\n\nexport const materialArtTrackIcon = {\n data: ``,\n name: 'art-track' as const\n};\n\nexport const materialArticleIcon = {\n data: ``,\n name: 'article' as const\n};\n\nexport const materialAspectRatioIcon = {\n data: ``,\n name: 'aspect-ratio' as const\n};\n\nexport const materialAssessmentIcon = {\n data: ``,\n name: 'assessment' as const\n};\n\nexport const materialAssignmentIcon = {\n data: ``,\n name: 'assignment' as const\n};\n\nexport const materialAssignmentIndIcon = {\n data: ``,\n name: 'assignment-ind' as const\n};\n\nexport const materialAssignmentLateIcon = {\n data: ``,\n name: 'assignment-late' as const\n};\n\nexport const materialAssignmentReturnIcon = {\n data: ``,\n name: 'assignment-return' as const\n};\n\nexport const materialAssignmentReturnedIcon = {\n data: ``,\n name: 'assignment-returned' as const\n};\n\nexport const materialAssignmentTurnedInIcon = {\n data: ``,\n name: 'assignment-turned-in' as const\n};\n\nexport const materialAssistWalkerIcon = {\n data: ``,\n name: 'assist-walker' as const\n};\n\nexport const materialAssistantIcon = {\n data: ``,\n name: 'assistant' as const\n};\n\nexport const materialAssistantDirectionIcon = {\n data: ``,\n name: 'assistant-direction' as const\n};\n\nexport const materialAssistantPhotoIcon = {\n data: ``,\n name: 'assistant-photo' as const\n};\n\nexport const materialAssuredWorkloadIcon = {\n data: ``,\n name: 'assured-workload' as const\n};\n\nexport const materialAtmIcon = {\n data: ``,\n name: 'atm' as const\n};\n\nexport const materialAttachEmailIcon = {\n data: ``,\n name: 'attach-email' as const\n};\n\nexport const materialAttachFileIcon = {\n data: ``,\n name: 'attach-file' as const\n};\n\nexport const materialAttachMoneyIcon = {\n data: ``,\n name: 'attach-money' as const\n};\n\nexport const materialAttachmentIcon = {\n data: ``,\n name: 'attachment' as const\n};\n\nexport const materialAttractionsIcon = {\n data: ``,\n name: 'attractions' as const\n};\n\nexport const materialAttributionIcon = {\n data: ``,\n name: 'attribution' as const\n};\n\nexport const materialAudioFileIcon = {\n data: ``,\n name: 'audio-file' as const\n};\n\nexport const materialAudiotrackIcon = {\n data: ``,\n name: 'audiotrack' as const\n};\n\nexport const materialAutoAwesomeIcon = {\n data: ``,\n name: 'auto-awesome' as const\n};\n\nexport const materialAutoAwesomeMosaicIcon = {\n data: ``,\n name: 'auto-awesome-mosaic' as const\n};\n\nexport const materialAutoAwesomeMotionIcon = {\n data: ``,\n name: 'auto-awesome-motion' as const\n};\n\nexport const materialAutoDeleteIcon = {\n data: ``,\n name: 'auto-delete' as const\n};\n\nexport const materialAutoFixHighIcon = {\n data: ``,\n name: 'auto-fix-high' as const\n};\n\nexport const materialAutoFixNormalIcon = {\n data: ``,\n name: 'auto-fix-normal' as const\n};\n\nexport const materialAutoFixOffIcon = {\n data: ``,\n name: 'auto-fix-off' as const\n};\n\nexport const materialAutoGraphIcon = {\n data: ``,\n name: 'auto-graph' as const\n};\n\nexport const materialAutoModeIcon = {\n data: ``,\n name: 'auto-mode' as const\n};\n\nexport const materialAutoStoriesIcon = {\n data: ``,\n name: 'auto-stories' as const\n};\n\nexport const materialAutofpsSelectIcon = {\n data: ``,\n name: 'autofps-select' as const\n};\n\nexport const materialAutorenewIcon = {\n data: ``,\n name: 'autorenew' as const\n};\n\nexport const materialAvTimerIcon = {\n data: ``,\n name: 'av-timer' as const\n};\n\nexport const materialBabyChangingStationIcon = {\n data: ``,\n name: 'baby-changing-station' as const\n};\n\nexport const materialBackHandIcon = {\n data: ``,\n name: 'back-hand' as const\n};\n\nexport const materialBackpackIcon = {\n data: ``,\n name: 'backpack' as const\n};\n\nexport const materialBackspaceIcon = {\n data: ``,\n name: 'backspace' as const\n};\n\nexport const materialBackupIcon = {\n data: ``,\n name: 'backup' as const\n};\n\nexport const materialBackupTableIcon = {\n data: ``,\n name: 'backup-table' as const\n};\n\nexport const materialBadgeIcon = {\n data: ``,\n name: 'badge' as const\n};\n\nexport const materialBakeryDiningIcon = {\n data: ``,\n name: 'bakery-dining' as const\n};\n\nexport const materialBalanceIcon = {\n data: ``,\n name: 'balance' as const\n};\n\nexport const materialBalconyIcon = {\n data: ``,\n name: 'balcony' as const\n};\n\nexport const materialBallotIcon = {\n data: ``,\n name: 'ballot' as const\n};\n\nexport const materialBarChartIcon = {\n data: ``,\n name: 'bar-chart' as const\n};\n\nexport const materialBatchPredictionIcon = {\n data: ``,\n name: 'batch-prediction' as const\n};\n\nexport const materialBathroomIcon = {\n data: ``,\n name: 'bathroom' as const\n};\n\nexport const materialBathtubIcon = {\n data: ``,\n name: 'bathtub' as const\n};\n\nexport const materialBattery0BarIcon = {\n data: ``,\n name: 'battery-0-bar' as const\n};\n\nexport const materialBattery1BarIcon = {\n data: ``,\n name: 'battery-1-bar' as const\n};\n\nexport const materialBattery2BarIcon = {\n data: ``,\n name: 'battery-2-bar' as const\n};\n\nexport const materialBattery3BarIcon = {\n data: ``,\n name: 'battery-3-bar' as const\n};\n\nexport const materialBattery4BarIcon = {\n data: ``,\n name: 'battery-4-bar' as const\n};\n\nexport const materialBattery5BarIcon = {\n data: ``,\n name: 'battery-5-bar' as const\n};\n\nexport const materialBattery6BarIcon = {\n data: ``,\n name: 'battery-6-bar' as const\n};\n\nexport const materialBatteryAlertIcon = {\n data: ``,\n name: 'battery-alert' as const\n};\n\nexport const materialBatteryChargingFullIcon = {\n data: ``,\n name: 'battery-charging-full' as const\n};\n\nexport const materialBatteryFullIcon = {\n data: ``,\n name: 'battery-full' as const\n};\n\nexport const materialBatterySaverIcon = {\n data: ``,\n name: 'battery-saver' as const\n};\n\nexport const materialBatteryStdIcon = {\n data: ``,\n name: 'battery-std' as const\n};\n\nexport const materialBatteryUnknownIcon = {\n data: ``,\n name: 'battery-unknown' as const\n};\n\nexport const materialBeachAccessIcon = {\n data: ``,\n name: 'beach-access' as const\n};\n\nexport const materialBedIcon = {\n data: ``,\n name: 'bed' as const\n};\n\nexport const materialBedroomBabyIcon = {\n data: ``,\n name: 'bedroom-baby' as const\n};\n\nexport const materialBedroomChildIcon = {\n data: ``,\n name: 'bedroom-child' as const\n};\n\nexport const materialBedroomParentIcon = {\n data: ``,\n name: 'bedroom-parent' as const\n};\n\nexport const materialBedtimeIcon = {\n data: ``,\n name: 'bedtime' as const\n};\n\nexport const materialBedtimeOffIcon = {\n data: ``,\n name: 'bedtime-off' as const\n};\n\nexport const materialBeenhereIcon = {\n data: ``,\n name: 'beenhere' as const\n};\n\nexport const materialBentoIcon = {\n data: ``,\n name: 'bento' as const\n};\n\nexport const materialBikeScooterIcon = {\n data: ``,\n name: 'bike-scooter' as const\n};\n\nexport const materialBiotechIcon = {\n data: ``,\n name: 'biotech' as const\n};\n\nexport const materialBlenderIcon = {\n data: ``,\n name: 'blender' as const\n};\n\nexport const materialBlindIcon = {\n data: ``,\n name: 'blind' as const\n};\n\nexport const materialBlindsIcon = {\n data: ``,\n name: 'blinds' as const\n};\n\nexport const materialBlindsClosedIcon = {\n data: ``,\n name: 'blinds-closed' as const\n};\n\nexport const materialBlockIcon = {\n data: ``,\n name: 'block' as const\n};\n\nexport const materialBloodtypeIcon = {\n data: ``,\n name: 'bloodtype' as const\n};\n\nexport const materialBluetoothIcon = {\n data: ``,\n name: 'bluetooth' as const\n};\n\nexport const materialBluetoothAudioIcon = {\n data: ``,\n name: 'bluetooth-audio' as const\n};\n\nexport const materialBluetoothConnectedIcon = {\n data: ``,\n name: 'bluetooth-connected' as const\n};\n\nexport const materialBluetoothDisabledIcon = {\n data: ``,\n name: 'bluetooth-disabled' as const\n};\n\nexport const materialBluetoothDriveIcon = {\n data: ``,\n name: 'bluetooth-drive' as const\n};\n\nexport const materialBluetoothSearchingIcon = {\n data: ``,\n name: 'bluetooth-searching' as const\n};\n\nexport const materialBlurCircularIcon = {\n data: ``,\n name: 'blur-circular' as const\n};\n\nexport const materialBlurLinearIcon = {\n data: ``,\n name: 'blur-linear' as const\n};\n\nexport const materialBlurOffIcon = {\n data: ``,\n name: 'blur-off' as const\n};\n\nexport const materialBlurOnIcon = {\n data: ``,\n name: 'blur-on' as const\n};\n\nexport const materialBoltIcon = {\n data: ``,\n name: 'bolt' as const\n};\n\nexport const materialBookIcon = {\n data: ``,\n name: 'book' as const\n};\n\nexport const materialBookOnlineIcon = {\n data: ``,\n name: 'book-online' as const\n};\n\nexport const materialBookmarkIcon = {\n data: ``,\n name: 'bookmark' as const\n};\n\nexport const materialBookmarkAddIcon = {\n data: ``,\n name: 'bookmark-add' as const\n};\n\nexport const materialBookmarkAddedIcon = {\n data: ``,\n name: 'bookmark-added' as const\n};\n\nexport const materialBookmarkBorderIcon = {\n data: ``,\n name: 'bookmark-border' as const\n};\n\nexport const materialBookmarkRemoveIcon = {\n data: ``,\n name: 'bookmark-remove' as const\n};\n\nexport const materialBookmarksIcon = {\n data: ``,\n name: 'bookmarks' as const\n};\n\nexport const materialBorderAllIcon = {\n data: ``,\n name: 'border-all' as const\n};\n\nexport const materialBorderBottomIcon = {\n data: ``,\n name: 'border-bottom' as const\n};\n\nexport const materialBorderClearIcon = {\n data: ``,\n name: 'border-clear' as const\n};\n\nexport const materialBorderColorIcon = {\n data: ``,\n name: 'border-color' as const\n};\n\nexport const materialBorderHorizontalIcon = {\n data: ``,\n name: 'border-horizontal' as const\n};\n\nexport const materialBorderInnerIcon = {\n data: ``,\n name: 'border-inner' as const\n};\n\nexport const materialBorderLeftIcon = {\n data: ``,\n name: 'border-left' as const\n};\n\nexport const materialBorderOuterIcon = {\n data: ``,\n name: 'border-outer' as const\n};\n\nexport const materialBorderRightIcon = {\n data: ``,\n name: 'border-right' as const\n};\n\nexport const materialBorderStyleIcon = {\n data: ``,\n name: 'border-style' as const\n};\n\nexport const materialBorderTopIcon = {\n data: ``,\n name: 'border-top' as const\n};\n\nexport const materialBorderVerticalIcon = {\n data: ``,\n name: 'border-vertical' as const\n};\n\nexport const materialBoyIcon = {\n data: ``,\n name: 'boy' as const\n};\n\nexport const materialBrandingWatermarkIcon = {\n data: ``,\n name: 'branding-watermark' as const\n};\n\nexport const materialBreakfastDiningIcon = {\n data: ``,\n name: 'breakfast-dining' as const\n};\n\nexport const materialBrightness1Icon = {\n data: ``,\n name: 'brightness-1' as const\n};\n\nexport const materialBrightness2Icon = {\n data: ``,\n name: 'brightness-2' as const\n};\n\nexport const materialBrightness3Icon = {\n data: ``,\n name: 'brightness-3' as const\n};\n\nexport const materialBrightness4Icon = {\n data: ``,\n name: 'brightness-4' as const\n};\n\nexport const materialBrightness5Icon = {\n data: ``,\n name: 'brightness-5' as const\n};\n\nexport const materialBrightness6Icon = {\n data: ``,\n name: 'brightness-6' as const\n};\n\nexport const materialBrightness7Icon = {\n data: ``,\n name: 'brightness-7' as const\n};\n\nexport const materialBrightnessAutoIcon = {\n data: ``,\n name: 'brightness-auto' as const\n};\n\nexport const materialBrightnessHighIcon = {\n data: ``,\n name: 'brightness-high' as const\n};\n\nexport const materialBrightnessLowIcon = {\n data: ``,\n name: 'brightness-low' as const\n};\n\nexport const materialBrightnessMediumIcon = {\n data: ``,\n name: 'brightness-medium' as const\n};\n\nexport const materialBroadcastOnHomeIcon = {\n data: ``,\n name: 'broadcast-on-home' as const\n};\n\nexport const materialBroadcastOnPersonalIcon = {\n data: ``,\n name: 'broadcast-on-personal' as const\n};\n\nexport const materialBrokenImageIcon = {\n data: ``,\n name: 'broken-image' as const\n};\n\nexport const materialBrowseGalleryIcon = {\n data: ``,\n name: 'browse-gallery' as const\n};\n\nexport const materialBrowserNotSupportedIcon = {\n data: ``,\n name: 'browser-not-supported' as const\n};\n\nexport const materialBrowserUpdatedIcon = {\n data: ``,\n name: 'browser-updated' as const\n};\n\nexport const materialBrunchDiningIcon = {\n data: ``,\n name: 'brunch-dining' as const\n};\n\nexport const materialBrushIcon = {\n data: ``,\n name: 'brush' as const\n};\n\nexport const materialBubbleChartIcon = {\n data: ``,\n name: 'bubble-chart' as const\n};\n\nexport const materialBugReportIcon = {\n data: ``,\n name: 'bug-report' as const\n};\n\nexport const materialBuildIcon = {\n data: ``,\n name: 'build' as const\n};\n\nexport const materialBuildCircleIcon = {\n data: ``,\n name: 'build-circle' as const\n};\n\nexport const materialBungalowIcon = {\n data: ``,\n name: 'bungalow' as const\n};\n\nexport const materialBurstModeIcon = {\n data: ``,\n name: 'burst-mode' as const\n};\n\nexport const materialBusAlertIcon = {\n data: ``,\n name: 'bus-alert' as const\n};\n\nexport const materialBusinessIcon = {\n data: ``,\n name: 'business' as const\n};\n\nexport const materialBusinessCenterIcon = {\n data: ``,\n name: 'business-center' as const\n};\n\nexport const materialCabinIcon = {\n data: ``,\n name: 'cabin' as const\n};\n\nexport const materialCableIcon = {\n data: ``,\n name: 'cable' as const\n};\n\nexport const materialCachedIcon = {\n data: ``,\n name: 'cached' as const\n};\n\nexport const materialCakeIcon = {\n data: ``,\n name: 'cake' as const\n};\n\nexport const materialCalculateIcon = {\n data: ``,\n name: 'calculate' as const\n};\n\nexport const materialCalendarMonthIcon = {\n data: ``,\n name: 'calendar-month' as const\n};\n\nexport const materialCalendarTodayIcon = {\n data: ``,\n name: 'calendar-today' as const\n};\n\nexport const materialCalendarViewDayIcon = {\n data: ``,\n name: 'calendar-view-day' as const\n};\n\nexport const materialCalendarViewMonthIcon = {\n data: ``,\n name: 'calendar-view-month' as const\n};\n\nexport const materialCalendarViewWeekIcon = {\n data: ``,\n name: 'calendar-view-week' as const\n};\n\nexport const materialCallIcon = {\n data: ``,\n name: 'call' as const\n};\n\nexport const materialCallEndIcon = {\n data: ``,\n name: 'call-end' as const\n};\n\nexport const materialCallMadeIcon = {\n data: ``,\n name: 'call-made' as const\n};\n\nexport const materialCallMergeIcon = {\n data: ``,\n name: 'call-merge' as const\n};\n\nexport const materialCallMissedIcon = {\n data: ``,\n name: 'call-missed' as const\n};\n\nexport const materialCallMissedOutgoingIcon = {\n data: ``,\n name: 'call-missed-outgoing' as const\n};\n\nexport const materialCallReceivedIcon = {\n data: ``,\n name: 'call-received' as const\n};\n\nexport const materialCallSplitIcon = {\n data: ``,\n name: 'call-split' as const\n};\n\nexport const materialCallToActionIcon = {\n data: ``,\n name: 'call-to-action' as const\n};\n\nexport const materialCameraIcon = {\n data: ``,\n name: 'camera' as const\n};\n\nexport const materialCameraAltIcon = {\n data: ``,\n name: 'camera-alt' as const\n};\n\nexport const materialCameraEnhanceIcon = {\n data: ``,\n name: 'camera-enhance' as const\n};\n\nexport const materialCameraFrontIcon = {\n data: ``,\n name: 'camera-front' as const\n};\n\nexport const materialCameraIndoorIcon = {\n data: ``,\n name: 'camera-indoor' as const\n};\n\nexport const materialCameraOutdoorIcon = {\n data: ``,\n name: 'camera-outdoor' as const\n};\n\nexport const materialCameraRearIcon = {\n data: ``,\n name: 'camera-rear' as const\n};\n\nexport const materialCameraRollIcon = {\n data: ``,\n name: 'camera-roll' as const\n};\n\nexport const materialCameraswitchIcon = {\n data: ``,\n name: 'cameraswitch' as const\n};\n\nexport const materialCampaignIcon = {\n data: ``,\n name: 'campaign' as const\n};\n\nexport const materialCancelIcon = {\n data: ``,\n name: 'cancel' as const\n};\n\nexport const materialCancelPresentationIcon = {\n data: ``,\n name: 'cancel-presentation' as const\n};\n\nexport const materialCancelScheduleSendIcon = {\n data: ``,\n name: 'cancel-schedule-send' as const\n};\n\nexport const materialCandlestickChartIcon = {\n data: ``,\n name: 'candlestick-chart' as const\n};\n\nexport const materialCarCrashIcon = {\n data: ``,\n name: 'car-crash' as const\n};\n\nexport const materialCarRentalIcon = {\n data: ``,\n name: 'car-rental' as const\n};\n\nexport const materialCarRepairIcon = {\n data: ``,\n name: 'car-repair' as const\n};\n\nexport const materialCardGiftcardIcon = {\n data: ``,\n name: 'card-giftcard' as const\n};\n\nexport const materialCardMembershipIcon = {\n data: ``,\n name: 'card-membership' as const\n};\n\nexport const materialCardTravelIcon = {\n data: ``,\n name: 'card-travel' as const\n};\n\nexport const materialCarpenterIcon = {\n data: ``,\n name: 'carpenter' as const\n};\n\nexport const materialCasesIcon = {\n data: ``,\n name: 'cases' as const\n};\n\nexport const materialCasinoIcon = {\n data: ``,\n name: 'casino' as const\n};\n\nexport const materialCastIcon = {\n data: ``,\n name: 'cast' as const\n};\n\nexport const materialCastConnectedIcon = {\n data: ``,\n name: 'cast-connected' as const\n};\n\nexport const materialCastForEducationIcon = {\n data: ``,\n name: 'cast-for-education' as const\n};\n\nexport const materialCastleIcon = {\n data: ``,\n name: 'castle' as const\n};\n\nexport const materialCatchingPokemonIcon = {\n data: ``,\n name: 'catching-pokemon' as const\n};\n\nexport const materialCategoryIcon = {\n data: ``,\n name: 'category' as const\n};\n\nexport const materialCelebrationIcon = {\n data: ``,\n name: 'celebration' as const\n};\n\nexport const materialCellTowerIcon = {\n data: ``,\n name: 'cell-tower' as const\n};\n\nexport const materialCellWifiIcon = {\n data: ``,\n name: 'cell-wifi' as const\n};\n\nexport const materialCenterFocusStrongIcon = {\n data: ``,\n name: 'center-focus-strong' as const\n};\n\nexport const materialCenterFocusWeakIcon = {\n data: ``,\n name: 'center-focus-weak' as const\n};\n\nexport const materialChairIcon = {\n data: ``,\n name: 'chair' as const\n};\n\nexport const materialChairAltIcon = {\n data: ``,\n name: 'chair-alt' as const\n};\n\nexport const materialChaletIcon = {\n data: ``,\n name: 'chalet' as const\n};\n\nexport const materialChangeCircleIcon = {\n data: ``,\n name: 'change-circle' as const\n};\n\nexport const materialChangeHistoryIcon = {\n data: ``,\n name: 'change-history' as const\n};\n\nexport const materialChargingStationIcon = {\n data: ``,\n name: 'charging-station' as const\n};\n\nexport const materialChatIcon = {\n data: ``,\n name: 'chat' as const\n};\n\nexport const materialChatBubbleIcon = {\n data: ``,\n name: 'chat-bubble' as const\n};\n\nexport const materialChatBubbleOutlineIcon = {\n data: ``,\n name: 'chat-bubble-outline' as const\n};\n\nexport const materialCheckIcon = {\n data: ``,\n name: 'check' as const\n};\n\nexport const materialCheckBoxIcon = {\n data: ``,\n name: 'check-box' as const\n};\n\nexport const materialCheckBoxOutlineBlankIcon = {\n data: ``,\n name: 'check-box-outline-blank' as const\n};\n\nexport const materialCheckCircleIcon = {\n data: ``,\n name: 'check-circle' as const\n};\n\nexport const materialCheckCircleOutlineIcon = {\n data: ``,\n name: 'check-circle-outline' as const\n};\n\nexport const materialChecklistIcon = {\n data: ``,\n name: 'checklist' as const\n};\n\nexport const materialChecklistRtlIcon = {\n data: ``,\n name: 'checklist-rtl' as const\n};\n\nexport const materialCheckroomIcon = {\n data: ``,\n name: 'checkroom' as const\n};\n\nexport const materialChevronLeftIcon = {\n data: ``,\n name: 'chevron-left' as const\n};\n\nexport const materialChevronRightIcon = {\n data: ``,\n name: 'chevron-right' as const\n};\n\nexport const materialChildCareIcon = {\n data: ``,\n name: 'child-care' as const\n};\n\nexport const materialChildFriendlyIcon = {\n data: ``,\n name: 'child-friendly' as const\n};\n\nexport const materialChromeReaderModeIcon = {\n data: ``,\n name: 'chrome-reader-mode' as const\n};\n\nexport const materialChurchIcon = {\n data: ``,\n name: 'church' as const\n};\n\nexport const materialCircleIcon = {\n data: ``,\n name: 'circle' as const\n};\n\nexport const materialCircleNotificationsIcon = {\n data: ``,\n name: 'circle-notifications' as const\n};\n\nexport const materialClassIcon = {\n data: ``,\n name: 'class' as const\n};\n\nexport const materialCleanHandsIcon = {\n data: ``,\n name: 'clean-hands' as const\n};\n\nexport const materialCleaningServicesIcon = {\n data: ``,\n name: 'cleaning-services' as const\n};\n\nexport const materialClearIcon = {\n data: ``,\n name: 'clear' as const\n};\n\nexport const materialClearAllIcon = {\n data: ``,\n name: 'clear-all' as const\n};\n\nexport const materialCloseIcon = {\n data: ``,\n name: 'close' as const\n};\n\nexport const materialCloseFullscreenIcon = {\n data: ``,\n name: 'close-fullscreen' as const\n};\n\nexport const materialClosedCaptionIcon = {\n data: ``,\n name: 'closed-caption' as const\n};\n\nexport const materialClosedCaptionDisabledIcon = {\n data: ``,\n name: 'closed-caption-disabled' as const\n};\n\nexport const materialClosedCaptionOffIcon = {\n data: ``,\n name: 'closed-caption-off' as const\n};\n\nexport const materialCloudIcon = {\n data: ``,\n name: 'cloud' as const\n};\n\nexport const materialCloudCircleIcon = {\n data: ``,\n name: 'cloud-circle' as const\n};\n\nexport const materialCloudDoneIcon = {\n data: ``,\n name: 'cloud-done' as const\n};\n\nexport const materialCloudDownloadIcon = {\n data: ``,\n name: 'cloud-download' as const\n};\n\nexport const materialCloudOffIcon = {\n data: ``,\n name: 'cloud-off' as const\n};\n\nexport const materialCloudQueueIcon = {\n data: ``,\n name: 'cloud-queue' as const\n};\n\nexport const materialCloudSyncIcon = {\n data: ``,\n name: 'cloud-sync' as const\n};\n\nexport const materialCloudUploadIcon = {\n data: ``,\n name: 'cloud-upload' as const\n};\n\nexport const materialCo2Icon = {\n data: ``,\n name: 'co-2' as const\n};\n\nexport const materialCoPresentIcon = {\n data: ``,\n name: 'co-present' as const\n};\n\nexport const materialCodeIcon = {\n data: ``,\n name: 'code' as const\n};\n\nexport const materialCodeOffIcon = {\n data: ``,\n name: 'code-off' as const\n};\n\nexport const materialCoffeeIcon = {\n data: ``,\n name: 'coffee' as const\n};\n\nexport const materialCoffeeMakerIcon = {\n data: ``,\n name: 'coffee-maker' as const\n};\n\nexport const materialCollectionsIcon = {\n data: ``,\n name: 'collections' as const\n};\n\nexport const materialCollectionsBookmarkIcon = {\n data: ``,\n name: 'collections-bookmark' as const\n};\n\nexport const materialColorLensIcon = {\n data: ``,\n name: 'color-lens' as const\n};\n\nexport const materialColorizeIcon = {\n data: ``,\n name: 'colorize' as const\n};\n\nexport const materialCommentIcon = {\n data: ``,\n name: 'comment' as const\n};\n\nexport const materialCommentBankIcon = {\n data: ``,\n name: 'comment-bank' as const\n};\n\nexport const materialCommentsDisabledIcon = {\n data: ``,\n name: 'comments-disabled' as const\n};\n\nexport const materialCommitIcon = {\n data: ``,\n name: 'commit' as const\n};\n\nexport const materialCommuteIcon = {\n data: ``,\n name: 'commute' as const\n};\n\nexport const materialCompareIcon = {\n data: ``,\n name: 'compare' as const\n};\n\nexport const materialCompareArrowsIcon = {\n data: ``,\n name: 'compare-arrows' as const\n};\n\nexport const materialCompassCalibrationIcon = {\n data: ``,\n name: 'compass-calibration' as const\n};\n\nexport const materialCompostIcon = {\n data: ``,\n name: 'compost' as const\n};\n\nexport const materialCompressIcon = {\n data: ``,\n name: 'compress' as const\n};\n\nexport const materialComputerIcon = {\n data: ``,\n name: 'computer' as const\n};\n\nexport const materialConfirmationNumberIcon = {\n data: ``,\n name: 'confirmation-number' as const\n};\n\nexport const materialConnectWithoutContactIcon = {\n data: ``,\n name: 'connect-without-contact' as const\n};\n\nexport const materialConnectedTvIcon = {\n data: ``,\n name: 'connected-tv' as const\n};\n\nexport const materialConnectingAirportsIcon = {\n data: ``,\n name: 'connecting-airports' as const\n};\n\nexport const materialConstructionIcon = {\n data: ``,\n name: 'construction' as const\n};\n\nexport const materialContactEmergencyIcon = {\n data: ``,\n name: 'contact-emergency' as const\n};\n\nexport const materialContactMailIcon = {\n data: ``,\n name: 'contact-mail' as const\n};\n\nexport const materialContactPageIcon = {\n data: ``,\n name: 'contact-page' as const\n};\n\nexport const materialContactPhoneIcon = {\n data: ``,\n name: 'contact-phone' as const\n};\n\nexport const materialContactSupportIcon = {\n data: ``,\n name: 'contact-support' as const\n};\n\nexport const materialContactlessIcon = {\n data: ``,\n name: 'contactless' as const\n};\n\nexport const materialContactsIcon = {\n data: ``,\n name: 'contacts' as const\n};\n\nexport const materialContentCopyIcon = {\n data: ``,\n name: 'content-copy' as const\n};\n\nexport const materialContentCutIcon = {\n data: ``,\n name: 'content-cut' as const\n};\n\nexport const materialContentPasteIcon = {\n data: ``,\n name: 'content-paste' as const\n};\n\nexport const materialContentPasteGoIcon = {\n data: ``,\n name: 'content-paste-go' as const\n};\n\nexport const materialContentPasteOffIcon = {\n data: ``,\n name: 'content-paste-off' as const\n};\n\nexport const materialContentPasteSearchIcon = {\n data: ``,\n name: 'content-paste-search' as const\n};\n\nexport const materialContrastIcon = {\n data: ``,\n name: 'contrast' as const\n};\n\nexport const materialControlCameraIcon = {\n data: ``,\n name: 'control-camera' as const\n};\n\nexport const materialControlPointIcon = {\n data: ``,\n name: 'control-point' as const\n};\n\nexport const materialControlPointDuplicateIcon = {\n data: ``,\n name: 'control-point-duplicate' as const\n};\n\nexport const materialCookieIcon = {\n data: ``,\n name: 'cookie' as const\n};\n\nexport const materialCopyAllIcon = {\n data: ``,\n name: 'copy-all' as const\n};\n\nexport const materialCopyrightIcon = {\n data: ``,\n name: 'copyright' as const\n};\n\nexport const materialCoronavirusIcon = {\n data: ``,\n name: 'coronavirus' as const\n};\n\nexport const materialCorporateFareIcon = {\n data: ``,\n name: 'corporate-fare' as const\n};\n\nexport const materialCottageIcon = {\n data: ``,\n name: 'cottage' as const\n};\n\nexport const materialCountertopsIcon = {\n data: ``,\n name: 'countertops' as const\n};\n\nexport const materialCreateIcon = {\n data: ``,\n name: 'create' as const\n};\n\nexport const materialCreateNewFolderIcon = {\n data: ``,\n name: 'create-new-folder' as const\n};\n\nexport const materialCreditCardIcon = {\n data: ``,\n name: 'credit-card' as const\n};\n\nexport const materialCreditCardOffIcon = {\n data: ``,\n name: 'credit-card-off' as const\n};\n\nexport const materialCreditScoreIcon = {\n data: ``,\n name: 'credit-score' as const\n};\n\nexport const materialCribIcon = {\n data: ``,\n name: 'crib' as const\n};\n\nexport const materialCrisisAlertIcon = {\n data: ``,\n name: 'crisis-alert' as const\n};\n\nexport const materialCropIcon = {\n data: ``,\n name: 'crop' as const\n};\n\nexport const materialCrop169Icon = {\n data: ``,\n name: 'crop-16-9' as const\n};\n\nexport const materialCrop32Icon = {\n data: ``,\n name: 'crop-3-2' as const\n};\n\nexport const materialCrop54Icon = {\n data: ``,\n name: 'crop-5-4' as const\n};\n\nexport const materialCrop75Icon = {\n data: ``,\n name: 'crop-7-5' as const\n};\n\nexport const materialCropDinIcon = {\n data: ``,\n name: 'crop-din' as const\n};\n\nexport const materialCropFreeIcon = {\n data: ``,\n name: 'crop-free' as const\n};\n\nexport const materialCropLandscapeIcon = {\n data: ``,\n name: 'crop-landscape' as const\n};\n\nexport const materialCropOriginalIcon = {\n data: ``,\n name: 'crop-original' as const\n};\n\nexport const materialCropPortraitIcon = {\n data: ``,\n name: 'crop-portrait' as const\n};\n\nexport const materialCropRotateIcon = {\n data: ``,\n name: 'crop-rotate' as const\n};\n\nexport const materialCropSquareIcon = {\n data: ``,\n name: 'crop-square' as const\n};\n\nexport const materialCrueltyFreeIcon = {\n data: ``,\n name: 'cruelty-free' as const\n};\n\nexport const materialCssIcon = {\n data: ``,\n name: 'css' as const\n};\n\nexport const materialCurrencyBitcoinIcon = {\n data: ``,\n name: 'currency-bitcoin' as const\n};\n\nexport const materialCurrencyExchangeIcon = {\n data: ``,\n name: 'currency-exchange' as const\n};\n\nexport const materialCurrencyFrancIcon = {\n data: ``,\n name: 'currency-franc' as const\n};\n\nexport const materialCurrencyLiraIcon = {\n data: ``,\n name: 'currency-lira' as const\n};\n\nexport const materialCurrencyPoundIcon = {\n data: ``,\n name: 'currency-pound' as const\n};\n\nexport const materialCurrencyRubleIcon = {\n data: ``,\n name: 'currency-ruble' as const\n};\n\nexport const materialCurrencyRupeeIcon = {\n data: ``,\n name: 'currency-rupee' as const\n};\n\nexport const materialCurrencyYenIcon = {\n data: ``,\n name: 'currency-yen' as const\n};\n\nexport const materialCurrencyYuanIcon = {\n data: ``,\n name: 'currency-yuan' as const\n};\n\nexport const materialCurtainsIcon = {\n data: ``,\n name: 'curtains' as const\n};\n\nexport const materialCurtainsClosedIcon = {\n data: ``,\n name: 'curtains-closed' as const\n};\n\nexport const materialCycloneIcon = {\n data: ``,\n name: 'cyclone' as const\n};\n\nexport const materialDangerousIcon = {\n data: ``,\n name: 'dangerous' as const\n};\n\nexport const materialDarkModeIcon = {\n data: ``,\n name: 'dark-mode' as const\n};\n\nexport const materialDashboardIcon = {\n data: ``,\n name: 'dashboard' as const\n};\n\nexport const materialDashboardCustomizeIcon = {\n data: ``,\n name: 'dashboard-customize' as const\n};\n\nexport const materialDataArrayIcon = {\n data: ``,\n name: 'data-array' as const\n};\n\nexport const materialDataExplorationIcon = {\n data: ``,\n name: 'data-exploration' as const\n};\n\nexport const materialDataObjectIcon = {\n data: ``,\n name: 'data-object' as const\n};\n\nexport const materialDataSaverOffIcon = {\n data: ``,\n name: 'data-saver-off' as const\n};\n\nexport const materialDataSaverOnIcon = {\n data: ``,\n name: 'data-saver-on' as const\n};\n\nexport const materialDataThresholdingIcon = {\n data: ``,\n name: 'data-thresholding' as const\n};\n\nexport const materialDataUsageIcon = {\n data: ``,\n name: 'data-usage' as const\n};\n\nexport const materialDatasetIcon = {\n data: ``,\n name: 'dataset' as const\n};\n\nexport const materialDatasetLinkedIcon = {\n data: ``,\n name: 'dataset-linked' as const\n};\n\nexport const materialDateRangeIcon = {\n data: ``,\n name: 'date-range' as const\n};\n\nexport const materialDeblurIcon = {\n data: ``,\n name: 'deblur' as const\n};\n\nexport const materialDeckIcon = {\n data: ``,\n name: 'deck' as const\n};\n\nexport const materialDehazeIcon = {\n data: ``,\n name: 'dehaze' as const\n};\n\nexport const materialDeleteIcon = {\n data: ``,\n name: 'delete' as const\n};\n\nexport const materialDeleteForeverIcon = {\n data: ``,\n name: 'delete-forever' as const\n};\n\nexport const materialDeleteOutlineIcon = {\n data: ``,\n name: 'delete-outline' as const\n};\n\nexport const materialDeleteSweepIcon = {\n data: ``,\n name: 'delete-sweep' as const\n};\n\nexport const materialDeliveryDiningIcon = {\n data: ``,\n name: 'delivery-dining' as const\n};\n\nexport const materialDensityLargeIcon = {\n data: ``,\n name: 'density-large' as const\n};\n\nexport const materialDensityMediumIcon = {\n data: ``,\n name: 'density-medium' as const\n};\n\nexport const materialDensitySmallIcon = {\n data: ``,\n name: 'density-small' as const\n};\n\nexport const materialDepartureBoardIcon = {\n data: ``,\n name: 'departure-board' as const\n};\n\nexport const materialDescriptionIcon = {\n data: ``,\n name: 'description' as const\n};\n\nexport const materialDeselectIcon = {\n data: ``,\n name: 'deselect' as const\n};\n\nexport const materialDesignServicesIcon = {\n data: ``,\n name: 'design-services' as const\n};\n\nexport const materialDeskIcon = {\n data: ``,\n name: 'desk' as const\n};\n\nexport const materialDesktopAccessDisabledIcon = {\n data: ``,\n name: 'desktop-access-disabled' as const\n};\n\nexport const materialDesktopMacIcon = {\n data: ``,\n name: 'desktop-mac' as const\n};\n\nexport const materialDesktopWindowsIcon = {\n data: ``,\n name: 'desktop-windows' as const\n};\n\nexport const materialDetailsIcon = {\n data: ``,\n name: 'details' as const\n};\n\nexport const materialDeveloperBoardIcon = {\n data: ``,\n name: 'developer-board' as const\n};\n\nexport const materialDeveloperBoardOffIcon = {\n data: ``,\n name: 'developer-board-off' as const\n};\n\nexport const materialDeveloperModeIcon = {\n data: ``,\n name: 'developer-mode' as const\n};\n\nexport const materialDeviceHubIcon = {\n data: ``,\n name: 'device-hub' as const\n};\n\nexport const materialDeviceThermostatIcon = {\n data: ``,\n name: 'device-thermostat' as const\n};\n\nexport const materialDeviceUnknownIcon = {\n data: ``,\n name: 'device-unknown' as const\n};\n\nexport const materialDevicesIcon = {\n data: ``,\n name: 'devices' as const\n};\n\nexport const materialDevicesFoldIcon = {\n data: ``,\n name: 'devices-fold' as const\n};\n\nexport const materialDevicesOtherIcon = {\n data: ``,\n name: 'devices-other' as const\n};\n\nexport const materialDialerSipIcon = {\n data: ``,\n name: 'dialer-sip' as const\n};\n\nexport const materialDialpadIcon = {\n data: ``,\n name: 'dialpad' as const\n};\n\nexport const materialDiamondIcon = {\n data: ``,\n name: 'diamond' as const\n};\n\nexport const materialDifferenceIcon = {\n data: ``,\n name: 'difference' as const\n};\n\nexport const materialDiningIcon = {\n data: ``,\n name: 'dining' as const\n};\n\nexport const materialDinnerDiningIcon = {\n data: ``,\n name: 'dinner-dining' as const\n};\n\nexport const materialDirectionsIcon = {\n data: ``,\n name: 'directions' as const\n};\n\nexport const materialDirectionsBikeIcon = {\n data: ``,\n name: 'directions-bike' as const\n};\n\nexport const materialDirectionsBoatIcon = {\n data: ``,\n name: 'directions-boat' as const\n};\n\nexport const materialDirectionsBoatFilledIcon = {\n data: ``,\n name: 'directions-boat-filled' as const\n};\n\nexport const materialDirectionsBusIcon = {\n data: ``,\n name: 'directions-bus' as const\n};\n\nexport const materialDirectionsBusFilledIcon = {\n data: ``,\n name: 'directions-bus-filled' as const\n};\n\nexport const materialDirectionsCarIcon = {\n data: ``,\n name: 'directions-car' as const\n};\n\nexport const materialDirectionsCarFilledIcon = {\n data: ``,\n name: 'directions-car-filled' as const\n};\n\nexport const materialDirectionsOffIcon = {\n data: ``,\n name: 'directions-off' as const\n};\n\nexport const materialDirectionsRailwayIcon = {\n data: ``,\n name: 'directions-railway' as const\n};\n\nexport const materialDirectionsRailwayFilledIcon = {\n data: ``,\n name: 'directions-railway-filled' as const\n};\n\nexport const materialDirectionsRunIcon = {\n data: ``,\n name: 'directions-run' as const\n};\n\nexport const materialDirectionsSubwayIcon = {\n data: ``,\n name: 'directions-subway' as const\n};\n\nexport const materialDirectionsSubwayFilledIcon = {\n data: ``,\n name: 'directions-subway-filled' as const\n};\n\nexport const materialDirectionsTransitIcon = {\n data: ``,\n name: 'directions-transit' as const\n};\n\nexport const materialDirectionsTransitFilledIcon = {\n data: ``,\n name: 'directions-transit-filled' as const\n};\n\nexport const materialDirectionsWalkIcon = {\n data: ``,\n name: 'directions-walk' as const\n};\n\nexport const materialDirtyLensIcon = {\n data: ``,\n name: 'dirty-lens' as const\n};\n\nexport const materialDisabledByDefaultIcon = {\n data: ``,\n name: 'disabled-by-default' as const\n};\n\nexport const materialDisabledVisibleIcon = {\n data: ``,\n name: 'disabled-visible' as const\n};\n\nexport const materialDiscFullIcon = {\n data: ``,\n name: 'disc-full' as const\n};\n\nexport const materialDiscountIcon = {\n data: ``,\n name: 'discount' as const\n};\n\nexport const materialDisplaySettingsIcon = {\n data: ``,\n name: 'display-settings' as const\n};\n\nexport const materialDiversity1Icon = {\n data: ``,\n name: 'diversity-1' as const\n};\n\nexport const materialDiversity2Icon = {\n data: ``,\n name: 'diversity-2' as const\n};\n\nexport const materialDiversity3Icon = {\n data: ``,\n name: 'diversity-3' as const\n};\n\nexport const materialDnsIcon = {\n data: ``,\n name: 'dns' as const\n};\n\nexport const materialDoDisturbIcon = {\n data: ``,\n name: 'do-disturb' as const\n};\n\nexport const materialDoDisturbAltIcon = {\n data: ``,\n name: 'do-disturb-alt' as const\n};\n\nexport const materialDoDisturbOffIcon = {\n data: ``,\n name: 'do-disturb-off' as const\n};\n\nexport const materialDoDisturbOnIcon = {\n data: ``,\n name: 'do-disturb-on' as const\n};\n\nexport const materialDoNotDisturbIcon = {\n data: ``,\n name: 'do-not-disturb' as const\n};\n\nexport const materialDoNotDisturbAltIcon = {\n data: ``,\n name: 'do-not-disturb-alt' as const\n};\n\nexport const materialDoNotDisturbOffIcon = {\n data: ``,\n name: 'do-not-disturb-off' as const\n};\n\nexport const materialDoNotDisturbOnIcon = {\n data: ``,\n name: 'do-not-disturb-on' as const\n};\n\nexport const materialDoNotDisturbOnTotalSilenceIcon = {\n data: ``,\n name: 'do-not-disturb-on-total-silence' as const\n};\n\nexport const materialDoNotStepIcon = {\n data: ``,\n name: 'do-not-step' as const\n};\n\nexport const materialDoNotTouchIcon = {\n data: ``,\n name: 'do-not-touch' as const\n};\n\nexport const materialDockIcon = {\n data: ``,\n name: 'dock' as const\n};\n\nexport const materialDocumentScannerIcon = {\n data: ``,\n name: 'document-scanner' as const\n};\n\nexport const materialDomainIcon = {\n data: ``,\n name: 'domain' as const\n};\n\nexport const materialDomainAddIcon = {\n data: ``,\n name: 'domain-add' as const\n};\n\nexport const materialDomainDisabledIcon = {\n data: ``,\n name: 'domain-disabled' as const\n};\n\nexport const materialDomainVerificationIcon = {\n data: ``,\n name: 'domain-verification' as const\n};\n\nexport const materialDoneIcon = {\n data: ``,\n name: 'done' as const\n};\n\nexport const materialDoneAllIcon = {\n data: ``,\n name: 'done-all' as const\n};\n\nexport const materialDoneOutlineIcon = {\n data: ``,\n name: 'done-outline' as const\n};\n\nexport const materialDonutLargeIcon = {\n data: ``,\n name: 'donut-large' as const\n};\n\nexport const materialDonutSmallIcon = {\n data: ``,\n name: 'donut-small' as const\n};\n\nexport const materialDoorBackIcon = {\n data: ``,\n name: 'door-back' as const\n};\n\nexport const materialDoorFrontIcon = {\n data: ``,\n name: 'door-front' as const\n};\n\nexport const materialDoorSlidingIcon = {\n data: ``,\n name: 'door-sliding' as const\n};\n\nexport const materialDoorbellIcon = {\n data: ``,\n name: 'doorbell' as const\n};\n\nexport const materialDoubleArrowIcon = {\n data: ``,\n name: 'double-arrow' as const\n};\n\nexport const materialDownhillSkiingIcon = {\n data: ``,\n name: 'downhill-skiing' as const\n};\n\nexport const materialDownloadIcon = {\n data: ``,\n name: 'download' as const\n};\n\nexport const materialDownloadDoneIcon = {\n data: ``,\n name: 'download-done' as const\n};\n\nexport const materialDownloadForOfflineIcon = {\n data: ``,\n name: 'download-for-offline' as const\n};\n\nexport const materialDownloadingIcon = {\n data: ``,\n name: 'downloading' as const\n};\n\nexport const materialDraftsIcon = {\n data: ``,\n name: 'drafts' as const\n};\n\nexport const materialDragHandleIcon = {\n data: ``,\n name: 'drag-handle' as const\n};\n\nexport const materialDragIndicatorIcon = {\n data: ``,\n name: 'drag-indicator' as const\n};\n\nexport const materialDrawIcon = {\n data: ``,\n name: 'draw' as const\n};\n\nexport const materialDriveEtaIcon = {\n data: ``,\n name: 'drive-eta' as const\n};\n\nexport const materialDriveFileMoveIcon = {\n data: ``,\n name: 'drive-file-move' as const\n};\n\nexport const materialDriveFileMoveRtlIcon = {\n data: ``,\n name: 'drive-file-move-rtl' as const\n};\n\nexport const materialDriveFileRenameOutlineIcon = {\n data: ``,\n name: 'drive-file-rename-outline' as const\n};\n\nexport const materialDriveFolderUploadIcon = {\n data: ``,\n name: 'drive-folder-upload' as const\n};\n\nexport const materialDryIcon = {\n data: ``,\n name: 'dry' as const\n};\n\nexport const materialDryCleaningIcon = {\n data: ``,\n name: 'dry-cleaning' as const\n};\n\nexport const materialDuoIcon = {\n data: ``,\n name: 'duo' as const\n};\n\nexport const materialDvrIcon = {\n data: ``,\n name: 'dvr' as const\n};\n\nexport const materialDynamicFeedIcon = {\n data: ``,\n name: 'dynamic-feed' as const\n};\n\nexport const materialDynamicFormIcon = {\n data: ``,\n name: 'dynamic-form' as const\n};\n\nexport const materialEMobiledataIcon = {\n data: ``,\n name: 'e-mobiledata' as const\n};\n\nexport const materialEarbudsIcon = {\n data: ``,\n name: 'earbuds' as const\n};\n\nexport const materialEarbudsBatteryIcon = {\n data: ``,\n name: 'earbuds-battery' as const\n};\n\nexport const materialEastIcon = {\n data: ``,\n name: 'east' as const\n};\n\nexport const materialEdgesensorHighIcon = {\n data: ``,\n name: 'edgesensor-high' as const\n};\n\nexport const materialEdgesensorLowIcon = {\n data: ``,\n name: 'edgesensor-low' as const\n};\n\nexport const materialEditIcon = {\n data: ``,\n name: 'edit' as const\n};\n\nexport const materialEditAttributesIcon = {\n data: ``,\n name: 'edit-attributes' as const\n};\n\nexport const materialEditCalendarIcon = {\n data: ``,\n name: 'edit-calendar' as const\n};\n\nexport const materialEditLocationIcon = {\n data: ``,\n name: 'edit-location' as const\n};\n\nexport const materialEditLocationAltIcon = {\n data: ``,\n name: 'edit-location-alt' as const\n};\n\nexport const materialEditNoteIcon = {\n data: ``,\n name: 'edit-note' as const\n};\n\nexport const materialEditNotificationsIcon = {\n data: ``,\n name: 'edit-notifications' as const\n};\n\nexport const materialEditOffIcon = {\n data: ``,\n name: 'edit-off' as const\n};\n\nexport const materialEditRoadIcon = {\n data: ``,\n name: 'edit-road' as const\n};\n\nexport const materialEggIcon = {\n data: ``,\n name: 'egg' as const\n};\n\nexport const materialEggAltIcon = {\n data: ``,\n name: 'egg-alt' as const\n};\n\nexport const materialEjectIcon = {\n data: ``,\n name: 'eject' as const\n};\n\nexport const materialElderlyIcon = {\n data: ``,\n name: 'elderly' as const\n};\n\nexport const materialElderlyWomanIcon = {\n data: ``,\n name: 'elderly-woman' as const\n};\n\nexport const materialElectricBikeIcon = {\n data: ``,\n name: 'electric-bike' as const\n};\n\nexport const materialElectricBoltIcon = {\n data: ``,\n name: 'electric-bolt' as const\n};\n\nexport const materialElectricCarIcon = {\n data: ``,\n name: 'electric-car' as const\n};\n\nexport const materialElectricMeterIcon = {\n data: ``,\n name: 'electric-meter' as const\n};\n\nexport const materialElectricMopedIcon = {\n data: ``,\n name: 'electric-moped' as const\n};\n\nexport const materialElectricRickshawIcon = {\n data: ``,\n name: 'electric-rickshaw' as const\n};\n\nexport const materialElectricScooterIcon = {\n data: ``,\n name: 'electric-scooter' as const\n};\n\nexport const materialElectricalServicesIcon = {\n data: ``,\n name: 'electrical-services' as const\n};\n\nexport const materialElevatorIcon = {\n data: ``,\n name: 'elevator' as const\n};\n\nexport const materialEmailIcon = {\n data: ``,\n name: 'email' as const\n};\n\nexport const materialEmergencyIcon = {\n data: ``,\n name: 'emergency' as const\n};\n\nexport const materialEmergencyRecordingIcon = {\n data: ``,\n name: 'emergency-recording' as const\n};\n\nexport const materialEmergencyShareIcon = {\n data: ``,\n name: 'emergency-share' as const\n};\n\nexport const materialEmojiEmotionsIcon = {\n data: ``,\n name: 'emoji-emotions' as const\n};\n\nexport const materialEmojiEventsIcon = {\n data: ``,\n name: 'emoji-events' as const\n};\n\nexport const materialEmojiFoodBeverageIcon = {\n data: ``,\n name: 'emoji-food-beverage' as const\n};\n\nexport const materialEmojiNatureIcon = {\n data: ``,\n name: 'emoji-nature' as const\n};\n\nexport const materialEmojiObjectsIcon = {\n data: ``,\n name: 'emoji-objects' as const\n};\n\nexport const materialEmojiPeopleIcon = {\n data: ``,\n name: 'emoji-people' as const\n};\n\nexport const materialEmojiSymbolsIcon = {\n data: ``,\n name: 'emoji-symbols' as const\n};\n\nexport const materialEmojiTransportationIcon = {\n data: ``,\n name: 'emoji-transportation' as const\n};\n\nexport const materialEnergySavingsLeafIcon = {\n data: ``,\n name: 'energy-savings-leaf' as const\n};\n\nexport const materialEngineeringIcon = {\n data: ``,\n name: 'engineering' as const\n};\n\nexport const materialEnhancedEncryptionIcon = {\n data: ``,\n name: 'enhanced-encryption' as const\n};\n\nexport const materialEqualizerIcon = {\n data: ``,\n name: 'equalizer' as const\n};\n\nexport const materialErrorIcon = {\n data: ``,\n name: 'error' as const\n};\n\nexport const materialErrorOutlineIcon = {\n data: ``,\n name: 'error-outline' as const\n};\n\nexport const materialEscalatorIcon = {\n data: ``,\n name: 'escalator' as const\n};\n\nexport const materialEscalatorWarningIcon = {\n data: ``,\n name: 'escalator-warning' as const\n};\n\nexport const materialEuroIcon = {\n data: ``,\n name: 'euro' as const\n};\n\nexport const materialEuroSymbolIcon = {\n data: ``,\n name: 'euro-symbol' as const\n};\n\nexport const materialEvStationIcon = {\n data: ``,\n name: 'ev-station' as const\n};\n\nexport const materialEventIcon = {\n data: ``,\n name: 'event' as const\n};\n\nexport const materialEventAvailableIcon = {\n data: ``,\n name: 'event-available' as const\n};\n\nexport const materialEventBusyIcon = {\n data: ``,\n name: 'event-busy' as const\n};\n\nexport const materialEventNoteIcon = {\n data: ``,\n name: 'event-note' as const\n};\n\nexport const materialEventRepeatIcon = {\n data: ``,\n name: 'event-repeat' as const\n};\n\nexport const materialEventSeatIcon = {\n data: ``,\n name: 'event-seat' as const\n};\n\nexport const materialExitToAppIcon = {\n data: ``,\n name: 'exit-to-app' as const\n};\n\nexport const materialExpandIcon = {\n data: ``,\n name: 'expand' as const\n};\n\nexport const materialExpandCircleDownIcon = {\n data: ``,\n name: 'expand-circle-down' as const\n};\n\nexport const materialExpandLessIcon = {\n data: ``,\n name: 'expand-less' as const\n};\n\nexport const materialExpandMoreIcon = {\n data: ``,\n name: 'expand-more' as const\n};\n\nexport const materialExplicitIcon = {\n data: ``,\n name: 'explicit' as const\n};\n\nexport const materialExploreIcon = {\n data: ``,\n name: 'explore' as const\n};\n\nexport const materialExploreOffIcon = {\n data: ``,\n name: 'explore-off' as const\n};\n\nexport const materialExposureIcon = {\n data: ``,\n name: 'exposure' as const\n};\n\nexport const materialExposureNeg1Icon = {\n data: ``,\n name: 'exposure-neg-1' as const\n};\n\nexport const materialExposureNeg2Icon = {\n data: ``,\n name: 'exposure-neg-2' as const\n};\n\nexport const materialExposurePlus1Icon = {\n data: ``,\n name: 'exposure-plus-1' as const\n};\n\nexport const materialExposurePlus2Icon = {\n data: ``,\n name: 'exposure-plus-2' as const\n};\n\nexport const materialExposureZeroIcon = {\n data: ``,\n name: 'exposure-zero' as const\n};\n\nexport const materialExtensionIcon = {\n data: ``,\n name: 'extension' as const\n};\n\nexport const materialExtensionOffIcon = {\n data: ``,\n name: 'extension-off' as const\n};\n\nexport const materialFaceIcon = {\n data: ``,\n name: 'face' as const\n};\n\nexport const materialFace2Icon = {\n data: ``,\n name: 'face-2' as const\n};\n\nexport const materialFace3Icon = {\n data: ``,\n name: 'face-3' as const\n};\n\nexport const materialFace4Icon = {\n data: ``,\n name: 'face-4' as const\n};\n\nexport const materialFace5Icon = {\n data: ``,\n name: 'face-5' as const\n};\n\nexport const materialFace6Icon = {\n data: ``,\n name: 'face-6' as const\n};\n\nexport const materialFaceRetouchingNaturalIcon = {\n data: ``,\n name: 'face-retouching-natural' as const\n};\n\nexport const materialFaceRetouchingOffIcon = {\n data: ``,\n name: 'face-retouching-off' as const\n};\n\nexport const materialFactCheckIcon = {\n data: ``,\n name: 'fact-check' as const\n};\n\nexport const materialFactoryIcon = {\n data: ``,\n name: 'factory' as const\n};\n\nexport const materialFamilyRestroomIcon = {\n data: ``,\n name: 'family-restroom' as const\n};\n\nexport const materialFastForwardIcon = {\n data: ``,\n name: 'fast-forward' as const\n};\n\nexport const materialFastRewindIcon = {\n data: ``,\n name: 'fast-rewind' as const\n};\n\nexport const materialFastfoodIcon = {\n data: ``,\n name: 'fastfood' as const\n};\n\nexport const materialFavoriteIcon = {\n data: ``,\n name: 'favorite' as const\n};\n\nexport const materialFavoriteBorderIcon = {\n data: ``,\n name: 'favorite-border' as const\n};\n\nexport const materialFaxIcon = {\n data: ``,\n name: 'fax' as const\n};\n\nexport const materialFeaturedPlayListIcon = {\n data: ``,\n name: 'featured-play-list' as const\n};\n\nexport const materialFeaturedVideoIcon = {\n data: ``,\n name: 'featured-video' as const\n};\n\nexport const materialFeedIcon = {\n data: ``,\n name: 'feed' as const\n};\n\nexport const materialFeedbackIcon = {\n data: ``,\n name: 'feedback' as const\n};\n\nexport const materialFemaleIcon = {\n data: ``,\n name: 'female' as const\n};\n\nexport const materialFenceIcon = {\n data: ``,\n name: 'fence' as const\n};\n\nexport const materialFestivalIcon = {\n data: ``,\n name: 'festival' as const\n};\n\nexport const materialFiberDvrIcon = {\n data: ``,\n name: 'fiber-dvr' as const\n};\n\nexport const materialFiberManualRecordIcon = {\n data: ``,\n name: 'fiber-manual-record' as const\n};\n\nexport const materialFiberNewIcon = {\n data: ``,\n name: 'fiber-new' as const\n};\n\nexport const materialFiberPinIcon = {\n data: ``,\n name: 'fiber-pin' as const\n};\n\nexport const materialFiberSmartRecordIcon = {\n data: ``,\n name: 'fiber-smart-record' as const\n};\n\nexport const materialFileCopyIcon = {\n data: ``,\n name: 'file-copy' as const\n};\n\nexport const materialFileDownloadIcon = {\n data: ``,\n name: 'file-download' as const\n};\n\nexport const materialFileDownloadDoneIcon = {\n data: ``,\n name: 'file-download-done' as const\n};\n\nexport const materialFileDownloadOffIcon = {\n data: ``,\n name: 'file-download-off' as const\n};\n\nexport const materialFileOpenIcon = {\n data: ``,\n name: 'file-open' as const\n};\n\nexport const materialFilePresentIcon = {\n data: ``,\n name: 'file-present' as const\n};\n\nexport const materialFileUploadIcon = {\n data: ``,\n name: 'file-upload' as const\n};\n\nexport const materialFilterIcon = {\n data: ``,\n name: 'filter' as const\n};\n\nexport const materialFilter1Icon = {\n data: ``,\n name: 'filter-1' as const\n};\n\nexport const materialFilter2Icon = {\n data: ``,\n name: 'filter-2' as const\n};\n\nexport const materialFilter3Icon = {\n data: ``,\n name: 'filter-3' as const\n};\n\nexport const materialFilter4Icon = {\n data: ``,\n name: 'filter-4' as const\n};\n\nexport const materialFilter5Icon = {\n data: ``,\n name: 'filter-5' as const\n};\n\nexport const materialFilter6Icon = {\n data: ``,\n name: 'filter-6' as const\n};\n\nexport const materialFilter7Icon = {\n data: ``,\n name: 'filter-7' as const\n};\n\nexport const materialFilter8Icon = {\n data: ``,\n name: 'filter-8' as const\n};\n\nexport const materialFilter9Icon = {\n data: ``,\n name: 'filter-9' as const\n};\n\nexport const materialFilter9PlusIcon = {\n data: ``,\n name: 'filter-9-plus' as const\n};\n\nexport const materialFilterAltIcon = {\n data: ``,\n name: 'filter-alt' as const\n};\n\nexport const materialFilterAltOffIcon = {\n data: ``,\n name: 'filter-alt-off' as const\n};\n\nexport const materialFilterBAndWIcon = {\n data: ``,\n name: 'filter-b-and-w' as const\n};\n\nexport const materialFilterCenterFocusIcon = {\n data: ``,\n name: 'filter-center-focus' as const\n};\n\nexport const materialFilterDramaIcon = {\n data: ``,\n name: 'filter-drama' as const\n};\n\nexport const materialFilterFramesIcon = {\n data: ``,\n name: 'filter-frames' as const\n};\n\nexport const materialFilterHdrIcon = {\n data: ``,\n name: 'filter-hdr' as const\n};\n\nexport const materialFilterListIcon = {\n data: ``,\n name: 'filter-list' as const\n};\n\nexport const materialFilterListOffIcon = {\n data: ``,\n name: 'filter-list-off' as const\n};\n\nexport const materialFilterNoneIcon = {\n data: ``,\n name: 'filter-none' as const\n};\n\nexport const materialFilterTiltShiftIcon = {\n data: ``,\n name: 'filter-tilt-shift' as const\n};\n\nexport const materialFilterVintageIcon = {\n data: ``,\n name: 'filter-vintage' as const\n};\n\nexport const materialFindInPageIcon = {\n data: ``,\n name: 'find-in-page' as const\n};\n\nexport const materialFindReplaceIcon = {\n data: ``,\n name: 'find-replace' as const\n};\n\nexport const materialFingerprintIcon = {\n data: ``,\n name: 'fingerprint' as const\n};\n\nexport const materialFireExtinguisherIcon = {\n data: ``,\n name: 'fire-extinguisher' as const\n};\n\nexport const materialFireHydrantAltIcon = {\n data: ``,\n name: 'fire-hydrant-alt' as const\n};\n\nexport const materialFireTruckIcon = {\n data: ``,\n name: 'fire-truck' as const\n};\n\nexport const materialFireplaceIcon = {\n data: ``,\n name: 'fireplace' as const\n};\n\nexport const materialFirstPageIcon = {\n data: ``,\n name: 'first-page' as const\n};\n\nexport const materialFitScreenIcon = {\n data: ``,\n name: 'fit-screen' as const\n};\n\nexport const materialFitbitIcon = {\n data: ``,\n name: 'fitbit' as const\n};\n\nexport const materialFitnessCenterIcon = {\n data: ``,\n name: 'fitness-center' as const\n};\n\nexport const materialFlagIcon = {\n data: ``,\n name: 'flag' as const\n};\n\nexport const materialFlagCircleIcon = {\n data: ``,\n name: 'flag-circle' as const\n};\n\nexport const materialFlakyIcon = {\n data: ``,\n name: 'flaky' as const\n};\n\nexport const materialFlareIcon = {\n data: ``,\n name: 'flare' as const\n};\n\nexport const materialFlashAutoIcon = {\n data: ``,\n name: 'flash-auto' as const\n};\n\nexport const materialFlashOffIcon = {\n data: ``,\n name: 'flash-off' as const\n};\n\nexport const materialFlashOnIcon = {\n data: ``,\n name: 'flash-on' as const\n};\n\nexport const materialFlashlightOffIcon = {\n data: ``,\n name: 'flashlight-off' as const\n};\n\nexport const materialFlashlightOnIcon = {\n data: ``,\n name: 'flashlight-on' as const\n};\n\nexport const materialFlatwareIcon = {\n data: ``,\n name: 'flatware' as const\n};\n\nexport const materialFlightIcon = {\n data: ``,\n name: 'flight' as const\n};\n\nexport const materialFlightClassIcon = {\n data: ``,\n name: 'flight-class' as const\n};\n\nexport const materialFlightLandIcon = {\n data: ``,\n name: 'flight-land' as const\n};\n\nexport const materialFlightTakeoffIcon = {\n data: ``,\n name: 'flight-takeoff' as const\n};\n\nexport const materialFlipIcon = {\n data: ``,\n name: 'flip' as const\n};\n\nexport const materialFlipCameraAndroidIcon = {\n data: ``,\n name: 'flip-camera-android' as const\n};\n\nexport const materialFlipCameraIosIcon = {\n data: ``,\n name: 'flip-camera-ios' as const\n};\n\nexport const materialFlipToBackIcon = {\n data: ``,\n name: 'flip-to-back' as const\n};\n\nexport const materialFlipToFrontIcon = {\n data: ``,\n name: 'flip-to-front' as const\n};\n\nexport const materialFloodIcon = {\n data: ``,\n name: 'flood' as const\n};\n\nexport const materialFluorescentIcon = {\n data: ``,\n name: 'fluorescent' as const\n};\n\nexport const materialFlutterDashIcon = {\n data: ``,\n name: 'flutter-dash' as const\n};\n\nexport const materialFmdBadIcon = {\n data: ``,\n name: 'fmd-bad' as const\n};\n\nexport const materialFmdGoodIcon = {\n data: ``,\n name: 'fmd-good' as const\n};\n\nexport const materialFolderIcon = {\n data: ``,\n name: 'folder' as const\n};\n\nexport const materialFolderCopyIcon = {\n data: ``,\n name: 'folder-copy' as const\n};\n\nexport const materialFolderDeleteIcon = {\n data: ``,\n name: 'folder-delete' as const\n};\n\nexport const materialFolderOffIcon = {\n data: ``,\n name: 'folder-off' as const\n};\n\nexport const materialFolderOpenIcon = {\n data: ``,\n name: 'folder-open' as const\n};\n\nexport const materialFolderSharedIcon = {\n data: ``,\n name: 'folder-shared' as const\n};\n\nexport const materialFolderSpecialIcon = {\n data: ``,\n name: 'folder-special' as const\n};\n\nexport const materialFolderZipIcon = {\n data: ``,\n name: 'folder-zip' as const\n};\n\nexport const materialFollowTheSignsIcon = {\n data: ``,\n name: 'follow-the-signs' as const\n};\n\nexport const materialFontDownloadIcon = {\n data: ``,\n name: 'font-download' as const\n};\n\nexport const materialFontDownloadOffIcon = {\n data: ``,\n name: 'font-download-off' as const\n};\n\nexport const materialFoodBankIcon = {\n data: ``,\n name: 'food-bank' as const\n};\n\nexport const materialForestIcon = {\n data: ``,\n name: 'forest' as const\n};\n\nexport const materialForkLeftIcon = {\n data: ``,\n name: 'fork-left' as const\n};\n\nexport const materialForkRightIcon = {\n data: ``,\n name: 'fork-right' as const\n};\n\nexport const materialFormatAlignCenterIcon = {\n data: ``,\n name: 'format-align-center' as const\n};\n\nexport const materialFormatAlignJustifyIcon = {\n data: ``,\n name: 'format-align-justify' as const\n};\n\nexport const materialFormatAlignLeftIcon = {\n data: ``,\n name: 'format-align-left' as const\n};\n\nexport const materialFormatAlignRightIcon = {\n data: ``,\n name: 'format-align-right' as const\n};\n\nexport const materialFormatBoldIcon = {\n data: ``,\n name: 'format-bold' as const\n};\n\nexport const materialFormatClearIcon = {\n data: ``,\n name: 'format-clear' as const\n};\n\nexport const materialFormatColorFillIcon = {\n data: ``,\n name: 'format-color-fill' as const\n};\n\nexport const materialFormatColorResetIcon = {\n data: ``,\n name: 'format-color-reset' as const\n};\n\nexport const materialFormatColorTextIcon = {\n data: ``,\n name: 'format-color-text' as const\n};\n\nexport const materialFormatIndentDecreaseIcon = {\n data: ``,\n name: 'format-indent-decrease' as const\n};\n\nexport const materialFormatIndentIncreaseIcon = {\n data: ``,\n name: 'format-indent-increase' as const\n};\n\nexport const materialFormatItalicIcon = {\n data: ``,\n name: 'format-italic' as const\n};\n\nexport const materialFormatLineSpacingIcon = {\n data: ``,\n name: 'format-line-spacing' as const\n};\n\nexport const materialFormatListBulletedIcon = {\n data: ``,\n name: 'format-list-bulleted' as const\n};\n\nexport const materialFormatListNumberedIcon = {\n data: ``,\n name: 'format-list-numbered' as const\n};\n\nexport const materialFormatListNumberedRtlIcon = {\n data: ``,\n name: 'format-list-numbered-rtl' as const\n};\n\nexport const materialFormatOverlineIcon = {\n data: ``,\n name: 'format-overline' as const\n};\n\nexport const materialFormatPaintIcon = {\n data: ``,\n name: 'format-paint' as const\n};\n\nexport const materialFormatQuoteIcon = {\n data: ``,\n name: 'format-quote' as const\n};\n\nexport const materialFormatShapesIcon = {\n data: ``,\n name: 'format-shapes' as const\n};\n\nexport const materialFormatSizeIcon = {\n data: ``,\n name: 'format-size' as const\n};\n\nexport const materialFormatStrikethroughIcon = {\n data: ``,\n name: 'format-strikethrough' as const\n};\n\nexport const materialFormatTextdirectionLToRIcon = {\n data: ``,\n name: 'format-textdirection-l-to-r' as const\n};\n\nexport const materialFormatTextdirectionRToLIcon = {\n data: ``,\n name: 'format-textdirection-r-to-l' as const\n};\n\nexport const materialFormatUnderlinedIcon = {\n data: ``,\n name: 'format-underlined' as const\n};\n\nexport const materialFortIcon = {\n data: ``,\n name: 'fort' as const\n};\n\nexport const materialForumIcon = {\n data: ``,\n name: 'forum' as const\n};\n\nexport const materialForwardIcon = {\n data: ``,\n name: 'forward' as const\n};\n\nexport const materialForward10Icon = {\n data: ``,\n name: 'forward-10' as const\n};\n\nexport const materialForward30Icon = {\n data: ``,\n name: 'forward-30' as const\n};\n\nexport const materialForward5Icon = {\n data: ``,\n name: 'forward-5' as const\n};\n\nexport const materialForwardToInboxIcon = {\n data: ``,\n name: 'forward-to-inbox' as const\n};\n\nexport const materialFoundationIcon = {\n data: ``,\n name: 'foundation' as const\n};\n\nexport const materialFreeBreakfastIcon = {\n data: ``,\n name: 'free-breakfast' as const\n};\n\nexport const materialFreeCancellationIcon = {\n data: ``,\n name: 'free-cancellation' as const\n};\n\nexport const materialFrontHandIcon = {\n data: ``,\n name: 'front-hand' as const\n};\n\nexport const materialFullscreenIcon = {\n data: ``,\n name: 'fullscreen' as const\n};\n\nexport const materialFullscreenExitIcon = {\n data: ``,\n name: 'fullscreen-exit' as const\n};\n\nexport const materialFunctionsIcon = {\n data: ``,\n name: 'functions' as const\n};\n\nexport const materialGMobiledataIcon = {\n data: ``,\n name: 'g-mobiledata' as const\n};\n\nexport const materialGTranslateIcon = {\n data: ``,\n name: 'g-translate' as const\n};\n\nexport const materialGamepadIcon = {\n data: ``,\n name: 'gamepad' as const\n};\n\nexport const materialGamesIcon = {\n data: ``,\n name: 'games' as const\n};\n\nexport const materialGarageIcon = {\n data: ``,\n name: 'garage' as const\n};\n\nexport const materialGasMeterIcon = {\n data: ``,\n name: 'gas-meter' as const\n};\n\nexport const materialGavelIcon = {\n data: ``,\n name: 'gavel' as const\n};\n\nexport const materialGeneratingTokensIcon = {\n data: ``,\n name: 'generating-tokens' as const\n};\n\nexport const materialGestureIcon = {\n data: ``,\n name: 'gesture' as const\n};\n\nexport const materialGetAppIcon = {\n data: ``,\n name: 'get-app' as const\n};\n\nexport const materialGifIcon = {\n data: ``,\n name: 'gif' as const\n};\n\nexport const materialGifBoxIcon = {\n data: ``,\n name: 'gif-box' as const\n};\n\nexport const materialGirlIcon = {\n data: ``,\n name: 'girl' as const\n};\n\nexport const materialGiteIcon = {\n data: ``,\n name: 'gite' as const\n};\n\nexport const materialGolfCourseIcon = {\n data: ``,\n name: 'golf-course' as const\n};\n\nexport const materialGppBadIcon = {\n data: ``,\n name: 'gpp-bad' as const\n};\n\nexport const materialGppGoodIcon = {\n data: ``,\n name: 'gpp-good' as const\n};\n\nexport const materialGppMaybeIcon = {\n data: ``,\n name: 'gpp-maybe' as const\n};\n\nexport const materialGpsFixedIcon = {\n data: ``,\n name: 'gps-fixed' as const\n};\n\nexport const materialGpsNotFixedIcon = {\n data: ``,\n name: 'gps-not-fixed' as const\n};\n\nexport const materialGpsOffIcon = {\n data: ``,\n name: 'gps-off' as const\n};\n\nexport const materialGradeIcon = {\n data: ``,\n name: 'grade' as const\n};\n\nexport const materialGradientIcon = {\n data: ``,\n name: 'gradient' as const\n};\n\nexport const materialGradingIcon = {\n data: ``,\n name: 'grading' as const\n};\n\nexport const materialGrainIcon = {\n data: ``,\n name: 'grain' as const\n};\n\nexport const materialGraphicEqIcon = {\n data: ``,\n name: 'graphic-eq' as const\n};\n\nexport const materialGrassIcon = {\n data: ``,\n name: 'grass' as const\n};\n\nexport const materialGrid3X3Icon = {\n data: ``,\n name: 'grid-3-x-3' as const\n};\n\nexport const materialGrid4X4Icon = {\n data: ``,\n name: 'grid-4-x-4' as const\n};\n\nexport const materialGridGoldenratioIcon = {\n data: ``,\n name: 'grid-goldenratio' as const\n};\n\nexport const materialGridOffIcon = {\n data: ``,\n name: 'grid-off' as const\n};\n\nexport const materialGridOnIcon = {\n data: ``,\n name: 'grid-on' as const\n};\n\nexport const materialGridViewIcon = {\n data: ``,\n name: 'grid-view' as const\n};\n\nexport const materialGroupIcon = {\n data: ``,\n name: 'group' as const\n};\n\nexport const materialGroupAddIcon = {\n data: ``,\n name: 'group-add' as const\n};\n\nexport const materialGroupOffIcon = {\n data: ``,\n name: 'group-off' as const\n};\n\nexport const materialGroupRemoveIcon = {\n data: ``,\n name: 'group-remove' as const\n};\n\nexport const materialGroupWorkIcon = {\n data: ``,\n name: 'group-work' as const\n};\n\nexport const materialGroupsIcon = {\n data: ``,\n name: 'groups' as const\n};\n\nexport const materialGroups2Icon = {\n data: ``,\n name: 'groups-2' as const\n};\n\nexport const materialGroups3Icon = {\n data: ``,\n name: 'groups-3' as const\n};\n\nexport const materialHMobiledataIcon = {\n data: ``,\n name: 'h-mobiledata' as const\n};\n\nexport const materialHPlusMobiledataIcon = {\n data: ``,\n name: 'h-plus-mobiledata' as const\n};\n\nexport const materialHailIcon = {\n data: ``,\n name: 'hail' as const\n};\n\nexport const materialHandshakeIcon = {\n data: ``,\n name: 'handshake' as const\n};\n\nexport const materialHandymanIcon = {\n data: ``,\n name: 'handyman' as const\n};\n\nexport const materialHardwareIcon = {\n data: ``,\n name: 'hardware' as const\n};\n\nexport const materialHdIcon = {\n data: ``,\n name: 'hd' as const\n};\n\nexport const materialHdrAutoIcon = {\n data: ``,\n name: 'hdr-auto' as const\n};\n\nexport const materialHdrAutoSelectIcon = {\n data: ``,\n name: 'hdr-auto-select' as const\n};\n\nexport const materialHdrEnhancedSelectIcon = {\n data: ``,\n name: 'hdr-enhanced-select' as const\n};\n\nexport const materialHdrOffIcon = {\n data: ``,\n name: 'hdr-off' as const\n};\n\nexport const materialHdrOffSelectIcon = {\n data: ``,\n name: 'hdr-off-select' as const\n};\n\nexport const materialHdrOnIcon = {\n data: ``,\n name: 'hdr-on' as const\n};\n\nexport const materialHdrOnSelectIcon = {\n data: ``,\n name: 'hdr-on-select' as const\n};\n\nexport const materialHdrPlusIcon = {\n data: ``,\n name: 'hdr-plus' as const\n};\n\nexport const materialHdrStrongIcon = {\n data: ``,\n name: 'hdr-strong' as const\n};\n\nexport const materialHdrWeakIcon = {\n data: ``,\n name: 'hdr-weak' as const\n};\n\nexport const materialHeadphonesIcon = {\n data: ``,\n name: 'headphones' as const\n};\n\nexport const materialHeadphonesBatteryIcon = {\n data: ``,\n name: 'headphones-battery' as const\n};\n\nexport const materialHeadsetIcon = {\n data: ``,\n name: 'headset' as const\n};\n\nexport const materialHeadsetMicIcon = {\n data: ``,\n name: 'headset-mic' as const\n};\n\nexport const materialHeadsetOffIcon = {\n data: ``,\n name: 'headset-off' as const\n};\n\nexport const materialHealingIcon = {\n data: ``,\n name: 'healing' as const\n};\n\nexport const materialHealthAndSafetyIcon = {\n data: ``,\n name: 'health-and-safety' as const\n};\n\nexport const materialHearingIcon = {\n data: ``,\n name: 'hearing' as const\n};\n\nexport const materialHearingDisabledIcon = {\n data: ``,\n name: 'hearing-disabled' as const\n};\n\nexport const materialHeartBrokenIcon = {\n data: ``,\n name: 'heart-broken' as const\n};\n\nexport const materialHeatPumpIcon = {\n data: ``,\n name: 'heat-pump' as const\n};\n\nexport const materialHeightIcon = {\n data: ``,\n name: 'height' as const\n};\n\nexport const materialHelpIcon = {\n data: ``,\n name: 'help' as const\n};\n\nexport const materialHelpCenterIcon = {\n data: ``,\n name: 'help-center' as const\n};\n\nexport const materialHelpOutlineIcon = {\n data: ``,\n name: 'help-outline' as const\n};\n\nexport const materialHevcIcon = {\n data: ``,\n name: 'hevc' as const\n};\n\nexport const materialHexagonIcon = {\n data: ``,\n name: 'hexagon' as const\n};\n\nexport const materialHideImageIcon = {\n data: ``,\n name: 'hide-image' as const\n};\n\nexport const materialHideSourceIcon = {\n data: ``,\n name: 'hide-source' as const\n};\n\nexport const materialHighQualityIcon = {\n data: ``,\n name: 'high-quality' as const\n};\n\nexport const materialHighlightIcon = {\n data: ``,\n name: 'highlight' as const\n};\n\nexport const materialHighlightAltIcon = {\n data: ``,\n name: 'highlight-alt' as const\n};\n\nexport const materialHighlightOffIcon = {\n data: ``,\n name: 'highlight-off' as const\n};\n\nexport const materialHikingIcon = {\n data: ``,\n name: 'hiking' as const\n};\n\nexport const materialHistoryIcon = {\n data: ``,\n name: 'history' as const\n};\n\nexport const materialHistoryEduIcon = {\n data: ``,\n name: 'history-edu' as const\n};\n\nexport const materialHistoryToggleOffIcon = {\n data: ``,\n name: 'history-toggle-off' as const\n};\n\nexport const materialHiveIcon = {\n data: ``,\n name: 'hive' as const\n};\n\nexport const materialHlsIcon = {\n data: ``,\n name: 'hls' as const\n};\n\nexport const materialHlsOffIcon = {\n data: ``,\n name: 'hls-off' as const\n};\n\nexport const materialHolidayVillageIcon = {\n data: ``,\n name: 'holiday-village' as const\n};\n\nexport const materialHomeIcon = {\n data: ``,\n name: 'home' as const\n};\n\nexport const materialHomeMaxIcon = {\n data: ``,\n name: 'home-max' as const\n};\n\nexport const materialHomeMiniIcon = {\n data: ``,\n name: 'home-mini' as const\n};\n\nexport const materialHomeRepairServiceIcon = {\n data: ``,\n name: 'home-repair-service' as const\n};\n\nexport const materialHomeWorkIcon = {\n data: ``,\n name: 'home-work' as const\n};\n\nexport const materialHorizontalDistributeIcon = {\n data: ``,\n name: 'horizontal-distribute' as const\n};\n\nexport const materialHorizontalRuleIcon = {\n data: ``,\n name: 'horizontal-rule' as const\n};\n\nexport const materialHorizontalSplitIcon = {\n data: ``,\n name: 'horizontal-split' as const\n};\n\nexport const materialHotTubIcon = {\n data: ``,\n name: 'hot-tub' as const\n};\n\nexport const materialHotelIcon = {\n data: ``,\n name: 'hotel' as const\n};\n\nexport const materialHotelClassIcon = {\n data: ``,\n name: 'hotel-class' as const\n};\n\nexport const materialHourglassBottomIcon = {\n data: ``,\n name: 'hourglass-bottom' as const\n};\n\nexport const materialHourglassDisabledIcon = {\n data: ``,\n name: 'hourglass-disabled' as const\n};\n\nexport const materialHourglassEmptyIcon = {\n data: ``,\n name: 'hourglass-empty' as const\n};\n\nexport const materialHourglassFullIcon = {\n data: ``,\n name: 'hourglass-full' as const\n};\n\nexport const materialHourglassTopIcon = {\n data: ``,\n name: 'hourglass-top' as const\n};\n\nexport const materialHouseIcon = {\n data: ``,\n name: 'house' as const\n};\n\nexport const materialHouseSidingIcon = {\n data: ``,\n name: 'house-siding' as const\n};\n\nexport const materialHouseboatIcon = {\n data: ``,\n name: 'houseboat' as const\n};\n\nexport const materialHowToRegIcon = {\n data: ``,\n name: 'how-to-reg' as const\n};\n\nexport const materialHowToVoteIcon = {\n data: ``,\n name: 'how-to-vote' as const\n};\n\nexport const materialHtmlIcon = {\n data: ``,\n name: 'html' as const\n};\n\nexport const materialHttpIcon = {\n data: ``,\n name: 'http' as const\n};\n\nexport const materialHttpsIcon = {\n data: ``,\n name: 'https' as const\n};\n\nexport const materialHubIcon = {\n data: ``,\n name: 'hub' as const\n};\n\nexport const materialHvacIcon = {\n data: ``,\n name: 'hvac' as const\n};\n\nexport const materialIceSkatingIcon = {\n data: ``,\n name: 'ice-skating' as const\n};\n\nexport const materialIcecreamIcon = {\n data: ``,\n name: 'icecream' as const\n};\n\nexport const materialImageIcon = {\n data: ``,\n name: 'image' as const\n};\n\nexport const materialImageAspectRatioIcon = {\n data: ``,\n name: 'image-aspect-ratio' as const\n};\n\nexport const materialImageNotSupportedIcon = {\n data: ``,\n name: 'image-not-supported' as const\n};\n\nexport const materialImageSearchIcon = {\n data: ``,\n name: 'image-search' as const\n};\n\nexport const materialImagesearchRollerIcon = {\n data: ``,\n name: 'imagesearch-roller' as const\n};\n\nexport const materialImportContactsIcon = {\n data: ``,\n name: 'import-contacts' as const\n};\n\nexport const materialImportExportIcon = {\n data: ``,\n name: 'import-export' as const\n};\n\nexport const materialImportantDevicesIcon = {\n data: ``,\n name: 'important-devices' as const\n};\n\nexport const materialInboxIcon = {\n data: ``,\n name: 'inbox' as const\n};\n\nexport const materialIncompleteCircleIcon = {\n data: ``,\n name: 'incomplete-circle' as const\n};\n\nexport const materialIndeterminateCheckBoxIcon = {\n data: ``,\n name: 'indeterminate-check-box' as const\n};\n\nexport const materialInfoIcon = {\n data: ``,\n name: 'info' as const\n};\n\nexport const materialInputIcon = {\n data: ``,\n name: 'input' as const\n};\n\nexport const materialInsertChartIcon = {\n data: ``,\n name: 'insert-chart' as const\n};\n\nexport const materialInsertChartOutlinedIcon = {\n data: ``,\n name: 'insert-chart-outlined' as const\n};\n\nexport const materialInsertCommentIcon = {\n data: ``,\n name: 'insert-comment' as const\n};\n\nexport const materialInsertDriveFileIcon = {\n data: ``,\n name: 'insert-drive-file' as const\n};\n\nexport const materialInsertEmoticonIcon = {\n data: ``,\n name: 'insert-emoticon' as const\n};\n\nexport const materialInsertInvitationIcon = {\n data: ``,\n name: 'insert-invitation' as const\n};\n\nexport const materialInsertLinkIcon = {\n data: ``,\n name: 'insert-link' as const\n};\n\nexport const materialInsertPageBreakIcon = {\n data: ``,\n name: 'insert-page-break' as const\n};\n\nexport const materialInsertPhotoIcon = {\n data: ``,\n name: 'insert-photo' as const\n};\n\nexport const materialInsightsIcon = {\n data: ``,\n name: 'insights' as const\n};\n\nexport const materialInstallDesktopIcon = {\n data: ``,\n name: 'install-desktop' as const\n};\n\nexport const materialInstallMobileIcon = {\n data: ``,\n name: 'install-mobile' as const\n};\n\nexport const materialIntegrationInstructionsIcon = {\n data: ``,\n name: 'integration-instructions' as const\n};\n\nexport const materialInterestsIcon = {\n data: ``,\n name: 'interests' as const\n};\n\nexport const materialInterpreterModeIcon = {\n data: ``,\n name: 'interpreter-mode' as const\n};\n\nexport const materialInventoryIcon = {\n data: ``,\n name: 'inventory' as const\n};\n\nexport const materialInventory2Icon = {\n data: ``,\n name: 'inventory-2' as const\n};\n\nexport const materialInvertColorsIcon = {\n data: ``,\n name: 'invert-colors' as const\n};\n\nexport const materialInvertColorsOffIcon = {\n data: ``,\n name: 'invert-colors-off' as const\n};\n\nexport const materialIosShareIcon = {\n data: ``,\n name: 'ios-share' as const\n};\n\nexport const materialIronIcon = {\n data: ``,\n name: 'iron' as const\n};\n\nexport const materialIsoIcon = {\n data: ``,\n name: 'iso' as const\n};\n\nexport const materialItkCcAmexIcon = {\n data: ``,\n name: 'itk-cc-amex' as const\n};\n\nexport const materialItkCcDiscoverIcon = {\n data: ``,\n name: 'itk-cc-discover' as const\n};\n\nexport const materialItkCcMastercardIcon = {\n data: ``,\n name: 'itk-cc-mastercard' as const\n};\n\nexport const materialItkCcVisaIcon = {\n data: ``,\n name: 'itk-cc-visa' as const\n};\n\nexport const materialItkChatBubbleIconIcon = {\n data: ``,\n name: 'itk-chat-bubble-icon' as const\n};\n\nexport const materialItkChevronIcon = {\n data: ``,\n name: 'itk-chevron' as const\n};\n\nexport const materialItkCrmAlertIcon = {\n data: ``,\n name: 'itk-crm-alert' as const\n};\n\nexport const materialItkCrmCalendarIcon = {\n data: ``,\n name: 'itk-crm-calendar' as const\n};\n\nexport const materialItkCrmChatBubbleIcon = {\n data: ``,\n name: 'itk-crm-chat-bubble' as const\n};\n\nexport const materialItkCrmCheckboxIcon = {\n data: ``,\n name: 'itk-crm-checkbox' as const\n};\n\nexport const materialItkCrmClockIcon = {\n data: ``,\n name: 'itk-crm-clock' as const\n};\n\nexport const materialItkCrmDownloadIcon = {\n data: ``,\n name: 'itk-crm-download' as const\n};\n\nexport const materialItkCrmDragIndicatorIcon = {\n data: ``,\n name: 'itk-crm-drag-indicator' as const\n};\n\nexport const materialItkCrmEnclosedPlusIcon = {\n data: ``,\n name: 'itk-crm-enclosed-plus' as const\n};\n\nexport const materialItkCrmFilterIcon = {\n data: ``,\n name: 'itk-crm-filter' as const\n};\n\nexport const materialItkCrmMailIcon = {\n data: ``,\n name: 'itk-crm-mail' as const\n};\n\nexport const materialItkCrmPaperIcon = {\n data: ``,\n name: 'itk-crm-paper' as const\n};\n\nexport const materialItkCrmPencilIcon = {\n data: ``,\n name: 'itk-crm-pencil' as const\n};\n\nexport const materialItkCrmPersonPlusIcon = {\n data: ``,\n name: 'itk-crm-person-plus' as const\n};\n\nexport const materialItkCrmPersonIcon = {\n data: ``,\n name: 'itk-crm-person' as const\n};\n\nexport const materialItkCrmPhoneIcon = {\n data: ``,\n name: 'itk-crm-phone' as const\n};\n\nexport const materialItkCrmPlusIcon = {\n data: ``,\n name: 'itk-crm-plus' as const\n};\n\nexport const materialItkCrmSearchIcon = {\n data: ``,\n name: 'itk-crm-search' as const\n};\n\nexport const materialItkCrmSendIcon = {\n data: ``,\n name: 'itk-crm-send' as const\n};\n\nexport const materialItkCrmThreeDotsIcon = {\n data: ``,\n name: 'itk-crm-three-dots' as const\n};\n\nexport const materialItkCrmUpArrowIcon = {\n data: ``,\n name: 'itk-crm-up-arrow' as const\n};\n\nexport const materialItkCrmXIcon = {\n data: ``,\n name: 'itk-crm-x' as const\n};\n\nexport const materialItkCrossIcon = {\n data: ``,\n name: 'itk-cross' as const\n};\n\nexport const materialItkDvhEarIcon = {\n data: ``,\n name: 'itk-dvh-ear' as const\n};\n\nexport const materialItkDvhEyeIcon = {\n data: ``,\n name: 'itk-dvh-eye' as const\n};\n\nexport const materialItkDvhNetworkIcon = {\n data: ``,\n name: 'itk-dvh-network' as const\n};\n\nexport const materialItkDvhToothIcon = {\n data: ``,\n name: 'itk-dvh-tooth' as const\n};\n\nexport const materialItkFilledCheckCircleIcon = {\n data: ``,\n name: 'itk-filled-check-circle' as const\n};\n\nexport const materialItkInfoIcon = {\n data: ``,\n name: 'itk-info' as const\n};\n\nexport const materialItkLightbulbIcon = {\n data: ``,\n name: 'itk-lightbulb' as const\n};\n\nexport const materialItkLoadingIcon = {\n data: ``,\n name: 'itk-loading' as const\n};\n\nexport const materialItkLogoMarkIcon = {\n data: ``,\n name: 'itk-logo-mark' as const\n};\n\nexport const materialItkLogoTypeIcon = {\n data: ``,\n name: 'itk-logo-type' as const\n};\n\nexport const materialItkPdfIcon = {\n data: ``,\n name: 'itk-pdf' as const\n};\n\nexport const materialItkPencilIcon = {\n data: ``,\n name: 'itk-pencil' as const\n};\n\nexport const materialItkPlanSelectIcon = {\n data: ``,\n name: 'itk-plan-select' as const\n};\n\nexport const materialItkQuestionCircleIcon = {\n data: ``,\n name: 'itk-question-circle' as const\n};\n\nexport const materialItkRedDotIcon = {\n data: ``,\n name: 'itk-red-dot' as const\n};\n\nexport const materialItkRepeatIcon = {\n data: ``,\n name: 'itk-repeat' as const\n};\n\nexport const materialItkRxIcon = {\n data: ``,\n name: 'itk-rx' as const\n};\n\nexport const materialItkSendIcon = {\n data: ``,\n name: 'itk-send' as const\n};\n\nexport const materialItkStarIcon = {\n data: ``,\n name: 'itk-star' as const\n};\n\nexport const materialItkSubscriptionAgencyBundleIcon = {\n data: ``,\n name: 'itk-subscription-agency-bundle' as const\n};\n\nexport const materialItkSubscriptionIndividualBundleIcon = {\n data: ``,\n name: 'itk-subscription-individual-bundle' as const\n};\n\nexport const materialItkThreeDotsIcon = {\n data: ``,\n name: 'itk-three-dots' as const\n};\n\nexport const materialItkTrashIcon = {\n data: ``,\n name: 'itk-trash' as const\n};\n\nexport const materialItkXIcon = {\n data: ``,\n name: 'itk-x' as const\n};\n\nexport const materialJavascriptIcon = {\n data: ``,\n name: 'javascript' as const\n};\n\nexport const materialJoinFullIcon = {\n data: ``,\n name: 'join-full' as const\n};\n\nexport const materialJoinInnerIcon = {\n data: ``,\n name: 'join-inner' as const\n};\n\nexport const materialJoinLeftIcon = {\n data: ``,\n name: 'join-left' as const\n};\n\nexport const materialJoinRightIcon = {\n data: ``,\n name: 'join-right' as const\n};\n\nexport const materialKayakingIcon = {\n data: ``,\n name: 'kayaking' as const\n};\n\nexport const materialKebabDiningIcon = {\n data: ``,\n name: 'kebab-dining' as const\n};\n\nexport const materialKeyIcon = {\n data: ``,\n name: 'key' as const\n};\n\nexport const materialKeyOffIcon = {\n data: ``,\n name: 'key-off' as const\n};\n\nexport const materialKeyboardIcon = {\n data: ``,\n name: 'keyboard' as const\n};\n\nexport const materialKeyboardAltIcon = {\n data: ``,\n name: 'keyboard-alt' as const\n};\n\nexport const materialKeyboardArrowDownIcon = {\n data: ``,\n name: 'keyboard-arrow-down' as const\n};\n\nexport const materialKeyboardArrowLeftIcon = {\n data: ``,\n name: 'keyboard-arrow-left' as const\n};\n\nexport const materialKeyboardArrowRightIcon = {\n data: ``,\n name: 'keyboard-arrow-right' as const\n};\n\nexport const materialKeyboardArrowUpIcon = {\n data: ``,\n name: 'keyboard-arrow-up' as const\n};\n\nexport const materialKeyboardBackspaceIcon = {\n data: ``,\n name: 'keyboard-backspace' as const\n};\n\nexport const materialKeyboardCapslockIcon = {\n data: ``,\n name: 'keyboard-capslock' as const\n};\n\nexport const materialKeyboardCommandKeyIcon = {\n data: ``,\n name: 'keyboard-command-key' as const\n};\n\nexport const materialKeyboardControlKeyIcon = {\n data: ``,\n name: 'keyboard-control-key' as const\n};\n\nexport const materialKeyboardDoubleArrowDownIcon = {\n data: ``,\n name: 'keyboard-double-arrow-down' as const\n};\n\nexport const materialKeyboardDoubleArrowLeftIcon = {\n data: ``,\n name: 'keyboard-double-arrow-left' as const\n};\n\nexport const materialKeyboardDoubleArrowRightIcon = {\n data: ``,\n name: 'keyboard-double-arrow-right' as const\n};\n\nexport const materialKeyboardDoubleArrowUpIcon = {\n data: ``,\n name: 'keyboard-double-arrow-up' as const\n};\n\nexport const materialKeyboardHideIcon = {\n data: ``,\n name: 'keyboard-hide' as const\n};\n\nexport const materialKeyboardOptionKeyIcon = {\n data: ``,\n name: 'keyboard-option-key' as const\n};\n\nexport const materialKeyboardReturnIcon = {\n data: ``,\n name: 'keyboard-return' as const\n};\n\nexport const materialKeyboardTabIcon = {\n data: ``,\n name: 'keyboard-tab' as const\n};\n\nexport const materialKeyboardVoiceIcon = {\n data: ``,\n name: 'keyboard-voice' as const\n};\n\nexport const materialKingBedIcon = {\n data: ``,\n name: 'king-bed' as const\n};\n\nexport const materialKitchenIcon = {\n data: ``,\n name: 'kitchen' as const\n};\n\nexport const materialKitesurfingIcon = {\n data: ``,\n name: 'kitesurfing' as const\n};\n\nexport const materialLabelIcon = {\n data: ``,\n name: 'label' as const\n};\n\nexport const materialLabelImportantIcon = {\n data: ``,\n name: 'label-important' as const\n};\n\nexport const materialLabelOffIcon = {\n data: ``,\n name: 'label-off' as const\n};\n\nexport const materialLanIcon = {\n data: ``,\n name: 'lan' as const\n};\n\nexport const materialLandscapeIcon = {\n data: ``,\n name: 'landscape' as const\n};\n\nexport const materialLandslideIcon = {\n data: ``,\n name: 'landslide' as const\n};\n\nexport const materialLanguageIcon = {\n data: ``,\n name: 'language' as const\n};\n\nexport const materialLaptopIcon = {\n data: ``,\n name: 'laptop' as const\n};\n\nexport const materialLaptopChromebookIcon = {\n data: ``,\n name: 'laptop-chromebook' as const\n};\n\nexport const materialLaptopMacIcon = {\n data: ``,\n name: 'laptop-mac' as const\n};\n\nexport const materialLaptopWindowsIcon = {\n data: ``,\n name: 'laptop-windows' as const\n};\n\nexport const materialLastPageIcon = {\n data: ``,\n name: 'last-page' as const\n};\n\nexport const materialLaunchIcon = {\n data: ``,\n name: 'launch' as const\n};\n\nexport const materialLayersIcon = {\n data: ``,\n name: 'layers' as const\n};\n\nexport const materialLayersClearIcon = {\n data: ``,\n name: 'layers-clear' as const\n};\n\nexport const materialLeaderboardIcon = {\n data: ``,\n name: 'leaderboard' as const\n};\n\nexport const materialLeakAddIcon = {\n data: ``,\n name: 'leak-add' as const\n};\n\nexport const materialLeakRemoveIcon = {\n data: ``,\n name: 'leak-remove' as const\n};\n\nexport const materialLegendToggleIcon = {\n data: ``,\n name: 'legend-toggle' as const\n};\n\nexport const materialLensIcon = {\n data: ``,\n name: 'lens' as const\n};\n\nexport const materialLensBlurIcon = {\n data: ``,\n name: 'lens-blur' as const\n};\n\nexport const materialLibraryAddIcon = {\n data: ``,\n name: 'library-add' as const\n};\n\nexport const materialLibraryAddCheckIcon = {\n data: ``,\n name: 'library-add-check' as const\n};\n\nexport const materialLibraryBooksIcon = {\n data: ``,\n name: 'library-books' as const\n};\n\nexport const materialLibraryMusicIcon = {\n data: ``,\n name: 'library-music' as const\n};\n\nexport const materialLightIcon = {\n data: ``,\n name: 'light' as const\n};\n\nexport const materialLightModeIcon = {\n data: ``,\n name: 'light-mode' as const\n};\n\nexport const materialLightbulbIcon = {\n data: ``,\n name: 'lightbulb' as const\n};\n\nexport const materialLightbulbCircleIcon = {\n data: ``,\n name: 'lightbulb-circle' as const\n};\n\nexport const materialLineAxisIcon = {\n data: ``,\n name: 'line-axis' as const\n};\n\nexport const materialLineStyleIcon = {\n data: ``,\n name: 'line-style' as const\n};\n\nexport const materialLineWeightIcon = {\n data: ``,\n name: 'line-weight' as const\n};\n\nexport const materialLinearScaleIcon = {\n data: ``,\n name: 'linear-scale' as const\n};\n\nexport const materialLinkIcon = {\n data: ``,\n name: 'link' as const\n};\n\nexport const materialLinkOffIcon = {\n data: ``,\n name: 'link-off' as const\n};\n\nexport const materialLinkedCameraIcon = {\n data: ``,\n name: 'linked-camera' as const\n};\n\nexport const materialLiquorIcon = {\n data: ``,\n name: 'liquor' as const\n};\n\nexport const materialListIcon = {\n data: ``,\n name: 'list' as const\n};\n\nexport const materialListAltIcon = {\n data: ``,\n name: 'list-alt' as const\n};\n\nexport const materialLiveHelpIcon = {\n data: ``,\n name: 'live-help' as const\n};\n\nexport const materialLiveTvIcon = {\n data: ``,\n name: 'live-tv' as const\n};\n\nexport const materialLivingIcon = {\n data: ``,\n name: 'living' as const\n};\n\nexport const materialLocalActivityIcon = {\n data: ``,\n name: 'local-activity' as const\n};\n\nexport const materialLocalAirportIcon = {\n data: ``,\n name: 'local-airport' as const\n};\n\nexport const materialLocalAtmIcon = {\n data: ``,\n name: 'local-atm' as const\n};\n\nexport const materialLocalBarIcon = {\n data: ``,\n name: 'local-bar' as const\n};\n\nexport const materialLocalCafeIcon = {\n data: ``,\n name: 'local-cafe' as const\n};\n\nexport const materialLocalCarWashIcon = {\n data: ``,\n name: 'local-car-wash' as const\n};\n\nexport const materialLocalConvenienceStoreIcon = {\n data: ``,\n name: 'local-convenience-store' as const\n};\n\nexport const materialLocalDiningIcon = {\n data: ``,\n name: 'local-dining' as const\n};\n\nexport const materialLocalDrinkIcon = {\n data: ``,\n name: 'local-drink' as const\n};\n\nexport const materialLocalFireDepartmentIcon = {\n data: ``,\n name: 'local-fire-department' as const\n};\n\nexport const materialLocalFloristIcon = {\n data: ``,\n name: 'local-florist' as const\n};\n\nexport const materialLocalGasStationIcon = {\n data: ``,\n name: 'local-gas-station' as const\n};\n\nexport const materialLocalGroceryStoreIcon = {\n data: ``,\n name: 'local-grocery-store' as const\n};\n\nexport const materialLocalHospitalIcon = {\n data: ``,\n name: 'local-hospital' as const\n};\n\nexport const materialLocalHotelIcon = {\n data: ``,\n name: 'local-hotel' as const\n};\n\nexport const materialLocalLaundryServiceIcon = {\n data: ``,\n name: 'local-laundry-service' as const\n};\n\nexport const materialLocalLibraryIcon = {\n data: ``,\n name: 'local-library' as const\n};\n\nexport const materialLocalMallIcon = {\n data: ``,\n name: 'local-mall' as const\n};\n\nexport const materialLocalMoviesIcon = {\n data: ``,\n name: 'local-movies' as const\n};\n\nexport const materialLocalOfferIcon = {\n data: ``,\n name: 'local-offer' as const\n};\n\nexport const materialLocalParkingIcon = {\n data: ``,\n name: 'local-parking' as const\n};\n\nexport const materialLocalPharmacyIcon = {\n data: ``,\n name: 'local-pharmacy' as const\n};\n\nexport const materialLocalPhoneIcon = {\n data: ``,\n name: 'local-phone' as const\n};\n\nexport const materialLocalPizzaIcon = {\n data: ``,\n name: 'local-pizza' as const\n};\n\nexport const materialLocalPlayIcon = {\n data: ``,\n name: 'local-play' as const\n};\n\nexport const materialLocalPoliceIcon = {\n data: ``,\n name: 'local-police' as const\n};\n\nexport const materialLocalPostOfficeIcon = {\n data: ``,\n name: 'local-post-office' as const\n};\n\nexport const materialLocalPrintshopIcon = {\n data: ``,\n name: 'local-printshop' as const\n};\n\nexport const materialLocalSeeIcon = {\n data: ``,\n name: 'local-see' as const\n};\n\nexport const materialLocalShippingIcon = {\n data: ``,\n name: 'local-shipping' as const\n};\n\nexport const materialLocalTaxiIcon = {\n data: ``,\n name: 'local-taxi' as const\n};\n\nexport const materialLocationCityIcon = {\n data: ``,\n name: 'location-city' as const\n};\n\nexport const materialLocationDisabledIcon = {\n data: ``,\n name: 'location-disabled' as const\n};\n\nexport const materialLocationOffIcon = {\n data: ``,\n name: 'location-off' as const\n};\n\nexport const materialLocationOnIcon = {\n data: ``,\n name: 'location-on' as const\n};\n\nexport const materialLocationSearchingIcon = {\n data: ``,\n name: 'location-searching' as const\n};\n\nexport const materialLockIcon = {\n data: ``,\n name: 'lock' as const\n};\n\nexport const materialLockClockIcon = {\n data: ``,\n name: 'lock-clock' as const\n};\n\nexport const materialLockOpenIcon = {\n data: ``,\n name: 'lock-open' as const\n};\n\nexport const materialLockPersonIcon = {\n data: ``,\n name: 'lock-person' as const\n};\n\nexport const materialLockResetIcon = {\n data: ``,\n name: 'lock-reset' as const\n};\n\nexport const materialLoginIcon = {\n data: ``,\n name: 'login' as const\n};\n\nexport const materialLogoDevIcon = {\n data: ``,\n name: 'logo-dev' as const\n};\n\nexport const materialLogoutIcon = {\n data: ``,\n name: 'logout' as const\n};\n\nexport const materialLooksIcon = {\n data: ``,\n name: 'looks' as const\n};\n\nexport const materialLooks3Icon = {\n data: ``,\n name: 'looks-3' as const\n};\n\nexport const materialLooks4Icon = {\n data: ``,\n name: 'looks-4' as const\n};\n\nexport const materialLooks5Icon = {\n data: ``,\n name: 'looks-5' as const\n};\n\nexport const materialLooks6Icon = {\n data: ``,\n name: 'looks-6' as const\n};\n\nexport const materialLooksOneIcon = {\n data: ``,\n name: 'looks-one' as const\n};\n\nexport const materialLooksTwoIcon = {\n data: ``,\n name: 'looks-two' as const\n};\n\nexport const materialLoopIcon = {\n data: ``,\n name: 'loop' as const\n};\n\nexport const materialLoupeIcon = {\n data: ``,\n name: 'loupe' as const\n};\n\nexport const materialLowPriorityIcon = {\n data: ``,\n name: 'low-priority' as const\n};\n\nexport const materialLoyaltyIcon = {\n data: ``,\n name: 'loyalty' as const\n};\n\nexport const materialLteMobiledataIcon = {\n data: ``,\n name: 'lte-mobiledata' as const\n};\n\nexport const materialLtePlusMobiledataIcon = {\n data: ``,\n name: 'lte-plus-mobiledata' as const\n};\n\nexport const materialLuggageIcon = {\n data: ``,\n name: 'luggage' as const\n};\n\nexport const materialLunchDiningIcon = {\n data: ``,\n name: 'lunch-dining' as const\n};\n\nexport const materialLyricsIcon = {\n data: ``,\n name: 'lyrics' as const\n};\n\nexport const materialMacroOffIcon = {\n data: ``,\n name: 'macro-off' as const\n};\n\nexport const materialMailIcon = {\n data: ``,\n name: 'mail' as const\n};\n\nexport const materialMailLockIcon = {\n data: ``,\n name: 'mail-lock' as const\n};\n\nexport const materialMailOutlineIcon = {\n data: ``,\n name: 'mail-outline' as const\n};\n\nexport const materialMaleIcon = {\n data: ``,\n name: 'male' as const\n};\n\nexport const materialManIcon = {\n data: ``,\n name: 'man' as const\n};\n\nexport const materialMan2Icon = {\n data: ``,\n name: 'man-2' as const\n};\n\nexport const materialMan3Icon = {\n data: ``,\n name: 'man-3' as const\n};\n\nexport const materialMan4Icon = {\n data: ``,\n name: 'man-4' as const\n};\n\nexport const materialManageAccountsIcon = {\n data: ``,\n name: 'manage-accounts' as const\n};\n\nexport const materialManageHistoryIcon = {\n data: ``,\n name: 'manage-history' as const\n};\n\nexport const materialManageSearchIcon = {\n data: ``,\n name: 'manage-search' as const\n};\n\nexport const materialMapIcon = {\n data: ``,\n name: 'map' as const\n};\n\nexport const materialMapsHomeWorkIcon = {\n data: ``,\n name: 'maps-home-work' as const\n};\n\nexport const materialMapsUgcIcon = {\n data: ``,\n name: 'maps-ugc' as const\n};\n\nexport const materialMarginIcon = {\n data: ``,\n name: 'margin' as const\n};\n\nexport const materialMarkAsUnreadIcon = {\n data: ``,\n name: 'mark-as-unread' as const\n};\n\nexport const materialMarkChatReadIcon = {\n data: ``,\n name: 'mark-chat-read' as const\n};\n\nexport const materialMarkChatUnreadIcon = {\n data: ``,\n name: 'mark-chat-unread' as const\n};\n\nexport const materialMarkEmailReadIcon = {\n data: ``,\n name: 'mark-email-read' as const\n};\n\nexport const materialMarkEmailUnreadIcon = {\n data: ``,\n name: 'mark-email-unread' as const\n};\n\nexport const materialMarkUnreadChatAltIcon = {\n data: ``,\n name: 'mark-unread-chat-alt' as const\n};\n\nexport const materialMarkunreadIcon = {\n data: ``,\n name: 'markunread' as const\n};\n\nexport const materialMarkunreadMailboxIcon = {\n data: ``,\n name: 'markunread-mailbox' as const\n};\n\nexport const materialMasksIcon = {\n data: ``,\n name: 'masks' as const\n};\n\nexport const materialMaximizeIcon = {\n data: ``,\n name: 'maximize' as const\n};\n\nexport const materialMediaBluetoothOffIcon = {\n data: ``,\n name: 'media-bluetooth-off' as const\n};\n\nexport const materialMediaBluetoothOnIcon = {\n data: ``,\n name: 'media-bluetooth-on' as const\n};\n\nexport const materialMediationIcon = {\n data: ``,\n name: 'mediation' as const\n};\n\nexport const materialMedicalInformationIcon = {\n data: ``,\n name: 'medical-information' as const\n};\n\nexport const materialMedicalServicesIcon = {\n data: ``,\n name: 'medical-services' as const\n};\n\nexport const materialMedicationIcon = {\n data: ``,\n name: 'medication' as const\n};\n\nexport const materialMedicationLiquidIcon = {\n data: ``,\n name: 'medication-liquid' as const\n};\n\nexport const materialMeetingRoomIcon = {\n data: ``,\n name: 'meeting-room' as const\n};\n\nexport const materialMemoryIcon = {\n data: ``,\n name: 'memory' as const\n};\n\nexport const materialMenuIcon = {\n data: ``,\n name: 'menu' as const\n};\n\nexport const materialMenuBookIcon = {\n data: ``,\n name: 'menu-book' as const\n};\n\nexport const materialMenuOpenIcon = {\n data: ``,\n name: 'menu-open' as const\n};\n\nexport const materialMergeIcon = {\n data: ``,\n name: 'merge' as const\n};\n\nexport const materialMergeTypeIcon = {\n data: ``,\n name: 'merge-type' as const\n};\n\nexport const materialMessageIcon = {\n data: ``,\n name: 'message' as const\n};\n\nexport const materialMicIcon = {\n data: ``,\n name: 'mic' as const\n};\n\nexport const materialMicExternalOffIcon = {\n data: ``,\n name: 'mic-external-off' as const\n};\n\nexport const materialMicExternalOnIcon = {\n data: ``,\n name: 'mic-external-on' as const\n};\n\nexport const materialMicNoneIcon = {\n data: ``,\n name: 'mic-none' as const\n};\n\nexport const materialMicOffIcon = {\n data: ``,\n name: 'mic-off' as const\n};\n\nexport const materialMicrowaveIcon = {\n data: ``,\n name: 'microwave' as const\n};\n\nexport const materialMilitaryTechIcon = {\n data: ``,\n name: 'military-tech' as const\n};\n\nexport const materialMinimizeIcon = {\n data: ``,\n name: 'minimize' as const\n};\n\nexport const materialMinorCrashIcon = {\n data: ``,\n name: 'minor-crash' as const\n};\n\nexport const materialMiscellaneousServicesIcon = {\n data: ``,\n name: 'miscellaneous-services' as const\n};\n\nexport const materialMissedVideoCallIcon = {\n data: ``,\n name: 'missed-video-call' as const\n};\n\nexport const materialMmsIcon = {\n data: ``,\n name: 'mms' as const\n};\n\nexport const materialMobileFriendlyIcon = {\n data: ``,\n name: 'mobile-friendly' as const\n};\n\nexport const materialMobileOffIcon = {\n data: ``,\n name: 'mobile-off' as const\n};\n\nexport const materialMobileScreenShareIcon = {\n data: ``,\n name: 'mobile-screen-share' as const\n};\n\nexport const materialMobiledataOffIcon = {\n data: ``,\n name: 'mobiledata-off' as const\n};\n\nexport const materialModeIcon = {\n data: ``,\n name: 'mode' as const\n};\n\nexport const materialModeCommentIcon = {\n data: ``,\n name: 'mode-comment' as const\n};\n\nexport const materialModeEditIcon = {\n data: ``,\n name: 'mode-edit' as const\n};\n\nexport const materialModeEditOutlineIcon = {\n data: ``,\n name: 'mode-edit-outline' as const\n};\n\nexport const materialModeFanOffIcon = {\n data: ``,\n name: 'mode-fan-off' as const\n};\n\nexport const materialModeNightIcon = {\n data: ``,\n name: 'mode-night' as const\n};\n\nexport const materialModeOfTravelIcon = {\n data: ``,\n name: 'mode-of-travel' as const\n};\n\nexport const materialModeStandbyIcon = {\n data: ``,\n name: 'mode-standby' as const\n};\n\nexport const materialModelTrainingIcon = {\n data: ``,\n name: 'model-training' as const\n};\n\nexport const materialMonetizationOnIcon = {\n data: ``,\n name: 'monetization-on' as const\n};\n\nexport const materialMoneyIcon = {\n data: ``,\n name: 'money' as const\n};\n\nexport const materialMoneyOffIcon = {\n data: ``,\n name: 'money-off' as const\n};\n\nexport const materialMoneyOffCsredIcon = {\n data: ``,\n name: 'money-off-csred' as const\n};\n\nexport const materialMonitorIcon = {\n data: ``,\n name: 'monitor' as const\n};\n\nexport const materialMonitorHeartIcon = {\n data: ``,\n name: 'monitor-heart' as const\n};\n\nexport const materialMonitorWeightIcon = {\n data: ``,\n name: 'monitor-weight' as const\n};\n\nexport const materialMonochromePhotosIcon = {\n data: ``,\n name: 'monochrome-photos' as const\n};\n\nexport const materialMoodIcon = {\n data: ``,\n name: 'mood' as const\n};\n\nexport const materialMoodBadIcon = {\n data: ``,\n name: 'mood-bad' as const\n};\n\nexport const materialMopedIcon = {\n data: ``,\n name: 'moped' as const\n};\n\nexport const materialMoreIcon = {\n data: ``,\n name: 'more' as const\n};\n\nexport const materialMoreHorizIcon = {\n data: ``,\n name: 'more-horiz' as const\n};\n\nexport const materialMoreTimeIcon = {\n data: ``,\n name: 'more-time' as const\n};\n\nexport const materialMoreVertIcon = {\n data: ``,\n name: 'more-vert' as const\n};\n\nexport const materialMosqueIcon = {\n data: ``,\n name: 'mosque' as const\n};\n\nexport const materialMotionPhotosAutoIcon = {\n data: ``,\n name: 'motion-photos-auto' as const\n};\n\nexport const materialMotionPhotosOffIcon = {\n data: ``,\n name: 'motion-photos-off' as const\n};\n\nexport const materialMotionPhotosOnIcon = {\n data: ``,\n name: 'motion-photos-on' as const\n};\n\nexport const materialMotionPhotosPauseIcon = {\n data: ``,\n name: 'motion-photos-pause' as const\n};\n\nexport const materialMotionPhotosPausedIcon = {\n data: ``,\n name: 'motion-photos-paused' as const\n};\n\nexport const materialMouseIcon = {\n data: ``,\n name: 'mouse' as const\n};\n\nexport const materialMoveDownIcon = {\n data: ``,\n name: 'move-down' as const\n};\n\nexport const materialMoveToInboxIcon = {\n data: ``,\n name: 'move-to-inbox' as const\n};\n\nexport const materialMoveUpIcon = {\n data: ``,\n name: 'move-up' as const\n};\n\nexport const materialMovieIcon = {\n data: ``,\n name: 'movie' as const\n};\n\nexport const materialMovieCreationIcon = {\n data: ``,\n name: 'movie-creation' as const\n};\n\nexport const materialMovieFilterIcon = {\n data: ``,\n name: 'movie-filter' as const\n};\n\nexport const materialMovingIcon = {\n data: ``,\n name: 'moving' as const\n};\n\nexport const materialMpIcon = {\n data: ``,\n name: 'mp' as const\n};\n\nexport const materialMultilineChartIcon = {\n data: ``,\n name: 'multiline-chart' as const\n};\n\nexport const materialMultipleStopIcon = {\n data: ``,\n name: 'multiple-stop' as const\n};\n\nexport const materialMuseumIcon = {\n data: ``,\n name: 'museum' as const\n};\n\nexport const materialMusicNoteIcon = {\n data: ``,\n name: 'music-note' as const\n};\n\nexport const materialMusicOffIcon = {\n data: ``,\n name: 'music-off' as const\n};\n\nexport const materialMusicVideoIcon = {\n data: ``,\n name: 'music-video' as const\n};\n\nexport const materialMyLocationIcon = {\n data: ``,\n name: 'my-location' as const\n};\n\nexport const materialNatIcon = {\n data: ``,\n name: 'nat' as const\n};\n\nexport const materialNatureIcon = {\n data: ``,\n name: 'nature' as const\n};\n\nexport const materialNaturePeopleIcon = {\n data: ``,\n name: 'nature-people' as const\n};\n\nexport const materialNavigateBeforeIcon = {\n data: ``,\n name: 'navigate-before' as const\n};\n\nexport const materialNavigateNextIcon = {\n data: ``,\n name: 'navigate-next' as const\n};\n\nexport const materialNavigationIcon = {\n data: ``,\n name: 'navigation' as const\n};\n\nexport const materialNearMeIcon = {\n data: ``,\n name: 'near-me' as const\n};\n\nexport const materialNearMeDisabledIcon = {\n data: ``,\n name: 'near-me-disabled' as const\n};\n\nexport const materialNearbyErrorIcon = {\n data: ``,\n name: 'nearby-error' as const\n};\n\nexport const materialNearbyOffIcon = {\n data: ``,\n name: 'nearby-off' as const\n};\n\nexport const materialNestCamWiredStandIcon = {\n data: ``,\n name: 'nest-cam-wired-stand' as const\n};\n\nexport const materialNetworkCellIcon = {\n data: ``,\n name: 'network-cell' as const\n};\n\nexport const materialNetworkCheckIcon = {\n data: ``,\n name: 'network-check' as const\n};\n\nexport const materialNetworkLockedIcon = {\n data: ``,\n name: 'network-locked' as const\n};\n\nexport const materialNetworkPingIcon = {\n data: ``,\n name: 'network-ping' as const\n};\n\nexport const materialNetworkWifiIcon = {\n data: ``,\n name: 'network-wifi' as const\n};\n\nexport const materialNetworkWifi1BarIcon = {\n data: ``,\n name: 'network-wifi-1-bar' as const\n};\n\nexport const materialNetworkWifi2BarIcon = {\n data: ``,\n name: 'network-wifi-2-bar' as const\n};\n\nexport const materialNetworkWifi3BarIcon = {\n data: ``,\n name: 'network-wifi-3-bar' as const\n};\n\nexport const materialNewLabelIcon = {\n data: ``,\n name: 'new-label' as const\n};\n\nexport const materialNewReleasesIcon = {\n data: ``,\n name: 'new-releases' as const\n};\n\nexport const materialNewspaperIcon = {\n data: ``,\n name: 'newspaper' as const\n};\n\nexport const materialNextPlanIcon = {\n data: ``,\n name: 'next-plan' as const\n};\n\nexport const materialNextWeekIcon = {\n data: ``,\n name: 'next-week' as const\n};\n\nexport const materialNfcIcon = {\n data: ``,\n name: 'nfc' as const\n};\n\nexport const materialNightShelterIcon = {\n data: ``,\n name: 'night-shelter' as const\n};\n\nexport const materialNightlifeIcon = {\n data: ``,\n name: 'nightlife' as const\n};\n\nexport const materialNightlightIcon = {\n data: ``,\n name: 'nightlight' as const\n};\n\nexport const materialNightlightRoundIcon = {\n data: ``,\n name: 'nightlight-round' as const\n};\n\nexport const materialNightsStayIcon = {\n data: ``,\n name: 'nights-stay' as const\n};\n\nexport const materialNoAccountsIcon = {\n data: ``,\n name: 'no-accounts' as const\n};\n\nexport const materialNoAdultContentIcon = {\n data: ``,\n name: 'no-adult-content' as const\n};\n\nexport const materialNoBackpackIcon = {\n data: ``,\n name: 'no-backpack' as const\n};\n\nexport const materialNoCellIcon = {\n data: ``,\n name: 'no-cell' as const\n};\n\nexport const materialNoCrashIcon = {\n data: ``,\n name: 'no-crash' as const\n};\n\nexport const materialNoDrinksIcon = {\n data: ``,\n name: 'no-drinks' as const\n};\n\nexport const materialNoEncryptionIcon = {\n data: ``,\n name: 'no-encryption' as const\n};\n\nexport const materialNoEncryptionGmailerrorredIcon = {\n data: ``,\n name: 'no-encryption-gmailerrorred' as const\n};\n\nexport const materialNoFlashIcon = {\n data: ``,\n name: 'no-flash' as const\n};\n\nexport const materialNoFoodIcon = {\n data: ``,\n name: 'no-food' as const\n};\n\nexport const materialNoLuggageIcon = {\n data: ``,\n name: 'no-luggage' as const\n};\n\nexport const materialNoMealsIcon = {\n data: ``,\n name: 'no-meals' as const\n};\n\nexport const materialNoMeetingRoomIcon = {\n data: ``,\n name: 'no-meeting-room' as const\n};\n\nexport const materialNoPhotographyIcon = {\n data: ``,\n name: 'no-photography' as const\n};\n\nexport const materialNoSimIcon = {\n data: ``,\n name: 'no-sim' as const\n};\n\nexport const materialNoStrollerIcon = {\n data: ``,\n name: 'no-stroller' as const\n};\n\nexport const materialNoTransferIcon = {\n data: ``,\n name: 'no-transfer' as const\n};\n\nexport const materialNoiseAwareIcon = {\n data: ``,\n name: 'noise-aware' as const\n};\n\nexport const materialNoiseControlOffIcon = {\n data: ``,\n name: 'noise-control-off' as const\n};\n\nexport const materialNordicWalkingIcon = {\n data: ``,\n name: 'nordic-walking' as const\n};\n\nexport const materialNorthIcon = {\n data: ``,\n name: 'north' as const\n};\n\nexport const materialNorthEastIcon = {\n data: ``,\n name: 'north-east' as const\n};\n\nexport const materialNorthWestIcon = {\n data: ``,\n name: 'north-west' as const\n};\n\nexport const materialNotAccessibleIcon = {\n data: ``,\n name: 'not-accessible' as const\n};\n\nexport const materialNotInterestedIcon = {\n data: ``,\n name: 'not-interested' as const\n};\n\nexport const materialNotListedLocationIcon = {\n data: ``,\n name: 'not-listed-location' as const\n};\n\nexport const materialNotStartedIcon = {\n data: ``,\n name: 'not-started' as const\n};\n\nexport const materialNoteIcon = {\n data: ``,\n name: 'note' as const\n};\n\nexport const materialNoteAddIcon = {\n data: ``,\n name: 'note-add' as const\n};\n\nexport const materialNoteAltIcon = {\n data: ``,\n name: 'note-alt' as const\n};\n\nexport const materialNotesIcon = {\n data: ``,\n name: 'notes' as const\n};\n\nexport const materialNotificationAddIcon = {\n data: ``,\n name: 'notification-add' as const\n};\n\nexport const materialNotificationImportantIcon = {\n data: ``,\n name: 'notification-important' as const\n};\n\nexport const materialNotificationsIcon = {\n data: ``,\n name: 'notifications' as const\n};\n\nexport const materialNotificationsActiveIcon = {\n data: ``,\n name: 'notifications-active' as const\n};\n\nexport const materialNotificationsNoneIcon = {\n data: ``,\n name: 'notifications-none' as const\n};\n\nexport const materialNotificationsOffIcon = {\n data: ``,\n name: 'notifications-off' as const\n};\n\nexport const materialNotificationsPausedIcon = {\n data: ``,\n name: 'notifications-paused' as const\n};\n\nexport const materialNumbersIcon = {\n data: ``,\n name: 'numbers' as const\n};\n\nexport const materialOfflineBoltIcon = {\n data: ``,\n name: 'offline-bolt' as const\n};\n\nexport const materialOfflinePinIcon = {\n data: ``,\n name: 'offline-pin' as const\n};\n\nexport const materialOfflineShareIcon = {\n data: ``,\n name: 'offline-share' as const\n};\n\nexport const materialOilBarrelIcon = {\n data: ``,\n name: 'oil-barrel' as const\n};\n\nexport const materialOnDeviceTrainingIcon = {\n data: ``,\n name: 'on-device-training' as const\n};\n\nexport const materialOndemandVideoIcon = {\n data: ``,\n name: 'ondemand-video' as const\n};\n\nexport const materialOnlinePredictionIcon = {\n data: ``,\n name: 'online-prediction' as const\n};\n\nexport const materialOpacityIcon = {\n data: ``,\n name: 'opacity' as const\n};\n\nexport const materialOpenInBrowserIcon = {\n data: ``,\n name: 'open-in-browser' as const\n};\n\nexport const materialOpenInFullIcon = {\n data: ``,\n name: 'open-in-full' as const\n};\n\nexport const materialOpenInNewIcon = {\n data: ``,\n name: 'open-in-new' as const\n};\n\nexport const materialOpenInNewOffIcon = {\n data: ``,\n name: 'open-in-new-off' as const\n};\n\nexport const materialOpenWithIcon = {\n data: ``,\n name: 'open-with' as const\n};\n\nexport const materialOtherHousesIcon = {\n data: ``,\n name: 'other-houses' as const\n};\n\nexport const materialOutboundIcon = {\n data: ``,\n name: 'outbound' as const\n};\n\nexport const materialOutboxIcon = {\n data: ``,\n name: 'outbox' as const\n};\n\nexport const materialOutdoorGrillIcon = {\n data: ``,\n name: 'outdoor-grill' as const\n};\n\nexport const materialOutletIcon = {\n data: ``,\n name: 'outlet' as const\n};\n\nexport const materialOutlinedFlagIcon = {\n data: ``,\n name: 'outlined-flag' as const\n};\n\nexport const materialOutputIcon = {\n data: ``,\n name: 'output' as const\n};\n\nexport const materialPaddingIcon = {\n data: ``,\n name: 'padding' as const\n};\n\nexport const materialPagesIcon = {\n data: ``,\n name: 'pages' as const\n};\n\nexport const materialPageviewIcon = {\n data: ``,\n name: 'pageview' as const\n};\n\nexport const materialPaidIcon = {\n data: ``,\n name: 'paid' as const\n};\n\nexport const materialPaletteIcon = {\n data: ``,\n name: 'palette' as const\n};\n\nexport const materialPanToolIcon = {\n data: ``,\n name: 'pan-tool' as const\n};\n\nexport const materialPanToolAltIcon = {\n data: ``,\n name: 'pan-tool-alt' as const\n};\n\nexport const materialPanoramaIcon = {\n data: ``,\n name: 'panorama' as const\n};\n\nexport const materialPanoramaFishEyeIcon = {\n data: ``,\n name: 'panorama-fish-eye' as const\n};\n\nexport const materialPanoramaHorizontalIcon = {\n data: ``,\n name: 'panorama-horizontal' as const\n};\n\nexport const materialPanoramaHorizontalSelectIcon = {\n data: ``,\n name: 'panorama-horizontal-select' as const\n};\n\nexport const materialPanoramaPhotosphereIcon = {\n data: ``,\n name: 'panorama-photosphere' as const\n};\n\nexport const materialPanoramaPhotosphereSelectIcon = {\n data: ``,\n name: 'panorama-photosphere-select' as const\n};\n\nexport const materialPanoramaVerticalIcon = {\n data: ``,\n name: 'panorama-vertical' as const\n};\n\nexport const materialPanoramaVerticalSelectIcon = {\n data: ``,\n name: 'panorama-vertical-select' as const\n};\n\nexport const materialPanoramaWideAngleIcon = {\n data: ``,\n name: 'panorama-wide-angle' as const\n};\n\nexport const materialPanoramaWideAngleSelectIcon = {\n data: ``,\n name: 'panorama-wide-angle-select' as const\n};\n\nexport const materialParaglidingIcon = {\n data: ``,\n name: 'paragliding' as const\n};\n\nexport const materialParkIcon = {\n data: ``,\n name: 'park' as const\n};\n\nexport const materialPartyModeIcon = {\n data: ``,\n name: 'party-mode' as const\n};\n\nexport const materialPasswordIcon = {\n data: ``,\n name: 'password' as const\n};\n\nexport const materialPatternIcon = {\n data: ``,\n name: 'pattern' as const\n};\n\nexport const materialPauseIcon = {\n data: ``,\n name: 'pause' as const\n};\n\nexport const materialPauseCircleIcon = {\n data: ``,\n name: 'pause-circle' as const\n};\n\nexport const materialPauseCircleFilledIcon = {\n data: ``,\n name: 'pause-circle-filled' as const\n};\n\nexport const materialPauseCircleOutlineIcon = {\n data: ``,\n name: 'pause-circle-outline' as const\n};\n\nexport const materialPausePresentationIcon = {\n data: ``,\n name: 'pause-presentation' as const\n};\n\nexport const materialPaymentIcon = {\n data: ``,\n name: 'payment' as const\n};\n\nexport const materialPaymentsIcon = {\n data: ``,\n name: 'payments' as const\n};\n\nexport const materialPedalBikeIcon = {\n data: ``,\n name: 'pedal-bike' as const\n};\n\nexport const materialPendingIcon = {\n data: ``,\n name: 'pending' as const\n};\n\nexport const materialPendingActionsIcon = {\n data: ``,\n name: 'pending-actions' as const\n};\n\nexport const materialPentagonIcon = {\n data: ``,\n name: 'pentagon' as const\n};\n\nexport const materialPeopleIcon = {\n data: ``,\n name: 'people' as const\n};\n\nexport const materialPeopleAltIcon = {\n data: ``,\n name: 'people-alt' as const\n};\n\nexport const materialPeopleOutlineIcon = {\n data: ``,\n name: 'people-outline' as const\n};\n\nexport const materialPercentIcon = {\n data: ``,\n name: 'percent' as const\n};\n\nexport const materialPermCameraMicIcon = {\n data: ``,\n name: 'perm-camera-mic' as const\n};\n\nexport const materialPermContactCalendarIcon = {\n data: ``,\n name: 'perm-contact-calendar' as const\n};\n\nexport const materialPermDataSettingIcon = {\n data: ``,\n name: 'perm-data-setting' as const\n};\n\nexport const materialPermDeviceInformationIcon = {\n data: ``,\n name: 'perm-device-information' as const\n};\n\nexport const materialPermIdentityIcon = {\n data: ``,\n name: 'perm-identity' as const\n};\n\nexport const materialPermMediaIcon = {\n data: ``,\n name: 'perm-media' as const\n};\n\nexport const materialPermPhoneMsgIcon = {\n data: ``,\n name: 'perm-phone-msg' as const\n};\n\nexport const materialPermScanWifiIcon = {\n data: ``,\n name: 'perm-scan-wifi' as const\n};\n\nexport const materialPersonIcon = {\n data: ``,\n name: 'person' as const\n};\n\nexport const materialPerson2Icon = {\n data: ``,\n name: 'person-2' as const\n};\n\nexport const materialPerson3Icon = {\n data: ``,\n name: 'person-3' as const\n};\n\nexport const materialPerson4Icon = {\n data: ``,\n name: 'person-4' as const\n};\n\nexport const materialPersonAddIcon = {\n data: ``,\n name: 'person-add' as const\n};\n\nexport const materialPersonAddAltIcon = {\n data: ``,\n name: 'person-add-alt' as const\n};\n\nexport const materialPersonAddAlt1Icon = {\n data: ``,\n name: 'person-add-alt-1' as const\n};\n\nexport const materialPersonAddDisabledIcon = {\n data: ``,\n name: 'person-add-disabled' as const\n};\n\nexport const materialPersonOffIcon = {\n data: ``,\n name: 'person-off' as const\n};\n\nexport const materialPersonOutlineIcon = {\n data: ``,\n name: 'person-outline' as const\n};\n\nexport const materialPersonPinIcon = {\n data: ``,\n name: 'person-pin' as const\n};\n\nexport const materialPersonPinCircleIcon = {\n data: ``,\n name: 'person-pin-circle' as const\n};\n\nexport const materialPersonRemoveIcon = {\n data: ``,\n name: 'person-remove' as const\n};\n\nexport const materialPersonRemoveAlt1Icon = {\n data: ``,\n name: 'person-remove-alt-1' as const\n};\n\nexport const materialPersonSearchIcon = {\n data: ``,\n name: 'person-search' as const\n};\n\nexport const materialPersonalInjuryIcon = {\n data: ``,\n name: 'personal-injury' as const\n};\n\nexport const materialPersonalVideoIcon = {\n data: ``,\n name: 'personal-video' as const\n};\n\nexport const materialPestControlIcon = {\n data: ``,\n name: 'pest-control' as const\n};\n\nexport const materialPestControlRodentIcon = {\n data: ``,\n name: 'pest-control-rodent' as const\n};\n\nexport const materialPetsIcon = {\n data: ``,\n name: 'pets' as const\n};\n\nexport const materialPhishingIcon = {\n data: ``,\n name: 'phishing' as const\n};\n\nexport const materialPhoneIcon = {\n data: ``,\n name: 'phone' as const\n};\n\nexport const materialPhoneAndroidIcon = {\n data: ``,\n name: 'phone-android' as const\n};\n\nexport const materialPhoneBluetoothSpeakerIcon = {\n data: ``,\n name: 'phone-bluetooth-speaker' as const\n};\n\nexport const materialPhoneCallbackIcon = {\n data: ``,\n name: 'phone-callback' as const\n};\n\nexport const materialPhoneDisabledIcon = {\n data: ``,\n name: 'phone-disabled' as const\n};\n\nexport const materialPhoneEnabledIcon = {\n data: ``,\n name: 'phone-enabled' as const\n};\n\nexport const materialPhoneForwardedIcon = {\n data: ``,\n name: 'phone-forwarded' as const\n};\n\nexport const materialPhoneIphoneIcon = {\n data: ``,\n name: 'phone-iphone' as const\n};\n\nexport const materialPhoneLockedIcon = {\n data: ``,\n name: 'phone-locked' as const\n};\n\nexport const materialPhoneMissedIcon = {\n data: ``,\n name: 'phone-missed' as const\n};\n\nexport const materialPhonePausedIcon = {\n data: ``,\n name: 'phone-paused' as const\n};\n\nexport const materialPhonelinkIcon = {\n data: ``,\n name: 'phonelink' as const\n};\n\nexport const materialPhonelinkEraseIcon = {\n data: ``,\n name: 'phonelink-erase' as const\n};\n\nexport const materialPhonelinkLockIcon = {\n data: ``,\n name: 'phonelink-lock' as const\n};\n\nexport const materialPhonelinkOffIcon = {\n data: ``,\n name: 'phonelink-off' as const\n};\n\nexport const materialPhonelinkRingIcon = {\n data: ``,\n name: 'phonelink-ring' as const\n};\n\nexport const materialPhonelinkSetupIcon = {\n data: ``,\n name: 'phonelink-setup' as const\n};\n\nexport const materialPhotoIcon = {\n data: ``,\n name: 'photo' as const\n};\n\nexport const materialPhotoAlbumIcon = {\n data: ``,\n name: 'photo-album' as const\n};\n\nexport const materialPhotoCameraIcon = {\n data: ``,\n name: 'photo-camera' as const\n};\n\nexport const materialPhotoCameraBackIcon = {\n data: ``,\n name: 'photo-camera-back' as const\n};\n\nexport const materialPhotoCameraFrontIcon = {\n data: ``,\n name: 'photo-camera-front' as const\n};\n\nexport const materialPhotoFilterIcon = {\n data: ``,\n name: 'photo-filter' as const\n};\n\nexport const materialPhotoLibraryIcon = {\n data: ``,\n name: 'photo-library' as const\n};\n\nexport const materialPhotoSizeSelectActualIcon = {\n data: ``,\n name: 'photo-size-select-actual' as const\n};\n\nexport const materialPhotoSizeSelectLargeIcon = {\n data: ``,\n name: 'photo-size-select-large' as const\n};\n\nexport const materialPhotoSizeSelectSmallIcon = {\n data: ``,\n name: 'photo-size-select-small' as const\n};\n\nexport const materialPhpIcon = {\n data: ``,\n name: 'php' as const\n};\n\nexport const materialPianoIcon = {\n data: ``,\n name: 'piano' as const\n};\n\nexport const materialPianoOffIcon = {\n data: ``,\n name: 'piano-off' as const\n};\n\nexport const materialPictureAsPdfIcon = {\n data: ``,\n name: 'picture-as-pdf' as const\n};\n\nexport const materialPictureInPictureIcon = {\n data: ``,\n name: 'picture-in-picture' as const\n};\n\nexport const materialPictureInPictureAltIcon = {\n data: ``,\n name: 'picture-in-picture-alt' as const\n};\n\nexport const materialPieChartIcon = {\n data: ``,\n name: 'pie-chart' as const\n};\n\nexport const materialPieChartOutlineIcon = {\n data: ``,\n name: 'pie-chart-outline' as const\n};\n\nexport const materialPinIcon = {\n data: ``,\n name: 'pin' as const\n};\n\nexport const materialPinDropIcon = {\n data: ``,\n name: 'pin-drop' as const\n};\n\nexport const materialPinEndIcon = {\n data: ``,\n name: 'pin-end' as const\n};\n\nexport const materialPinInvokeIcon = {\n data: ``,\n name: 'pin-invoke' as const\n};\n\nexport const materialPinchIcon = {\n data: ``,\n name: 'pinch' as const\n};\n\nexport const materialPivotTableChartIcon = {\n data: ``,\n name: 'pivot-table-chart' as const\n};\n\nexport const materialPixIcon = {\n data: ``,\n name: 'pix' as const\n};\n\nexport const materialPlaceIcon = {\n data: ``,\n name: 'place' as const\n};\n\nexport const materialPlagiarismIcon = {\n data: ``,\n name: 'plagiarism' as const\n};\n\nexport const materialPlayArrowIcon = {\n data: ``,\n name: 'play-arrow' as const\n};\n\nexport const materialPlayCircleIcon = {\n data: ``,\n name: 'play-circle' as const\n};\n\nexport const materialPlayCircleFilledIcon = {\n data: ``,\n name: 'play-circle-filled' as const\n};\n\nexport const materialPlayCircleOutlineIcon = {\n data: ``,\n name: 'play-circle-outline' as const\n};\n\nexport const materialPlayDisabledIcon = {\n data: ``,\n name: 'play-disabled' as const\n};\n\nexport const materialPlayForWorkIcon = {\n data: ``,\n name: 'play-for-work' as const\n};\n\nexport const materialPlayLessonIcon = {\n data: ``,\n name: 'play-lesson' as const\n};\n\nexport const materialPlaylistAddIcon = {\n data: ``,\n name: 'playlist-add' as const\n};\n\nexport const materialPlaylistAddCheckIcon = {\n data: ``,\n name: 'playlist-add-check' as const\n};\n\nexport const materialPlaylistAddCheckCircleIcon = {\n data: ``,\n name: 'playlist-add-check-circle' as const\n};\n\nexport const materialPlaylistAddCircleIcon = {\n data: ``,\n name: 'playlist-add-circle' as const\n};\n\nexport const materialPlaylistPlayIcon = {\n data: ``,\n name: 'playlist-play' as const\n};\n\nexport const materialPlaylistRemoveIcon = {\n data: ``,\n name: 'playlist-remove' as const\n};\n\nexport const materialPlumbingIcon = {\n data: ``,\n name: 'plumbing' as const\n};\n\nexport const materialPlusOneIcon = {\n data: ``,\n name: 'plus-one' as const\n};\n\nexport const materialPodcastsIcon = {\n data: ``,\n name: 'podcasts' as const\n};\n\nexport const materialPointOfSaleIcon = {\n data: ``,\n name: 'point-of-sale' as const\n};\n\nexport const materialPolicyIcon = {\n data: ``,\n name: 'policy' as const\n};\n\nexport const materialPollIcon = {\n data: ``,\n name: 'poll' as const\n};\n\nexport const materialPolylineIcon = {\n data: ``,\n name: 'polyline' as const\n};\n\nexport const materialPolymerIcon = {\n data: ``,\n name: 'polymer' as const\n};\n\nexport const materialPoolIcon = {\n data: ``,\n name: 'pool' as const\n};\n\nexport const materialPortableWifiOffIcon = {\n data: ``,\n name: 'portable-wifi-off' as const\n};\n\nexport const materialPortraitIcon = {\n data: ``,\n name: 'portrait' as const\n};\n\nexport const materialPostAddIcon = {\n data: ``,\n name: 'post-add' as const\n};\n\nexport const materialPowerIcon = {\n data: ``,\n name: 'power' as const\n};\n\nexport const materialPowerInputIcon = {\n data: ``,\n name: 'power-input' as const\n};\n\nexport const materialPowerOffIcon = {\n data: ``,\n name: 'power-off' as const\n};\n\nexport const materialPowerSettingsNewIcon = {\n data: ``,\n name: 'power-settings-new' as const\n};\n\nexport const materialPrecisionManufacturingIcon = {\n data: ``,\n name: 'precision-manufacturing' as const\n};\n\nexport const materialPregnantWomanIcon = {\n data: ``,\n name: 'pregnant-woman' as const\n};\n\nexport const materialPresentToAllIcon = {\n data: ``,\n name: 'present-to-all' as const\n};\n\nexport const materialPreviewIcon = {\n data: ``,\n name: 'preview' as const\n};\n\nexport const materialPriceChangeIcon = {\n data: ``,\n name: 'price-change' as const\n};\n\nexport const materialPriceCheckIcon = {\n data: ``,\n name: 'price-check' as const\n};\n\nexport const materialPrintIcon = {\n data: ``,\n name: 'print' as const\n};\n\nexport const materialPrintDisabledIcon = {\n data: ``,\n name: 'print-disabled' as const\n};\n\nexport const materialPriorityHighIcon = {\n data: ``,\n name: 'priority-high' as const\n};\n\nexport const materialPrivacyTipIcon = {\n data: ``,\n name: 'privacy-tip' as const\n};\n\nexport const materialPrivateConnectivityIcon = {\n data: ``,\n name: 'private-connectivity' as const\n};\n\nexport const materialProductionQuantityLimitsIcon = {\n data: ``,\n name: 'production-quantity-limits' as const\n};\n\nexport const materialPropaneIcon = {\n data: ``,\n name: 'propane' as const\n};\n\nexport const materialPropaneTankIcon = {\n data: ``,\n name: 'propane-tank' as const\n};\n\nexport const materialPsychologyIcon = {\n data: ``,\n name: 'psychology' as const\n};\n\nexport const materialPsychologyAltIcon = {\n data: ``,\n name: 'psychology-alt' as const\n};\n\nexport const materialPublicIcon = {\n data: ``,\n name: 'public' as const\n};\n\nexport const materialPublicOffIcon = {\n data: ``,\n name: 'public-off' as const\n};\n\nexport const materialPublishIcon = {\n data: ``,\n name: 'publish' as const\n};\n\nexport const materialPublishedWithChangesIcon = {\n data: ``,\n name: 'published-with-changes' as const\n};\n\nexport const materialPunchClockIcon = {\n data: ``,\n name: 'punch-clock' as const\n};\n\nexport const materialPushPinIcon = {\n data: ``,\n name: 'push-pin' as const\n};\n\nexport const materialQrCodeIcon = {\n data: ``,\n name: 'qr-code' as const\n};\n\nexport const materialQrCode2Icon = {\n data: ``,\n name: 'qr-code-2' as const\n};\n\nexport const materialQrCodeScannerIcon = {\n data: ``,\n name: 'qr-code-scanner' as const\n};\n\nexport const materialQueryBuilderIcon = {\n data: ``,\n name: 'query-builder' as const\n};\n\nexport const materialQueryStatsIcon = {\n data: ``,\n name: 'query-stats' as const\n};\n\nexport const materialQuestionAnswerIcon = {\n data: ``,\n name: 'question-answer' as const\n};\n\nexport const materialQuestionMarkIcon = {\n data: ``,\n name: 'question-mark' as const\n};\n\nexport const materialQueueIcon = {\n data: ``,\n name: 'queue' as const\n};\n\nexport const materialQueueMusicIcon = {\n data: ``,\n name: 'queue-music' as const\n};\n\nexport const materialQueuePlayNextIcon = {\n data: ``,\n name: 'queue-play-next' as const\n};\n\nexport const materialQuickreplyIcon = {\n data: ``,\n name: 'quickreply' as const\n};\n\nexport const materialQuizIcon = {\n data: ``,\n name: 'quiz' as const\n};\n\nexport const materialRMobiledataIcon = {\n data: ``,\n name: 'r-mobiledata' as const\n};\n\nexport const materialRadarIcon = {\n data: ``,\n name: 'radar' as const\n};\n\nexport const materialRadioIcon = {\n data: ``,\n name: 'radio' as const\n};\n\nexport const materialRadioButtonCheckedIcon = {\n data: ``,\n name: 'radio-button-checked' as const\n};\n\nexport const materialRadioButtonUncheckedIcon = {\n data: ``,\n name: 'radio-button-unchecked' as const\n};\n\nexport const materialRailwayAlertIcon = {\n data: ``,\n name: 'railway-alert' as const\n};\n\nexport const materialRamenDiningIcon = {\n data: ``,\n name: 'ramen-dining' as const\n};\n\nexport const materialRampLeftIcon = {\n data: ``,\n name: 'ramp-left' as const\n};\n\nexport const materialRampRightIcon = {\n data: ``,\n name: 'ramp-right' as const\n};\n\nexport const materialRateReviewIcon = {\n data: ``,\n name: 'rate-review' as const\n};\n\nexport const materialRawOffIcon = {\n data: ``,\n name: 'raw-off' as const\n};\n\nexport const materialRawOnIcon = {\n data: ``,\n name: 'raw-on' as const\n};\n\nexport const materialReadMoreIcon = {\n data: ``,\n name: 'read-more' as const\n};\n\nexport const materialRealEstateAgentIcon = {\n data: ``,\n name: 'real-estate-agent' as const\n};\n\nexport const materialReceiptIcon = {\n data: ``,\n name: 'receipt' as const\n};\n\nexport const materialReceiptLongIcon = {\n data: ``,\n name: 'receipt-long' as const\n};\n\nexport const materialRecentActorsIcon = {\n data: ``,\n name: 'recent-actors' as const\n};\n\nexport const materialRecommendIcon = {\n data: ``,\n name: 'recommend' as const\n};\n\nexport const materialRecordVoiceOverIcon = {\n data: ``,\n name: 'record-voice-over' as const\n};\n\nexport const materialRectangleIcon = {\n data: ``,\n name: 'rectangle' as const\n};\n\nexport const materialRecyclingIcon = {\n data: ``,\n name: 'recycling' as const\n};\n\nexport const materialRedeemIcon = {\n data: ``,\n name: 'redeem' as const\n};\n\nexport const materialRedoIcon = {\n data: ``,\n name: 'redo' as const\n};\n\nexport const materialReduceCapacityIcon = {\n data: ``,\n name: 'reduce-capacity' as const\n};\n\nexport const materialRefreshIcon = {\n data: ``,\n name: 'refresh' as const\n};\n\nexport const materialRememberMeIcon = {\n data: ``,\n name: 'remember-me' as const\n};\n\nexport const materialRemoveIcon = {\n data: ``,\n name: 'remove' as const\n};\n\nexport const materialRemoveCircleIcon = {\n data: ``,\n name: 'remove-circle' as const\n};\n\nexport const materialRemoveCircleOutlineIcon = {\n data: ``,\n name: 'remove-circle-outline' as const\n};\n\nexport const materialRemoveDoneIcon = {\n data: ``,\n name: 'remove-done' as const\n};\n\nexport const materialRemoveFromQueueIcon = {\n data: ``,\n name: 'remove-from-queue' as const\n};\n\nexport const materialRemoveModeratorIcon = {\n data: ``,\n name: 'remove-moderator' as const\n};\n\nexport const materialRemoveRedEyeIcon = {\n data: ``,\n name: 'remove-red-eye' as const\n};\n\nexport const materialRemoveRoadIcon = {\n data: ``,\n name: 'remove-road' as const\n};\n\nexport const materialRemoveShoppingCartIcon = {\n data: ``,\n name: 'remove-shopping-cart' as const\n};\n\nexport const materialReorderIcon = {\n data: ``,\n name: 'reorder' as const\n};\n\nexport const materialRepartitionIcon = {\n data: ``,\n name: 'repartition' as const\n};\n\nexport const materialRepeatIcon = {\n data: ``,\n name: 'repeat' as const\n};\n\nexport const materialRepeatOnIcon = {\n data: ``,\n name: 'repeat-on' as const\n};\n\nexport const materialRepeatOneIcon = {\n data: ``,\n name: 'repeat-one' as const\n};\n\nexport const materialRepeatOneOnIcon = {\n data: ``,\n name: 'repeat-one-on' as const\n};\n\nexport const materialReplayIcon = {\n data: ``,\n name: 'replay' as const\n};\n\nexport const materialReplay10Icon = {\n data: ``,\n name: 'replay-10' as const\n};\n\nexport const materialReplay30Icon = {\n data: ``,\n name: 'replay-30' as const\n};\n\nexport const materialReplay5Icon = {\n data: ``,\n name: 'replay-5' as const\n};\n\nexport const materialReplayCircleFilledIcon = {\n data: ``,\n name: 'replay-circle-filled' as const\n};\n\nexport const materialReplyIcon = {\n data: ``,\n name: 'reply' as const\n};\n\nexport const materialReplyAllIcon = {\n data: ``,\n name: 'reply-all' as const\n};\n\nexport const materialReportIcon = {\n data: ``,\n name: 'report' as const\n};\n\nexport const materialReportGmailerrorredIcon = {\n data: ``,\n name: 'report-gmailerrorred' as const\n};\n\nexport const materialReportOffIcon = {\n data: ``,\n name: 'report-off' as const\n};\n\nexport const materialReportProblemIcon = {\n data: ``,\n name: 'report-problem' as const\n};\n\nexport const materialRequestPageIcon = {\n data: ``,\n name: 'request-page' as const\n};\n\nexport const materialRequestQuoteIcon = {\n data: ``,\n name: 'request-quote' as const\n};\n\nexport const materialResetTvIcon = {\n data: ``,\n name: 'reset-tv' as const\n};\n\nexport const materialRestartAltIcon = {\n data: ``,\n name: 'restart-alt' as const\n};\n\nexport const materialRestaurantIcon = {\n data: ``,\n name: 'restaurant' as const\n};\n\nexport const materialRestaurantMenuIcon = {\n data: ``,\n name: 'restaurant-menu' as const\n};\n\nexport const materialRestoreIcon = {\n data: ``,\n name: 'restore' as const\n};\n\nexport const materialRestoreFromTrashIcon = {\n data: ``,\n name: 'restore-from-trash' as const\n};\n\nexport const materialRestorePageIcon = {\n data: ``,\n name: 'restore-page' as const\n};\n\nexport const materialReviewsIcon = {\n data: ``,\n name: 'reviews' as const\n};\n\nexport const materialRiceBowlIcon = {\n data: ``,\n name: 'rice-bowl' as const\n};\n\nexport const materialRingVolumeIcon = {\n data: ``,\n name: 'ring-volume' as const\n};\n\nexport const materialRocketIcon = {\n data: ``,\n name: 'rocket' as const\n};\n\nexport const materialRocketLaunchIcon = {\n data: ``,\n name: 'rocket-launch' as const\n};\n\nexport const materialRollerShadesIcon = {\n data: ``,\n name: 'roller-shades' as const\n};\n\nexport const materialRollerShadesClosedIcon = {\n data: ``,\n name: 'roller-shades-closed' as const\n};\n\nexport const materialRollerSkatingIcon = {\n data: ``,\n name: 'roller-skating' as const\n};\n\nexport const materialRoofingIcon = {\n data: ``,\n name: 'roofing' as const\n};\n\nexport const materialRoomIcon = {\n data: ``,\n name: 'room' as const\n};\n\nexport const materialRoomPreferencesIcon = {\n data: ``,\n name: 'room-preferences' as const\n};\n\nexport const materialRoomServiceIcon = {\n data: ``,\n name: 'room-service' as const\n};\n\nexport const materialRotate90DegreesCcwIcon = {\n data: ``,\n name: 'rotate-90-degrees-ccw' as const\n};\n\nexport const materialRotate90DegreesCwIcon = {\n data: ``,\n name: 'rotate-90-degrees-cw' as const\n};\n\nexport const materialRotateLeftIcon = {\n data: ``,\n name: 'rotate-left' as const\n};\n\nexport const materialRotateRightIcon = {\n data: ``,\n name: 'rotate-right' as const\n};\n\nexport const materialRoundaboutLeftIcon = {\n data: ``,\n name: 'roundabout-left' as const\n};\n\nexport const materialRoundaboutRightIcon = {\n data: ``,\n name: 'roundabout-right' as const\n};\n\nexport const materialRoundedCornerIcon = {\n data: ``,\n name: 'rounded-corner' as const\n};\n\nexport const materialRouteIcon = {\n data: ``,\n name: 'route' as const\n};\n\nexport const materialRouterIcon = {\n data: ``,\n name: 'router' as const\n};\n\nexport const materialRowingIcon = {\n data: ``,\n name: 'rowing' as const\n};\n\nexport const materialRssFeedIcon = {\n data: ``,\n name: 'rss-feed' as const\n};\n\nexport const materialRsvpIcon = {\n data: ``,\n name: 'rsvp' as const\n};\n\nexport const materialRttIcon = {\n data: ``,\n name: 'rtt' as const\n};\n\nexport const materialRuleIcon = {\n data: ``,\n name: 'rule' as const\n};\n\nexport const materialRuleFolderIcon = {\n data: ``,\n name: 'rule-folder' as const\n};\n\nexport const materialRunCircleIcon = {\n data: ``,\n name: 'run-circle' as const\n};\n\nexport const materialRunningWithErrorsIcon = {\n data: ``,\n name: 'running-with-errors' as const\n};\n\nexport const materialRvHookupIcon = {\n data: ``,\n name: 'rv-hookup' as const\n};\n\nexport const materialSafetyCheckIcon = {\n data: ``,\n name: 'safety-check' as const\n};\n\nexport const materialSafetyDividerIcon = {\n data: ``,\n name: 'safety-divider' as const\n};\n\nexport const materialSailingIcon = {\n data: ``,\n name: 'sailing' as const\n};\n\nexport const materialSanitizerIcon = {\n data: ``,\n name: 'sanitizer' as const\n};\n\nexport const materialSatelliteIcon = {\n data: ``,\n name: 'satellite' as const\n};\n\nexport const materialSatelliteAltIcon = {\n data: ``,\n name: 'satellite-alt' as const\n};\n\nexport const materialSaveIcon = {\n data: ``,\n name: 'save' as const\n};\n\nexport const materialSaveAltIcon = {\n data: ``,\n name: 'save-alt' as const\n};\n\nexport const materialSaveAsIcon = {\n data: ``,\n name: 'save-as' as const\n};\n\nexport const materialSavedSearchIcon = {\n data: ``,\n name: 'saved-search' as const\n};\n\nexport const materialSavingsIcon = {\n data: ``,\n name: 'savings' as const\n};\n\nexport const materialScaleIcon = {\n data: ``,\n name: 'scale' as const\n};\n\nexport const materialScannerIcon = {\n data: ``,\n name: 'scanner' as const\n};\n\nexport const materialScatterPlotIcon = {\n data: ``,\n name: 'scatter-plot' as const\n};\n\nexport const materialScheduleIcon = {\n data: ``,\n name: 'schedule' as const\n};\n\nexport const materialScheduleSendIcon = {\n data: ``,\n name: 'schedule-send' as const\n};\n\nexport const materialSchemaIcon = {\n data: ``,\n name: 'schema' as const\n};\n\nexport const materialSchoolIcon = {\n data: ``,\n name: 'school' as const\n};\n\nexport const materialScienceIcon = {\n data: ``,\n name: 'science' as const\n};\n\nexport const materialScoreIcon = {\n data: ``,\n name: 'score' as const\n};\n\nexport const materialScoreboardIcon = {\n data: ``,\n name: 'scoreboard' as const\n};\n\nexport const materialScreenLockLandscapeIcon = {\n data: ``,\n name: 'screen-lock-landscape' as const\n};\n\nexport const materialScreenLockPortraitIcon = {\n data: ``,\n name: 'screen-lock-portrait' as const\n};\n\nexport const materialScreenLockRotationIcon = {\n data: ``,\n name: 'screen-lock-rotation' as const\n};\n\nexport const materialScreenRotationIcon = {\n data: ``,\n name: 'screen-rotation' as const\n};\n\nexport const materialScreenRotationAltIcon = {\n data: ``,\n name: 'screen-rotation-alt' as const\n};\n\nexport const materialScreenSearchDesktopIcon = {\n data: ``,\n name: 'screen-search-desktop' as const\n};\n\nexport const materialScreenShareIcon = {\n data: ``,\n name: 'screen-share' as const\n};\n\nexport const materialScreenshotIcon = {\n data: ``,\n name: 'screenshot' as const\n};\n\nexport const materialScreenshotMonitorIcon = {\n data: ``,\n name: 'screenshot-monitor' as const\n};\n\nexport const materialScubaDivingIcon = {\n data: ``,\n name: 'scuba-diving' as const\n};\n\nexport const materialSdIcon = {\n data: ``,\n name: 'sd' as const\n};\n\nexport const materialSdCardIcon = {\n data: ``,\n name: 'sd-card' as const\n};\n\nexport const materialSdCardAlertIcon = {\n data: ``,\n name: 'sd-card-alert' as const\n};\n\nexport const materialSdStorageIcon = {\n data: ``,\n name: 'sd-storage' as const\n};\n\nexport const materialSearchIcon = {\n data: ``,\n name: 'search' as const\n};\n\nexport const materialSearchOffIcon = {\n data: ``,\n name: 'search-off' as const\n};\n\nexport const materialSecurityIcon = {\n data: ``,\n name: 'security' as const\n};\n\nexport const materialSecurityUpdateIcon = {\n data: ``,\n name: 'security-update' as const\n};\n\nexport const materialSecurityUpdateGoodIcon = {\n data: ``,\n name: 'security-update-good' as const\n};\n\nexport const materialSecurityUpdateWarningIcon = {\n data: ``,\n name: 'security-update-warning' as const\n};\n\nexport const materialSegmentIcon = {\n data: ``,\n name: 'segment' as const\n};\n\nexport const materialSelectAllIcon = {\n data: ``,\n name: 'select-all' as const\n};\n\nexport const materialSelfImprovementIcon = {\n data: ``,\n name: 'self-improvement' as const\n};\n\nexport const materialSellIcon = {\n data: ``,\n name: 'sell' as const\n};\n\nexport const materialSendIcon = {\n data: ``,\n name: 'send' as const\n};\n\nexport const materialSendAndArchiveIcon = {\n data: ``,\n name: 'send-and-archive' as const\n};\n\nexport const materialSendTimeExtensionIcon = {\n data: ``,\n name: 'send-time-extension' as const\n};\n\nexport const materialSendToMobileIcon = {\n data: ``,\n name: 'send-to-mobile' as const\n};\n\nexport const materialSensorDoorIcon = {\n data: ``,\n name: 'sensor-door' as const\n};\n\nexport const materialSensorOccupiedIcon = {\n data: ``,\n name: 'sensor-occupied' as const\n};\n\nexport const materialSensorWindowIcon = {\n data: ``,\n name: 'sensor-window' as const\n};\n\nexport const materialSensorsIcon = {\n data: ``,\n name: 'sensors' as const\n};\n\nexport const materialSensorsOffIcon = {\n data: ``,\n name: 'sensors-off' as const\n};\n\nexport const materialSentimentDissatisfiedIcon = {\n data: ``,\n name: 'sentiment-dissatisfied' as const\n};\n\nexport const materialSentimentNeutralIcon = {\n data: ``,\n name: 'sentiment-neutral' as const\n};\n\nexport const materialSentimentSatisfiedIcon = {\n data: ``,\n name: 'sentiment-satisfied' as const\n};\n\nexport const materialSentimentSatisfiedAltIcon = {\n data: ``,\n name: 'sentiment-satisfied-alt' as const\n};\n\nexport const materialSentimentVeryDissatisfiedIcon = {\n data: ``,\n name: 'sentiment-very-dissatisfied' as const\n};\n\nexport const materialSentimentVerySatisfiedIcon = {\n data: ``,\n name: 'sentiment-very-satisfied' as const\n};\n\nexport const materialSetMealIcon = {\n data: ``,\n name: 'set-meal' as const\n};\n\nexport const materialSettingsIcon = {\n data: ``,\n name: 'settings' as const\n};\n\nexport const materialSettingsAccessibilityIcon = {\n data: ``,\n name: 'settings-accessibility' as const\n};\n\nexport const materialSettingsApplicationsIcon = {\n data: ``,\n name: 'settings-applications' as const\n};\n\nexport const materialSettingsBackupRestoreIcon = {\n data: ``,\n name: 'settings-backup-restore' as const\n};\n\nexport const materialSettingsBluetoothIcon = {\n data: ``,\n name: 'settings-bluetooth' as const\n};\n\nexport const materialSettingsBrightnessIcon = {\n data: ``,\n name: 'settings-brightness' as const\n};\n\nexport const materialSettingsCellIcon = {\n data: ``,\n name: 'settings-cell' as const\n};\n\nexport const materialSettingsEthernetIcon = {\n data: ``,\n name: 'settings-ethernet' as const\n};\n\nexport const materialSettingsInputAntennaIcon = {\n data: ``,\n name: 'settings-input-antenna' as const\n};\n\nexport const materialSettingsInputComponentIcon = {\n data: ``,\n name: 'settings-input-component' as const\n};\n\nexport const materialSettingsInputCompositeIcon = {\n data: ``,\n name: 'settings-input-composite' as const\n};\n\nexport const materialSettingsInputHdmiIcon = {\n data: ``,\n name: 'settings-input-hdmi' as const\n};\n\nexport const materialSettingsInputSvideoIcon = {\n data: ``,\n name: 'settings-input-svideo' as const\n};\n\nexport const materialSettingsOverscanIcon = {\n data: ``,\n name: 'settings-overscan' as const\n};\n\nexport const materialSettingsPhoneIcon = {\n data: ``,\n name: 'settings-phone' as const\n};\n\nexport const materialSettingsPowerIcon = {\n data: ``,\n name: 'settings-power' as const\n};\n\nexport const materialSettingsRemoteIcon = {\n data: ``,\n name: 'settings-remote' as const\n};\n\nexport const materialSettingsSuggestIcon = {\n data: ``,\n name: 'settings-suggest' as const\n};\n\nexport const materialSettingsSystemDaydreamIcon = {\n data: ``,\n name: 'settings-system-daydream' as const\n};\n\nexport const materialSettingsVoiceIcon = {\n data: ``,\n name: 'settings-voice' as const\n};\n\nexport const materialSevereColdIcon = {\n data: ``,\n name: 'severe-cold' as const\n};\n\nexport const materialShapeLineIcon = {\n data: ``,\n name: 'shape-line' as const\n};\n\nexport const materialShareIcon = {\n data: ``,\n name: 'share' as const\n};\n\nexport const materialShareLocationIcon = {\n data: ``,\n name: 'share-location' as const\n};\n\nexport const materialShieldIcon = {\n data: ``,\n name: 'shield' as const\n};\n\nexport const materialShieldMoonIcon = {\n data: ``,\n name: 'shield-moon' as const\n};\n\nexport const materialShopIcon = {\n data: ``,\n name: 'shop' as const\n};\n\nexport const materialShop2Icon = {\n data: ``,\n name: 'shop-2' as const\n};\n\nexport const materialShopTwoIcon = {\n data: ``,\n name: 'shop-two' as const\n};\n\nexport const materialShoppingBagIcon = {\n data: ``,\n name: 'shopping-bag' as const\n};\n\nexport const materialShoppingBasketIcon = {\n data: ``,\n name: 'shopping-basket' as const\n};\n\nexport const materialShoppingCartIcon = {\n data: ``,\n name: 'shopping-cart' as const\n};\n\nexport const materialShoppingCartCheckoutIcon = {\n data: ``,\n name: 'shopping-cart-checkout' as const\n};\n\nexport const materialShortTextIcon = {\n data: ``,\n name: 'short-text' as const\n};\n\nexport const materialShortcutIcon = {\n data: ``,\n name: 'shortcut' as const\n};\n\nexport const materialShowChartIcon = {\n data: ``,\n name: 'show-chart' as const\n};\n\nexport const materialShowerIcon = {\n data: ``,\n name: 'shower' as const\n};\n\nexport const materialShuffleIcon = {\n data: ``,\n name: 'shuffle' as const\n};\n\nexport const materialShuffleOnIcon = {\n data: ``,\n name: 'shuffle-on' as const\n};\n\nexport const materialShutterSpeedIcon = {\n data: ``,\n name: 'shutter-speed' as const\n};\n\nexport const materialSickIcon = {\n data: ``,\n name: 'sick' as const\n};\n\nexport const materialSignLanguageIcon = {\n data: ``,\n name: 'sign-language' as const\n};\n\nexport const materialSignalCellular0BarIcon = {\n data: ``,\n name: 'signal-cellular-0-bar' as const\n};\n\nexport const materialSignalCellular4BarIcon = {\n data: ``,\n name: 'signal-cellular-4-bar' as const\n};\n\nexport const materialSignalCellularAltIcon = {\n data: ``,\n name: 'signal-cellular-alt' as const\n};\n\nexport const materialSignalCellularAlt1BarIcon = {\n data: ``,\n name: 'signal-cellular-alt-1-bar' as const\n};\n\nexport const materialSignalCellularAlt2BarIcon = {\n data: ``,\n name: 'signal-cellular-alt-2-bar' as const\n};\n\nexport const materialSignalCellularConnectedNoInternet0BarIcon = {\n data: ``,\n name: 'signal-cellular-connected-no-internet-0-bar' as const\n};\n\nexport const materialSignalCellularConnectedNoInternet4BarIcon = {\n data: ``,\n name: 'signal-cellular-connected-no-internet-4-bar' as const\n};\n\nexport const materialSignalCellularNoSimIcon = {\n data: ``,\n name: 'signal-cellular-no-sim' as const\n};\n\nexport const materialSignalCellularNodataIcon = {\n data: ``,\n name: 'signal-cellular-nodata' as const\n};\n\nexport const materialSignalCellularNullIcon = {\n data: ``,\n name: 'signal-cellular-null' as const\n};\n\nexport const materialSignalCellularOffIcon = {\n data: ``,\n name: 'signal-cellular-off' as const\n};\n\nexport const materialSignalWifi0BarIcon = {\n data: ``,\n name: 'signal-wifi-0-bar' as const\n};\n\nexport const materialSignalWifi4BarIcon = {\n data: ``,\n name: 'signal-wifi-4-bar' as const\n};\n\nexport const materialSignalWifi4BarLockIcon = {\n data: ``,\n name: 'signal-wifi-4-bar-lock' as const\n};\n\nexport const materialSignalWifiBadIcon = {\n data: ``,\n name: 'signal-wifi-bad' as const\n};\n\nexport const materialSignalWifiConnectedNoInternet4Icon = {\n data: ``,\n name: 'signal-wifi-connected-no-internet-4' as const\n};\n\nexport const materialSignalWifiOffIcon = {\n data: ``,\n name: 'signal-wifi-off' as const\n};\n\nexport const materialSignalWifiStatusbar4BarIcon = {\n data: ``,\n name: 'signal-wifi-statusbar-4-bar' as const\n};\n\nexport const materialSignalWifiStatusbarConnectedNoInternet4Icon = {\n data: ``,\n name: 'signal-wifi-statusbar-connected-no-internet-4' as const\n};\n\nexport const materialSignalWifiStatusbarNullIcon = {\n data: ``,\n name: 'signal-wifi-statusbar-null' as const\n};\n\nexport const materialSignpostIcon = {\n data: ``,\n name: 'signpost' as const\n};\n\nexport const materialSimCardIcon = {\n data: ``,\n name: 'sim-card' as const\n};\n\nexport const materialSimCardAlertIcon = {\n data: ``,\n name: 'sim-card-alert' as const\n};\n\nexport const materialSimCardDownloadIcon = {\n data: ``,\n name: 'sim-card-download' as const\n};\n\nexport const materialSingleBedIcon = {\n data: ``,\n name: 'single-bed' as const\n};\n\nexport const materialSipIcon = {\n data: ``,\n name: 'sip' as const\n};\n\nexport const materialSkateboardingIcon = {\n data: ``,\n name: 'skateboarding' as const\n};\n\nexport const materialSkipNextIcon = {\n data: ``,\n name: 'skip-next' as const\n};\n\nexport const materialSkipPreviousIcon = {\n data: ``,\n name: 'skip-previous' as const\n};\n\nexport const materialSleddingIcon = {\n data: ``,\n name: 'sledding' as const\n};\n\nexport const materialSlideshowIcon = {\n data: ``,\n name: 'slideshow' as const\n};\n\nexport const materialSlowMotionVideoIcon = {\n data: ``,\n name: 'slow-motion-video' as const\n};\n\nexport const materialSmartButtonIcon = {\n data: ``,\n name: 'smart-button' as const\n};\n\nexport const materialSmartDisplayIcon = {\n data: ``,\n name: 'smart-display' as const\n};\n\nexport const materialSmartScreenIcon = {\n data: ``,\n name: 'smart-screen' as const\n};\n\nexport const materialSmartToyIcon = {\n data: ``,\n name: 'smart-toy' as const\n};\n\nexport const materialSmartphoneIcon = {\n data: ``,\n name: 'smartphone' as const\n};\n\nexport const materialSmokeFreeIcon = {\n data: ``,\n name: 'smoke-free' as const\n};\n\nexport const materialSmokingRoomsIcon = {\n data: ``,\n name: 'smoking-rooms' as const\n};\n\nexport const materialSmsIcon = {\n data: ``,\n name: 'sms' as const\n};\n\nexport const materialSmsFailedIcon = {\n data: ``,\n name: 'sms-failed' as const\n};\n\nexport const materialSnippetFolderIcon = {\n data: ``,\n name: 'snippet-folder' as const\n};\n\nexport const materialSnoozeIcon = {\n data: ``,\n name: 'snooze' as const\n};\n\nexport const materialSnowboardingIcon = {\n data: ``,\n name: 'snowboarding' as const\n};\n\nexport const materialSnowmobileIcon = {\n data: ``,\n name: 'snowmobile' as const\n};\n\nexport const materialSnowshoeingIcon = {\n data: ``,\n name: 'snowshoeing' as const\n};\n\nexport const materialSoapIcon = {\n data: ``,\n name: 'soap' as const\n};\n\nexport const materialSocialDistanceIcon = {\n data: ``,\n name: 'social-distance' as const\n};\n\nexport const materialSolarPowerIcon = {\n data: ``,\n name: 'solar-power' as const\n};\n\nexport const materialSortIcon = {\n data: ``,\n name: 'sort' as const\n};\n\nexport const materialSortByAlphaIcon = {\n data: ``,\n name: 'sort-by-alpha' as const\n};\n\nexport const materialSosIcon = {\n data: ``,\n name: 'sos' as const\n};\n\nexport const materialSoupKitchenIcon = {\n data: ``,\n name: 'soup-kitchen' as const\n};\n\nexport const materialSourceIcon = {\n data: ``,\n name: 'source' as const\n};\n\nexport const materialSouthIcon = {\n data: ``,\n name: 'south' as const\n};\n\nexport const materialSouthAmericaIcon = {\n data: ``,\n name: 'south-america' as const\n};\n\nexport const materialSouthEastIcon = {\n data: ``,\n name: 'south-east' as const\n};\n\nexport const materialSouthWestIcon = {\n data: ``,\n name: 'south-west' as const\n};\n\nexport const materialSpaIcon = {\n data: ``,\n name: 'spa' as const\n};\n\nexport const materialSpaceBarIcon = {\n data: ``,\n name: 'space-bar' as const\n};\n\nexport const materialSpaceDashboardIcon = {\n data: ``,\n name: 'space-dashboard' as const\n};\n\nexport const materialSpatialAudioIcon = {\n data: ``,\n name: 'spatial-audio' as const\n};\n\nexport const materialSpatialAudioOffIcon = {\n data: ``,\n name: 'spatial-audio-off' as const\n};\n\nexport const materialSpatialTrackingIcon = {\n data: ``,\n name: 'spatial-tracking' as const\n};\n\nexport const materialSpeakerIcon = {\n data: ``,\n name: 'speaker' as const\n};\n\nexport const materialSpeakerGroupIcon = {\n data: ``,\n name: 'speaker-group' as const\n};\n\nexport const materialSpeakerNotesIcon = {\n data: ``,\n name: 'speaker-notes' as const\n};\n\nexport const materialSpeakerNotesOffIcon = {\n data: ``,\n name: 'speaker-notes-off' as const\n};\n\nexport const materialSpeakerPhoneIcon = {\n data: ``,\n name: 'speaker-phone' as const\n};\n\nexport const materialSpeedIcon = {\n data: ``,\n name: 'speed' as const\n};\n\nexport const materialSpellcheckIcon = {\n data: ``,\n name: 'spellcheck' as const\n};\n\nexport const materialSplitscreenIcon = {\n data: ``,\n name: 'splitscreen' as const\n};\n\nexport const materialSpokeIcon = {\n data: ``,\n name: 'spoke' as const\n};\n\nexport const materialSportsIcon = {\n data: ``,\n name: 'sports' as const\n};\n\nexport const materialSportsBarIcon = {\n data: ``,\n name: 'sports-bar' as const\n};\n\nexport const materialSportsBaseballIcon = {\n data: ``,\n name: 'sports-baseball' as const\n};\n\nexport const materialSportsBasketballIcon = {\n data: ``,\n name: 'sports-basketball' as const\n};\n\nexport const materialSportsCricketIcon = {\n data: ``,\n name: 'sports-cricket' as const\n};\n\nexport const materialSportsEsportsIcon = {\n data: ``,\n name: 'sports-esports' as const\n};\n\nexport const materialSportsFootballIcon = {\n data: ``,\n name: 'sports-football' as const\n};\n\nexport const materialSportsGolfIcon = {\n data: ``,\n name: 'sports-golf' as const\n};\n\nexport const materialSportsGymnasticsIcon = {\n data: ``,\n name: 'sports-gymnastics' as const\n};\n\nexport const materialSportsHandballIcon = {\n data: ``,\n name: 'sports-handball' as const\n};\n\nexport const materialSportsHockeyIcon = {\n data: ``,\n name: 'sports-hockey' as const\n};\n\nexport const materialSportsKabaddiIcon = {\n data: ``,\n name: 'sports-kabaddi' as const\n};\n\nexport const materialSportsMartialArtsIcon = {\n data: ``,\n name: 'sports-martial-arts' as const\n};\n\nexport const materialSportsMmaIcon = {\n data: ``,\n name: 'sports-mma' as const\n};\n\nexport const materialSportsMotorsportsIcon = {\n data: ``,\n name: 'sports-motorsports' as const\n};\n\nexport const materialSportsRugbyIcon = {\n data: ``,\n name: 'sports-rugby' as const\n};\n\nexport const materialSportsScoreIcon = {\n data: ``,\n name: 'sports-score' as const\n};\n\nexport const materialSportsSoccerIcon = {\n data: ``,\n name: 'sports-soccer' as const\n};\n\nexport const materialSportsTennisIcon = {\n data: ``,\n name: 'sports-tennis' as const\n};\n\nexport const materialSportsVolleyballIcon = {\n data: ``,\n name: 'sports-volleyball' as const\n};\n\nexport const materialSquareIcon = {\n data: ``,\n name: 'square' as const\n};\n\nexport const materialSquareFootIcon = {\n data: ``,\n name: 'square-foot' as const\n};\n\nexport const materialSsidChartIcon = {\n data: ``,\n name: 'ssid-chart' as const\n};\n\nexport const materialStackedBarChartIcon = {\n data: ``,\n name: 'stacked-bar-chart' as const\n};\n\nexport const materialStackedLineChartIcon = {\n data: ``,\n name: 'stacked-line-chart' as const\n};\n\nexport const materialStadiumIcon = {\n data: ``,\n name: 'stadium' as const\n};\n\nexport const materialStairsIcon = {\n data: ``,\n name: 'stairs' as const\n};\n\nexport const materialStarIcon = {\n data: ``,\n name: 'star' as const\n};\n\nexport const materialStarBorderIcon = {\n data: ``,\n name: 'star-border' as const\n};\n\nexport const materialStarBorderPurple500Icon = {\n data: ``,\n name: 'star-border-purple-500' as const\n};\n\nexport const materialStarHalfIcon = {\n data: ``,\n name: 'star-half' as const\n};\n\nexport const materialStarOutlineIcon = {\n data: ``,\n name: 'star-outline' as const\n};\n\nexport const materialStarPurple500Icon = {\n data: ``,\n name: 'star-purple-500' as const\n};\n\nexport const materialStarRateIcon = {\n data: ``,\n name: 'star-rate' as const\n};\n\nexport const materialStarsIcon = {\n data: ``,\n name: 'stars' as const\n};\n\nexport const materialStartIcon = {\n data: ``,\n name: 'start' as const\n};\n\nexport const materialStayCurrentLandscapeIcon = {\n data: ``,\n name: 'stay-current-landscape' as const\n};\n\nexport const materialStayCurrentPortraitIcon = {\n data: ``,\n name: 'stay-current-portrait' as const\n};\n\nexport const materialStayPrimaryLandscapeIcon = {\n data: ``,\n name: 'stay-primary-landscape' as const\n};\n\nexport const materialStayPrimaryPortraitIcon = {\n data: ``,\n name: 'stay-primary-portrait' as const\n};\n\nexport const materialStickyNote2Icon = {\n data: ``,\n name: 'sticky-note-2' as const\n};\n\nexport const materialStopIcon = {\n data: ``,\n name: 'stop' as const\n};\n\nexport const materialStopCircleIcon = {\n data: ``,\n name: 'stop-circle' as const\n};\n\nexport const materialStopScreenShareIcon = {\n data: ``,\n name: 'stop-screen-share' as const\n};\n\nexport const materialStorageIcon = {\n data: ``,\n name: 'storage' as const\n};\n\nexport const materialStoreIcon = {\n data: ``,\n name: 'store' as const\n};\n\nexport const materialStoreMallDirectoryIcon = {\n data: ``,\n name: 'store-mall-directory' as const\n};\n\nexport const materialStorefrontIcon = {\n data: ``,\n name: 'storefront' as const\n};\n\nexport const materialStormIcon = {\n data: ``,\n name: 'storm' as const\n};\n\nexport const materialStraightIcon = {\n data: ``,\n name: 'straight' as const\n};\n\nexport const materialStraightenIcon = {\n data: ``,\n name: 'straighten' as const\n};\n\nexport const materialStreamIcon = {\n data: ``,\n name: 'stream' as const\n};\n\nexport const materialStreetviewIcon = {\n data: ``,\n name: 'streetview' as const\n};\n\nexport const materialStrikethroughSIcon = {\n data: ``,\n name: 'strikethrough-s' as const\n};\n\nexport const materialStrollerIcon = {\n data: ``,\n name: 'stroller' as const\n};\n\nexport const materialStyleIcon = {\n data: ``,\n name: 'style' as const\n};\n\nexport const materialSubdirectoryArrowLeftIcon = {\n data: ``,\n name: 'subdirectory-arrow-left' as const\n};\n\nexport const materialSubdirectoryArrowRightIcon = {\n data: ``,\n name: 'subdirectory-arrow-right' as const\n};\n\nexport const materialSubjectIcon = {\n data: ``,\n name: 'subject' as const\n};\n\nexport const materialSubscriptIcon = {\n data: ``,\n name: 'subscript' as const\n};\n\nexport const materialSubscriptionsIcon = {\n data: ``,\n name: 'subscriptions' as const\n};\n\nexport const materialSubtitlesIcon = {\n data: ``,\n name: 'subtitles' as const\n};\n\nexport const materialSubtitlesOffIcon = {\n data: ``,\n name: 'subtitles-off' as const\n};\n\nexport const materialSubwayIcon = {\n data: ``,\n name: 'subway' as const\n};\n\nexport const materialSummarizeIcon = {\n data: ``,\n name: 'summarize' as const\n};\n\nexport const materialSuperscriptIcon = {\n data: ``,\n name: 'superscript' as const\n};\n\nexport const materialSupervisedUserCircleIcon = {\n data: ``,\n name: 'supervised-user-circle' as const\n};\n\nexport const materialSupervisorAccountIcon = {\n data: ``,\n name: 'supervisor-account' as const\n};\n\nexport const materialSupportIcon = {\n data: ``,\n name: 'support' as const\n};\n\nexport const materialSupportAgentIcon = {\n data: ``,\n name: 'support-agent' as const\n};\n\nexport const materialSurfingIcon = {\n data: ``,\n name: 'surfing' as const\n};\n\nexport const materialSurroundSoundIcon = {\n data: ``,\n name: 'surround-sound' as const\n};\n\nexport const materialSwapCallsIcon = {\n data: ``,\n name: 'swap-calls' as const\n};\n\nexport const materialSwapHorizIcon = {\n data: ``,\n name: 'swap-horiz' as const\n};\n\nexport const materialSwapHorizontalCircleIcon = {\n data: ``,\n name: 'swap-horizontal-circle' as const\n};\n\nexport const materialSwapVertIcon = {\n data: ``,\n name: 'swap-vert' as const\n};\n\nexport const materialSwapVerticalCircleIcon = {\n data: ``,\n name: 'swap-vertical-circle' as const\n};\n\nexport const materialSwipeIcon = {\n data: ``,\n name: 'swipe' as const\n};\n\nexport const materialSwipeDownIcon = {\n data: ``,\n name: 'swipe-down' as const\n};\n\nexport const materialSwipeDownAltIcon = {\n data: ``,\n name: 'swipe-down-alt' as const\n};\n\nexport const materialSwipeLeftIcon = {\n data: ``,\n name: 'swipe-left' as const\n};\n\nexport const materialSwipeLeftAltIcon = {\n data: ``,\n name: 'swipe-left-alt' as const\n};\n\nexport const materialSwipeRightIcon = {\n data: ``,\n name: 'swipe-right' as const\n};\n\nexport const materialSwipeRightAltIcon = {\n data: ``,\n name: 'swipe-right-alt' as const\n};\n\nexport const materialSwipeUpIcon = {\n data: ``,\n name: 'swipe-up' as const\n};\n\nexport const materialSwipeUpAltIcon = {\n data: ``,\n name: 'swipe-up-alt' as const\n};\n\nexport const materialSwipeVerticalIcon = {\n data: ``,\n name: 'swipe-vertical' as const\n};\n\nexport const materialSwitchAccessShortcutIcon = {\n data: ``,\n name: 'switch-access-shortcut' as const\n};\n\nexport const materialSwitchAccessShortcutAddIcon = {\n data: ``,\n name: 'switch-access-shortcut-add' as const\n};\n\nexport const materialSwitchAccountIcon = {\n data: ``,\n name: 'switch-account' as const\n};\n\nexport const materialSwitchCameraIcon = {\n data: ``,\n name: 'switch-camera' as const\n};\n\nexport const materialSwitchLeftIcon = {\n data: ``,\n name: 'switch-left' as const\n};\n\nexport const materialSwitchRightIcon = {\n data: ``,\n name: 'switch-right' as const\n};\n\nexport const materialSwitchVideoIcon = {\n data: ``,\n name: 'switch-video' as const\n};\n\nexport const materialSynagogueIcon = {\n data: ``,\n name: 'synagogue' as const\n};\n\nexport const materialSyncIcon = {\n data: ``,\n name: 'sync' as const\n};\n\nexport const materialSyncAltIcon = {\n data: ``,\n name: 'sync-alt' as const\n};\n\nexport const materialSyncDisabledIcon = {\n data: ``,\n name: 'sync-disabled' as const\n};\n\nexport const materialSyncLockIcon = {\n data: ``,\n name: 'sync-lock' as const\n};\n\nexport const materialSyncProblemIcon = {\n data: ``,\n name: 'sync-problem' as const\n};\n\nexport const materialSystemSecurityUpdateIcon = {\n data: ``,\n name: 'system-security-update' as const\n};\n\nexport const materialSystemSecurityUpdateGoodIcon = {\n data: ``,\n name: 'system-security-update-good' as const\n};\n\nexport const materialSystemSecurityUpdateWarningIcon = {\n data: ``,\n name: 'system-security-update-warning' as const\n};\n\nexport const materialSystemUpdateIcon = {\n data: ``,\n name: 'system-update' as const\n};\n\nexport const materialSystemUpdateAltIcon = {\n data: ``,\n name: 'system-update-alt' as const\n};\n\nexport const materialTabIcon = {\n data: ``,\n name: 'tab' as const\n};\n\nexport const materialTabUnselectedIcon = {\n data: ``,\n name: 'tab-unselected' as const\n};\n\nexport const materialTableBarIcon = {\n data: ``,\n name: 'table-bar' as const\n};\n\nexport const materialTableChartIcon = {\n data: ``,\n name: 'table-chart' as const\n};\n\nexport const materialTableRestaurantIcon = {\n data: ``,\n name: 'table-restaurant' as const\n};\n\nexport const materialTableRowsIcon = {\n data: ``,\n name: 'table-rows' as const\n};\n\nexport const materialTableViewIcon = {\n data: ``,\n name: 'table-view' as const\n};\n\nexport const materialTabletIcon = {\n data: ``,\n name: 'tablet' as const\n};\n\nexport const materialTabletAndroidIcon = {\n data: ``,\n name: 'tablet-android' as const\n};\n\nexport const materialTabletMacIcon = {\n data: ``,\n name: 'tablet-mac' as const\n};\n\nexport const materialTagIcon = {\n data: ``,\n name: 'tag' as const\n};\n\nexport const materialTagFacesIcon = {\n data: ``,\n name: 'tag-faces' as const\n};\n\nexport const materialTakeoutDiningIcon = {\n data: ``,\n name: 'takeout-dining' as const\n};\n\nexport const materialTapAndPlayIcon = {\n data: ``,\n name: 'tap-and-play' as const\n};\n\nexport const materialTapasIcon = {\n data: ``,\n name: 'tapas' as const\n};\n\nexport const materialTaskIcon = {\n data: ``,\n name: 'task' as const\n};\n\nexport const materialTaskAltIcon = {\n data: ``,\n name: 'task-alt' as const\n};\n\nexport const materialTaxiAlertIcon = {\n data: ``,\n name: 'taxi-alert' as const\n};\n\nexport const materialTempleBuddhistIcon = {\n data: ``,\n name: 'temple-buddhist' as const\n};\n\nexport const materialTempleHinduIcon = {\n data: ``,\n name: 'temple-hindu' as const\n};\n\nexport const materialTerminalIcon = {\n data: ``,\n name: 'terminal' as const\n};\n\nexport const materialTerrainIcon = {\n data: ``,\n name: 'terrain' as const\n};\n\nexport const materialTextDecreaseIcon = {\n data: ``,\n name: 'text-decrease' as const\n};\n\nexport const materialTextFieldsIcon = {\n data: ``,\n name: 'text-fields' as const\n};\n\nexport const materialTextFormatIcon = {\n data: ``,\n name: 'text-format' as const\n};\n\nexport const materialTextIncreaseIcon = {\n data: ``,\n name: 'text-increase' as const\n};\n\nexport const materialTextRotateUpIcon = {\n data: ``,\n name: 'text-rotate-up' as const\n};\n\nexport const materialTextRotateVerticalIcon = {\n data: ``,\n name: 'text-rotate-vertical' as const\n};\n\nexport const materialTextRotationAngledownIcon = {\n data: ``,\n name: 'text-rotation-angledown' as const\n};\n\nexport const materialTextRotationAngleupIcon = {\n data: ``,\n name: 'text-rotation-angleup' as const\n};\n\nexport const materialTextRotationDownIcon = {\n data: ``,\n name: 'text-rotation-down' as const\n};\n\nexport const materialTextRotationNoneIcon = {\n data: ``,\n name: 'text-rotation-none' as const\n};\n\nexport const materialTextSnippetIcon = {\n data: ``,\n name: 'text-snippet' as const\n};\n\nexport const materialTextsmsIcon = {\n data: ``,\n name: 'textsms' as const\n};\n\nexport const materialTextureIcon = {\n data: ``,\n name: 'texture' as const\n};\n\nexport const materialTheaterComedyIcon = {\n data: ``,\n name: 'theater-comedy' as const\n};\n\nexport const materialTheatersIcon = {\n data: ``,\n name: 'theaters' as const\n};\n\nexport const materialThermostatIcon = {\n data: ``,\n name: 'thermostat' as const\n};\n\nexport const materialThermostatAutoIcon = {\n data: ``,\n name: 'thermostat-auto' as const\n};\n\nexport const materialThumbDownIcon = {\n data: ``,\n name: 'thumb-down' as const\n};\n\nexport const materialThumbDownAltIcon = {\n data: ``,\n name: 'thumb-down-alt' as const\n};\n\nexport const materialThumbDownOffAltIcon = {\n data: ``,\n name: 'thumb-down-off-alt' as const\n};\n\nexport const materialThumbUpIcon = {\n data: ``,\n name: 'thumb-up' as const\n};\n\nexport const materialThumbUpAltIcon = {\n data: ``,\n name: 'thumb-up-alt' as const\n};\n\nexport const materialThumbUpOffAltIcon = {\n data: ``,\n name: 'thumb-up-off-alt' as const\n};\n\nexport const materialThumbsUpDownIcon = {\n data: ``,\n name: 'thumbs-up-down' as const\n};\n\nexport const materialThunderstormIcon = {\n data: ``,\n name: 'thunderstorm' as const\n};\n\nexport const materialTimeToLeaveIcon = {\n data: ``,\n name: 'time-to-leave' as const\n};\n\nexport const materialTimelapseIcon = {\n data: ``,\n name: 'timelapse' as const\n};\n\nexport const materialTimelineIcon = {\n data: ``,\n name: 'timeline' as const\n};\n\nexport const materialTimerIcon = {\n data: ``,\n name: 'timer' as const\n};\n\nexport const materialTimer10Icon = {\n data: ``,\n name: 'timer-10' as const\n};\n\nexport const materialTimer10SelectIcon = {\n data: ``,\n name: 'timer-10-select' as const\n};\n\nexport const materialTimer3Icon = {\n data: ``,\n name: 'timer-3' as const\n};\n\nexport const materialTimer3SelectIcon = {\n data: ``,\n name: 'timer-3-select' as const\n};\n\nexport const materialTimerOffIcon = {\n data: ``,\n name: 'timer-off' as const\n};\n\nexport const materialTipsAndUpdatesIcon = {\n data: ``,\n name: 'tips-and-updates' as const\n};\n\nexport const materialTireRepairIcon = {\n data: ``,\n name: 'tire-repair' as const\n};\n\nexport const materialTitleIcon = {\n data: ``,\n name: 'title' as const\n};\n\nexport const materialTocIcon = {\n data: ``,\n name: 'toc' as const\n};\n\nexport const materialTodayIcon = {\n data: ``,\n name: 'today' as const\n};\n\nexport const materialToggleOffIcon = {\n data: ``,\n name: 'toggle-off' as const\n};\n\nexport const materialToggleOnIcon = {\n data: ``,\n name: 'toggle-on' as const\n};\n\nexport const materialTokenIcon = {\n data: ``,\n name: 'token' as const\n};\n\nexport const materialTollIcon = {\n data: ``,\n name: 'toll' as const\n};\n\nexport const materialTonalityIcon = {\n data: ``,\n name: 'tonality' as const\n};\n\nexport const materialTopicIcon = {\n data: ``,\n name: 'topic' as const\n};\n\nexport const materialTornadoIcon = {\n data: ``,\n name: 'tornado' as const\n};\n\nexport const materialTouchAppIcon = {\n data: ``,\n name: 'touch-app' as const\n};\n\nexport const materialTourIcon = {\n data: ``,\n name: 'tour' as const\n};\n\nexport const materialToysIcon = {\n data: ``,\n name: 'toys' as const\n};\n\nexport const materialTrackChangesIcon = {\n data: ``,\n name: 'track-changes' as const\n};\n\nexport const materialTrafficIcon = {\n data: ``,\n name: 'traffic' as const\n};\n\nexport const materialTrainIcon = {\n data: ``,\n name: 'train' as const\n};\n\nexport const materialTramIcon = {\n data: ``,\n name: 'tram' as const\n};\n\nexport const materialTranscribeIcon = {\n data: ``,\n name: 'transcribe' as const\n};\n\nexport const materialTransferWithinAStationIcon = {\n data: ``,\n name: 'transfer-within-a-station' as const\n};\n\nexport const materialTransformIcon = {\n data: ``,\n name: 'transform' as const\n};\n\nexport const materialTransgenderIcon = {\n data: ``,\n name: 'transgender' as const\n};\n\nexport const materialTransitEnterexitIcon = {\n data: ``,\n name: 'transit-enterexit' as const\n};\n\nexport const materialTranslateIcon = {\n data: ``,\n name: 'translate' as const\n};\n\nexport const materialTravelExploreIcon = {\n data: ``,\n name: 'travel-explore' as const\n};\n\nexport const materialTrendingDownIcon = {\n data: ``,\n name: 'trending-down' as const\n};\n\nexport const materialTrendingFlatIcon = {\n data: ``,\n name: 'trending-flat' as const\n};\n\nexport const materialTrendingUpIcon = {\n data: ``,\n name: 'trending-up' as const\n};\n\nexport const materialTripOriginIcon = {\n data: ``,\n name: 'trip-origin' as const\n};\n\nexport const materialTroubleshootIcon = {\n data: ``,\n name: 'troubleshoot' as const\n};\n\nexport const materialTryIcon = {\n data: ``,\n name: 'try' as const\n};\n\nexport const materialTsunamiIcon = {\n data: ``,\n name: 'tsunami' as const\n};\n\nexport const materialTtyIcon = {\n data: ``,\n name: 'tty' as const\n};\n\nexport const materialTuneIcon = {\n data: ``,\n name: 'tune' as const\n};\n\nexport const materialTungstenIcon = {\n data: ``,\n name: 'tungsten' as const\n};\n\nexport const materialTurnLeftIcon = {\n data: ``,\n name: 'turn-left' as const\n};\n\nexport const materialTurnRightIcon = {\n data: ``,\n name: 'turn-right' as const\n};\n\nexport const materialTurnSharpLeftIcon = {\n data: ``,\n name: 'turn-sharp-left' as const\n};\n\nexport const materialTurnSharpRightIcon = {\n data: ``,\n name: 'turn-sharp-right' as const\n};\n\nexport const materialTurnSlightLeftIcon = {\n data: ``,\n name: 'turn-slight-left' as const\n};\n\nexport const materialTurnSlightRightIcon = {\n data: ``,\n name: 'turn-slight-right' as const\n};\n\nexport const materialTurnedInIcon = {\n data: ``,\n name: 'turned-in' as const\n};\n\nexport const materialTurnedInNotIcon = {\n data: ``,\n name: 'turned-in-not' as const\n};\n\nexport const materialTvIcon = {\n data: ``,\n name: 'tv' as const\n};\n\nexport const materialTvOffIcon = {\n data: ``,\n name: 'tv-off' as const\n};\n\nexport const materialTwoWheelerIcon = {\n data: ``,\n name: 'two-wheeler' as const\n};\n\nexport const materialTypeSpecimenIcon = {\n data: ``,\n name: 'type-specimen' as const\n};\n\nexport const materialUTurnLeftIcon = {\n data: ``,\n name: 'u-turn-left' as const\n};\n\nexport const materialUTurnRightIcon = {\n data: ``,\n name: 'u-turn-right' as const\n};\n\nexport const materialUmbrellaIcon = {\n data: ``,\n name: 'umbrella' as const\n};\n\nexport const materialUnarchiveIcon = {\n data: ``,\n name: 'unarchive' as const\n};\n\nexport const materialUndoIcon = {\n data: ``,\n name: 'undo' as const\n};\n\nexport const materialUnfoldLessIcon = {\n data: ``,\n name: 'unfold-less' as const\n};\n\nexport const materialUnfoldLessDoubleIcon = {\n data: ``,\n name: 'unfold-less-double' as const\n};\n\nexport const materialUnfoldMoreIcon = {\n data: ``,\n name: 'unfold-more' as const\n};\n\nexport const materialUnfoldMoreDoubleIcon = {\n data: ``,\n name: 'unfold-more-double' as const\n};\n\nexport const materialUnpublishedIcon = {\n data: ``,\n name: 'unpublished' as const\n};\n\nexport const materialUnsubscribeIcon = {\n data: ``,\n name: 'unsubscribe' as const\n};\n\nexport const materialUpcomingIcon = {\n data: ``,\n name: 'upcoming' as const\n};\n\nexport const materialUpdateIcon = {\n data: ``,\n name: 'update' as const\n};\n\nexport const materialUpdateDisabledIcon = {\n data: ``,\n name: 'update-disabled' as const\n};\n\nexport const materialUpgradeIcon = {\n data: ``,\n name: 'upgrade' as const\n};\n\nexport const materialUploadIcon = {\n data: ``,\n name: 'upload' as const\n};\n\nexport const materialUploadFileIcon = {\n data: ``,\n name: 'upload-file' as const\n};\n\nexport const materialUsbIcon = {\n data: ``,\n name: 'usb' as const\n};\n\nexport const materialUsbOffIcon = {\n data: ``,\n name: 'usb-off' as const\n};\n\nexport const materialVaccinesIcon = {\n data: ``,\n name: 'vaccines' as const\n};\n\nexport const materialVapeFreeIcon = {\n data: ``,\n name: 'vape-free' as const\n};\n\nexport const materialVapingRoomsIcon = {\n data: ``,\n name: 'vaping-rooms' as const\n};\n\nexport const materialVerifiedIcon = {\n data: ``,\n name: 'verified' as const\n};\n\nexport const materialVerifiedUserIcon = {\n data: ``,\n name: 'verified-user' as const\n};\n\nexport const materialVerticalAlignBottomIcon = {\n data: ``,\n name: 'vertical-align-bottom' as const\n};\n\nexport const materialVerticalAlignCenterIcon = {\n data: ``,\n name: 'vertical-align-center' as const\n};\n\nexport const materialVerticalAlignTopIcon = {\n data: ``,\n name: 'vertical-align-top' as const\n};\n\nexport const materialVerticalDistributeIcon = {\n data: ``,\n name: 'vertical-distribute' as const\n};\n\nexport const materialVerticalShadesIcon = {\n data: ``,\n name: 'vertical-shades' as const\n};\n\nexport const materialVerticalShadesClosedIcon = {\n data: ``,\n name: 'vertical-shades-closed' as const\n};\n\nexport const materialVerticalSplitIcon = {\n data: ``,\n name: 'vertical-split' as const\n};\n\nexport const materialVibrationIcon = {\n data: ``,\n name: 'vibration' as const\n};\n\nexport const materialVideoCallIcon = {\n data: ``,\n name: 'video-call' as const\n};\n\nexport const materialVideoCameraBackIcon = {\n data: ``,\n name: 'video-camera-back' as const\n};\n\nexport const materialVideoCameraFrontIcon = {\n data: ``,\n name: 'video-camera-front' as const\n};\n\nexport const materialVideoChatIcon = {\n data: ``,\n name: 'video-chat' as const\n};\n\nexport const materialVideoFileIcon = {\n data: ``,\n name: 'video-file' as const\n};\n\nexport const materialVideoLabelIcon = {\n data: ``,\n name: 'video-label' as const\n};\n\nexport const materialVideoLibraryIcon = {\n data: ``,\n name: 'video-library' as const\n};\n\nexport const materialVideoSettingsIcon = {\n data: ``,\n name: 'video-settings' as const\n};\n\nexport const materialVideoStableIcon = {\n data: ``,\n name: 'video-stable' as const\n};\n\nexport const materialVideocamIcon = {\n data: ``,\n name: 'videocam' as const\n};\n\nexport const materialVideocamOffIcon = {\n data: ``,\n name: 'videocam-off' as const\n};\n\nexport const materialVideogameAssetIcon = {\n data: ``,\n name: 'videogame-asset' as const\n};\n\nexport const materialVideogameAssetOffIcon = {\n data: ``,\n name: 'videogame-asset-off' as const\n};\n\nexport const materialViewAgendaIcon = {\n data: ``,\n name: 'view-agenda' as const\n};\n\nexport const materialViewArrayIcon = {\n data: ``,\n name: 'view-array' as const\n};\n\nexport const materialViewCarouselIcon = {\n data: ``,\n name: 'view-carousel' as const\n};\n\nexport const materialViewColumnIcon = {\n data: ``,\n name: 'view-column' as const\n};\n\nexport const materialViewComfyIcon = {\n data: ``,\n name: 'view-comfy' as const\n};\n\nexport const materialViewComfyAltIcon = {\n data: ``,\n name: 'view-comfy-alt' as const\n};\n\nexport const materialViewCompactIcon = {\n data: ``,\n name: 'view-compact' as const\n};\n\nexport const materialViewCompactAltIcon = {\n data: ``,\n name: 'view-compact-alt' as const\n};\n\nexport const materialViewCozyIcon = {\n data: ``,\n name: 'view-cozy' as const\n};\n\nexport const materialViewDayIcon = {\n data: ``,\n name: 'view-day' as const\n};\n\nexport const materialViewHeadlineIcon = {\n data: ``,\n name: 'view-headline' as const\n};\n\nexport const materialViewInArIcon = {\n data: ``,\n name: 'view-in-ar' as const\n};\n\nexport const materialViewKanbanIcon = {\n data: ``,\n name: 'view-kanban' as const\n};\n\nexport const materialViewListIcon = {\n data: ``,\n name: 'view-list' as const\n};\n\nexport const materialViewModuleIcon = {\n data: ``,\n name: 'view-module' as const\n};\n\nexport const materialViewQuiltIcon = {\n data: ``,\n name: 'view-quilt' as const\n};\n\nexport const materialViewSidebarIcon = {\n data: ``,\n name: 'view-sidebar' as const\n};\n\nexport const materialViewStreamIcon = {\n data: ``,\n name: 'view-stream' as const\n};\n\nexport const materialViewTimelineIcon = {\n data: ``,\n name: 'view-timeline' as const\n};\n\nexport const materialViewWeekIcon = {\n data: ``,\n name: 'view-week' as const\n};\n\nexport const materialVignetteIcon = {\n data: ``,\n name: 'vignette' as const\n};\n\nexport const materialVillaIcon = {\n data: ``,\n name: 'villa' as const\n};\n\nexport const materialVisibilityIcon = {\n data: ``,\n name: 'visibility' as const\n};\n\nexport const materialVisibilityOffIcon = {\n data: ``,\n name: 'visibility-off' as const\n};\n\nexport const materialVoiceChatIcon = {\n data: ``,\n name: 'voice-chat' as const\n};\n\nexport const materialVoiceOverOffIcon = {\n data: ``,\n name: 'voice-over-off' as const\n};\n\nexport const materialVoicemailIcon = {\n data: ``,\n name: 'voicemail' as const\n};\n\nexport const materialVolcanoIcon = {\n data: ``,\n name: 'volcano' as const\n};\n\nexport const materialVolumeDownIcon = {\n data: ``,\n name: 'volume-down' as const\n};\n\nexport const materialVolumeMuteIcon = {\n data: ``,\n name: 'volume-mute' as const\n};\n\nexport const materialVolumeOffIcon = {\n data: ``,\n name: 'volume-off' as const\n};\n\nexport const materialVolumeUpIcon = {\n data: ``,\n name: 'volume-up' as const\n};\n\nexport const materialVolunteerActivismIcon = {\n data: ``,\n name: 'volunteer-activism' as const\n};\n\nexport const materialVpnKeyIcon = {\n data: ``,\n name: 'vpn-key' as const\n};\n\nexport const materialVpnKeyOffIcon = {\n data: ``,\n name: 'vpn-key-off' as const\n};\n\nexport const materialVpnLockIcon = {\n data: ``,\n name: 'vpn-lock' as const\n};\n\nexport const materialVrpanoIcon = {\n data: ``,\n name: 'vrpano' as const\n};\n\nexport const materialWalletIcon = {\n data: ``,\n name: 'wallet' as const\n};\n\nexport const materialWallpaperIcon = {\n data: ``,\n name: 'wallpaper' as const\n};\n\nexport const materialWarehouseIcon = {\n data: ``,\n name: 'warehouse' as const\n};\n\nexport const materialWarningIcon = {\n data: ``,\n name: 'warning' as const\n};\n\nexport const materialWarningAmberIcon = {\n data: ``,\n name: 'warning-amber' as const\n};\n\nexport const materialWashIcon = {\n data: ``,\n name: 'wash' as const\n};\n\nexport const materialWatchIcon = {\n data: ``,\n name: 'watch' as const\n};\n\nexport const materialWatchLaterIcon = {\n data: ``,\n name: 'watch-later' as const\n};\n\nexport const materialWatchOffIcon = {\n data: ``,\n name: 'watch-off' as const\n};\n\nexport const materialWaterIcon = {\n data: ``,\n name: 'water' as const\n};\n\nexport const materialWaterDamageIcon = {\n data: ``,\n name: 'water-damage' as const\n};\n\nexport const materialWaterDropIcon = {\n data: ``,\n name: 'water-drop' as const\n};\n\nexport const materialWaterfallChartIcon = {\n data: ``,\n name: 'waterfall-chart' as const\n};\n\nexport const materialWavesIcon = {\n data: ``,\n name: 'waves' as const\n};\n\nexport const materialWavingHandIcon = {\n data: ``,\n name: 'waving-hand' as const\n};\n\nexport const materialWbAutoIcon = {\n data: ``,\n name: 'wb-auto' as const\n};\n\nexport const materialWbCloudyIcon = {\n data: ``,\n name: 'wb-cloudy' as const\n};\n\nexport const materialWbIncandescentIcon = {\n data: ``,\n name: 'wb-incandescent' as const\n};\n\nexport const materialWbIridescentIcon = {\n data: ``,\n name: 'wb-iridescent' as const\n};\n\nexport const materialWbShadeIcon = {\n data: ``,\n name: 'wb-shade' as const\n};\n\nexport const materialWbSunnyIcon = {\n data: ``,\n name: 'wb-sunny' as const\n};\n\nexport const materialWbTwilightIcon = {\n data: ``,\n name: 'wb-twilight' as const\n};\n\nexport const materialWcIcon = {\n data: ``,\n name: 'wc' as const\n};\n\nexport const materialWebIcon = {\n data: ``,\n name: 'web' as const\n};\n\nexport const materialWebAssetIcon = {\n data: ``,\n name: 'web-asset' as const\n};\n\nexport const materialWebAssetOffIcon = {\n data: ``,\n name: 'web-asset-off' as const\n};\n\nexport const materialWebStoriesIcon = {\n data: ``,\n name: 'web-stories' as const\n};\n\nexport const materialWebhookIcon = {\n data: ``,\n name: 'webhook' as const\n};\n\nexport const materialWeekendIcon = {\n data: ``,\n name: 'weekend' as const\n};\n\nexport const materialWestIcon = {\n data: ``,\n name: 'west' as const\n};\n\nexport const materialWhatshotIcon = {\n data: ``,\n name: 'whatshot' as const\n};\n\nexport const materialWheelchairPickupIcon = {\n data: ``,\n name: 'wheelchair-pickup' as const\n};\n\nexport const materialWhereToVoteIcon = {\n data: ``,\n name: 'where-to-vote' as const\n};\n\nexport const materialWidgetsIcon = {\n data: ``,\n name: 'widgets' as const\n};\n\nexport const materialWidthFullIcon = {\n data: ``,\n name: 'width-full' as const\n};\n\nexport const materialWidthNormalIcon = {\n data: ``,\n name: 'width-normal' as const\n};\n\nexport const materialWidthWideIcon = {\n data: ``,\n name: 'width-wide' as const\n};\n\nexport const materialWifiIcon = {\n data: ``,\n name: 'wifi' as const\n};\n\nexport const materialWifi1BarIcon = {\n data: ``,\n name: 'wifi-1-bar' as const\n};\n\nexport const materialWifi2BarIcon = {\n data: ``,\n name: 'wifi-2-bar' as const\n};\n\nexport const materialWifiCallingIcon = {\n data: ``,\n name: 'wifi-calling' as const\n};\n\nexport const materialWifiCalling3Icon = {\n data: ``,\n name: 'wifi-calling-3' as const\n};\n\nexport const materialWifiChannelIcon = {\n data: ``,\n name: 'wifi-channel' as const\n};\n\nexport const materialWifiFindIcon = {\n data: ``,\n name: 'wifi-find' as const\n};\n\nexport const materialWifiLockIcon = {\n data: ``,\n name: 'wifi-lock' as const\n};\n\nexport const materialWifiOffIcon = {\n data: ``,\n name: 'wifi-off' as const\n};\n\nexport const materialWifiPasswordIcon = {\n data: ``,\n name: 'wifi-password' as const\n};\n\nexport const materialWifiProtectedSetupIcon = {\n data: ``,\n name: 'wifi-protected-setup' as const\n};\n\nexport const materialWifiTetheringIcon = {\n data: ``,\n name: 'wifi-tethering' as const\n};\n\nexport const materialWifiTetheringErrorIcon = {\n data: ``,\n name: 'wifi-tethering-error' as const\n};\n\nexport const materialWifiTetheringOffIcon = {\n data: ``,\n name: 'wifi-tethering-off' as const\n};\n\nexport const materialWindPowerIcon = {\n data: ``,\n name: 'wind-power' as const\n};\n\nexport const materialWindowIcon = {\n data: ``,\n name: 'window' as const\n};\n\nexport const materialWineBarIcon = {\n data: ``,\n name: 'wine-bar' as const\n};\n\nexport const materialWomanIcon = {\n data: ``,\n name: 'woman' as const\n};\n\nexport const materialWoman2Icon = {\n data: ``,\n name: 'woman-2' as const\n};\n\nexport const materialWorkIcon = {\n data: ``,\n name: 'work' as const\n};\n\nexport const materialWorkHistoryIcon = {\n data: ``,\n name: 'work-history' as const\n};\n\nexport const materialWorkOffIcon = {\n data: ``,\n name: 'work-off' as const\n};\n\nexport const materialWorkOutlineIcon = {\n data: ``,\n name: 'work-outline' as const\n};\n\nexport const materialWorkspacePremiumIcon = {\n data: ``,\n name: 'workspace-premium' as const\n};\n\nexport const materialWorkspacesIcon = {\n data: ``,\n name: 'workspaces' as const\n};\n\nexport const materialWrapTextIcon = {\n data: ``,\n name: 'wrap-text' as const\n};\n\nexport const materialWrongLocationIcon = {\n data: ``,\n name: 'wrong-location' as const\n};\n\nexport const materialWysiwygIcon = {\n data: ``,\n name: 'wysiwyg' as const\n};\n\nexport const materialYardIcon = {\n data: ``,\n name: 'yard' as const\n};\n\nexport const materialYoutubeSearchedForIcon = {\n data: ``,\n name: 'youtube-searched-for' as const\n};\n\nexport const materialZoomInIcon = {\n data: ``,\n name: 'zoom-in' as const\n};\n\nexport const materialZoomInMapIcon = {\n data: ``,\n name: 'zoom-in-map' as const\n};\n\nexport const materialZoomOutIcon = {\n data: ``,\n name: 'zoom-out' as const\n};\n\nexport const materialZoomOutMapIcon = {\n data: ``,\n name: 'zoom-out-map' as const\n};","import { NgModule } from '@angular/core';\nimport { provideSvgIcons, SvgIconComponent } from '@ngneat/svg-icon';\nimport {\n materialAlarmOnIcon,\n materialAttachMoneyIcon,\n materialDownloadIcon,\n materialUploadIcon,\n materialMenuIcon,\n materialSearchIcon,\n materialEditIcon,\n materialDeleteIcon,\n materialPersonAddIcon,\n materialChevronLeftIcon,\n materialChevronRightIcon,\n materialFileDownloadIcon,\n materialPersonIcon,\n materialMoreVertIcon,\n materialPhoneIcon,\n materialEmailIcon,\n materialChatIcon,\n materialCallIcon,\n materialCallEndIcon,\n materialPhoneEnabledIcon,\n materialSendIcon,\n materialCloseIcon,\n materialArrowDropUpIcon,\n materialArrowDropDownIcon,\n materialKeyboardArrowDownIcon,\n materialKeyboardArrowUpIcon,\n materialAddAlertIcon,\n materialCalendarMonthIcon,\n materialStickyNote2Icon,\n materialAccessTimeIcon,\n materialItkLoadingIcon,\n materialIosShareIcon,\n materialItkRxIcon,\n materialItkCrossIcon,\n materialItkQuestionCircleIcon,\n materialItkPlanSelectIcon,\n materialLightbulbIcon,\n materialItkLightbulbIcon,\n materialItkDvhEarIcon,\n materialItkDvhToothIcon,\n materialItkDvhNetworkIcon,\n materialItkSubscriptionAgencyBundleIcon,\n materialItkSubscriptionIndividualBundleIcon,\n materialItkInfoIcon,\n materialItkCcAmexIcon,\n materialItkCcVisaIcon,\n materialItkCcDiscoverIcon,\n materialItkCcMastercardIcon,\n materialHelpIcon,\n materialInfoIcon,\n materialItkDvhEyeIcon,\n materialDragIndicatorIcon,\n materialAddBoxIcon,\n materialExpandLessIcon,\n materialExpandMoreIcon,\n materialOpenInNewIcon,\n materialNoteAddIcon,\n materialBookIcon,\n materialVolumeUpIcon,\n materialVolumeOffIcon,\n materialMicIcon,\n materialMicOffIcon,\n materialItkLogoMarkIcon,\n materialAddCircleIcon,\n materialAddIcon,\n materialForwardIcon,\n materialSkipNextIcon,\n materialRedoIcon,\n materialCheckCircleIcon,\n} from './svg/icons.svg';\n\nexport const appIcons = [\n materialItkDvhEyeIcon,\n materialAttachMoneyIcon,\n materialMicIcon,\n materialMicOffIcon,\n materialVolumeUpIcon,\n materialVolumeOffIcon,\n materialItkCcAmexIcon,\n materialItkCcVisaIcon,\n materialCheckCircleIcon,\n materialMenuIcon,\n materialCallIcon,\n materialForwardIcon,\n materialSkipNextIcon,\n materialCallEndIcon,\n materialPhoneEnabledIcon,\n materialAlarmOnIcon,\n materialItkCcDiscoverIcon,\n materialRedoIcon,\n materialItkCcMastercardIcon,\n materialItkRxIcon,\n materialUploadIcon,\n materialItkCrossIcon,\n materialItkDvhEarIcon,\n materialItkDvhToothIcon,\n materialItkDvhNetworkIcon,\n materialItkSubscriptionAgencyBundleIcon,\n materialItkSubscriptionIndividualBundleIcon,\n materialItkQuestionCircleIcon,\n materialItkPlanSelectIcon,\n materialItkInfoIcon,\n materialLightbulbIcon,\n materialInfoIcon,\n materialHelpIcon,\n materialItkLightbulbIcon,\n materialSearchIcon,\n materialPersonIcon,\n materialEditIcon,\n materialDeleteIcon,\n materialPersonAddIcon,\n materialChevronLeftIcon,\n materialChevronRightIcon,\n materialFileDownloadIcon,\n materialDownloadIcon,\n materialMoreVertIcon,\n materialPhoneIcon,\n materialEmailIcon,\n materialChatIcon,\n materialSendIcon,\n materialCloseIcon,\n materialArrowDropUpIcon,\n materialArrowDropDownIcon,\n materialKeyboardArrowDownIcon,\n materialKeyboardArrowUpIcon,\n materialAddAlertIcon,\n materialCalendarMonthIcon,\n materialStickyNote2Icon,\n materialAccessTimeIcon,\n materialItkLoadingIcon,\n materialIosShareIcon,\n materialDragIndicatorIcon,\n materialAddBoxIcon,\n materialExpandLessIcon,\n materialExpandMoreIcon,\n materialOpenInNewIcon,\n materialNoteAddIcon,\n materialAddIcon,\n materialBookIcon,\n materialItkLogoMarkIcon,\n materialAddCircleIcon,\n];\n\n@NgModule({\n imports: [SvgIconComponent],\n exports: [SvgIconComponent],\n providers: [provideSvgIcons(appIcons)],\n})\nexport class ItkIconsLogosModule {}\n","import { NgModule } from '@angular/core';\nimport { ItkIconsLogosModule } from './icons.logos.module';\nimport { ItkIconButtonComponent } from './icons.button.component';\nimport { CommonModule } from '@angular/common';\n\n@NgModule({\n imports: [CommonModule, ItkIconsLogosModule],\n exports: [CommonModule, ItkIconsLogosModule, ItkIconButtonComponent],\n declarations: [ItkIconButtonComponent],\n})\nexport class ItkIconsModule {}\n"],"mappings":"sKAGA,IAAMA,EAAN,KAAc,CACZ,YAAYC,EAAS,CACnB,KAAK,QAAUA,EACf,KAAK,KAAO,EACd,CACF,EACIC,GAAgC,IAAM,CACxC,MAAMA,CAAgB,CACpB,YAAYC,EAAQ,CAClB,KAAK,OAAS,IAAI,IAClB,KAAK,SAAWC,EAAOC,CAAQ,EAC3BF,GAAQ,OACV,KAAK,SAASA,EAAO,KAAK,EAExBA,GAAQ,qBACV,KAAK,SAASA,EAAO,mBAAmB,CAE5C,CACA,QAAS,CACP,OAAO,KAAK,MACd,CACA,IAAIG,EAAKH,EAAS,CAAC,EAAG,CACpB,IAAMI,EAAOD,GAAO,KAAK,OAAO,IAAIA,CAAG,EACvC,GAAKC,EAGL,IAAI,CAACA,EAAK,KAAM,CACd,IAAMC,EAAM,KAAK,UAAUD,EAAK,OAAO,EACvCC,EAAI,aAAa,MAAO,EAAE,EAC1BA,EAAI,aAAa,SAAU,MAAM,EACjCA,EAAI,aAAa,QAAS,MAAM,EAChCA,EAAI,aAAa,sBAAuBL,EAAO,qBAAuB,eAAe,EACrFK,EAAI,aAAa,YAAa,OAAO,EACrCD,EAAK,QAAUC,EAAI,UACnBD,EAAK,KAAO,EACd,CACA,GAAIJ,EAAO,UAAW,CACpB,IAAMK,EAAM,KAAK,UAAUD,EAAK,OAAO,EAAE,UACzC,MAAO,6BAA6B,KAAKC,CAAG,CAAC,EAC/C,CACA,OAAOD,EAAK,QACd,CACA,SAASE,EAAO,CACd,OAAW,CACT,KAAAC,EACA,KAAAC,CACF,IAAK,MAAM,QAAQF,CAAK,EAAIA,EAAQ,CAACA,CAAK,EACnC,KAAK,OAAO,IAAIC,CAAI,GACvB,KAAK,OAAO,IAAIA,EAAM,IAAIV,EAAQW,CAAI,CAAC,CAG7C,CACA,cAAcD,EAAM,CAClB,IAAMT,EAAU,KAAK,IAAIS,CAAI,EAC7B,GAAI,CAACT,EACH,OAEF,IAAMW,EAAM,KAAK,SAAS,cAAc,KAAK,EAC7C,OAAAA,EAAI,UAAYX,EACTW,EAAI,cAAc,KAAK,CAChC,CACA,UAAUX,EAAS,CACjB,IAAMW,EAAM,KAAK,SAAS,cAAc,KAAK,EAC7C,OAAAA,EAAI,UAAYX,EACTW,EAAI,cAAc,KAAK,CAChC,CACF,CACA,OAAAV,EAAgB,UAAO,SAAiC,EAAG,CACzD,OAAO,IAAK,GAAKA,GAAoBW,EAASC,EAAW,IAAMC,CAAgB,CAAC,CAAC,CACnF,EACAb,EAAgB,WAA0Bc,EAAmB,CAC3D,MAAOd,EACP,QAASA,EAAgB,UACzB,WAAY,MACd,CAAC,EACMA,CACT,GAAG,EAIGa,EAAmB,IAAIE,EAAe,mBAAoB,CAC9D,WAAY,OACZ,SAAU,CACR,MAAO,CAAC,CACV,CACF,CAAC,EACKC,GAAY,IAAID,EAAe,WAAW,EAC1CE,GAA4B,IAAIF,EAAe,4BAA6B,CAChF,WAAY,OACZ,SAAU,CAEV,CACF,CAAC,EACD,SAASG,EAAgBX,EAAO,CAC9B,OAAOY,EAAyB,CAAC,CAC/B,QAASC,EACT,MAAO,GACP,UAAW,CACTlB,EAAOF,CAAe,EAAE,SAASO,CAAK,CACxC,CACF,CAAC,CAAC,CACJ,CAOA,IAAIc,GAAiC,IAAM,CACzC,MAAMA,CAAiB,CACrB,YAAYC,EAAMC,EAAUC,EAAQ,CAClC,KAAK,KAAOF,EACZ,KAAK,SAAWC,EAChB,KAAK,OAASC,EACd,KAAK,SAAW,GAChB,KAAK,KAAO,GACZ,KAAK,aAAe,KAAK,aAAa,CACxC,CACA,IAAI,SAAU,CACZ,OAAO,KAAK,KAAK,aACnB,CACA,YAAYC,EAAS,CACfA,EAAQ,KACV,KAAK,QAAQ,KAAK,GAAG,EAEnBA,EAAQ,MAAM,cAChB,KAAK,YAAY,KAAK,aAAa,MAAM,KAAK,IAAI,CAAC,EAEjDA,EAAQ,UAAU,cACpB,KAAK,YAAYC,EAAoB,KAAK,QAAQ,CAAC,EAGjD,CAAC,KAAK,MAAQ,CAACD,EAAQ,MAAM,cAAgB,CAACA,EAAQ,UAAU,cAClE,KAAK,YAAY,KAAK,aAAa,MAAM,KAAK,aAAa,aAAe,IAAI,CAAC,EAE7EA,EAAQ,OAAO,eACjB,KAAK,QAAQ,MAAM,MAAQ,yBAAyBC,EAAoB,KAAK,KAAK,CAAC,KAEjFD,EAAQ,QAAQ,eAClB,KAAK,QAAQ,MAAM,OAAS,0BAA0BC,EAAoB,KAAK,MAAM,CAAC,KAEpFD,EAAQ,OAAO,eACjB,KAAK,QAAQ,MAAM,MAAQ,yBAAyB,KAAK,KAAK,KAEhE,KAAK,KAAO,EACd,CACA,cAAe,CACb,IAAME,EAAW,CACf,MAAO,CACL,GAAI,SACJ,GAAI,UACJ,GAAI,OACJ,GAAI,SACJ,GAAI,OACJ,IAAK,QACP,CACF,EACMC,EAAeC,IAAA,GAChBF,GACA,KAAK,QAEV,OAAAC,EAAa,MAAQ,OAAO,QAAQC,IAAA,GAC/BF,EAAS,OACTC,EAAa,MACjB,EAAE,OAAO,CAACE,EAAK,CAACC,EAAKC,EAAK,KACzBF,EAAIC,CAAG,EAAI,4BAA4BA,CAAG,KAAKC,EAAK,IAC7CF,GACN,CAAC,CAAC,EACEF,CACT,CACA,YAAYK,EAAM,CAChB,KAAK,QAAQ,MAAM,SAAWA,EAC1B,KAAK,WACP,KAAK,QAAQ,MAAM,SAAWA,EAElC,CACA,QAAQC,EAAM,CACZ,IAAMV,EAAS,CACb,oBAAqB,KAAK,mBAC5B,EACMW,EAAO,KAAK,SAAS,IAAID,EAAMV,CAAM,GAAK,KAAK,SAAS,IAAI,KAAK,UAAY,KAAK,OAAO,qBAAqB,KAAMA,CAAM,EAC5HW,IACF,KAAK,QAAQ,aAAa,aAAc,GAAGD,CAAI,OAAO,EAClD,KAAK,SACP,KAAK,QAAQ,UAAU,OAAOE,EAAiB,KAAK,OAAO,CAAC,EAE9D,KAAK,QAAUF,EACXA,GACF,KAAK,QAAQ,UAAU,IAAIE,EAAiBF,CAAI,CAAC,EAEnD,KAAK,QAAQ,UAAYC,EAE7B,CACF,CACA,OAAAd,EAAiB,UAAO,SAAkC,EAAG,CAC3D,OAAO,IAAK,GAAKA,GAAqBgB,EAAqBC,CAAU,EAAMD,EAAkBE,CAAe,EAAMF,EAAkBG,CAAgB,CAAC,CACvJ,EACAnB,EAAiB,UAAyBoB,EAAkB,CAC1D,KAAMpB,EACN,UAAW,CAAC,CAAC,UAAU,CAAC,EACxB,UAAW,CAAC,OAAQ,MAAO,cAAe,MAAM,EAChD,OAAQ,CACN,IAAK,MACL,SAAU,WACV,KAAM,OACN,MAAO,QACP,OAAQ,SACR,SAAU,WACV,MAAO,QACP,SAAU,WACV,oBAAqB,qBACvB,EACA,WAAY,GACZ,SAAU,CAAIqB,EAAyBC,CAAmB,EAC1D,MAAO,EACP,KAAM,EACN,SAAU,SAAmCC,EAAIC,EAAK,CAAC,EACvD,OAAQ,CAAC,8HAA8H,EACvI,gBAAiB,CACnB,CAAC,EACMxB,CACT,GAAG,EAIH,SAASK,EAAoBM,EAAO,CAClC,OAAIA,GAAS,KACJ,GAEF,OAAOA,GAAU,SAAWA,EAAQ,GAAGA,CAAK,IACrD,CACA,SAASI,EAAiBL,EAAK,CAC7B,MAAO,YAAYA,EAAI,QAAQ,KAAM,GAAG,CAAC,EAC3C,CCuEO,IAAMe,EAAyB,CAClCC,KAAM,wSACNC,KAAM,eA+DH,IAAMC,EAAkB,CAC3BC,KAAM,wIACNC,KAAM,OAaH,IAAMC,EAAuB,CAChCC,KAAM,uWACNC,KAAM,aAGGC,EAAqB,CAC9BF,KAAM,kNACNC,KAAM,WAkBH,IAAME,EAAwB,CACjCC,KAAM,yMACNC,KAAM,cA0NH,IAAMC,EAAsB,CAC/BC,KAAM,iXACNC,KAAM,YAiMH,IAAMC,EAA4B,CACrCC,KAAM,mHACNC,KAAM,mBAQH,IAAMC,EAA0B,CACnCC,KAAM,mHACNC,KAAM,iBAgIH,IAAMC,EAA0B,CACnCC,KAAM,8bACNC,KAAM,gBAqXH,IAAMC,EAAmB,CAC5BC,KAAM,0MACNC,KAAM,QAsRH,IAAMC,EAA4B,CACrCC,KAAM,sTACNC,KAAM,kBAuBH,IAAMC,EAAmB,CAC5BC,KAAM,kYACNC,KAAM,QAGGC,EAAsB,CAC/BF,KAAM,seACNC,KAAM,YA8OH,IAAME,EAAmB,CAC5BC,KAAM,wNACNC,KAAM,QA4BH,IAAMC,EAA0B,CACnCC,KAAM,yNACNC,KAAM,gBAuBH,IAAMC,EAA0B,CACnCC,KAAM,kJACNC,KAAM,gBAGGC,EAA2B,CACpCF,KAAM,mJACNC,KAAM,iBA0DH,IAAME,EAAoB,CAC7BC,KAAM,0MACNC,KAAM,SAmjBH,IAAMC,EAAqB,CAC9BC,KAAM,kLACNC,KAAM,UAibH,IAAMC,EAAuB,CAChCC,KAAM,8IACNC,KAAM,YA4BH,IAAMC,EAA4B,CACrCC,KAAM,wYACNC,KAAM,kBA6FH,IAAMC,EAAmB,CAC5BC,KAAM,sPACNC,KAAM,QAiHH,IAAMC,GAAoB,CAC7BC,KAAM,iNACNC,KAAM,SA8JH,IAAMC,GAAyB,CAClCC,KAAM,kJACNC,KAAM,eAGGC,GAAyB,CAClCF,KAAM,iJACNC,KAAM,eAgNH,IAAME,GAA2B,CACpCC,KAAM,8IACNC,KAAM,iBAghBH,IAAMC,GAAsB,CAC/BC,KAAM,4HACNC,KAAM,WAwZH,IAAMC,GAAmB,CAC5BC,KAAM,gXACNC,KAAM,QAgSH,IAAMC,GAAmB,CAC5BC,KAAM,qMACNC,KAAM,QAuGH,IAAMC,GAAuB,CAChCC,KAAM,iQACNC,KAAM,aAaH,IAAMC,GAAwB,CACjCC,KAAM,0zJACNC,KAAM,eAGGC,GAA4B,CACrCF,KAAM,mpEACNC,KAAM,mBAGGE,GAA8B,CACvCH,KAAM,koTACNC,KAAM,qBAGGG,GAAwB,CACjCJ,KAAM,65CACNC,KAAM,eAsHH,IAAMI,GAAuB,CAChCC,KAAM,+PACNC,KAAM,aAGGC,GAAwB,CACjCF,KAAM,mlBACNC,KAAM,eAGGE,GAAwB,CACjCH,KAAM,kRACNC,KAAM,eAGGG,GAA4B,CACrCJ,KAAM,iiBACNC,KAAM,mBAGGI,GAA0B,CACnCL,KAAM,kcACNC,KAAM,iBAQH,IAAMK,GAAsB,CAC/BC,KAAM,4LACNC,KAAM,YAGGC,GAA2B,CACpCF,KAAM,i4BACNC,KAAM,iBAGGE,GAAyB,CAClCH,KAAM,oqBACNC,KAAM,eAGGG,GAA0B,CACnCJ,KAAM,opBACNC,KAAM,iBAkBH,IAAMI,GAA4B,CACrCC,KAAM,2wBACNC,KAAM,mBAGGC,GAAgC,CACzCF,KAAM,wsBACNC,KAAM,uBAaH,IAAME,GAAoB,CAC7BC,KAAM,2iBACNC,KAAM,UAaH,IAAMC,GAA0C,CACnDC,KAAM,m0BACNC,KAAM,kCAGGC,GAA8C,CACvDF,KAAM,4lBACNC,KAAM,sCAyEH,IAAME,GAAgC,CACzCC,KAAM,4JACNC,KAAM,uBAaH,IAAMC,GAA8B,CACvCC,KAAM,mJACNC,KAAM,qBA0NH,IAAMC,GAAwB,CACjCC,KAAM,kQACNC,KAAM,aAoiBH,IAAMC,GAAmB,CAC5BC,KAAM,kJACNC,KAAM,QA4BH,IAAMC,GAAkB,CAC3BC,KAAM,oSACNC,KAAM,OAkBH,IAAMC,GAAqB,CAC9BC,KAAM,ycACNC,KAAM,WA6KH,IAAMC,GAAuB,CAChCC,KAAM,sPACNC,KAAM,aAmZH,IAAMC,GAAsB,CAC/BC,KAAM,yOACNC,KAAM,YAuGH,IAAMC,GAAwB,CACjCC,KAAM,mOACNC,KAAM,eAiRH,IAAMC,GAAqB,CAC9BC,KAAM,kNACNC,KAAM,UAkBH,IAAMC,GAAwB,CACjCC,KAAM,kPACNC,KAAM,cAmFH,IAAMC,GAAoB,CAC7BC,KAAM,qVACNC,KAAM,SAuBH,IAAMC,GAA2B,CACpCC,KAAM,4VACNC,KAAM,iBA0mBH,IAAMC,GAAmB,CAC5BC,KAAM,mPACNC,KAAM,QAsgBH,IAAMC,GAAqB,CAC9BC,KAAM,+SACNC,KAAM,UAgDH,IAAMC,GAAmB,CAC5BC,KAAM,0IACNC,KAAM,QAuaH,IAAMC,GAAuB,CAChCC,KAAM,wIACNC,KAAM,aA4aH,IAAMC,GAA0B,CACnCC,KAAM,oOACNC,KAAM,iBAs5BH,IAAMC,GAAqB,CAC9BC,KAAM,+IACNC,KAAM,UA0SH,IAAMC,GAAwB,CACjCC,KAAM,4bACNC,KAAM,cAGGC,GAAuB,CAChCF,KAAM,4RACNC,KAAM,aC/qUH,IAAME,GAAW,CACtBC,GACAC,EACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,EACAC,GACAC,EACAC,GACAC,GACAC,EACAC,GACAC,EACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,EACAC,EACAC,GACAC,EACAC,EACAC,GACAC,EACAC,GACAC,GACAC,GACAC,EACAC,GACAC,EACAC,EACAC,EACAC,GACAC,GACAC,EACAC,EACAC,GACAC,EACAC,GACAC,GACAC,EACAC,EACAC,GACAC,GACAC,GACAC,GACAC,EACAC,EACAC,GACAC,CAAqB,EAQVC,GAAmB,IAAA,CAA1B,IAAOA,EAAP,MAAOA,CAAmB,yCAAnBA,EAAmB,sBAAnBA,CAAmB,CAAA,2BAFnB,CAACC,EAAgBvE,EAAQ,CAAC,EAACwE,QAAA,CAF5BC,CAAgB,CAAA,CAAA,EAItB,IAAOH,EAAPI,SAAOJ,CAAmB,GAAA,EC7IhC,IAAaK,IAAc,IAAA,CAArB,IAAOA,EAAP,MAAOA,CAAc,yCAAdA,EAAc,sBAAdA,CAAc,CAAA,0BAJfC,EAAcC,EACdD,EAAcC,CAAmB,CAAA,CAAA,EAGvC,IAAOF,EAAPG,SAAOH,CAAc,GAAA","names":["SvgIcon","content","SvgIconRegistry","config","inject","DOCUMENT","key","icon","svg","icons","name","data","div","ɵɵinject","forwardRef","SVG_ICONS_CONFIG","ɵɵdefineInjectable","InjectionToken","SVG_ICONS","SVG_MISSING_ICON_FALLBACK","provideSvgIcons","makeEnvironmentProviders","ENVIRONMENT_INITIALIZER","SvgIconComponent","host","registry","config","changes","coerceCssPixelValue","defaults","mergedConfig","__spreadValues","acc","key","value","size","name","icon","getIconClassName","ɵɵdirectiveInject","ElementRef","SvgIconRegistry","SVG_ICONS_CONFIG","ɵɵdefineComponent","ɵɵNgOnChangesFeature","ɵɵStandaloneFeature","rf","ctx","materialAccessTimeIcon","data","name","materialAddIcon","data","name","materialAddAlertIcon","data","name","materialAddBoxIcon","materialAddCircleIcon","data","name","materialAlarmOnIcon","data","name","materialArrowDropDownIcon","data","name","materialArrowDropUpIcon","data","name","materialAttachMoneyIcon","data","name","materialBookIcon","data","name","materialCalendarMonthIcon","data","name","materialCallIcon","data","name","materialCallEndIcon","materialChatIcon","data","name","materialCheckCircleIcon","data","name","materialChevronLeftIcon","data","name","materialChevronRightIcon","materialCloseIcon","data","name","materialDeleteIcon","data","name","materialDownloadIcon","data","name","materialDragIndicatorIcon","data","name","materialEditIcon","data","name","materialEmailIcon","data","name","materialExpandLessIcon","data","name","materialExpandMoreIcon","materialFileDownloadIcon","data","name","materialForwardIcon","data","name","materialHelpIcon","data","name","materialInfoIcon","data","name","materialIosShareIcon","data","name","materialItkCcAmexIcon","data","name","materialItkCcDiscoverIcon","materialItkCcMastercardIcon","materialItkCcVisaIcon","materialItkCrossIcon","data","name","materialItkDvhEarIcon","materialItkDvhEyeIcon","materialItkDvhNetworkIcon","materialItkDvhToothIcon","materialItkInfoIcon","data","name","materialItkLightbulbIcon","materialItkLoadingIcon","materialItkLogoMarkIcon","materialItkPlanSelectIcon","data","name","materialItkQuestionCircleIcon","materialItkRxIcon","data","name","materialItkSubscriptionAgencyBundleIcon","data","name","materialItkSubscriptionIndividualBundleIcon","materialKeyboardArrowDownIcon","data","name","materialKeyboardArrowUpIcon","data","name","materialLightbulbIcon","data","name","materialMenuIcon","data","name","materialMicIcon","data","name","materialMicOffIcon","data","name","materialMoreVertIcon","data","name","materialNoteAddIcon","data","name","materialOpenInNewIcon","data","name","materialPersonIcon","data","name","materialPersonAddIcon","data","name","materialPhoneIcon","data","name","materialPhoneEnabledIcon","data","name","materialRedoIcon","data","name","materialSearchIcon","data","name","materialSendIcon","data","name","materialSkipNextIcon","data","name","materialStickyNote2Icon","data","name","materialUploadIcon","data","name","materialVolumeOffIcon","data","name","materialVolumeUpIcon","appIcons","materialItkDvhEyeIcon","materialAttachMoneyIcon","materialMicIcon","materialMicOffIcon","materialVolumeUpIcon","materialVolumeOffIcon","materialItkCcAmexIcon","materialItkCcVisaIcon","materialCheckCircleIcon","materialMenuIcon","materialCallIcon","materialForwardIcon","materialSkipNextIcon","materialCallEndIcon","materialPhoneEnabledIcon","materialAlarmOnIcon","materialItkCcDiscoverIcon","materialRedoIcon","materialItkCcMastercardIcon","materialItkRxIcon","materialUploadIcon","materialItkCrossIcon","materialItkDvhEarIcon","materialItkDvhToothIcon","materialItkDvhNetworkIcon","materialItkSubscriptionAgencyBundleIcon","materialItkSubscriptionIndividualBundleIcon","materialItkQuestionCircleIcon","materialItkPlanSelectIcon","materialItkInfoIcon","materialLightbulbIcon","materialInfoIcon","materialHelpIcon","materialItkLightbulbIcon","materialSearchIcon","materialPersonIcon","materialEditIcon","materialDeleteIcon","materialPersonAddIcon","materialChevronLeftIcon","materialChevronRightIcon","materialFileDownloadIcon","materialDownloadIcon","materialMoreVertIcon","materialPhoneIcon","materialEmailIcon","materialChatIcon","materialSendIcon","materialCloseIcon","materialArrowDropUpIcon","materialArrowDropDownIcon","materialKeyboardArrowDownIcon","materialKeyboardArrowUpIcon","materialAddAlertIcon","materialCalendarMonthIcon","materialStickyNote2Icon","materialAccessTimeIcon","materialItkLoadingIcon","materialIosShareIcon","materialDragIndicatorIcon","materialAddBoxIcon","materialExpandLessIcon","materialExpandMoreIcon","materialOpenInNewIcon","materialNoteAddIcon","materialAddIcon","materialBookIcon","materialItkLogoMarkIcon","materialAddCircleIcon","ItkIconsLogosModule","provideSvgIcons","imports","SvgIconComponent","_ItkIconsLogosModule","ItkIconsModule","CommonModule","ItkIconsLogosModule","_ItkIconsModule"],"x_google_ignoreList":[0]}