{"version":3,"sources":["node_modules/ngx-bootstrap-icons/fesm2020/ngx-bootstrap-icons.mjs"],"sourcesContent":["import * as i0 from '@angular/core';\nimport { InjectionToken, Component, Inject, Input, NgModule } from '@angular/core';\nconst _c0 = [\"*\"];\nconst MODULE_CONFIG_TOKEN = new InjectionToken('ngx-bootstrap-icons-module-configuration');\n\n/**\r\n * Converts String to Camel Case with specified separator.\r\n *\r\n * @param input string\r\n * @param separator separate symbol\r\n * @returns converted string\r\n */\nfunction toCamelCase(input, separator = '-') {\n if (!input) throw Error('missing argument');\n const val = input.trim();\n if (!val.includes(separator)) return val;\n let res = '';\n let iterator = 0;\n for (iterator; iterator < input.length; iterator += 1) {\n const char = input.charAt(iterator).trim();\n if (iterator === 0) {\n res += char.toLowerCase();\n // eslint-disable-next-line no-continue\n continue;\n }\n if (char === separator) {\n res += input.charAt(iterator + 1).trim().toUpperCase();\n iterator += 1;\n // eslint-disable-next-line no-continue\n continue;\n }\n // eslint-disable-next-line no-restricted-globals\n if (iterator > 0 && !isNaN(Number(+input.charAt(iterator - 1)))) {\n res += char.toUpperCase();\n // eslint-disable-next-line no-continue\n continue;\n }\n if (iterator > 0) res += char;\n }\n return res.trim();\n}\nclass Icons {\n constructor(_icons) {\n this._icons = _icons;\n }\n}\nconst DEFAULT_SIZE = 16;\nconst MESSAGE = {\n iconNotFound: 'Icon not found'\n};\nvar DimensionType = /*#__PURE__*/function (DimensionType) {\n DimensionType[\"Width\"] = \"width\";\n DimensionType[\"Height\"] = \"height\";\n return DimensionType;\n}(DimensionType || {});\n/**\r\n * Bootstrap icon component.\r\n */\nlet NgxBootstrapIconsLibComponent = /*#__PURE__*/(() => {\n class NgxBootstrapIconsLibComponent {\n constructor(_elem, _changeDetector, _icons, _config) {\n this._elem = _elem;\n this._changeDetector = _changeDetector;\n this._icons = _icons;\n this._config = _config;\n /** Removes default dimensions from svg. */\n this.resetDefaultDimensions = false;\n this._setSize = (type, size = DEFAULT_SIZE) => `${type}=\"${size}\"`;\n this._setIconMessage = (message, icon) => `${message}: ${icon}\\n`;\n this._logMessage = message => console.warn(message);\n }\n /**\r\n * OnChanges event.\r\n *\r\n * @param changes SimpleChanges\r\n */\n ngOnChanges(changes) {\n // icons are provided as an array of objects because of \"multi: true\"\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const icons = Object.assign({}, ...this._icons);\n let svg = icons[toCamelCase(changes.name.currentValue)] || '';\n if (!svg) {\n this._logMessage(this._setIconMessage(MESSAGE.iconNotFound, changes.name.currentValue));\n return;\n }\n // if config provided\n if (this._config) {\n if (this._config.width) {\n svg = svg.replace(this._setSize(DimensionType.Width), this._setSize(DimensionType.Width, this._config.width));\n }\n if (this._config.height) {\n svg = svg.replace(this._setSize(DimensionType.Height), this._setSize(DimensionType.Height, this._config.height));\n }\n if (this._config.theme) {\n this._elem.nativeElement.classList.add(this._config.theme);\n }\n }\n if (this.resetDefaultDimensions) {\n svg = svg.replace(this._setSize(DimensionType.Width), '');\n svg = svg.replace(this._setSize(DimensionType.Height), '');\n }\n if (this.width && svg.includes(DimensionType.Width)) {\n svg = svg.replace(this._setSize(DimensionType.Width), this._setSize(DimensionType.Width, this.width));\n }\n if (this.height && svg.includes(DimensionType.Height)) {\n svg = svg.replace(this._setSize(DimensionType.Height), this._setSize(DimensionType.Height, this.height));\n }\n this._elem.nativeElement.innerHTML = svg;\n this._changeDetector.markForCheck();\n }\n }\n NgxBootstrapIconsLibComponent.ɵfac = function NgxBootstrapIconsLibComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || NgxBootstrapIconsLibComponent)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(Icons), i0.ɵɵdirectiveInject(MODULE_CONFIG_TOKEN));\n };\n NgxBootstrapIconsLibComponent.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: NgxBootstrapIconsLibComponent,\n selectors: [[\"i-bs\"], [\"\", \"i-bs\", \"\"]],\n inputs: {\n name: \"name\",\n width: \"width\",\n height: \"height\",\n resetDefaultDimensions: \"resetDefaultDimensions\"\n },\n standalone: false,\n features: [i0.ɵɵNgOnChangesFeature],\n ngContentSelectors: _c0,\n decls: 1,\n vars: 0,\n template: function NgxBootstrapIconsLibComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵprojectionDef();\n i0.ɵɵprojection(0);\n }\n },\n encapsulation: 2\n });\n return NgxBootstrapIconsLibComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\r\n Color Themes.\r\n *\r\n * {@link https://getbootstrap.com/docs/5.0/utilities/colors/#color}\r\n */\nvar ColorTheme = /*#__PURE__*/function (ColorTheme) {\n ColorTheme[\"Primary\"] = \"text-primary\";\n ColorTheme[\"Secondary\"] = \"text-secondary\";\n ColorTheme[\"Success\"] = \"text-success\";\n ColorTheme[\"Danger\"] = \"text-danger\";\n ColorTheme[\"Warning\"] = \"text-warning\";\n ColorTheme[\"Info\"] = \"text-info\";\n ColorTheme[\"Dark\"] = \"text-dark\";\n ColorTheme[\"Body\"] = \"text-body\";\n ColorTheme[\"Muted\"] = \"text-muted\";\n ColorTheme[\"Black50\"] = \"text-black-50\";\n ColorTheme[\"White50\"] = \"text-white-50\";\n return ColorTheme;\n}(ColorTheme || {});\n/** Enum with all icons. */\nvar IconNamesEnum = /*#__PURE__*/function (IconNamesEnum) {\n /** {@link https://icons.getbootstrap.com/icons/icon0-circle-fill} */\n IconNamesEnum[\"Icon0CircleFill\"] = \"icon0-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon0-circle} */\n IconNamesEnum[\"Icon0Circle\"] = \"icon0-circle\";\n /** {@link https://icons.getbootstrap.com/icons/icon0-square-fill} */\n IconNamesEnum[\"Icon0SquareFill\"] = \"icon0-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon0-square} */\n IconNamesEnum[\"Icon0Square\"] = \"icon0-square\";\n /** {@link https://icons.getbootstrap.com/icons/icon1-circle-fill} */\n IconNamesEnum[\"Icon1CircleFill\"] = \"icon1-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon1-circle} */\n IconNamesEnum[\"Icon1Circle\"] = \"icon1-circle\";\n /** {@link https://icons.getbootstrap.com/icons/icon1-square-fill} */\n IconNamesEnum[\"Icon1SquareFill\"] = \"icon1-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon1-square} */\n IconNamesEnum[\"Icon1Square\"] = \"icon1-square\";\n /** {@link https://icons.getbootstrap.com/icons/icon123} */\n IconNamesEnum[\"Icon123\"] = \"icon123\";\n /** {@link https://icons.getbootstrap.com/icons/icon2-circle-fill} */\n IconNamesEnum[\"Icon2CircleFill\"] = \"icon2-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon2-circle} */\n IconNamesEnum[\"Icon2Circle\"] = \"icon2-circle\";\n /** {@link https://icons.getbootstrap.com/icons/icon2-square-fill} */\n IconNamesEnum[\"Icon2SquareFill\"] = \"icon2-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon2-square} */\n IconNamesEnum[\"Icon2Square\"] = \"icon2-square\";\n /** {@link https://icons.getbootstrap.com/icons/icon3-circle-fill} */\n IconNamesEnum[\"Icon3CircleFill\"] = \"icon3-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon3-circle} */\n IconNamesEnum[\"Icon3Circle\"] = \"icon3-circle\";\n /** {@link https://icons.getbootstrap.com/icons/icon3-square-fill} */\n IconNamesEnum[\"Icon3SquareFill\"] = \"icon3-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon3-square} */\n IconNamesEnum[\"Icon3Square\"] = \"icon3-square\";\n /** {@link https://icons.getbootstrap.com/icons/icon4-circle-fill} */\n IconNamesEnum[\"Icon4CircleFill\"] = \"icon4-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon4-circle} */\n IconNamesEnum[\"Icon4Circle\"] = \"icon4-circle\";\n /** {@link https://icons.getbootstrap.com/icons/icon4-square-fill} */\n IconNamesEnum[\"Icon4SquareFill\"] = \"icon4-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon4-square} */\n IconNamesEnum[\"Icon4Square\"] = \"icon4-square\";\n /** {@link https://icons.getbootstrap.com/icons/icon5-circle-fill} */\n IconNamesEnum[\"Icon5CircleFill\"] = \"icon5-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon5-circle} */\n IconNamesEnum[\"Icon5Circle\"] = \"icon5-circle\";\n /** {@link https://icons.getbootstrap.com/icons/icon5-square-fill} */\n IconNamesEnum[\"Icon5SquareFill\"] = \"icon5-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon5-square} */\n IconNamesEnum[\"Icon5Square\"] = \"icon5-square\";\n /** {@link https://icons.getbootstrap.com/icons/icon6-circle-fill} */\n IconNamesEnum[\"Icon6CircleFill\"] = \"icon6-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon6-circle} */\n IconNamesEnum[\"Icon6Circle\"] = \"icon6-circle\";\n /** {@link https://icons.getbootstrap.com/icons/icon6-square-fill} */\n IconNamesEnum[\"Icon6SquareFill\"] = \"icon6-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon6-square} */\n IconNamesEnum[\"Icon6Square\"] = \"icon6-square\";\n /** {@link https://icons.getbootstrap.com/icons/icon7-circle-fill} */\n IconNamesEnum[\"Icon7CircleFill\"] = \"icon7-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon7-circle} */\n IconNamesEnum[\"Icon7Circle\"] = \"icon7-circle\";\n /** {@link https://icons.getbootstrap.com/icons/icon7-square-fill} */\n IconNamesEnum[\"Icon7SquareFill\"] = \"icon7-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon7-square} */\n IconNamesEnum[\"Icon7Square\"] = \"icon7-square\";\n /** {@link https://icons.getbootstrap.com/icons/icon8-circle-fill} */\n IconNamesEnum[\"Icon8CircleFill\"] = \"icon8-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon8-circle} */\n IconNamesEnum[\"Icon8Circle\"] = \"icon8-circle\";\n /** {@link https://icons.getbootstrap.com/icons/icon8-square-fill} */\n IconNamesEnum[\"Icon8SquareFill\"] = \"icon8-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon8-square} */\n IconNamesEnum[\"Icon8Square\"] = \"icon8-square\";\n /** {@link https://icons.getbootstrap.com/icons/icon9-circle-fill} */\n IconNamesEnum[\"Icon9CircleFill\"] = \"icon9-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon9-circle} */\n IconNamesEnum[\"Icon9Circle\"] = \"icon9-circle\";\n /** {@link https://icons.getbootstrap.com/icons/icon9-square-fill} */\n IconNamesEnum[\"Icon9SquareFill\"] = \"icon9-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/icon9-square} */\n IconNamesEnum[\"Icon9Square\"] = \"icon9-square\";\n /** {@link https://icons.getbootstrap.com/icons/activity} */\n IconNamesEnum[\"Activity\"] = \"activity\";\n /** {@link https://icons.getbootstrap.com/icons/airplane-engines-fill} */\n IconNamesEnum[\"AirplaneEnginesFill\"] = \"airplane-engines-fill\";\n /** {@link https://icons.getbootstrap.com/icons/airplane-engines} */\n IconNamesEnum[\"AirplaneEngines\"] = \"airplane-engines\";\n /** {@link https://icons.getbootstrap.com/icons/airplane-fill} */\n IconNamesEnum[\"AirplaneFill\"] = \"airplane-fill\";\n /** {@link https://icons.getbootstrap.com/icons/airplane} */\n IconNamesEnum[\"Airplane\"] = \"airplane\";\n /** {@link https://icons.getbootstrap.com/icons/alarm-fill} */\n IconNamesEnum[\"AlarmFill\"] = \"alarm-fill\";\n /** {@link https://icons.getbootstrap.com/icons/alarm} */\n IconNamesEnum[\"Alarm\"] = \"alarm\";\n /** {@link https://icons.getbootstrap.com/icons/alexa} */\n IconNamesEnum[\"Alexa\"] = \"alexa\";\n /** {@link https://icons.getbootstrap.com/icons/align-bottom} */\n IconNamesEnum[\"AlignBottom\"] = \"align-bottom\";\n /** {@link https://icons.getbootstrap.com/icons/align-center} */\n IconNamesEnum[\"AlignCenter\"] = \"align-center\";\n /** {@link https://icons.getbootstrap.com/icons/align-end} */\n IconNamesEnum[\"AlignEnd\"] = \"align-end\";\n /** {@link https://icons.getbootstrap.com/icons/align-middle} */\n IconNamesEnum[\"AlignMiddle\"] = \"align-middle\";\n /** {@link https://icons.getbootstrap.com/icons/align-start} */\n IconNamesEnum[\"AlignStart\"] = \"align-start\";\n /** {@link https://icons.getbootstrap.com/icons/align-top} */\n IconNamesEnum[\"AlignTop\"] = \"align-top\";\n /** {@link https://icons.getbootstrap.com/icons/alipay} */\n IconNamesEnum[\"Alipay\"] = \"alipay\";\n /** {@link https://icons.getbootstrap.com/icons/alt} */\n IconNamesEnum[\"Alt\"] = \"alt\";\n /** {@link https://icons.getbootstrap.com/icons/amd} */\n IconNamesEnum[\"Amd\"] = \"amd\";\n /** {@link https://icons.getbootstrap.com/icons/android} */\n IconNamesEnum[\"Android\"] = \"android\";\n /** {@link https://icons.getbootstrap.com/icons/android2} */\n IconNamesEnum[\"Android2\"] = \"android2\";\n /** {@link https://icons.getbootstrap.com/icons/app-indicator} */\n IconNamesEnum[\"AppIndicator\"] = \"app-indicator\";\n /** {@link https://icons.getbootstrap.com/icons/app} */\n IconNamesEnum[\"App\"] = \"app\";\n /** {@link https://icons.getbootstrap.com/icons/apple} */\n IconNamesEnum[\"Apple\"] = \"apple\";\n /** {@link https://icons.getbootstrap.com/icons/archive-fill} */\n IconNamesEnum[\"ArchiveFill\"] = \"archive-fill\";\n /** {@link https://icons.getbootstrap.com/icons/archive} */\n IconNamesEnum[\"Archive\"] = \"archive\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-90deg-down} */\n IconNamesEnum[\"Arrow90DegDown\"] = \"arrow-90deg-down\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-90deg-left} */\n IconNamesEnum[\"Arrow90DegLeft\"] = \"arrow-90deg-left\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-90deg-right} */\n IconNamesEnum[\"Arrow90DegRight\"] = \"arrow-90deg-right\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-90deg-up} */\n IconNamesEnum[\"Arrow90DegUp\"] = \"arrow-90deg-up\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-bar-down} */\n IconNamesEnum[\"ArrowBarDown\"] = \"arrow-bar-down\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-bar-left} */\n IconNamesEnum[\"ArrowBarLeft\"] = \"arrow-bar-left\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-bar-right} */\n IconNamesEnum[\"ArrowBarRight\"] = \"arrow-bar-right\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-bar-up} */\n IconNamesEnum[\"ArrowBarUp\"] = \"arrow-bar-up\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-clockwise} */\n IconNamesEnum[\"ArrowClockwise\"] = \"arrow-clockwise\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-counterclockwise} */\n IconNamesEnum[\"ArrowCounterclockwise\"] = \"arrow-counterclockwise\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-circle-fill} */\n IconNamesEnum[\"ArrowDownCircleFill\"] = \"arrow-down-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-circle} */\n IconNamesEnum[\"ArrowDownCircle\"] = \"arrow-down-circle\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-left-circle-fill} */\n IconNamesEnum[\"ArrowDownLeftCircleFill\"] = \"arrow-down-left-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-left-circle} */\n IconNamesEnum[\"ArrowDownLeftCircle\"] = \"arrow-down-left-circle\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-left-square-fill} */\n IconNamesEnum[\"ArrowDownLeftSquareFill\"] = \"arrow-down-left-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-left-square} */\n IconNamesEnum[\"ArrowDownLeftSquare\"] = \"arrow-down-left-square\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-left} */\n IconNamesEnum[\"ArrowDownLeft\"] = \"arrow-down-left\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-right-circle-fill} */\n IconNamesEnum[\"ArrowDownRightCircleFill\"] = \"arrow-down-right-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-right-circle} */\n IconNamesEnum[\"ArrowDownRightCircle\"] = \"arrow-down-right-circle\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-right-square-fill} */\n IconNamesEnum[\"ArrowDownRightSquareFill\"] = \"arrow-down-right-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-right-square} */\n IconNamesEnum[\"ArrowDownRightSquare\"] = \"arrow-down-right-square\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-right} */\n IconNamesEnum[\"ArrowDownRight\"] = \"arrow-down-right\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-short} */\n IconNamesEnum[\"ArrowDownShort\"] = \"arrow-down-short\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-square-fill} */\n IconNamesEnum[\"ArrowDownSquareFill\"] = \"arrow-down-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-square} */\n IconNamesEnum[\"ArrowDownSquare\"] = \"arrow-down-square\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down-up} */\n IconNamesEnum[\"ArrowDownUp\"] = \"arrow-down-up\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-down} */\n IconNamesEnum[\"ArrowDown\"] = \"arrow-down\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-left-circle-fill} */\n IconNamesEnum[\"ArrowLeftCircleFill\"] = \"arrow-left-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-left-circle} */\n IconNamesEnum[\"ArrowLeftCircle\"] = \"arrow-left-circle\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-left-right} */\n IconNamesEnum[\"ArrowLeftRight\"] = \"arrow-left-right\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-left-short} */\n IconNamesEnum[\"ArrowLeftShort\"] = \"arrow-left-short\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-left-square-fill} */\n IconNamesEnum[\"ArrowLeftSquareFill\"] = \"arrow-left-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-left-square} */\n IconNamesEnum[\"ArrowLeftSquare\"] = \"arrow-left-square\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-left} */\n IconNamesEnum[\"ArrowLeft\"] = \"arrow-left\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-repeat} */\n IconNamesEnum[\"ArrowRepeat\"] = \"arrow-repeat\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-return-left} */\n IconNamesEnum[\"ArrowReturnLeft\"] = \"arrow-return-left\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-return-right} */\n IconNamesEnum[\"ArrowReturnRight\"] = \"arrow-return-right\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-right-circle-fill} */\n IconNamesEnum[\"ArrowRightCircleFill\"] = \"arrow-right-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-right-circle} */\n IconNamesEnum[\"ArrowRightCircle\"] = \"arrow-right-circle\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-right-short} */\n IconNamesEnum[\"ArrowRightShort\"] = \"arrow-right-short\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-right-square-fill} */\n IconNamesEnum[\"ArrowRightSquareFill\"] = \"arrow-right-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-right-square} */\n IconNamesEnum[\"ArrowRightSquare\"] = \"arrow-right-square\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-right} */\n IconNamesEnum[\"ArrowRight\"] = \"arrow-right\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-through-heart-fill} */\n IconNamesEnum[\"ArrowThroughHeartFill\"] = \"arrow-through-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-through-heart} */\n IconNamesEnum[\"ArrowThroughHeart\"] = \"arrow-through-heart\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-circle-fill} */\n IconNamesEnum[\"ArrowUpCircleFill\"] = \"arrow-up-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-circle} */\n IconNamesEnum[\"ArrowUpCircle\"] = \"arrow-up-circle\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-left-circle-fill} */\n IconNamesEnum[\"ArrowUpLeftCircleFill\"] = \"arrow-up-left-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-left-circle} */\n IconNamesEnum[\"ArrowUpLeftCircle\"] = \"arrow-up-left-circle\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-left-square-fill} */\n IconNamesEnum[\"ArrowUpLeftSquareFill\"] = \"arrow-up-left-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-left-square} */\n IconNamesEnum[\"ArrowUpLeftSquare\"] = \"arrow-up-left-square\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-left} */\n IconNamesEnum[\"ArrowUpLeft\"] = \"arrow-up-left\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-right-circle-fill} */\n IconNamesEnum[\"ArrowUpRightCircleFill\"] = \"arrow-up-right-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-right-circle} */\n IconNamesEnum[\"ArrowUpRightCircle\"] = \"arrow-up-right-circle\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-right-square-fill} */\n IconNamesEnum[\"ArrowUpRightSquareFill\"] = \"arrow-up-right-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-right-square} */\n IconNamesEnum[\"ArrowUpRightSquare\"] = \"arrow-up-right-square\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-right} */\n IconNamesEnum[\"ArrowUpRight\"] = \"arrow-up-right\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-short} */\n IconNamesEnum[\"ArrowUpShort\"] = \"arrow-up-short\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-square-fill} */\n IconNamesEnum[\"ArrowUpSquareFill\"] = \"arrow-up-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up-square} */\n IconNamesEnum[\"ArrowUpSquare\"] = \"arrow-up-square\";\n /** {@link https://icons.getbootstrap.com/icons/arrow-up} */\n IconNamesEnum[\"ArrowUp\"] = \"arrow-up\";\n /** {@link https://icons.getbootstrap.com/icons/arrows-angle-contract} */\n IconNamesEnum[\"ArrowsAngleContract\"] = \"arrows-angle-contract\";\n /** {@link https://icons.getbootstrap.com/icons/arrows-angle-expand} */\n IconNamesEnum[\"ArrowsAngleExpand\"] = \"arrows-angle-expand\";\n /** {@link https://icons.getbootstrap.com/icons/arrows-collapse} */\n IconNamesEnum[\"ArrowsCollapse\"] = \"arrows-collapse\";\n /** {@link https://icons.getbootstrap.com/icons/arrows-expand} */\n IconNamesEnum[\"ArrowsExpand\"] = \"arrows-expand\";\n /** {@link https://icons.getbootstrap.com/icons/arrows-fullscreen} */\n IconNamesEnum[\"ArrowsFullscreen\"] = \"arrows-fullscreen\";\n /** {@link https://icons.getbootstrap.com/icons/arrows-move} */\n IconNamesEnum[\"ArrowsMove\"] = \"arrows-move\";\n /** {@link https://icons.getbootstrap.com/icons/aspect-ratio-fill} */\n IconNamesEnum[\"AspectRatioFill\"] = \"aspect-ratio-fill\";\n /** {@link https://icons.getbootstrap.com/icons/aspect-ratio} */\n IconNamesEnum[\"AspectRatio\"] = \"aspect-ratio\";\n /** {@link https://icons.getbootstrap.com/icons/asterisk} */\n IconNamesEnum[\"Asterisk\"] = \"asterisk\";\n /** {@link https://icons.getbootstrap.com/icons/at} */\n IconNamesEnum[\"At\"] = \"at\";\n /** {@link https://icons.getbootstrap.com/icons/award-fill} */\n IconNamesEnum[\"AwardFill\"] = \"award-fill\";\n /** {@link https://icons.getbootstrap.com/icons/award} */\n IconNamesEnum[\"Award\"] = \"award\";\n /** {@link https://icons.getbootstrap.com/icons/back} */\n IconNamesEnum[\"Back\"] = \"back\";\n /** {@link https://icons.getbootstrap.com/icons/backspace-fill} */\n IconNamesEnum[\"BackspaceFill\"] = \"backspace-fill\";\n /** {@link https://icons.getbootstrap.com/icons/backspace-reverse-fill} */\n IconNamesEnum[\"BackspaceReverseFill\"] = \"backspace-reverse-fill\";\n /** {@link https://icons.getbootstrap.com/icons/backspace-reverse} */\n IconNamesEnum[\"BackspaceReverse\"] = \"backspace-reverse\";\n /** {@link https://icons.getbootstrap.com/icons/backspace} */\n IconNamesEnum[\"Backspace\"] = \"backspace\";\n /** {@link https://icons.getbootstrap.com/icons/badge-3d-fill} */\n IconNamesEnum[\"Badge3DFill\"] = \"badge-3d-fill\";\n /** {@link https://icons.getbootstrap.com/icons/badge-3d} */\n IconNamesEnum[\"Badge3D\"] = \"badge-3d\";\n /** {@link https://icons.getbootstrap.com/icons/badge-4k-fill} */\n IconNamesEnum[\"Badge4KFill\"] = \"badge-4k-fill\";\n /** {@link https://icons.getbootstrap.com/icons/badge-4k} */\n IconNamesEnum[\"Badge4K\"] = \"badge-4k\";\n /** {@link https://icons.getbootstrap.com/icons/badge-8k-fill} */\n IconNamesEnum[\"Badge8KFill\"] = \"badge-8k-fill\";\n /** {@link https://icons.getbootstrap.com/icons/badge-8k} */\n IconNamesEnum[\"Badge8K\"] = \"badge-8k\";\n /** {@link https://icons.getbootstrap.com/icons/badge-ad-fill} */\n IconNamesEnum[\"BadgeAdFill\"] = \"badge-ad-fill\";\n /** {@link https://icons.getbootstrap.com/icons/badge-ad} */\n IconNamesEnum[\"BadgeAd\"] = \"badge-ad\";\n /** {@link https://icons.getbootstrap.com/icons/badge-ar-fill} */\n IconNamesEnum[\"BadgeArFill\"] = \"badge-ar-fill\";\n /** {@link https://icons.getbootstrap.com/icons/badge-ar} */\n IconNamesEnum[\"BadgeAr\"] = \"badge-ar\";\n /** {@link https://icons.getbootstrap.com/icons/badge-cc-fill} */\n IconNamesEnum[\"BadgeCcFill\"] = \"badge-cc-fill\";\n /** {@link https://icons.getbootstrap.com/icons/badge-cc} */\n IconNamesEnum[\"BadgeCc\"] = \"badge-cc\";\n /** {@link https://icons.getbootstrap.com/icons/badge-hd-fill} */\n IconNamesEnum[\"BadgeHdFill\"] = \"badge-hd-fill\";\n /** {@link https://icons.getbootstrap.com/icons/badge-hd} */\n IconNamesEnum[\"BadgeHd\"] = \"badge-hd\";\n /** {@link https://icons.getbootstrap.com/icons/badge-sd-fill} */\n IconNamesEnum[\"BadgeSdFill\"] = \"badge-sd-fill\";\n /** {@link https://icons.getbootstrap.com/icons/badge-sd} */\n IconNamesEnum[\"BadgeSd\"] = \"badge-sd\";\n /** {@link https://icons.getbootstrap.com/icons/badge-tm-fill} */\n IconNamesEnum[\"BadgeTmFill\"] = \"badge-tm-fill\";\n /** {@link https://icons.getbootstrap.com/icons/badge-tm} */\n IconNamesEnum[\"BadgeTm\"] = \"badge-tm\";\n /** {@link https://icons.getbootstrap.com/icons/badge-vo-fill} */\n IconNamesEnum[\"BadgeVoFill\"] = \"badge-vo-fill\";\n /** {@link https://icons.getbootstrap.com/icons/badge-vo} */\n IconNamesEnum[\"BadgeVo\"] = \"badge-vo\";\n /** {@link https://icons.getbootstrap.com/icons/badge-vr-fill} */\n IconNamesEnum[\"BadgeVrFill\"] = \"badge-vr-fill\";\n /** {@link https://icons.getbootstrap.com/icons/badge-vr} */\n IconNamesEnum[\"BadgeVr\"] = \"badge-vr\";\n /** {@link https://icons.getbootstrap.com/icons/badge-wc-fill} */\n IconNamesEnum[\"BadgeWcFill\"] = \"badge-wc-fill\";\n /** {@link https://icons.getbootstrap.com/icons/badge-wc} */\n IconNamesEnum[\"BadgeWc\"] = \"badge-wc\";\n /** {@link https://icons.getbootstrap.com/icons/bag-check-fill} */\n IconNamesEnum[\"BagCheckFill\"] = \"bag-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bag-check} */\n IconNamesEnum[\"BagCheck\"] = \"bag-check\";\n /** {@link https://icons.getbootstrap.com/icons/bag-dash-fill} */\n IconNamesEnum[\"BagDashFill\"] = \"bag-dash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bag-dash} */\n IconNamesEnum[\"BagDash\"] = \"bag-dash\";\n /** {@link https://icons.getbootstrap.com/icons/bag-fill} */\n IconNamesEnum[\"BagFill\"] = \"bag-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bag-heart-fill} */\n IconNamesEnum[\"BagHeartFill\"] = \"bag-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bag-heart} */\n IconNamesEnum[\"BagHeart\"] = \"bag-heart\";\n /** {@link https://icons.getbootstrap.com/icons/bag-plus-fill} */\n IconNamesEnum[\"BagPlusFill\"] = \"bag-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bag-plus} */\n IconNamesEnum[\"BagPlus\"] = \"bag-plus\";\n /** {@link https://icons.getbootstrap.com/icons/bag-x-fill} */\n IconNamesEnum[\"BagXFill\"] = \"bag-x-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bag-x} */\n IconNamesEnum[\"BagX\"] = \"bag-x\";\n /** {@link https://icons.getbootstrap.com/icons/bag} */\n IconNamesEnum[\"Bag\"] = \"bag\";\n /** {@link https://icons.getbootstrap.com/icons/balloon-fill} */\n IconNamesEnum[\"BalloonFill\"] = \"balloon-fill\";\n /** {@link https://icons.getbootstrap.com/icons/balloon-heart-fill} */\n IconNamesEnum[\"BalloonHeartFill\"] = \"balloon-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/balloon-heart} */\n IconNamesEnum[\"BalloonHeart\"] = \"balloon-heart\";\n /** {@link https://icons.getbootstrap.com/icons/balloon} */\n IconNamesEnum[\"Balloon\"] = \"balloon\";\n /** {@link https://icons.getbootstrap.com/icons/bandaid-fill} */\n IconNamesEnum[\"BandaidFill\"] = \"bandaid-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bandaid} */\n IconNamesEnum[\"Bandaid\"] = \"bandaid\";\n /** {@link https://icons.getbootstrap.com/icons/bank} */\n IconNamesEnum[\"Bank\"] = \"bank\";\n /** {@link https://icons.getbootstrap.com/icons/bank2} */\n IconNamesEnum[\"Bank2\"] = \"bank2\";\n /** {@link https://icons.getbootstrap.com/icons/bar-chart-fill} */\n IconNamesEnum[\"BarChartFill\"] = \"bar-chart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bar-chart-line-fill} */\n IconNamesEnum[\"BarChartLineFill\"] = \"bar-chart-line-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bar-chart-line} */\n IconNamesEnum[\"BarChartLine\"] = \"bar-chart-line\";\n /** {@link https://icons.getbootstrap.com/icons/bar-chart-steps} */\n IconNamesEnum[\"BarChartSteps\"] = \"bar-chart-steps\";\n /** {@link https://icons.getbootstrap.com/icons/bar-chart} */\n IconNamesEnum[\"BarChart\"] = \"bar-chart\";\n /** {@link https://icons.getbootstrap.com/icons/basket-fill} */\n IconNamesEnum[\"BasketFill\"] = \"basket-fill\";\n /** {@link https://icons.getbootstrap.com/icons/basket} */\n IconNamesEnum[\"Basket\"] = \"basket\";\n /** {@link https://icons.getbootstrap.com/icons/basket2-fill} */\n IconNamesEnum[\"Basket2Fill\"] = \"basket2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/basket2} */\n IconNamesEnum[\"Basket2\"] = \"basket2\";\n /** {@link https://icons.getbootstrap.com/icons/basket3-fill} */\n IconNamesEnum[\"Basket3Fill\"] = \"basket3-fill\";\n /** {@link https://icons.getbootstrap.com/icons/basket3} */\n IconNamesEnum[\"Basket3\"] = \"basket3\";\n /** {@link https://icons.getbootstrap.com/icons/battery-charging} */\n IconNamesEnum[\"BatteryCharging\"] = \"battery-charging\";\n /** {@link https://icons.getbootstrap.com/icons/battery-full} */\n IconNamesEnum[\"BatteryFull\"] = \"battery-full\";\n /** {@link https://icons.getbootstrap.com/icons/battery-half} */\n IconNamesEnum[\"BatteryHalf\"] = \"battery-half\";\n /** {@link https://icons.getbootstrap.com/icons/battery} */\n IconNamesEnum[\"Battery\"] = \"battery\";\n /** {@link https://icons.getbootstrap.com/icons/behance} */\n IconNamesEnum[\"Behance\"] = \"behance\";\n /** {@link https://icons.getbootstrap.com/icons/bell-fill} */\n IconNamesEnum[\"BellFill\"] = \"bell-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bell-slash-fill} */\n IconNamesEnum[\"BellSlashFill\"] = \"bell-slash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bell-slash} */\n IconNamesEnum[\"BellSlash\"] = \"bell-slash\";\n /** {@link https://icons.getbootstrap.com/icons/bell} */\n IconNamesEnum[\"Bell\"] = \"bell\";\n /** {@link https://icons.getbootstrap.com/icons/bezier} */\n IconNamesEnum[\"Bezier\"] = \"bezier\";\n /** {@link https://icons.getbootstrap.com/icons/bezier2} */\n IconNamesEnum[\"Bezier2\"] = \"bezier2\";\n /** {@link https://icons.getbootstrap.com/icons/bicycle} */\n IconNamesEnum[\"Bicycle\"] = \"bicycle\";\n /** {@link https://icons.getbootstrap.com/icons/binoculars-fill} */\n IconNamesEnum[\"BinocularsFill\"] = \"binoculars-fill\";\n /** {@link https://icons.getbootstrap.com/icons/binoculars} */\n IconNamesEnum[\"Binoculars\"] = \"binoculars\";\n /** {@link https://icons.getbootstrap.com/icons/blockquote-left} */\n IconNamesEnum[\"BlockquoteLeft\"] = \"blockquote-left\";\n /** {@link https://icons.getbootstrap.com/icons/blockquote-right} */\n IconNamesEnum[\"BlockquoteRight\"] = \"blockquote-right\";\n /** {@link https://icons.getbootstrap.com/icons/bluetooth} */\n IconNamesEnum[\"Bluetooth\"] = \"bluetooth\";\n /** {@link https://icons.getbootstrap.com/icons/body-text} */\n IconNamesEnum[\"BodyText\"] = \"body-text\";\n /** {@link https://icons.getbootstrap.com/icons/book-fill} */\n IconNamesEnum[\"BookFill\"] = \"book-fill\";\n /** {@link https://icons.getbootstrap.com/icons/book-half} */\n IconNamesEnum[\"BookHalf\"] = \"book-half\";\n /** {@link https://icons.getbootstrap.com/icons/book} */\n IconNamesEnum[\"Book\"] = \"book\";\n /** {@link https://icons.getbootstrap.com/icons/bookmark-check-fill} */\n IconNamesEnum[\"BookmarkCheckFill\"] = \"bookmark-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bookmark-check} */\n IconNamesEnum[\"BookmarkCheck\"] = \"bookmark-check\";\n /** {@link https://icons.getbootstrap.com/icons/bookmark-dash-fill} */\n IconNamesEnum[\"BookmarkDashFill\"] = \"bookmark-dash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bookmark-dash} */\n IconNamesEnum[\"BookmarkDash\"] = \"bookmark-dash\";\n /** {@link https://icons.getbootstrap.com/icons/bookmark-fill} */\n IconNamesEnum[\"BookmarkFill\"] = \"bookmark-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bookmark-heart-fill} */\n IconNamesEnum[\"BookmarkHeartFill\"] = \"bookmark-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bookmark-heart} */\n IconNamesEnum[\"BookmarkHeart\"] = \"bookmark-heart\";\n /** {@link https://icons.getbootstrap.com/icons/bookmark-plus-fill} */\n IconNamesEnum[\"BookmarkPlusFill\"] = \"bookmark-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bookmark-plus} */\n IconNamesEnum[\"BookmarkPlus\"] = \"bookmark-plus\";\n /** {@link https://icons.getbootstrap.com/icons/bookmark-star-fill} */\n IconNamesEnum[\"BookmarkStarFill\"] = \"bookmark-star-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bookmark-star} */\n IconNamesEnum[\"BookmarkStar\"] = \"bookmark-star\";\n /** {@link https://icons.getbootstrap.com/icons/bookmark-x-fill} */\n IconNamesEnum[\"BookmarkXFill\"] = \"bookmark-x-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bookmark-x} */\n IconNamesEnum[\"BookmarkX\"] = \"bookmark-x\";\n /** {@link https://icons.getbootstrap.com/icons/bookmark} */\n IconNamesEnum[\"Bookmark\"] = \"bookmark\";\n /** {@link https://icons.getbootstrap.com/icons/bookmarks-fill} */\n IconNamesEnum[\"BookmarksFill\"] = \"bookmarks-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bookmarks} */\n IconNamesEnum[\"Bookmarks\"] = \"bookmarks\";\n /** {@link https://icons.getbootstrap.com/icons/bookshelf} */\n IconNamesEnum[\"Bookshelf\"] = \"bookshelf\";\n /** {@link https://icons.getbootstrap.com/icons/boombox-fill} */\n IconNamesEnum[\"BoomboxFill\"] = \"boombox-fill\";\n /** {@link https://icons.getbootstrap.com/icons/boombox} */\n IconNamesEnum[\"Boombox\"] = \"boombox\";\n /** {@link https://icons.getbootstrap.com/icons/bootstrap-fill} */\n IconNamesEnum[\"BootstrapFill\"] = \"bootstrap-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bootstrap-reboot} */\n IconNamesEnum[\"BootstrapReboot\"] = \"bootstrap-reboot\";\n /** {@link https://icons.getbootstrap.com/icons/bootstrap} */\n IconNamesEnum[\"Bootstrap\"] = \"bootstrap\";\n /** {@link https://icons.getbootstrap.com/icons/border-all} */\n IconNamesEnum[\"BorderAll\"] = \"border-all\";\n /** {@link https://icons.getbootstrap.com/icons/border-bottom} */\n IconNamesEnum[\"BorderBottom\"] = \"border-bottom\";\n /** {@link https://icons.getbootstrap.com/icons/border-center} */\n IconNamesEnum[\"BorderCenter\"] = \"border-center\";\n /** {@link https://icons.getbootstrap.com/icons/border-inner} */\n IconNamesEnum[\"BorderInner\"] = \"border-inner\";\n /** {@link https://icons.getbootstrap.com/icons/border-left} */\n IconNamesEnum[\"BorderLeft\"] = \"border-left\";\n /** {@link https://icons.getbootstrap.com/icons/border-middle} */\n IconNamesEnum[\"BorderMiddle\"] = \"border-middle\";\n /** {@link https://icons.getbootstrap.com/icons/border-outer} */\n IconNamesEnum[\"BorderOuter\"] = \"border-outer\";\n /** {@link https://icons.getbootstrap.com/icons/border-right} */\n IconNamesEnum[\"BorderRight\"] = \"border-right\";\n /** {@link https://icons.getbootstrap.com/icons/border-style} */\n IconNamesEnum[\"BorderStyle\"] = \"border-style\";\n /** {@link https://icons.getbootstrap.com/icons/border-top} */\n IconNamesEnum[\"BorderTop\"] = \"border-top\";\n /** {@link https://icons.getbootstrap.com/icons/border-width} */\n IconNamesEnum[\"BorderWidth\"] = \"border-width\";\n /** {@link https://icons.getbootstrap.com/icons/border} */\n IconNamesEnum[\"Border\"] = \"border\";\n /** {@link https://icons.getbootstrap.com/icons/bounding-box-circles} */\n IconNamesEnum[\"BoundingBoxCircles\"] = \"bounding-box-circles\";\n /** {@link https://icons.getbootstrap.com/icons/bounding-box} */\n IconNamesEnum[\"BoundingBox\"] = \"bounding-box\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-down-left} */\n IconNamesEnum[\"BoxArrowDownLeft\"] = \"box-arrow-down-left\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-down-right} */\n IconNamesEnum[\"BoxArrowDownRight\"] = \"box-arrow-down-right\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-down} */\n IconNamesEnum[\"BoxArrowDown\"] = \"box-arrow-down\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-in-down-left} */\n IconNamesEnum[\"BoxArrowInDownLeft\"] = \"box-arrow-in-down-left\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-in-down-right} */\n IconNamesEnum[\"BoxArrowInDownRight\"] = \"box-arrow-in-down-right\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-in-down} */\n IconNamesEnum[\"BoxArrowInDown\"] = \"box-arrow-in-down\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-in-left} */\n IconNamesEnum[\"BoxArrowInLeft\"] = \"box-arrow-in-left\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-in-right} */\n IconNamesEnum[\"BoxArrowInRight\"] = \"box-arrow-in-right\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-in-up-left} */\n IconNamesEnum[\"BoxArrowInUpLeft\"] = \"box-arrow-in-up-left\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-in-up-right} */\n IconNamesEnum[\"BoxArrowInUpRight\"] = \"box-arrow-in-up-right\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-in-up} */\n IconNamesEnum[\"BoxArrowInUp\"] = \"box-arrow-in-up\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-left} */\n IconNamesEnum[\"BoxArrowLeft\"] = \"box-arrow-left\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-right} */\n IconNamesEnum[\"BoxArrowRight\"] = \"box-arrow-right\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-up-left} */\n IconNamesEnum[\"BoxArrowUpLeft\"] = \"box-arrow-up-left\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-up-right} */\n IconNamesEnum[\"BoxArrowUpRight\"] = \"box-arrow-up-right\";\n /** {@link https://icons.getbootstrap.com/icons/box-arrow-up} */\n IconNamesEnum[\"BoxArrowUp\"] = \"box-arrow-up\";\n /** {@link https://icons.getbootstrap.com/icons/box-fill} */\n IconNamesEnum[\"BoxFill\"] = \"box-fill\";\n /** {@link https://icons.getbootstrap.com/icons/box-seam-fill} */\n IconNamesEnum[\"BoxSeamFill\"] = \"box-seam-fill\";\n /** {@link https://icons.getbootstrap.com/icons/box-seam} */\n IconNamesEnum[\"BoxSeam\"] = \"box-seam\";\n /** {@link https://icons.getbootstrap.com/icons/box} */\n IconNamesEnum[\"Box\"] = \"box\";\n /** {@link https://icons.getbootstrap.com/icons/box2-fill} */\n IconNamesEnum[\"Box2Fill\"] = \"box2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/box2-heart-fill} */\n IconNamesEnum[\"Box2HeartFill\"] = \"box2-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/box2-heart} */\n IconNamesEnum[\"Box2Heart\"] = \"box2-heart\";\n /** {@link https://icons.getbootstrap.com/icons/box2} */\n IconNamesEnum[\"Box2\"] = \"box2\";\n /** {@link https://icons.getbootstrap.com/icons/boxes} */\n IconNamesEnum[\"Boxes\"] = \"boxes\";\n /** {@link https://icons.getbootstrap.com/icons/braces-asterisk} */\n IconNamesEnum[\"BracesAsterisk\"] = \"braces-asterisk\";\n /** {@link https://icons.getbootstrap.com/icons/braces} */\n IconNamesEnum[\"Braces\"] = \"braces\";\n /** {@link https://icons.getbootstrap.com/icons/bricks} */\n IconNamesEnum[\"Bricks\"] = \"bricks\";\n /** {@link https://icons.getbootstrap.com/icons/briefcase-fill} */\n IconNamesEnum[\"BriefcaseFill\"] = \"briefcase-fill\";\n /** {@link https://icons.getbootstrap.com/icons/briefcase} */\n IconNamesEnum[\"Briefcase\"] = \"briefcase\";\n /** {@link https://icons.getbootstrap.com/icons/brightness-alt-high-fill} */\n IconNamesEnum[\"BrightnessAltHighFill\"] = \"brightness-alt-high-fill\";\n /** {@link https://icons.getbootstrap.com/icons/brightness-alt-high} */\n IconNamesEnum[\"BrightnessAltHigh\"] = \"brightness-alt-high\";\n /** {@link https://icons.getbootstrap.com/icons/brightness-alt-low-fill} */\n IconNamesEnum[\"BrightnessAltLowFill\"] = \"brightness-alt-low-fill\";\n /** {@link https://icons.getbootstrap.com/icons/brightness-alt-low} */\n IconNamesEnum[\"BrightnessAltLow\"] = \"brightness-alt-low\";\n /** {@link https://icons.getbootstrap.com/icons/brightness-high-fill} */\n IconNamesEnum[\"BrightnessHighFill\"] = \"brightness-high-fill\";\n /** {@link https://icons.getbootstrap.com/icons/brightness-high} */\n IconNamesEnum[\"BrightnessHigh\"] = \"brightness-high\";\n /** {@link https://icons.getbootstrap.com/icons/brightness-low-fill} */\n IconNamesEnum[\"BrightnessLowFill\"] = \"brightness-low-fill\";\n /** {@link https://icons.getbootstrap.com/icons/brightness-low} */\n IconNamesEnum[\"BrightnessLow\"] = \"brightness-low\";\n /** {@link https://icons.getbootstrap.com/icons/broadcast-pin} */\n IconNamesEnum[\"BroadcastPin\"] = \"broadcast-pin\";\n /** {@link https://icons.getbootstrap.com/icons/broadcast} */\n IconNamesEnum[\"Broadcast\"] = \"broadcast\";\n /** {@link https://icons.getbootstrap.com/icons/browser-chrome} */\n IconNamesEnum[\"BrowserChrome\"] = \"browser-chrome\";\n /** {@link https://icons.getbootstrap.com/icons/browser-edge} */\n IconNamesEnum[\"BrowserEdge\"] = \"browser-edge\";\n /** {@link https://icons.getbootstrap.com/icons/browser-firefox} */\n IconNamesEnum[\"BrowserFirefox\"] = \"browser-firefox\";\n /** {@link https://icons.getbootstrap.com/icons/browser-safari} */\n IconNamesEnum[\"BrowserSafari\"] = \"browser-safari\";\n /** {@link https://icons.getbootstrap.com/icons/brush-fill} */\n IconNamesEnum[\"BrushFill\"] = \"brush-fill\";\n /** {@link https://icons.getbootstrap.com/icons/brush} */\n IconNamesEnum[\"Brush\"] = \"brush\";\n /** {@link https://icons.getbootstrap.com/icons/bucket-fill} */\n IconNamesEnum[\"BucketFill\"] = \"bucket-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bucket} */\n IconNamesEnum[\"Bucket\"] = \"bucket\";\n /** {@link https://icons.getbootstrap.com/icons/bug-fill} */\n IconNamesEnum[\"BugFill\"] = \"bug-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bug} */\n IconNamesEnum[\"Bug\"] = \"bug\";\n /** {@link https://icons.getbootstrap.com/icons/building-add} */\n IconNamesEnum[\"BuildingAdd\"] = \"building-add\";\n /** {@link https://icons.getbootstrap.com/icons/building-check} */\n IconNamesEnum[\"BuildingCheck\"] = \"building-check\";\n /** {@link https://icons.getbootstrap.com/icons/building-dash} */\n IconNamesEnum[\"BuildingDash\"] = \"building-dash\";\n /** {@link https://icons.getbootstrap.com/icons/building-down} */\n IconNamesEnum[\"BuildingDown\"] = \"building-down\";\n /** {@link https://icons.getbootstrap.com/icons/building-exclamation} */\n IconNamesEnum[\"BuildingExclamation\"] = \"building-exclamation\";\n /** {@link https://icons.getbootstrap.com/icons/building-fill-add} */\n IconNamesEnum[\"BuildingFillAdd\"] = \"building-fill-add\";\n /** {@link https://icons.getbootstrap.com/icons/building-fill-check} */\n IconNamesEnum[\"BuildingFillCheck\"] = \"building-fill-check\";\n /** {@link https://icons.getbootstrap.com/icons/building-fill-dash} */\n IconNamesEnum[\"BuildingFillDash\"] = \"building-fill-dash\";\n /** {@link https://icons.getbootstrap.com/icons/building-fill-down} */\n IconNamesEnum[\"BuildingFillDown\"] = \"building-fill-down\";\n /** {@link https://icons.getbootstrap.com/icons/building-fill-exclamation} */\n IconNamesEnum[\"BuildingFillExclamation\"] = \"building-fill-exclamation\";\n /** {@link https://icons.getbootstrap.com/icons/building-fill-gear} */\n IconNamesEnum[\"BuildingFillGear\"] = \"building-fill-gear\";\n /** {@link https://icons.getbootstrap.com/icons/building-fill-lock} */\n IconNamesEnum[\"BuildingFillLock\"] = \"building-fill-lock\";\n /** {@link https://icons.getbootstrap.com/icons/building-fill-slash} */\n IconNamesEnum[\"BuildingFillSlash\"] = \"building-fill-slash\";\n /** {@link https://icons.getbootstrap.com/icons/building-fill-up} */\n IconNamesEnum[\"BuildingFillUp\"] = \"building-fill-up\";\n /** {@link https://icons.getbootstrap.com/icons/building-fill-x} */\n IconNamesEnum[\"BuildingFillX\"] = \"building-fill-x\";\n /** {@link https://icons.getbootstrap.com/icons/building-fill} */\n IconNamesEnum[\"BuildingFill\"] = \"building-fill\";\n /** {@link https://icons.getbootstrap.com/icons/building-gear} */\n IconNamesEnum[\"BuildingGear\"] = \"building-gear\";\n /** {@link https://icons.getbootstrap.com/icons/building-lock} */\n IconNamesEnum[\"BuildingLock\"] = \"building-lock\";\n /** {@link https://icons.getbootstrap.com/icons/building-slash} */\n IconNamesEnum[\"BuildingSlash\"] = \"building-slash\";\n /** {@link https://icons.getbootstrap.com/icons/building-up} */\n IconNamesEnum[\"BuildingUp\"] = \"building-up\";\n /** {@link https://icons.getbootstrap.com/icons/building-x} */\n IconNamesEnum[\"BuildingX\"] = \"building-x\";\n /** {@link https://icons.getbootstrap.com/icons/building} */\n IconNamesEnum[\"Building\"] = \"building\";\n /** {@link https://icons.getbootstrap.com/icons/buildings-fill} */\n IconNamesEnum[\"BuildingsFill\"] = \"buildings-fill\";\n /** {@link https://icons.getbootstrap.com/icons/buildings} */\n IconNamesEnum[\"Buildings\"] = \"buildings\";\n /** {@link https://icons.getbootstrap.com/icons/bullseye} */\n IconNamesEnum[\"Bullseye\"] = \"bullseye\";\n /** {@link https://icons.getbootstrap.com/icons/bus-front-fill} */\n IconNamesEnum[\"BusFrontFill\"] = \"bus-front-fill\";\n /** {@link https://icons.getbootstrap.com/icons/bus-front} */\n IconNamesEnum[\"BusFront\"] = \"bus-front\";\n /** {@link https://icons.getbootstrap.com/icons/c-circle-fill} */\n IconNamesEnum[\"CCircleFill\"] = \"c-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/c-circle} */\n IconNamesEnum[\"CCircle\"] = \"c-circle\";\n /** {@link https://icons.getbootstrap.com/icons/c-square-fill} */\n IconNamesEnum[\"CSquareFill\"] = \"c-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/c-square} */\n IconNamesEnum[\"CSquare\"] = \"c-square\";\n /** {@link https://icons.getbootstrap.com/icons/calculator-fill} */\n IconNamesEnum[\"CalculatorFill\"] = \"calculator-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calculator} */\n IconNamesEnum[\"Calculator\"] = \"calculator\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-check-fill} */\n IconNamesEnum[\"CalendarCheckFill\"] = \"calendar-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-check} */\n IconNamesEnum[\"CalendarCheck\"] = \"calendar-check\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-date-fill} */\n IconNamesEnum[\"CalendarDateFill\"] = \"calendar-date-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-date} */\n IconNamesEnum[\"CalendarDate\"] = \"calendar-date\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-day-fill} */\n IconNamesEnum[\"CalendarDayFill\"] = \"calendar-day-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-day} */\n IconNamesEnum[\"CalendarDay\"] = \"calendar-day\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-event-fill} */\n IconNamesEnum[\"CalendarEventFill\"] = \"calendar-event-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-event} */\n IconNamesEnum[\"CalendarEvent\"] = \"calendar-event\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-fill} */\n IconNamesEnum[\"CalendarFill\"] = \"calendar-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-heart-fill} */\n IconNamesEnum[\"CalendarHeartFill\"] = \"calendar-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-heart} */\n IconNamesEnum[\"CalendarHeart\"] = \"calendar-heart\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-minus-fill} */\n IconNamesEnum[\"CalendarMinusFill\"] = \"calendar-minus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-minus} */\n IconNamesEnum[\"CalendarMinus\"] = \"calendar-minus\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-month-fill} */\n IconNamesEnum[\"CalendarMonthFill\"] = \"calendar-month-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-month} */\n IconNamesEnum[\"CalendarMonth\"] = \"calendar-month\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-plus-fill} */\n IconNamesEnum[\"CalendarPlusFill\"] = \"calendar-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-plus} */\n IconNamesEnum[\"CalendarPlus\"] = \"calendar-plus\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-range-fill} */\n IconNamesEnum[\"CalendarRangeFill\"] = \"calendar-range-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-range} */\n IconNamesEnum[\"CalendarRange\"] = \"calendar-range\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-week-fill} */\n IconNamesEnum[\"CalendarWeekFill\"] = \"calendar-week-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-week} */\n IconNamesEnum[\"CalendarWeek\"] = \"calendar-week\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-x-fill} */\n IconNamesEnum[\"CalendarXFill\"] = \"calendar-x-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar-x} */\n IconNamesEnum[\"CalendarX\"] = \"calendar-x\";\n /** {@link https://icons.getbootstrap.com/icons/calendar} */\n IconNamesEnum[\"Calendar\"] = \"calendar\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-check-fill} */\n IconNamesEnum[\"Calendar2CheckFill\"] = \"calendar2-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-check} */\n IconNamesEnum[\"Calendar2Check\"] = \"calendar2-check\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-date-fill} */\n IconNamesEnum[\"Calendar2DateFill\"] = \"calendar2-date-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-date} */\n IconNamesEnum[\"Calendar2Date\"] = \"calendar2-date\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-day-fill} */\n IconNamesEnum[\"Calendar2DayFill\"] = \"calendar2-day-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-day} */\n IconNamesEnum[\"Calendar2Day\"] = \"calendar2-day\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-event-fill} */\n IconNamesEnum[\"Calendar2EventFill\"] = \"calendar2-event-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-event} */\n IconNamesEnum[\"Calendar2Event\"] = \"calendar2-event\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-fill} */\n IconNamesEnum[\"Calendar2Fill\"] = \"calendar2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-heart-fill} */\n IconNamesEnum[\"Calendar2HeartFill\"] = \"calendar2-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-heart} */\n IconNamesEnum[\"Calendar2Heart\"] = \"calendar2-heart\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-minus-fill} */\n IconNamesEnum[\"Calendar2MinusFill\"] = \"calendar2-minus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-minus} */\n IconNamesEnum[\"Calendar2Minus\"] = \"calendar2-minus\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-month-fill} */\n IconNamesEnum[\"Calendar2MonthFill\"] = \"calendar2-month-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-month} */\n IconNamesEnum[\"Calendar2Month\"] = \"calendar2-month\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-plus-fill} */\n IconNamesEnum[\"Calendar2PlusFill\"] = \"calendar2-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-plus} */\n IconNamesEnum[\"Calendar2Plus\"] = \"calendar2-plus\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-range-fill} */\n IconNamesEnum[\"Calendar2RangeFill\"] = \"calendar2-range-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-range} */\n IconNamesEnum[\"Calendar2Range\"] = \"calendar2-range\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-week-fill} */\n IconNamesEnum[\"Calendar2WeekFill\"] = \"calendar2-week-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-week} */\n IconNamesEnum[\"Calendar2Week\"] = \"calendar2-week\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-x-fill} */\n IconNamesEnum[\"Calendar2XFill\"] = \"calendar2-x-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2-x} */\n IconNamesEnum[\"Calendar2X\"] = \"calendar2-x\";\n /** {@link https://icons.getbootstrap.com/icons/calendar2} */\n IconNamesEnum[\"Calendar2\"] = \"calendar2\";\n /** {@link https://icons.getbootstrap.com/icons/calendar3-event-fill} */\n IconNamesEnum[\"Calendar3EventFill\"] = \"calendar3-event-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar3-event} */\n IconNamesEnum[\"Calendar3Event\"] = \"calendar3-event\";\n /** {@link https://icons.getbootstrap.com/icons/calendar3-fill} */\n IconNamesEnum[\"Calendar3Fill\"] = \"calendar3-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar3-range-fill} */\n IconNamesEnum[\"Calendar3RangeFill\"] = \"calendar3-range-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar3-range} */\n IconNamesEnum[\"Calendar3Range\"] = \"calendar3-range\";\n /** {@link https://icons.getbootstrap.com/icons/calendar3-week-fill} */\n IconNamesEnum[\"Calendar3WeekFill\"] = \"calendar3-week-fill\";\n /** {@link https://icons.getbootstrap.com/icons/calendar3-week} */\n IconNamesEnum[\"Calendar3Week\"] = \"calendar3-week\";\n /** {@link https://icons.getbootstrap.com/icons/calendar3} */\n IconNamesEnum[\"Calendar3\"] = \"calendar3\";\n /** {@link https://icons.getbootstrap.com/icons/calendar4-event} */\n IconNamesEnum[\"Calendar4Event\"] = \"calendar4-event\";\n /** {@link https://icons.getbootstrap.com/icons/calendar4-range} */\n IconNamesEnum[\"Calendar4Range\"] = \"calendar4-range\";\n /** {@link https://icons.getbootstrap.com/icons/calendar4-week} */\n IconNamesEnum[\"Calendar4Week\"] = \"calendar4-week\";\n /** {@link https://icons.getbootstrap.com/icons/calendar4} */\n IconNamesEnum[\"Calendar4\"] = \"calendar4\";\n /** {@link https://icons.getbootstrap.com/icons/camera-fill} */\n IconNamesEnum[\"CameraFill\"] = \"camera-fill\";\n /** {@link https://icons.getbootstrap.com/icons/camera-reels-fill} */\n IconNamesEnum[\"CameraReelsFill\"] = \"camera-reels-fill\";\n /** {@link https://icons.getbootstrap.com/icons/camera-reels} */\n IconNamesEnum[\"CameraReels\"] = \"camera-reels\";\n /** {@link https://icons.getbootstrap.com/icons/camera-video-fill} */\n IconNamesEnum[\"CameraVideoFill\"] = \"camera-video-fill\";\n /** {@link https://icons.getbootstrap.com/icons/camera-video-off-fill} */\n IconNamesEnum[\"CameraVideoOffFill\"] = \"camera-video-off-fill\";\n /** {@link https://icons.getbootstrap.com/icons/camera-video-off} */\n IconNamesEnum[\"CameraVideoOff\"] = \"camera-video-off\";\n /** {@link https://icons.getbootstrap.com/icons/camera-video} */\n IconNamesEnum[\"CameraVideo\"] = \"camera-video\";\n /** {@link https://icons.getbootstrap.com/icons/camera} */\n IconNamesEnum[\"Camera\"] = \"camera\";\n /** {@link https://icons.getbootstrap.com/icons/camera2} */\n IconNamesEnum[\"Camera2\"] = \"camera2\";\n /** {@link https://icons.getbootstrap.com/icons/capslock-fill} */\n IconNamesEnum[\"CapslockFill\"] = \"capslock-fill\";\n /** {@link https://icons.getbootstrap.com/icons/capslock} */\n IconNamesEnum[\"Capslock\"] = \"capslock\";\n /** {@link https://icons.getbootstrap.com/icons/capsule-pill} */\n IconNamesEnum[\"CapsulePill\"] = \"capsule-pill\";\n /** {@link https://icons.getbootstrap.com/icons/capsule} */\n IconNamesEnum[\"Capsule\"] = \"capsule\";\n /** {@link https://icons.getbootstrap.com/icons/car-front-fill} */\n IconNamesEnum[\"CarFrontFill\"] = \"car-front-fill\";\n /** {@link https://icons.getbootstrap.com/icons/car-front} */\n IconNamesEnum[\"CarFront\"] = \"car-front\";\n /** {@link https://icons.getbootstrap.com/icons/card-checklist} */\n IconNamesEnum[\"CardChecklist\"] = \"card-checklist\";\n /** {@link https://icons.getbootstrap.com/icons/card-heading} */\n IconNamesEnum[\"CardHeading\"] = \"card-heading\";\n /** {@link https://icons.getbootstrap.com/icons/card-image} */\n IconNamesEnum[\"CardImage\"] = \"card-image\";\n /** {@link https://icons.getbootstrap.com/icons/card-list} */\n IconNamesEnum[\"CardList\"] = \"card-list\";\n /** {@link https://icons.getbootstrap.com/icons/card-text} */\n IconNamesEnum[\"CardText\"] = \"card-text\";\n /** {@link https://icons.getbootstrap.com/icons/caret-down-fill} */\n IconNamesEnum[\"CaretDownFill\"] = \"caret-down-fill\";\n /** {@link https://icons.getbootstrap.com/icons/caret-down-square-fill} */\n IconNamesEnum[\"CaretDownSquareFill\"] = \"caret-down-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/caret-down-square} */\n IconNamesEnum[\"CaretDownSquare\"] = \"caret-down-square\";\n /** {@link https://icons.getbootstrap.com/icons/caret-down} */\n IconNamesEnum[\"CaretDown\"] = \"caret-down\";\n /** {@link https://icons.getbootstrap.com/icons/caret-left-fill} */\n IconNamesEnum[\"CaretLeftFill\"] = \"caret-left-fill\";\n /** {@link https://icons.getbootstrap.com/icons/caret-left-square-fill} */\n IconNamesEnum[\"CaretLeftSquareFill\"] = \"caret-left-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/caret-left-square} */\n IconNamesEnum[\"CaretLeftSquare\"] = \"caret-left-square\";\n /** {@link https://icons.getbootstrap.com/icons/caret-left} */\n IconNamesEnum[\"CaretLeft\"] = \"caret-left\";\n /** {@link https://icons.getbootstrap.com/icons/caret-right-fill} */\n IconNamesEnum[\"CaretRightFill\"] = \"caret-right-fill\";\n /** {@link https://icons.getbootstrap.com/icons/caret-right-square-fill} */\n IconNamesEnum[\"CaretRightSquareFill\"] = \"caret-right-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/caret-right-square} */\n IconNamesEnum[\"CaretRightSquare\"] = \"caret-right-square\";\n /** {@link https://icons.getbootstrap.com/icons/caret-right} */\n IconNamesEnum[\"CaretRight\"] = \"caret-right\";\n /** {@link https://icons.getbootstrap.com/icons/caret-up-fill} */\n IconNamesEnum[\"CaretUpFill\"] = \"caret-up-fill\";\n /** {@link https://icons.getbootstrap.com/icons/caret-up-square-fill} */\n IconNamesEnum[\"CaretUpSquareFill\"] = \"caret-up-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/caret-up-square} */\n IconNamesEnum[\"CaretUpSquare\"] = \"caret-up-square\";\n /** {@link https://icons.getbootstrap.com/icons/caret-up} */\n IconNamesEnum[\"CaretUp\"] = \"caret-up\";\n /** {@link https://icons.getbootstrap.com/icons/cart-check-fill} */\n IconNamesEnum[\"CartCheckFill\"] = \"cart-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cart-check} */\n IconNamesEnum[\"CartCheck\"] = \"cart-check\";\n /** {@link https://icons.getbootstrap.com/icons/cart-dash-fill} */\n IconNamesEnum[\"CartDashFill\"] = \"cart-dash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cart-dash} */\n IconNamesEnum[\"CartDash\"] = \"cart-dash\";\n /** {@link https://icons.getbootstrap.com/icons/cart-fill} */\n IconNamesEnum[\"CartFill\"] = \"cart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cart-plus-fill} */\n IconNamesEnum[\"CartPlusFill\"] = \"cart-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cart-plus} */\n IconNamesEnum[\"CartPlus\"] = \"cart-plus\";\n /** {@link https://icons.getbootstrap.com/icons/cart-x-fill} */\n IconNamesEnum[\"CartXFill\"] = \"cart-x-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cart-x} */\n IconNamesEnum[\"CartX\"] = \"cart-x\";\n /** {@link https://icons.getbootstrap.com/icons/cart} */\n IconNamesEnum[\"Cart\"] = \"cart\";\n /** {@link https://icons.getbootstrap.com/icons/cart2} */\n IconNamesEnum[\"Cart2\"] = \"cart2\";\n /** {@link https://icons.getbootstrap.com/icons/cart3} */\n IconNamesEnum[\"Cart3\"] = \"cart3\";\n /** {@link https://icons.getbootstrap.com/icons/cart4} */\n IconNamesEnum[\"Cart4\"] = \"cart4\";\n /** {@link https://icons.getbootstrap.com/icons/cash-coin} */\n IconNamesEnum[\"CashCoin\"] = \"cash-coin\";\n /** {@link https://icons.getbootstrap.com/icons/cash-stack} */\n IconNamesEnum[\"CashStack\"] = \"cash-stack\";\n /** {@link https://icons.getbootstrap.com/icons/cash} */\n IconNamesEnum[\"Cash\"] = \"cash\";\n /** {@link https://icons.getbootstrap.com/icons/cassette-fill} */\n IconNamesEnum[\"CassetteFill\"] = \"cassette-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cassette} */\n IconNamesEnum[\"Cassette\"] = \"cassette\";\n /** {@link https://icons.getbootstrap.com/icons/cast} */\n IconNamesEnum[\"Cast\"] = \"cast\";\n /** {@link https://icons.getbootstrap.com/icons/cc-circle-fill} */\n IconNamesEnum[\"CcCircleFill\"] = \"cc-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cc-circle} */\n IconNamesEnum[\"CcCircle\"] = \"cc-circle\";\n /** {@link https://icons.getbootstrap.com/icons/cc-square-fill} */\n IconNamesEnum[\"CcSquareFill\"] = \"cc-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cc-square} */\n IconNamesEnum[\"CcSquare\"] = \"cc-square\";\n /** {@link https://icons.getbootstrap.com/icons/chat-dots-fill} */\n IconNamesEnum[\"ChatDotsFill\"] = \"chat-dots-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-dots} */\n IconNamesEnum[\"ChatDots\"] = \"chat-dots\";\n /** {@link https://icons.getbootstrap.com/icons/chat-fill} */\n IconNamesEnum[\"ChatFill\"] = \"chat-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-heart-fill} */\n IconNamesEnum[\"ChatHeartFill\"] = \"chat-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-heart} */\n IconNamesEnum[\"ChatHeart\"] = \"chat-heart\";\n /** {@link https://icons.getbootstrap.com/icons/chat-left-dots-fill} */\n IconNamesEnum[\"ChatLeftDotsFill\"] = \"chat-left-dots-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-left-dots} */\n IconNamesEnum[\"ChatLeftDots\"] = \"chat-left-dots\";\n /** {@link https://icons.getbootstrap.com/icons/chat-left-fill} */\n IconNamesEnum[\"ChatLeftFill\"] = \"chat-left-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-left-heart-fill} */\n IconNamesEnum[\"ChatLeftHeartFill\"] = \"chat-left-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-left-heart} */\n IconNamesEnum[\"ChatLeftHeart\"] = \"chat-left-heart\";\n /** {@link https://icons.getbootstrap.com/icons/chat-left-quote-fill} */\n IconNamesEnum[\"ChatLeftQuoteFill\"] = \"chat-left-quote-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-left-quote} */\n IconNamesEnum[\"ChatLeftQuote\"] = \"chat-left-quote\";\n /** {@link https://icons.getbootstrap.com/icons/chat-left-text-fill} */\n IconNamesEnum[\"ChatLeftTextFill\"] = \"chat-left-text-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-left-text} */\n IconNamesEnum[\"ChatLeftText\"] = \"chat-left-text\";\n /** {@link https://icons.getbootstrap.com/icons/chat-left} */\n IconNamesEnum[\"ChatLeft\"] = \"chat-left\";\n /** {@link https://icons.getbootstrap.com/icons/chat-quote-fill} */\n IconNamesEnum[\"ChatQuoteFill\"] = \"chat-quote-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-quote} */\n IconNamesEnum[\"ChatQuote\"] = \"chat-quote\";\n /** {@link https://icons.getbootstrap.com/icons/chat-right-dots-fill} */\n IconNamesEnum[\"ChatRightDotsFill\"] = \"chat-right-dots-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-right-dots} */\n IconNamesEnum[\"ChatRightDots\"] = \"chat-right-dots\";\n /** {@link https://icons.getbootstrap.com/icons/chat-right-fill} */\n IconNamesEnum[\"ChatRightFill\"] = \"chat-right-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-right-heart-fill} */\n IconNamesEnum[\"ChatRightHeartFill\"] = \"chat-right-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-right-heart} */\n IconNamesEnum[\"ChatRightHeart\"] = \"chat-right-heart\";\n /** {@link https://icons.getbootstrap.com/icons/chat-right-quote-fill} */\n IconNamesEnum[\"ChatRightQuoteFill\"] = \"chat-right-quote-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-right-quote} */\n IconNamesEnum[\"ChatRightQuote\"] = \"chat-right-quote\";\n /** {@link https://icons.getbootstrap.com/icons/chat-right-text-fill} */\n IconNamesEnum[\"ChatRightTextFill\"] = \"chat-right-text-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-right-text} */\n IconNamesEnum[\"ChatRightText\"] = \"chat-right-text\";\n /** {@link https://icons.getbootstrap.com/icons/chat-right} */\n IconNamesEnum[\"ChatRight\"] = \"chat-right\";\n /** {@link https://icons.getbootstrap.com/icons/chat-square-dots-fill} */\n IconNamesEnum[\"ChatSquareDotsFill\"] = \"chat-square-dots-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-square-dots} */\n IconNamesEnum[\"ChatSquareDots\"] = \"chat-square-dots\";\n /** {@link https://icons.getbootstrap.com/icons/chat-square-fill} */\n IconNamesEnum[\"ChatSquareFill\"] = \"chat-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-square-heart-fill} */\n IconNamesEnum[\"ChatSquareHeartFill\"] = \"chat-square-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-square-heart} */\n IconNamesEnum[\"ChatSquareHeart\"] = \"chat-square-heart\";\n /** {@link https://icons.getbootstrap.com/icons/chat-square-quote-fill} */\n IconNamesEnum[\"ChatSquareQuoteFill\"] = \"chat-square-quote-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-square-quote} */\n IconNamesEnum[\"ChatSquareQuote\"] = \"chat-square-quote\";\n /** {@link https://icons.getbootstrap.com/icons/chat-square-text-fill} */\n IconNamesEnum[\"ChatSquareTextFill\"] = \"chat-square-text-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-square-text} */\n IconNamesEnum[\"ChatSquareText\"] = \"chat-square-text\";\n /** {@link https://icons.getbootstrap.com/icons/chat-square} */\n IconNamesEnum[\"ChatSquare\"] = \"chat-square\";\n /** {@link https://icons.getbootstrap.com/icons/chat-text-fill} */\n IconNamesEnum[\"ChatTextFill\"] = \"chat-text-fill\";\n /** {@link https://icons.getbootstrap.com/icons/chat-text} */\n IconNamesEnum[\"ChatText\"] = \"chat-text\";\n /** {@link https://icons.getbootstrap.com/icons/chat} */\n IconNamesEnum[\"Chat\"] = \"chat\";\n /** {@link https://icons.getbootstrap.com/icons/check-all} */\n IconNamesEnum[\"CheckAll\"] = \"check-all\";\n /** {@link https://icons.getbootstrap.com/icons/check-circle-fill} */\n IconNamesEnum[\"CheckCircleFill\"] = \"check-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/check-circle} */\n IconNamesEnum[\"CheckCircle\"] = \"check-circle\";\n /** {@link https://icons.getbootstrap.com/icons/check-lg} */\n IconNamesEnum[\"CheckLg\"] = \"check-lg\";\n /** {@link https://icons.getbootstrap.com/icons/check-square-fill} */\n IconNamesEnum[\"CheckSquareFill\"] = \"check-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/check-square} */\n IconNamesEnum[\"CheckSquare\"] = \"check-square\";\n /** {@link https://icons.getbootstrap.com/icons/check} */\n IconNamesEnum[\"Check\"] = \"check\";\n /** {@link https://icons.getbootstrap.com/icons/check2-all} */\n IconNamesEnum[\"Check2All\"] = \"check2-all\";\n /** {@link https://icons.getbootstrap.com/icons/check2-circle} */\n IconNamesEnum[\"Check2Circle\"] = \"check2-circle\";\n /** {@link https://icons.getbootstrap.com/icons/check2-square} */\n IconNamesEnum[\"Check2Square\"] = \"check2-square\";\n /** {@link https://icons.getbootstrap.com/icons/check2} */\n IconNamesEnum[\"Check2\"] = \"check2\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-bar-contract} */\n IconNamesEnum[\"ChevronBarContract\"] = \"chevron-bar-contract\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-bar-down} */\n IconNamesEnum[\"ChevronBarDown\"] = \"chevron-bar-down\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-bar-expand} */\n IconNamesEnum[\"ChevronBarExpand\"] = \"chevron-bar-expand\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-bar-left} */\n IconNamesEnum[\"ChevronBarLeft\"] = \"chevron-bar-left\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-bar-right} */\n IconNamesEnum[\"ChevronBarRight\"] = \"chevron-bar-right\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-bar-up} */\n IconNamesEnum[\"ChevronBarUp\"] = \"chevron-bar-up\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-compact-down} */\n IconNamesEnum[\"ChevronCompactDown\"] = \"chevron-compact-down\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-compact-left} */\n IconNamesEnum[\"ChevronCompactLeft\"] = \"chevron-compact-left\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-compact-right} */\n IconNamesEnum[\"ChevronCompactRight\"] = \"chevron-compact-right\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-compact-up} */\n IconNamesEnum[\"ChevronCompactUp\"] = \"chevron-compact-up\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-contract} */\n IconNamesEnum[\"ChevronContract\"] = \"chevron-contract\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-double-down} */\n IconNamesEnum[\"ChevronDoubleDown\"] = \"chevron-double-down\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-double-left} */\n IconNamesEnum[\"ChevronDoubleLeft\"] = \"chevron-double-left\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-double-right} */\n IconNamesEnum[\"ChevronDoubleRight\"] = \"chevron-double-right\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-double-up} */\n IconNamesEnum[\"ChevronDoubleUp\"] = \"chevron-double-up\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-down} */\n IconNamesEnum[\"ChevronDown\"] = \"chevron-down\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-expand} */\n IconNamesEnum[\"ChevronExpand\"] = \"chevron-expand\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-left} */\n IconNamesEnum[\"ChevronLeft\"] = \"chevron-left\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-right} */\n IconNamesEnum[\"ChevronRight\"] = \"chevron-right\";\n /** {@link https://icons.getbootstrap.com/icons/chevron-up} */\n IconNamesEnum[\"ChevronUp\"] = \"chevron-up\";\n /** {@link https://icons.getbootstrap.com/icons/circle-fill} */\n IconNamesEnum[\"CircleFill\"] = \"circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/circle-half} */\n IconNamesEnum[\"CircleHalf\"] = \"circle-half\";\n /** {@link https://icons.getbootstrap.com/icons/circle-square} */\n IconNamesEnum[\"CircleSquare\"] = \"circle-square\";\n /** {@link https://icons.getbootstrap.com/icons/circle} */\n IconNamesEnum[\"Circle\"] = \"circle\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard-check-fill} */\n IconNamesEnum[\"ClipboardCheckFill\"] = \"clipboard-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard-check} */\n IconNamesEnum[\"ClipboardCheck\"] = \"clipboard-check\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard-data-fill} */\n IconNamesEnum[\"ClipboardDataFill\"] = \"clipboard-data-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard-data} */\n IconNamesEnum[\"ClipboardData\"] = \"clipboard-data\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard-fill} */\n IconNamesEnum[\"ClipboardFill\"] = \"clipboard-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard-heart-fill} */\n IconNamesEnum[\"ClipboardHeartFill\"] = \"clipboard-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard-heart} */\n IconNamesEnum[\"ClipboardHeart\"] = \"clipboard-heart\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard-minus-fill} */\n IconNamesEnum[\"ClipboardMinusFill\"] = \"clipboard-minus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard-minus} */\n IconNamesEnum[\"ClipboardMinus\"] = \"clipboard-minus\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard-plus-fill} */\n IconNamesEnum[\"ClipboardPlusFill\"] = \"clipboard-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard-plus} */\n IconNamesEnum[\"ClipboardPlus\"] = \"clipboard-plus\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard-pulse} */\n IconNamesEnum[\"ClipboardPulse\"] = \"clipboard-pulse\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard-x-fill} */\n IconNamesEnum[\"ClipboardXFill\"] = \"clipboard-x-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard-x} */\n IconNamesEnum[\"ClipboardX\"] = \"clipboard-x\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard} */\n IconNamesEnum[\"Clipboard\"] = \"clipboard\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-check-fill} */\n IconNamesEnum[\"Clipboard2CheckFill\"] = \"clipboard2-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-check} */\n IconNamesEnum[\"Clipboard2Check\"] = \"clipboard2-check\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-data-fill} */\n IconNamesEnum[\"Clipboard2DataFill\"] = \"clipboard2-data-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-data} */\n IconNamesEnum[\"Clipboard2Data\"] = \"clipboard2-data\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-fill} */\n IconNamesEnum[\"Clipboard2Fill\"] = \"clipboard2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-heart-fill} */\n IconNamesEnum[\"Clipboard2HeartFill\"] = \"clipboard2-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-heart} */\n IconNamesEnum[\"Clipboard2Heart\"] = \"clipboard2-heart\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-minus-fill} */\n IconNamesEnum[\"Clipboard2MinusFill\"] = \"clipboard2-minus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-minus} */\n IconNamesEnum[\"Clipboard2Minus\"] = \"clipboard2-minus\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-plus-fill} */\n IconNamesEnum[\"Clipboard2PlusFill\"] = \"clipboard2-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-plus} */\n IconNamesEnum[\"Clipboard2Plus\"] = \"clipboard2-plus\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-pulse-fill} */\n IconNamesEnum[\"Clipboard2PulseFill\"] = \"clipboard2-pulse-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-pulse} */\n IconNamesEnum[\"Clipboard2Pulse\"] = \"clipboard2-pulse\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-x-fill} */\n IconNamesEnum[\"Clipboard2XFill\"] = \"clipboard2-x-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2-x} */\n IconNamesEnum[\"Clipboard2X\"] = \"clipboard2-x\";\n /** {@link https://icons.getbootstrap.com/icons/clipboard2} */\n IconNamesEnum[\"Clipboard2\"] = \"clipboard2\";\n /** {@link https://icons.getbootstrap.com/icons/clock-fill} */\n IconNamesEnum[\"ClockFill\"] = \"clock-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clock-history} */\n IconNamesEnum[\"ClockHistory\"] = \"clock-history\";\n /** {@link https://icons.getbootstrap.com/icons/clock} */\n IconNamesEnum[\"Clock\"] = \"clock\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-arrow-down-fill} */\n IconNamesEnum[\"CloudArrowDownFill\"] = \"cloud-arrow-down-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-arrow-down} */\n IconNamesEnum[\"CloudArrowDown\"] = \"cloud-arrow-down\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-arrow-up-fill} */\n IconNamesEnum[\"CloudArrowUpFill\"] = \"cloud-arrow-up-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-arrow-up} */\n IconNamesEnum[\"CloudArrowUp\"] = \"cloud-arrow-up\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-check-fill} */\n IconNamesEnum[\"CloudCheckFill\"] = \"cloud-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-check} */\n IconNamesEnum[\"CloudCheck\"] = \"cloud-check\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-download-fill} */\n IconNamesEnum[\"CloudDownloadFill\"] = \"cloud-download-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-download} */\n IconNamesEnum[\"CloudDownload\"] = \"cloud-download\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-drizzle-fill} */\n IconNamesEnum[\"CloudDrizzleFill\"] = \"cloud-drizzle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-drizzle} */\n IconNamesEnum[\"CloudDrizzle\"] = \"cloud-drizzle\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-fill} */\n IconNamesEnum[\"CloudFill\"] = \"cloud-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-fog-fill} */\n IconNamesEnum[\"CloudFogFill\"] = \"cloud-fog-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-fog} */\n IconNamesEnum[\"CloudFog\"] = \"cloud-fog\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-fog2-fill} */\n IconNamesEnum[\"CloudFog2Fill\"] = \"cloud-fog2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-fog2} */\n IconNamesEnum[\"CloudFog2\"] = \"cloud-fog2\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-hail-fill} */\n IconNamesEnum[\"CloudHailFill\"] = \"cloud-hail-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-hail} */\n IconNamesEnum[\"CloudHail\"] = \"cloud-hail\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-haze-fill} */\n IconNamesEnum[\"CloudHazeFill\"] = \"cloud-haze-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-haze} */\n IconNamesEnum[\"CloudHaze\"] = \"cloud-haze\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-haze2-fill} */\n IconNamesEnum[\"CloudHaze2Fill\"] = \"cloud-haze2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-haze2} */\n IconNamesEnum[\"CloudHaze2\"] = \"cloud-haze2\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-lightning-fill} */\n IconNamesEnum[\"CloudLightningFill\"] = \"cloud-lightning-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-lightning-rain-fill} */\n IconNamesEnum[\"CloudLightningRainFill\"] = \"cloud-lightning-rain-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-lightning-rain} */\n IconNamesEnum[\"CloudLightningRain\"] = \"cloud-lightning-rain\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-lightning} */\n IconNamesEnum[\"CloudLightning\"] = \"cloud-lightning\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-minus-fill} */\n IconNamesEnum[\"CloudMinusFill\"] = \"cloud-minus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-minus} */\n IconNamesEnum[\"CloudMinus\"] = \"cloud-minus\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-moon-fill} */\n IconNamesEnum[\"CloudMoonFill\"] = \"cloud-moon-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-moon} */\n IconNamesEnum[\"CloudMoon\"] = \"cloud-moon\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-plus-fill} */\n IconNamesEnum[\"CloudPlusFill\"] = \"cloud-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-plus} */\n IconNamesEnum[\"CloudPlus\"] = \"cloud-plus\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-rain-fill} */\n IconNamesEnum[\"CloudRainFill\"] = \"cloud-rain-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-rain-heavy-fill} */\n IconNamesEnum[\"CloudRainHeavyFill\"] = \"cloud-rain-heavy-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-rain-heavy} */\n IconNamesEnum[\"CloudRainHeavy\"] = \"cloud-rain-heavy\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-rain} */\n IconNamesEnum[\"CloudRain\"] = \"cloud-rain\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-slash-fill} */\n IconNamesEnum[\"CloudSlashFill\"] = \"cloud-slash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-slash} */\n IconNamesEnum[\"CloudSlash\"] = \"cloud-slash\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-sleet-fill} */\n IconNamesEnum[\"CloudSleetFill\"] = \"cloud-sleet-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-sleet} */\n IconNamesEnum[\"CloudSleet\"] = \"cloud-sleet\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-snow-fill} */\n IconNamesEnum[\"CloudSnowFill\"] = \"cloud-snow-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-snow} */\n IconNamesEnum[\"CloudSnow\"] = \"cloud-snow\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-sun-fill} */\n IconNamesEnum[\"CloudSunFill\"] = \"cloud-sun-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-sun} */\n IconNamesEnum[\"CloudSun\"] = \"cloud-sun\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-upload-fill} */\n IconNamesEnum[\"CloudUploadFill\"] = \"cloud-upload-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloud-upload} */\n IconNamesEnum[\"CloudUpload\"] = \"cloud-upload\";\n /** {@link https://icons.getbootstrap.com/icons/cloud} */\n IconNamesEnum[\"Cloud\"] = \"cloud\";\n /** {@link https://icons.getbootstrap.com/icons/clouds-fill} */\n IconNamesEnum[\"CloudsFill\"] = \"clouds-fill\";\n /** {@link https://icons.getbootstrap.com/icons/clouds} */\n IconNamesEnum[\"Clouds\"] = \"clouds\";\n /** {@link https://icons.getbootstrap.com/icons/cloudy-fill} */\n IconNamesEnum[\"CloudyFill\"] = \"cloudy-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cloudy} */\n IconNamesEnum[\"Cloudy\"] = \"cloudy\";\n /** {@link https://icons.getbootstrap.com/icons/code-slash} */\n IconNamesEnum[\"CodeSlash\"] = \"code-slash\";\n /** {@link https://icons.getbootstrap.com/icons/code-square} */\n IconNamesEnum[\"CodeSquare\"] = \"code-square\";\n /** {@link https://icons.getbootstrap.com/icons/code} */\n IconNamesEnum[\"Code\"] = \"code\";\n /** {@link https://icons.getbootstrap.com/icons/coin} */\n IconNamesEnum[\"Coin\"] = \"coin\";\n /** {@link https://icons.getbootstrap.com/icons/collection-fill} */\n IconNamesEnum[\"CollectionFill\"] = \"collection-fill\";\n /** {@link https://icons.getbootstrap.com/icons/collection-play-fill} */\n IconNamesEnum[\"CollectionPlayFill\"] = \"collection-play-fill\";\n /** {@link https://icons.getbootstrap.com/icons/collection-play} */\n IconNamesEnum[\"CollectionPlay\"] = \"collection-play\";\n /** {@link https://icons.getbootstrap.com/icons/collection} */\n IconNamesEnum[\"Collection\"] = \"collection\";\n /** {@link https://icons.getbootstrap.com/icons/columns-gap} */\n IconNamesEnum[\"ColumnsGap\"] = \"columns-gap\";\n /** {@link https://icons.getbootstrap.com/icons/columns} */\n IconNamesEnum[\"Columns\"] = \"columns\";\n /** {@link https://icons.getbootstrap.com/icons/command} */\n IconNamesEnum[\"Command\"] = \"command\";\n /** {@link https://icons.getbootstrap.com/icons/compass-fill} */\n IconNamesEnum[\"CompassFill\"] = \"compass-fill\";\n /** {@link https://icons.getbootstrap.com/icons/compass} */\n IconNamesEnum[\"Compass\"] = \"compass\";\n /** {@link https://icons.getbootstrap.com/icons/cone-striped} */\n IconNamesEnum[\"ConeStriped\"] = \"cone-striped\";\n /** {@link https://icons.getbootstrap.com/icons/cone} */\n IconNamesEnum[\"Cone\"] = \"cone\";\n /** {@link https://icons.getbootstrap.com/icons/controller} */\n IconNamesEnum[\"Controller\"] = \"controller\";\n /** {@link https://icons.getbootstrap.com/icons/cpu-fill} */\n IconNamesEnum[\"CpuFill\"] = \"cpu-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cpu} */\n IconNamesEnum[\"Cpu\"] = \"cpu\";\n /** {@link https://icons.getbootstrap.com/icons/credit-card-2-back-fill} */\n IconNamesEnum[\"CreditCard2BackFill\"] = \"credit-card-2-back-fill\";\n /** {@link https://icons.getbootstrap.com/icons/credit-card-2-back} */\n IconNamesEnum[\"CreditCard2Back\"] = \"credit-card-2-back\";\n /** {@link https://icons.getbootstrap.com/icons/credit-card-2-front-fill} */\n IconNamesEnum[\"CreditCard2FrontFill\"] = \"credit-card-2-front-fill\";\n /** {@link https://icons.getbootstrap.com/icons/credit-card-2-front} */\n IconNamesEnum[\"CreditCard2Front\"] = \"credit-card-2-front\";\n /** {@link https://icons.getbootstrap.com/icons/credit-card-fill} */\n IconNamesEnum[\"CreditCardFill\"] = \"credit-card-fill\";\n /** {@link https://icons.getbootstrap.com/icons/credit-card} */\n IconNamesEnum[\"CreditCard\"] = \"credit-card\";\n /** {@link https://icons.getbootstrap.com/icons/crop} */\n IconNamesEnum[\"Crop\"] = \"crop\";\n /** {@link https://icons.getbootstrap.com/icons/cup-fill} */\n IconNamesEnum[\"CupFill\"] = \"cup-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cup-hot-fill} */\n IconNamesEnum[\"CupHotFill\"] = \"cup-hot-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cup-hot} */\n IconNamesEnum[\"CupHot\"] = \"cup-hot\";\n /** {@link https://icons.getbootstrap.com/icons/cup-straw} */\n IconNamesEnum[\"CupStraw\"] = \"cup-straw\";\n /** {@link https://icons.getbootstrap.com/icons/cup} */\n IconNamesEnum[\"Cup\"] = \"cup\";\n /** {@link https://icons.getbootstrap.com/icons/currency-bitcoin} */\n IconNamesEnum[\"CurrencyBitcoin\"] = \"currency-bitcoin\";\n /** {@link https://icons.getbootstrap.com/icons/currency-dollar} */\n IconNamesEnum[\"CurrencyDollar\"] = \"currency-dollar\";\n /** {@link https://icons.getbootstrap.com/icons/currency-euro} */\n IconNamesEnum[\"CurrencyEuro\"] = \"currency-euro\";\n /** {@link https://icons.getbootstrap.com/icons/currency-exchange} */\n IconNamesEnum[\"CurrencyExchange\"] = \"currency-exchange\";\n /** {@link https://icons.getbootstrap.com/icons/currency-pound} */\n IconNamesEnum[\"CurrencyPound\"] = \"currency-pound\";\n /** {@link https://icons.getbootstrap.com/icons/currency-rupee} */\n IconNamesEnum[\"CurrencyRupee\"] = \"currency-rupee\";\n /** {@link https://icons.getbootstrap.com/icons/currency-yen} */\n IconNamesEnum[\"CurrencyYen\"] = \"currency-yen\";\n /** {@link https://icons.getbootstrap.com/icons/cursor-fill} */\n IconNamesEnum[\"CursorFill\"] = \"cursor-fill\";\n /** {@link https://icons.getbootstrap.com/icons/cursor-text} */\n IconNamesEnum[\"CursorText\"] = \"cursor-text\";\n /** {@link https://icons.getbootstrap.com/icons/cursor} */\n IconNamesEnum[\"Cursor\"] = \"cursor\";\n /** {@link https://icons.getbootstrap.com/icons/dash-circle-dotted} */\n IconNamesEnum[\"DashCircleDotted\"] = \"dash-circle-dotted\";\n /** {@link https://icons.getbootstrap.com/icons/dash-circle-fill} */\n IconNamesEnum[\"DashCircleFill\"] = \"dash-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/dash-circle} */\n IconNamesEnum[\"DashCircle\"] = \"dash-circle\";\n /** {@link https://icons.getbootstrap.com/icons/dash-lg} */\n IconNamesEnum[\"DashLg\"] = \"dash-lg\";\n /** {@link https://icons.getbootstrap.com/icons/dash-square-dotted} */\n IconNamesEnum[\"DashSquareDotted\"] = \"dash-square-dotted\";\n /** {@link https://icons.getbootstrap.com/icons/dash-square-fill} */\n IconNamesEnum[\"DashSquareFill\"] = \"dash-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/dash-square} */\n IconNamesEnum[\"DashSquare\"] = \"dash-square\";\n /** {@link https://icons.getbootstrap.com/icons/dash} */\n IconNamesEnum[\"Dash\"] = \"dash\";\n /** {@link https://icons.getbootstrap.com/icons/database-add} */\n IconNamesEnum[\"DatabaseAdd\"] = \"database-add\";\n /** {@link https://icons.getbootstrap.com/icons/database-check} */\n IconNamesEnum[\"DatabaseCheck\"] = \"database-check\";\n /** {@link https://icons.getbootstrap.com/icons/database-dash} */\n IconNamesEnum[\"DatabaseDash\"] = \"database-dash\";\n /** {@link https://icons.getbootstrap.com/icons/database-down} */\n IconNamesEnum[\"DatabaseDown\"] = \"database-down\";\n /** {@link https://icons.getbootstrap.com/icons/database-exclamation} */\n IconNamesEnum[\"DatabaseExclamation\"] = \"database-exclamation\";\n /** {@link https://icons.getbootstrap.com/icons/database-fill-add} */\n IconNamesEnum[\"DatabaseFillAdd\"] = \"database-fill-add\";\n /** {@link https://icons.getbootstrap.com/icons/database-fill-check} */\n IconNamesEnum[\"DatabaseFillCheck\"] = \"database-fill-check\";\n /** {@link https://icons.getbootstrap.com/icons/database-fill-dash} */\n IconNamesEnum[\"DatabaseFillDash\"] = \"database-fill-dash\";\n /** {@link https://icons.getbootstrap.com/icons/database-fill-down} */\n IconNamesEnum[\"DatabaseFillDown\"] = \"database-fill-down\";\n /** {@link https://icons.getbootstrap.com/icons/database-fill-exclamation} */\n IconNamesEnum[\"DatabaseFillExclamation\"] = \"database-fill-exclamation\";\n /** {@link https://icons.getbootstrap.com/icons/database-fill-gear} */\n IconNamesEnum[\"DatabaseFillGear\"] = \"database-fill-gear\";\n /** {@link https://icons.getbootstrap.com/icons/database-fill-lock} */\n IconNamesEnum[\"DatabaseFillLock\"] = \"database-fill-lock\";\n /** {@link https://icons.getbootstrap.com/icons/database-fill-slash} */\n IconNamesEnum[\"DatabaseFillSlash\"] = \"database-fill-slash\";\n /** {@link https://icons.getbootstrap.com/icons/database-fill-up} */\n IconNamesEnum[\"DatabaseFillUp\"] = \"database-fill-up\";\n /** {@link https://icons.getbootstrap.com/icons/database-fill-x} */\n IconNamesEnum[\"DatabaseFillX\"] = \"database-fill-x\";\n /** {@link https://icons.getbootstrap.com/icons/database-fill} */\n IconNamesEnum[\"DatabaseFill\"] = \"database-fill\";\n /** {@link https://icons.getbootstrap.com/icons/database-gear} */\n IconNamesEnum[\"DatabaseGear\"] = \"database-gear\";\n /** {@link https://icons.getbootstrap.com/icons/database-lock} */\n IconNamesEnum[\"DatabaseLock\"] = \"database-lock\";\n /** {@link https://icons.getbootstrap.com/icons/database-slash} */\n IconNamesEnum[\"DatabaseSlash\"] = \"database-slash\";\n /** {@link https://icons.getbootstrap.com/icons/database-up} */\n IconNamesEnum[\"DatabaseUp\"] = \"database-up\";\n /** {@link https://icons.getbootstrap.com/icons/database-x} */\n IconNamesEnum[\"DatabaseX\"] = \"database-x\";\n /** {@link https://icons.getbootstrap.com/icons/database} */\n IconNamesEnum[\"Database\"] = \"database\";\n /** {@link https://icons.getbootstrap.com/icons/device-hdd-fill} */\n IconNamesEnum[\"DeviceHddFill\"] = \"device-hdd-fill\";\n /** {@link https://icons.getbootstrap.com/icons/device-hdd} */\n IconNamesEnum[\"DeviceHdd\"] = \"device-hdd\";\n /** {@link https://icons.getbootstrap.com/icons/device-ssd-fill} */\n IconNamesEnum[\"DeviceSsdFill\"] = \"device-ssd-fill\";\n /** {@link https://icons.getbootstrap.com/icons/device-ssd} */\n IconNamesEnum[\"DeviceSsd\"] = \"device-ssd\";\n /** {@link https://icons.getbootstrap.com/icons/diagram-2-fill} */\n IconNamesEnum[\"Diagram2Fill\"] = \"diagram-2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/diagram-2} */\n IconNamesEnum[\"Diagram2\"] = \"diagram-2\";\n /** {@link https://icons.getbootstrap.com/icons/diagram-3-fill} */\n IconNamesEnum[\"Diagram3Fill\"] = \"diagram-3-fill\";\n /** {@link https://icons.getbootstrap.com/icons/diagram-3} */\n IconNamesEnum[\"Diagram3\"] = \"diagram-3\";\n /** {@link https://icons.getbootstrap.com/icons/diamond-fill} */\n IconNamesEnum[\"DiamondFill\"] = \"diamond-fill\";\n /** {@link https://icons.getbootstrap.com/icons/diamond-half} */\n IconNamesEnum[\"DiamondHalf\"] = \"diamond-half\";\n /** {@link https://icons.getbootstrap.com/icons/diamond} */\n IconNamesEnum[\"Diamond\"] = \"diamond\";\n /** {@link https://icons.getbootstrap.com/icons/dice-1-fill} */\n IconNamesEnum[\"Dice1Fill\"] = \"dice-1-fill\";\n /** {@link https://icons.getbootstrap.com/icons/dice-1} */\n IconNamesEnum[\"Dice1\"] = \"dice-1\";\n /** {@link https://icons.getbootstrap.com/icons/dice-2-fill} */\n IconNamesEnum[\"Dice2Fill\"] = \"dice-2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/dice-2} */\n IconNamesEnum[\"Dice2\"] = \"dice-2\";\n /** {@link https://icons.getbootstrap.com/icons/dice-3-fill} */\n IconNamesEnum[\"Dice3Fill\"] = \"dice-3-fill\";\n /** {@link https://icons.getbootstrap.com/icons/dice-3} */\n IconNamesEnum[\"Dice3\"] = \"dice-3\";\n /** {@link https://icons.getbootstrap.com/icons/dice-4-fill} */\n IconNamesEnum[\"Dice4Fill\"] = \"dice-4-fill\";\n /** {@link https://icons.getbootstrap.com/icons/dice-4} */\n IconNamesEnum[\"Dice4\"] = \"dice-4\";\n /** {@link https://icons.getbootstrap.com/icons/dice-5-fill} */\n IconNamesEnum[\"Dice5Fill\"] = \"dice-5-fill\";\n /** {@link https://icons.getbootstrap.com/icons/dice-5} */\n IconNamesEnum[\"Dice5\"] = \"dice-5\";\n /** {@link https://icons.getbootstrap.com/icons/dice-6-fill} */\n IconNamesEnum[\"Dice6Fill\"] = \"dice-6-fill\";\n /** {@link https://icons.getbootstrap.com/icons/dice-6} */\n IconNamesEnum[\"Dice6\"] = \"dice-6\";\n /** {@link https://icons.getbootstrap.com/icons/disc-fill} */\n IconNamesEnum[\"DiscFill\"] = \"disc-fill\";\n /** {@link https://icons.getbootstrap.com/icons/disc} */\n IconNamesEnum[\"Disc\"] = \"disc\";\n /** {@link https://icons.getbootstrap.com/icons/discord} */\n IconNamesEnum[\"Discord\"] = \"discord\";\n /** {@link https://icons.getbootstrap.com/icons/display-fill} */\n IconNamesEnum[\"DisplayFill\"] = \"display-fill\";\n /** {@link https://icons.getbootstrap.com/icons/display} */\n IconNamesEnum[\"Display\"] = \"display\";\n /** {@link https://icons.getbootstrap.com/icons/displayport-fill} */\n IconNamesEnum[\"DisplayportFill\"] = \"displayport-fill\";\n /** {@link https://icons.getbootstrap.com/icons/displayport} */\n IconNamesEnum[\"Displayport\"] = \"displayport\";\n /** {@link https://icons.getbootstrap.com/icons/distribute-horizontal} */\n IconNamesEnum[\"DistributeHorizontal\"] = \"distribute-horizontal\";\n /** {@link https://icons.getbootstrap.com/icons/distribute-vertical} */\n IconNamesEnum[\"DistributeVertical\"] = \"distribute-vertical\";\n /** {@link https://icons.getbootstrap.com/icons/door-closed-fill} */\n IconNamesEnum[\"DoorClosedFill\"] = \"door-closed-fill\";\n /** {@link https://icons.getbootstrap.com/icons/door-closed} */\n IconNamesEnum[\"DoorClosed\"] = \"door-closed\";\n /** {@link https://icons.getbootstrap.com/icons/door-open-fill} */\n IconNamesEnum[\"DoorOpenFill\"] = \"door-open-fill\";\n /** {@link https://icons.getbootstrap.com/icons/door-open} */\n IconNamesEnum[\"DoorOpen\"] = \"door-open\";\n /** {@link https://icons.getbootstrap.com/icons/dot} */\n IconNamesEnum[\"Dot\"] = \"dot\";\n /** {@link https://icons.getbootstrap.com/icons/download} */\n IconNamesEnum[\"Download\"] = \"download\";\n /** {@link https://icons.getbootstrap.com/icons/dpad-fill} */\n IconNamesEnum[\"DpadFill\"] = \"dpad-fill\";\n /** {@link https://icons.getbootstrap.com/icons/dpad} */\n IconNamesEnum[\"Dpad\"] = \"dpad\";\n /** {@link https://icons.getbootstrap.com/icons/dribbble} */\n IconNamesEnum[\"Dribbble\"] = \"dribbble\";\n /** {@link https://icons.getbootstrap.com/icons/dropbox} */\n IconNamesEnum[\"Dropbox\"] = \"dropbox\";\n /** {@link https://icons.getbootstrap.com/icons/droplet-fill} */\n IconNamesEnum[\"DropletFill\"] = \"droplet-fill\";\n /** {@link https://icons.getbootstrap.com/icons/droplet-half} */\n IconNamesEnum[\"DropletHalf\"] = \"droplet-half\";\n /** {@link https://icons.getbootstrap.com/icons/droplet} */\n IconNamesEnum[\"Droplet\"] = \"droplet\";\n /** {@link https://icons.getbootstrap.com/icons/ear-fill} */\n IconNamesEnum[\"EarFill\"] = \"ear-fill\";\n /** {@link https://icons.getbootstrap.com/icons/ear} */\n IconNamesEnum[\"Ear\"] = \"ear\";\n /** {@link https://icons.getbootstrap.com/icons/earbuds} */\n IconNamesEnum[\"Earbuds\"] = \"earbuds\";\n /** {@link https://icons.getbootstrap.com/icons/easel-fill} */\n IconNamesEnum[\"EaselFill\"] = \"easel-fill\";\n /** {@link https://icons.getbootstrap.com/icons/easel} */\n IconNamesEnum[\"Easel\"] = \"easel\";\n /** {@link https://icons.getbootstrap.com/icons/easel2-fill} */\n IconNamesEnum[\"Easel2Fill\"] = \"easel2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/easel2} */\n IconNamesEnum[\"Easel2\"] = \"easel2\";\n /** {@link https://icons.getbootstrap.com/icons/easel3-fill} */\n IconNamesEnum[\"Easel3Fill\"] = \"easel3-fill\";\n /** {@link https://icons.getbootstrap.com/icons/easel3} */\n IconNamesEnum[\"Easel3\"] = \"easel3\";\n /** {@link https://icons.getbootstrap.com/icons/egg-fill} */\n IconNamesEnum[\"EggFill\"] = \"egg-fill\";\n /** {@link https://icons.getbootstrap.com/icons/egg-fried} */\n IconNamesEnum[\"EggFried\"] = \"egg-fried\";\n /** {@link https://icons.getbootstrap.com/icons/egg} */\n IconNamesEnum[\"Egg\"] = \"egg\";\n /** {@link https://icons.getbootstrap.com/icons/eject-fill} */\n IconNamesEnum[\"EjectFill\"] = \"eject-fill\";\n /** {@link https://icons.getbootstrap.com/icons/eject} */\n IconNamesEnum[\"Eject\"] = \"eject\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-angry-fill} */\n IconNamesEnum[\"EmojiAngryFill\"] = \"emoji-angry-fill\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-angry} */\n IconNamesEnum[\"EmojiAngry\"] = \"emoji-angry\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-dizzy-fill} */\n IconNamesEnum[\"EmojiDizzyFill\"] = \"emoji-dizzy-fill\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-dizzy} */\n IconNamesEnum[\"EmojiDizzy\"] = \"emoji-dizzy\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-expressionless-fill} */\n IconNamesEnum[\"EmojiExpressionlessFill\"] = \"emoji-expressionless-fill\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-expressionless} */\n IconNamesEnum[\"EmojiExpressionless\"] = \"emoji-expressionless\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-frown-fill} */\n IconNamesEnum[\"EmojiFrownFill\"] = \"emoji-frown-fill\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-frown} */\n IconNamesEnum[\"EmojiFrown\"] = \"emoji-frown\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-heart-eyes-fill} */\n IconNamesEnum[\"EmojiHeartEyesFill\"] = \"emoji-heart-eyes-fill\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-heart-eyes} */\n IconNamesEnum[\"EmojiHeartEyes\"] = \"emoji-heart-eyes\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-kiss-fill} */\n IconNamesEnum[\"EmojiKissFill\"] = \"emoji-kiss-fill\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-kiss} */\n IconNamesEnum[\"EmojiKiss\"] = \"emoji-kiss\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-laughing-fill} */\n IconNamesEnum[\"EmojiLaughingFill\"] = \"emoji-laughing-fill\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-laughing} */\n IconNamesEnum[\"EmojiLaughing\"] = \"emoji-laughing\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-neutral-fill} */\n IconNamesEnum[\"EmojiNeutralFill\"] = \"emoji-neutral-fill\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-neutral} */\n IconNamesEnum[\"EmojiNeutral\"] = \"emoji-neutral\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-smile-fill} */\n IconNamesEnum[\"EmojiSmileFill\"] = \"emoji-smile-fill\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-smile-upside-down-fill} */\n IconNamesEnum[\"EmojiSmileUpsideDownFill\"] = \"emoji-smile-upside-down-fill\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-smile-upside-down} */\n IconNamesEnum[\"EmojiSmileUpsideDown\"] = \"emoji-smile-upside-down\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-smile} */\n IconNamesEnum[\"EmojiSmile\"] = \"emoji-smile\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-sunglasses-fill} */\n IconNamesEnum[\"EmojiSunglassesFill\"] = \"emoji-sunglasses-fill\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-sunglasses} */\n IconNamesEnum[\"EmojiSunglasses\"] = \"emoji-sunglasses\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-wink-fill} */\n IconNamesEnum[\"EmojiWinkFill\"] = \"emoji-wink-fill\";\n /** {@link https://icons.getbootstrap.com/icons/emoji-wink} */\n IconNamesEnum[\"EmojiWink\"] = \"emoji-wink\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-at-fill} */\n IconNamesEnum[\"EnvelopeAtFill\"] = \"envelope-at-fill\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-at} */\n IconNamesEnum[\"EnvelopeAt\"] = \"envelope-at\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-check-fill} */\n IconNamesEnum[\"EnvelopeCheckFill\"] = \"envelope-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-check} */\n IconNamesEnum[\"EnvelopeCheck\"] = \"envelope-check\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-dash-fill} */\n IconNamesEnum[\"EnvelopeDashFill\"] = \"envelope-dash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-dash} */\n IconNamesEnum[\"EnvelopeDash\"] = \"envelope-dash\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-exclamation-fill} */\n IconNamesEnum[\"EnvelopeExclamationFill\"] = \"envelope-exclamation-fill\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-exclamation} */\n IconNamesEnum[\"EnvelopeExclamation\"] = \"envelope-exclamation\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-fill} */\n IconNamesEnum[\"EnvelopeFill\"] = \"envelope-fill\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-heart-fill} */\n IconNamesEnum[\"EnvelopeHeartFill\"] = \"envelope-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-heart} */\n IconNamesEnum[\"EnvelopeHeart\"] = \"envelope-heart\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-open-fill} */\n IconNamesEnum[\"EnvelopeOpenFill\"] = \"envelope-open-fill\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-open-heart-fill} */\n IconNamesEnum[\"EnvelopeOpenHeartFill\"] = \"envelope-open-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-open-heart} */\n IconNamesEnum[\"EnvelopeOpenHeart\"] = \"envelope-open-heart\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-open} */\n IconNamesEnum[\"EnvelopeOpen\"] = \"envelope-open\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-paper-fill} */\n IconNamesEnum[\"EnvelopePaperFill\"] = \"envelope-paper-fill\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-paper-heart-fill} */\n IconNamesEnum[\"EnvelopePaperHeartFill\"] = \"envelope-paper-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-paper-heart} */\n IconNamesEnum[\"EnvelopePaperHeart\"] = \"envelope-paper-heart\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-paper} */\n IconNamesEnum[\"EnvelopePaper\"] = \"envelope-paper\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-plus-fill} */\n IconNamesEnum[\"EnvelopePlusFill\"] = \"envelope-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-plus} */\n IconNamesEnum[\"EnvelopePlus\"] = \"envelope-plus\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-slash-fill} */\n IconNamesEnum[\"EnvelopeSlashFill\"] = \"envelope-slash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-slash} */\n IconNamesEnum[\"EnvelopeSlash\"] = \"envelope-slash\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-x-fill} */\n IconNamesEnum[\"EnvelopeXFill\"] = \"envelope-x-fill\";\n /** {@link https://icons.getbootstrap.com/icons/envelope-x} */\n IconNamesEnum[\"EnvelopeX\"] = \"envelope-x\";\n /** {@link https://icons.getbootstrap.com/icons/envelope} */\n IconNamesEnum[\"Envelope\"] = \"envelope\";\n /** {@link https://icons.getbootstrap.com/icons/eraser-fill} */\n IconNamesEnum[\"EraserFill\"] = \"eraser-fill\";\n /** {@link https://icons.getbootstrap.com/icons/eraser} */\n IconNamesEnum[\"Eraser\"] = \"eraser\";\n /** {@link https://icons.getbootstrap.com/icons/escape} */\n IconNamesEnum[\"Escape\"] = \"escape\";\n /** {@link https://icons.getbootstrap.com/icons/ethernet} */\n IconNamesEnum[\"Ethernet\"] = \"ethernet\";\n /** {@link https://icons.getbootstrap.com/icons/ev-front-fill} */\n IconNamesEnum[\"EvFrontFill\"] = \"ev-front-fill\";\n /** {@link https://icons.getbootstrap.com/icons/ev-front} */\n IconNamesEnum[\"EvFront\"] = \"ev-front\";\n /** {@link https://icons.getbootstrap.com/icons/ev-station-fill} */\n IconNamesEnum[\"EvStationFill\"] = \"ev-station-fill\";\n /** {@link https://icons.getbootstrap.com/icons/ev-station} */\n IconNamesEnum[\"EvStation\"] = \"ev-station\";\n /** {@link https://icons.getbootstrap.com/icons/exclamation-circle-fill} */\n IconNamesEnum[\"ExclamationCircleFill\"] = \"exclamation-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/exclamation-circle} */\n IconNamesEnum[\"ExclamationCircle\"] = \"exclamation-circle\";\n /** {@link https://icons.getbootstrap.com/icons/exclamation-diamond-fill} */\n IconNamesEnum[\"ExclamationDiamondFill\"] = \"exclamation-diamond-fill\";\n /** {@link https://icons.getbootstrap.com/icons/exclamation-diamond} */\n IconNamesEnum[\"ExclamationDiamond\"] = \"exclamation-diamond\";\n /** {@link https://icons.getbootstrap.com/icons/exclamation-lg} */\n IconNamesEnum[\"ExclamationLg\"] = \"exclamation-lg\";\n /** {@link https://icons.getbootstrap.com/icons/exclamation-octagon-fill} */\n IconNamesEnum[\"ExclamationOctagonFill\"] = \"exclamation-octagon-fill\";\n /** {@link https://icons.getbootstrap.com/icons/exclamation-octagon} */\n IconNamesEnum[\"ExclamationOctagon\"] = \"exclamation-octagon\";\n /** {@link https://icons.getbootstrap.com/icons/exclamation-square-fill} */\n IconNamesEnum[\"ExclamationSquareFill\"] = \"exclamation-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/exclamation-square} */\n IconNamesEnum[\"ExclamationSquare\"] = \"exclamation-square\";\n /** {@link https://icons.getbootstrap.com/icons/exclamation-triangle-fill} */\n IconNamesEnum[\"ExclamationTriangleFill\"] = \"exclamation-triangle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/exclamation-triangle} */\n IconNamesEnum[\"ExclamationTriangle\"] = \"exclamation-triangle\";\n /** {@link https://icons.getbootstrap.com/icons/exclamation} */\n IconNamesEnum[\"Exclamation\"] = \"exclamation\";\n /** {@link https://icons.getbootstrap.com/icons/exclude} */\n IconNamesEnum[\"Exclude\"] = \"exclude\";\n /** {@link https://icons.getbootstrap.com/icons/explicit-fill} */\n IconNamesEnum[\"ExplicitFill\"] = \"explicit-fill\";\n /** {@link https://icons.getbootstrap.com/icons/explicit} */\n IconNamesEnum[\"Explicit\"] = \"explicit\";\n /** {@link https://icons.getbootstrap.com/icons/eye-fill} */\n IconNamesEnum[\"EyeFill\"] = \"eye-fill\";\n /** {@link https://icons.getbootstrap.com/icons/eye-slash-fill} */\n IconNamesEnum[\"EyeSlashFill\"] = \"eye-slash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/eye-slash} */\n IconNamesEnum[\"EyeSlash\"] = \"eye-slash\";\n /** {@link https://icons.getbootstrap.com/icons/eye} */\n IconNamesEnum[\"Eye\"] = \"eye\";\n /** {@link https://icons.getbootstrap.com/icons/eyedropper} */\n IconNamesEnum[\"Eyedropper\"] = \"eyedropper\";\n /** {@link https://icons.getbootstrap.com/icons/eyeglasses} */\n IconNamesEnum[\"Eyeglasses\"] = \"eyeglasses\";\n /** {@link https://icons.getbootstrap.com/icons/facebook} */\n IconNamesEnum[\"Facebook\"] = \"facebook\";\n /** {@link https://icons.getbootstrap.com/icons/fan} */\n IconNamesEnum[\"Fan\"] = \"fan\";\n /** {@link https://icons.getbootstrap.com/icons/fast-forward-btn-fill} */\n IconNamesEnum[\"FastForwardBtnFill\"] = \"fast-forward-btn-fill\";\n /** {@link https://icons.getbootstrap.com/icons/fast-forward-btn} */\n IconNamesEnum[\"FastForwardBtn\"] = \"fast-forward-btn\";\n /** {@link https://icons.getbootstrap.com/icons/fast-forward-circle-fill} */\n IconNamesEnum[\"FastForwardCircleFill\"] = \"fast-forward-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/fast-forward-circle} */\n IconNamesEnum[\"FastForwardCircle\"] = \"fast-forward-circle\";\n /** {@link https://icons.getbootstrap.com/icons/fast-forward-fill} */\n IconNamesEnum[\"FastForwardFill\"] = \"fast-forward-fill\";\n /** {@link https://icons.getbootstrap.com/icons/fast-forward} */\n IconNamesEnum[\"FastForward\"] = \"fast-forward\";\n /** {@link https://icons.getbootstrap.com/icons/file-arrow-down-fill} */\n IconNamesEnum[\"FileArrowDownFill\"] = \"file-arrow-down-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-arrow-down} */\n IconNamesEnum[\"FileArrowDown\"] = \"file-arrow-down\";\n /** {@link https://icons.getbootstrap.com/icons/file-arrow-up-fill} */\n IconNamesEnum[\"FileArrowUpFill\"] = \"file-arrow-up-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-arrow-up} */\n IconNamesEnum[\"FileArrowUp\"] = \"file-arrow-up\";\n /** {@link https://icons.getbootstrap.com/icons/file-bar-graph-fill} */\n IconNamesEnum[\"FileBarGraphFill\"] = \"file-bar-graph-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-bar-graph} */\n IconNamesEnum[\"FileBarGraph\"] = \"file-bar-graph\";\n /** {@link https://icons.getbootstrap.com/icons/file-binary-fill} */\n IconNamesEnum[\"FileBinaryFill\"] = \"file-binary-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-binary} */\n IconNamesEnum[\"FileBinary\"] = \"file-binary\";\n /** {@link https://icons.getbootstrap.com/icons/file-break-fill} */\n IconNamesEnum[\"FileBreakFill\"] = \"file-break-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-break} */\n IconNamesEnum[\"FileBreak\"] = \"file-break\";\n /** {@link https://icons.getbootstrap.com/icons/file-check-fill} */\n IconNamesEnum[\"FileCheckFill\"] = \"file-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-check} */\n IconNamesEnum[\"FileCheck\"] = \"file-check\";\n /** {@link https://icons.getbootstrap.com/icons/file-code-fill} */\n IconNamesEnum[\"FileCodeFill\"] = \"file-code-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-code} */\n IconNamesEnum[\"FileCode\"] = \"file-code\";\n /** {@link https://icons.getbootstrap.com/icons/file-diff-fill} */\n IconNamesEnum[\"FileDiffFill\"] = \"file-diff-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-diff} */\n IconNamesEnum[\"FileDiff\"] = \"file-diff\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-arrow-down-fill} */\n IconNamesEnum[\"FileEarmarkArrowDownFill\"] = \"file-earmark-arrow-down-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-arrow-down} */\n IconNamesEnum[\"FileEarmarkArrowDown\"] = \"file-earmark-arrow-down\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-arrow-up-fill} */\n IconNamesEnum[\"FileEarmarkArrowUpFill\"] = \"file-earmark-arrow-up-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-arrow-up} */\n IconNamesEnum[\"FileEarmarkArrowUp\"] = \"file-earmark-arrow-up\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-bar-graph-fill} */\n IconNamesEnum[\"FileEarmarkBarGraphFill\"] = \"file-earmark-bar-graph-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-bar-graph} */\n IconNamesEnum[\"FileEarmarkBarGraph\"] = \"file-earmark-bar-graph\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-binary-fill} */\n IconNamesEnum[\"FileEarmarkBinaryFill\"] = \"file-earmark-binary-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-binary} */\n IconNamesEnum[\"FileEarmarkBinary\"] = \"file-earmark-binary\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-break-fill} */\n IconNamesEnum[\"FileEarmarkBreakFill\"] = \"file-earmark-break-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-break} */\n IconNamesEnum[\"FileEarmarkBreak\"] = \"file-earmark-break\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-check-fill} */\n IconNamesEnum[\"FileEarmarkCheckFill\"] = \"file-earmark-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-check} */\n IconNamesEnum[\"FileEarmarkCheck\"] = \"file-earmark-check\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-code-fill} */\n IconNamesEnum[\"FileEarmarkCodeFill\"] = \"file-earmark-code-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-code} */\n IconNamesEnum[\"FileEarmarkCode\"] = \"file-earmark-code\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-diff-fill} */\n IconNamesEnum[\"FileEarmarkDiffFill\"] = \"file-earmark-diff-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-diff} */\n IconNamesEnum[\"FileEarmarkDiff\"] = \"file-earmark-diff\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-easel-fill} */\n IconNamesEnum[\"FileEarmarkEaselFill\"] = \"file-earmark-easel-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-easel} */\n IconNamesEnum[\"FileEarmarkEasel\"] = \"file-earmark-easel\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-excel-fill} */\n IconNamesEnum[\"FileEarmarkExcelFill\"] = \"file-earmark-excel-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-excel} */\n IconNamesEnum[\"FileEarmarkExcel\"] = \"file-earmark-excel\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-fill} */\n IconNamesEnum[\"FileEarmarkFill\"] = \"file-earmark-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-font-fill} */\n IconNamesEnum[\"FileEarmarkFontFill\"] = \"file-earmark-font-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-font} */\n IconNamesEnum[\"FileEarmarkFont\"] = \"file-earmark-font\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-image-fill} */\n IconNamesEnum[\"FileEarmarkImageFill\"] = \"file-earmark-image-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-image} */\n IconNamesEnum[\"FileEarmarkImage\"] = \"file-earmark-image\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-lock-fill} */\n IconNamesEnum[\"FileEarmarkLockFill\"] = \"file-earmark-lock-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-lock} */\n IconNamesEnum[\"FileEarmarkLock\"] = \"file-earmark-lock\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-lock2-fill} */\n IconNamesEnum[\"FileEarmarkLock2Fill\"] = \"file-earmark-lock2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-lock2} */\n IconNamesEnum[\"FileEarmarkLock2\"] = \"file-earmark-lock2\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-medical-fill} */\n IconNamesEnum[\"FileEarmarkMedicalFill\"] = \"file-earmark-medical-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-medical} */\n IconNamesEnum[\"FileEarmarkMedical\"] = \"file-earmark-medical\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-minus-fill} */\n IconNamesEnum[\"FileEarmarkMinusFill\"] = \"file-earmark-minus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-minus} */\n IconNamesEnum[\"FileEarmarkMinus\"] = \"file-earmark-minus\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-music-fill} */\n IconNamesEnum[\"FileEarmarkMusicFill\"] = \"file-earmark-music-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-music} */\n IconNamesEnum[\"FileEarmarkMusic\"] = \"file-earmark-music\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-pdf-fill} */\n IconNamesEnum[\"FileEarmarkPdfFill\"] = \"file-earmark-pdf-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-pdf} */\n IconNamesEnum[\"FileEarmarkPdf\"] = \"file-earmark-pdf\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-person-fill} */\n IconNamesEnum[\"FileEarmarkPersonFill\"] = \"file-earmark-person-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-person} */\n IconNamesEnum[\"FileEarmarkPerson\"] = \"file-earmark-person\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-play-fill} */\n IconNamesEnum[\"FileEarmarkPlayFill\"] = \"file-earmark-play-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-play} */\n IconNamesEnum[\"FileEarmarkPlay\"] = \"file-earmark-play\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-plus-fill} */\n IconNamesEnum[\"FileEarmarkPlusFill\"] = \"file-earmark-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-plus} */\n IconNamesEnum[\"FileEarmarkPlus\"] = \"file-earmark-plus\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-post-fill} */\n IconNamesEnum[\"FileEarmarkPostFill\"] = \"file-earmark-post-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-post} */\n IconNamesEnum[\"FileEarmarkPost\"] = \"file-earmark-post\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-ppt-fill} */\n IconNamesEnum[\"FileEarmarkPptFill\"] = \"file-earmark-ppt-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-ppt} */\n IconNamesEnum[\"FileEarmarkPpt\"] = \"file-earmark-ppt\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-richtext-fill} */\n IconNamesEnum[\"FileEarmarkRichtextFill\"] = \"file-earmark-richtext-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-richtext} */\n IconNamesEnum[\"FileEarmarkRichtext\"] = \"file-earmark-richtext\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-ruled-fill} */\n IconNamesEnum[\"FileEarmarkRuledFill\"] = \"file-earmark-ruled-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-ruled} */\n IconNamesEnum[\"FileEarmarkRuled\"] = \"file-earmark-ruled\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-slides-fill} */\n IconNamesEnum[\"FileEarmarkSlidesFill\"] = \"file-earmark-slides-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-slides} */\n IconNamesEnum[\"FileEarmarkSlides\"] = \"file-earmark-slides\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-spreadsheet-fill} */\n IconNamesEnum[\"FileEarmarkSpreadsheetFill\"] = \"file-earmark-spreadsheet-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-spreadsheet} */\n IconNamesEnum[\"FileEarmarkSpreadsheet\"] = \"file-earmark-spreadsheet\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-text-fill} */\n IconNamesEnum[\"FileEarmarkTextFill\"] = \"file-earmark-text-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-text} */\n IconNamesEnum[\"FileEarmarkText\"] = \"file-earmark-text\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-word-fill} */\n IconNamesEnum[\"FileEarmarkWordFill\"] = \"file-earmark-word-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-word} */\n IconNamesEnum[\"FileEarmarkWord\"] = \"file-earmark-word\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-x-fill} */\n IconNamesEnum[\"FileEarmarkXFill\"] = \"file-earmark-x-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-x} */\n IconNamesEnum[\"FileEarmarkX\"] = \"file-earmark-x\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-zip-fill} */\n IconNamesEnum[\"FileEarmarkZipFill\"] = \"file-earmark-zip-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark-zip} */\n IconNamesEnum[\"FileEarmarkZip\"] = \"file-earmark-zip\";\n /** {@link https://icons.getbootstrap.com/icons/file-earmark} */\n IconNamesEnum[\"FileEarmark\"] = \"file-earmark\";\n /** {@link https://icons.getbootstrap.com/icons/file-easel-fill} */\n IconNamesEnum[\"FileEaselFill\"] = \"file-easel-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-easel} */\n IconNamesEnum[\"FileEasel\"] = \"file-easel\";\n /** {@link https://icons.getbootstrap.com/icons/file-excel-fill} */\n IconNamesEnum[\"FileExcelFill\"] = \"file-excel-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-excel} */\n IconNamesEnum[\"FileExcel\"] = \"file-excel\";\n /** {@link https://icons.getbootstrap.com/icons/file-fill} */\n IconNamesEnum[\"FileFill\"] = \"file-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-font-fill} */\n IconNamesEnum[\"FileFontFill\"] = \"file-font-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-font} */\n IconNamesEnum[\"FileFont\"] = \"file-font\";\n /** {@link https://icons.getbootstrap.com/icons/file-image-fill} */\n IconNamesEnum[\"FileImageFill\"] = \"file-image-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-image} */\n IconNamesEnum[\"FileImage\"] = \"file-image\";\n /** {@link https://icons.getbootstrap.com/icons/file-lock-fill} */\n IconNamesEnum[\"FileLockFill\"] = \"file-lock-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-lock} */\n IconNamesEnum[\"FileLock\"] = \"file-lock\";\n /** {@link https://icons.getbootstrap.com/icons/file-lock2-fill} */\n IconNamesEnum[\"FileLock2Fill\"] = \"file-lock2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-lock2} */\n IconNamesEnum[\"FileLock2\"] = \"file-lock2\";\n /** {@link https://icons.getbootstrap.com/icons/file-medical-fill} */\n IconNamesEnum[\"FileMedicalFill\"] = \"file-medical-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-medical} */\n IconNamesEnum[\"FileMedical\"] = \"file-medical\";\n /** {@link https://icons.getbootstrap.com/icons/file-minus-fill} */\n IconNamesEnum[\"FileMinusFill\"] = \"file-minus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-minus} */\n IconNamesEnum[\"FileMinus\"] = \"file-minus\";\n /** {@link https://icons.getbootstrap.com/icons/file-music-fill} */\n IconNamesEnum[\"FileMusicFill\"] = \"file-music-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-music} */\n IconNamesEnum[\"FileMusic\"] = \"file-music\";\n /** {@link https://icons.getbootstrap.com/icons/file-pdf-fill} */\n IconNamesEnum[\"FilePdfFill\"] = \"file-pdf-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-pdf} */\n IconNamesEnum[\"FilePdf\"] = \"file-pdf\";\n /** {@link https://icons.getbootstrap.com/icons/file-person-fill} */\n IconNamesEnum[\"FilePersonFill\"] = \"file-person-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-person} */\n IconNamesEnum[\"FilePerson\"] = \"file-person\";\n /** {@link https://icons.getbootstrap.com/icons/file-play-fill} */\n IconNamesEnum[\"FilePlayFill\"] = \"file-play-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-play} */\n IconNamesEnum[\"FilePlay\"] = \"file-play\";\n /** {@link https://icons.getbootstrap.com/icons/file-plus-fill} */\n IconNamesEnum[\"FilePlusFill\"] = \"file-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-plus} */\n IconNamesEnum[\"FilePlus\"] = \"file-plus\";\n /** {@link https://icons.getbootstrap.com/icons/file-post-fill} */\n IconNamesEnum[\"FilePostFill\"] = \"file-post-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-post} */\n IconNamesEnum[\"FilePost\"] = \"file-post\";\n /** {@link https://icons.getbootstrap.com/icons/file-ppt-fill} */\n IconNamesEnum[\"FilePptFill\"] = \"file-ppt-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-ppt} */\n IconNamesEnum[\"FilePpt\"] = \"file-ppt\";\n /** {@link https://icons.getbootstrap.com/icons/file-richtext-fill} */\n IconNamesEnum[\"FileRichtextFill\"] = \"file-richtext-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-richtext} */\n IconNamesEnum[\"FileRichtext\"] = \"file-richtext\";\n /** {@link https://icons.getbootstrap.com/icons/file-ruled-fill} */\n IconNamesEnum[\"FileRuledFill\"] = \"file-ruled-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-ruled} */\n IconNamesEnum[\"FileRuled\"] = \"file-ruled\";\n /** {@link https://icons.getbootstrap.com/icons/file-slides-fill} */\n IconNamesEnum[\"FileSlidesFill\"] = \"file-slides-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-slides} */\n IconNamesEnum[\"FileSlides\"] = \"file-slides\";\n /** {@link https://icons.getbootstrap.com/icons/file-spreadsheet-fill} */\n IconNamesEnum[\"FileSpreadsheetFill\"] = \"file-spreadsheet-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-spreadsheet} */\n IconNamesEnum[\"FileSpreadsheet\"] = \"file-spreadsheet\";\n /** {@link https://icons.getbootstrap.com/icons/file-text-fill} */\n IconNamesEnum[\"FileTextFill\"] = \"file-text-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-text} */\n IconNamesEnum[\"FileText\"] = \"file-text\";\n /** {@link https://icons.getbootstrap.com/icons/file-word-fill} */\n IconNamesEnum[\"FileWordFill\"] = \"file-word-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-word} */\n IconNamesEnum[\"FileWord\"] = \"file-word\";\n /** {@link https://icons.getbootstrap.com/icons/file-x-fill} */\n IconNamesEnum[\"FileXFill\"] = \"file-x-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-x} */\n IconNamesEnum[\"FileX\"] = \"file-x\";\n /** {@link https://icons.getbootstrap.com/icons/file-zip-fill} */\n IconNamesEnum[\"FileZipFill\"] = \"file-zip-fill\";\n /** {@link https://icons.getbootstrap.com/icons/file-zip} */\n IconNamesEnum[\"FileZip\"] = \"file-zip\";\n /** {@link https://icons.getbootstrap.com/icons/file} */\n IconNamesEnum[\"File\"] = \"file\";\n /** {@link https://icons.getbootstrap.com/icons/files-alt} */\n IconNamesEnum[\"FilesAlt\"] = \"files-alt\";\n /** {@link https://icons.getbootstrap.com/icons/files} */\n IconNamesEnum[\"Files\"] = \"files\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-aac} */\n IconNamesEnum[\"FiletypeAac\"] = \"filetype-aac\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-ai} */\n IconNamesEnum[\"FiletypeAi\"] = \"filetype-ai\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-bmp} */\n IconNamesEnum[\"FiletypeBmp\"] = \"filetype-bmp\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-cs} */\n IconNamesEnum[\"FiletypeCs\"] = \"filetype-cs\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-css} */\n IconNamesEnum[\"FiletypeCss\"] = \"filetype-css\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-csv} */\n IconNamesEnum[\"FiletypeCsv\"] = \"filetype-csv\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-doc} */\n IconNamesEnum[\"FiletypeDoc\"] = \"filetype-doc\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-docx} */\n IconNamesEnum[\"FiletypeDocx\"] = \"filetype-docx\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-exe} */\n IconNamesEnum[\"FiletypeExe\"] = \"filetype-exe\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-gif} */\n IconNamesEnum[\"FiletypeGif\"] = \"filetype-gif\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-heic} */\n IconNamesEnum[\"FiletypeHeic\"] = \"filetype-heic\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-html} */\n IconNamesEnum[\"FiletypeHtml\"] = \"filetype-html\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-java} */\n IconNamesEnum[\"FiletypeJava\"] = \"filetype-java\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-jpg} */\n IconNamesEnum[\"FiletypeJpg\"] = \"filetype-jpg\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-js} */\n IconNamesEnum[\"FiletypeJs\"] = \"filetype-js\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-json} */\n IconNamesEnum[\"FiletypeJson\"] = \"filetype-json\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-jsx} */\n IconNamesEnum[\"FiletypeJsx\"] = \"filetype-jsx\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-key} */\n IconNamesEnum[\"FiletypeKey\"] = \"filetype-key\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-m4p} */\n IconNamesEnum[\"FiletypeM4P\"] = \"filetype-m4p\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-md} */\n IconNamesEnum[\"FiletypeMd\"] = \"filetype-md\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-mdx} */\n IconNamesEnum[\"FiletypeMdx\"] = \"filetype-mdx\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-mov} */\n IconNamesEnum[\"FiletypeMov\"] = \"filetype-mov\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-mp3} */\n IconNamesEnum[\"FiletypeMp3\"] = \"filetype-mp3\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-mp4} */\n IconNamesEnum[\"FiletypeMp4\"] = \"filetype-mp4\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-otf} */\n IconNamesEnum[\"FiletypeOtf\"] = \"filetype-otf\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-pdf} */\n IconNamesEnum[\"FiletypePdf\"] = \"filetype-pdf\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-php} */\n IconNamesEnum[\"FiletypePhp\"] = \"filetype-php\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-png} */\n IconNamesEnum[\"FiletypePng\"] = \"filetype-png\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-ppt} */\n IconNamesEnum[\"FiletypePpt\"] = \"filetype-ppt\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-pptx} */\n IconNamesEnum[\"FiletypePptx\"] = \"filetype-pptx\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-psd} */\n IconNamesEnum[\"FiletypePsd\"] = \"filetype-psd\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-py} */\n IconNamesEnum[\"FiletypePy\"] = \"filetype-py\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-raw} */\n IconNamesEnum[\"FiletypeRaw\"] = \"filetype-raw\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-rb} */\n IconNamesEnum[\"FiletypeRb\"] = \"filetype-rb\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-sass} */\n IconNamesEnum[\"FiletypeSass\"] = \"filetype-sass\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-scss} */\n IconNamesEnum[\"FiletypeScss\"] = \"filetype-scss\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-sh} */\n IconNamesEnum[\"FiletypeSh\"] = \"filetype-sh\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-sql} */\n IconNamesEnum[\"FiletypeSql\"] = \"filetype-sql\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-svg} */\n IconNamesEnum[\"FiletypeSvg\"] = \"filetype-svg\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-tiff} */\n IconNamesEnum[\"FiletypeTiff\"] = \"filetype-tiff\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-tsx} */\n IconNamesEnum[\"FiletypeTsx\"] = \"filetype-tsx\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-ttf} */\n IconNamesEnum[\"FiletypeTtf\"] = \"filetype-ttf\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-txt} */\n IconNamesEnum[\"FiletypeTxt\"] = \"filetype-txt\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-wav} */\n IconNamesEnum[\"FiletypeWav\"] = \"filetype-wav\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-woff} */\n IconNamesEnum[\"FiletypeWoff\"] = \"filetype-woff\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-xls} */\n IconNamesEnum[\"FiletypeXls\"] = \"filetype-xls\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-xlsx} */\n IconNamesEnum[\"FiletypeXlsx\"] = \"filetype-xlsx\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-xml} */\n IconNamesEnum[\"FiletypeXml\"] = \"filetype-xml\";\n /** {@link https://icons.getbootstrap.com/icons/filetype-yml} */\n IconNamesEnum[\"FiletypeYml\"] = \"filetype-yml\";\n /** {@link https://icons.getbootstrap.com/icons/film} */\n IconNamesEnum[\"Film\"] = \"film\";\n /** {@link https://icons.getbootstrap.com/icons/filter-circle-fill} */\n IconNamesEnum[\"FilterCircleFill\"] = \"filter-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/filter-circle} */\n IconNamesEnum[\"FilterCircle\"] = \"filter-circle\";\n /** {@link https://icons.getbootstrap.com/icons/filter-left} */\n IconNamesEnum[\"FilterLeft\"] = \"filter-left\";\n /** {@link https://icons.getbootstrap.com/icons/filter-right} */\n IconNamesEnum[\"FilterRight\"] = \"filter-right\";\n /** {@link https://icons.getbootstrap.com/icons/filter-square-fill} */\n IconNamesEnum[\"FilterSquareFill\"] = \"filter-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/filter-square} */\n IconNamesEnum[\"FilterSquare\"] = \"filter-square\";\n /** {@link https://icons.getbootstrap.com/icons/filter} */\n IconNamesEnum[\"Filter\"] = \"filter\";\n /** {@link https://icons.getbootstrap.com/icons/fingerprint} */\n IconNamesEnum[\"Fingerprint\"] = \"fingerprint\";\n /** {@link https://icons.getbootstrap.com/icons/fire} */\n IconNamesEnum[\"Fire\"] = \"fire\";\n /** {@link https://icons.getbootstrap.com/icons/flag-fill} */\n IconNamesEnum[\"FlagFill\"] = \"flag-fill\";\n /** {@link https://icons.getbootstrap.com/icons/flag} */\n IconNamesEnum[\"Flag\"] = \"flag\";\n /** {@link https://icons.getbootstrap.com/icons/flower1} */\n IconNamesEnum[\"Flower1\"] = \"flower1\";\n /** {@link https://icons.getbootstrap.com/icons/flower2} */\n IconNamesEnum[\"Flower2\"] = \"flower2\";\n /** {@link https://icons.getbootstrap.com/icons/flower3} */\n IconNamesEnum[\"Flower3\"] = \"flower3\";\n /** {@link https://icons.getbootstrap.com/icons/folder-check} */\n IconNamesEnum[\"FolderCheck\"] = \"folder-check\";\n /** {@link https://icons.getbootstrap.com/icons/folder-fill} */\n IconNamesEnum[\"FolderFill\"] = \"folder-fill\";\n /** {@link https://icons.getbootstrap.com/icons/folder-minus} */\n IconNamesEnum[\"FolderMinus\"] = \"folder-minus\";\n /** {@link https://icons.getbootstrap.com/icons/folder-plus} */\n IconNamesEnum[\"FolderPlus\"] = \"folder-plus\";\n /** {@link https://icons.getbootstrap.com/icons/folder-symlink-fill} */\n IconNamesEnum[\"FolderSymlinkFill\"] = \"folder-symlink-fill\";\n /** {@link https://icons.getbootstrap.com/icons/folder-symlink} */\n IconNamesEnum[\"FolderSymlink\"] = \"folder-symlink\";\n /** {@link https://icons.getbootstrap.com/icons/folder-x} */\n IconNamesEnum[\"FolderX\"] = \"folder-x\";\n /** {@link https://icons.getbootstrap.com/icons/folder} */\n IconNamesEnum[\"Folder\"] = \"folder\";\n /** {@link https://icons.getbootstrap.com/icons/folder2-open} */\n IconNamesEnum[\"Folder2Open\"] = \"folder2-open\";\n /** {@link https://icons.getbootstrap.com/icons/folder2} */\n IconNamesEnum[\"Folder2\"] = \"folder2\";\n /** {@link https://icons.getbootstrap.com/icons/fonts} */\n IconNamesEnum[\"Fonts\"] = \"fonts\";\n /** {@link https://icons.getbootstrap.com/icons/forward-fill} */\n IconNamesEnum[\"ForwardFill\"] = \"forward-fill\";\n /** {@link https://icons.getbootstrap.com/icons/forward} */\n IconNamesEnum[\"Forward\"] = \"forward\";\n /** {@link https://icons.getbootstrap.com/icons/front} */\n IconNamesEnum[\"Front\"] = \"front\";\n /** {@link https://icons.getbootstrap.com/icons/fuel-pump-diesel-fill} */\n IconNamesEnum[\"FuelPumpDieselFill\"] = \"fuel-pump-diesel-fill\";\n /** {@link https://icons.getbootstrap.com/icons/fuel-pump-diesel} */\n IconNamesEnum[\"FuelPumpDiesel\"] = \"fuel-pump-diesel\";\n /** {@link https://icons.getbootstrap.com/icons/fuel-pump-fill} */\n IconNamesEnum[\"FuelPumpFill\"] = \"fuel-pump-fill\";\n /** {@link https://icons.getbootstrap.com/icons/fuel-pump} */\n IconNamesEnum[\"FuelPump\"] = \"fuel-pump\";\n /** {@link https://icons.getbootstrap.com/icons/fullscreen-exit} */\n IconNamesEnum[\"FullscreenExit\"] = \"fullscreen-exit\";\n /** {@link https://icons.getbootstrap.com/icons/fullscreen} */\n IconNamesEnum[\"Fullscreen\"] = \"fullscreen\";\n /** {@link https://icons.getbootstrap.com/icons/funnel-fill} */\n IconNamesEnum[\"FunnelFill\"] = \"funnel-fill\";\n /** {@link https://icons.getbootstrap.com/icons/funnel} */\n IconNamesEnum[\"Funnel\"] = \"funnel\";\n /** {@link https://icons.getbootstrap.com/icons/gear-fill} */\n IconNamesEnum[\"GearFill\"] = \"gear-fill\";\n /** {@link https://icons.getbootstrap.com/icons/gear-wide-connected} */\n IconNamesEnum[\"GearWideConnected\"] = \"gear-wide-connected\";\n /** {@link https://icons.getbootstrap.com/icons/gear-wide} */\n IconNamesEnum[\"GearWide\"] = \"gear-wide\";\n /** {@link https://icons.getbootstrap.com/icons/gear} */\n IconNamesEnum[\"Gear\"] = \"gear\";\n /** {@link https://icons.getbootstrap.com/icons/gem} */\n IconNamesEnum[\"Gem\"] = \"gem\";\n /** {@link https://icons.getbootstrap.com/icons/gender-ambiguous} */\n IconNamesEnum[\"GenderAmbiguous\"] = \"gender-ambiguous\";\n /** {@link https://icons.getbootstrap.com/icons/gender-female} */\n IconNamesEnum[\"GenderFemale\"] = \"gender-female\";\n /** {@link https://icons.getbootstrap.com/icons/gender-male} */\n IconNamesEnum[\"GenderMale\"] = \"gender-male\";\n /** {@link https://icons.getbootstrap.com/icons/gender-trans} */\n IconNamesEnum[\"GenderTrans\"] = \"gender-trans\";\n /** {@link https://icons.getbootstrap.com/icons/geo-alt-fill} */\n IconNamesEnum[\"GeoAltFill\"] = \"geo-alt-fill\";\n /** {@link https://icons.getbootstrap.com/icons/geo-alt} */\n IconNamesEnum[\"GeoAlt\"] = \"geo-alt\";\n /** {@link https://icons.getbootstrap.com/icons/geo-fill} */\n IconNamesEnum[\"GeoFill\"] = \"geo-fill\";\n /** {@link https://icons.getbootstrap.com/icons/geo} */\n IconNamesEnum[\"Geo\"] = \"geo\";\n /** {@link https://icons.getbootstrap.com/icons/gift-fill} */\n IconNamesEnum[\"GiftFill\"] = \"gift-fill\";\n /** {@link https://icons.getbootstrap.com/icons/gift} */\n IconNamesEnum[\"Gift\"] = \"gift\";\n /** {@link https://icons.getbootstrap.com/icons/git} */\n IconNamesEnum[\"Git\"] = \"git\";\n /** {@link https://icons.getbootstrap.com/icons/github} */\n IconNamesEnum[\"Github\"] = \"github\";\n /** {@link https://icons.getbootstrap.com/icons/globe-americas} */\n IconNamesEnum[\"GlobeAmericas\"] = \"globe-americas\";\n /** {@link https://icons.getbootstrap.com/icons/globe-asia-australia} */\n IconNamesEnum[\"GlobeAsiaAustralia\"] = \"globe-asia-australia\";\n /** {@link https://icons.getbootstrap.com/icons/globe-central-south-asia} */\n IconNamesEnum[\"GlobeCentralSouthAsia\"] = \"globe-central-south-asia\";\n /** {@link https://icons.getbootstrap.com/icons/globe-europe-africa} */\n IconNamesEnum[\"GlobeEuropeAfrica\"] = \"globe-europe-africa\";\n /** {@link https://icons.getbootstrap.com/icons/globe} */\n IconNamesEnum[\"Globe\"] = \"globe\";\n /** {@link https://icons.getbootstrap.com/icons/globe2} */\n IconNamesEnum[\"Globe2\"] = \"globe2\";\n /** {@link https://icons.getbootstrap.com/icons/google-play} */\n IconNamesEnum[\"GooglePlay\"] = \"google-play\";\n /** {@link https://icons.getbootstrap.com/icons/google} */\n IconNamesEnum[\"Google\"] = \"google\";\n /** {@link https://icons.getbootstrap.com/icons/gpu-card} */\n IconNamesEnum[\"GpuCard\"] = \"gpu-card\";\n /** {@link https://icons.getbootstrap.com/icons/graph-down-arrow} */\n IconNamesEnum[\"GraphDownArrow\"] = \"graph-down-arrow\";\n /** {@link https://icons.getbootstrap.com/icons/graph-down} */\n IconNamesEnum[\"GraphDown\"] = \"graph-down\";\n /** {@link https://icons.getbootstrap.com/icons/graph-up-arrow} */\n IconNamesEnum[\"GraphUpArrow\"] = \"graph-up-arrow\";\n /** {@link https://icons.getbootstrap.com/icons/graph-up} */\n IconNamesEnum[\"GraphUp\"] = \"graph-up\";\n /** {@link https://icons.getbootstrap.com/icons/grid-1x2-fill} */\n IconNamesEnum[\"Grid1X2Fill\"] = \"grid-1x2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/grid-1x2} */\n IconNamesEnum[\"Grid1X2\"] = \"grid-1x2\";\n /** {@link https://icons.getbootstrap.com/icons/grid-3x2-gap-fill} */\n IconNamesEnum[\"Grid3X2GapFill\"] = \"grid-3x2-gap-fill\";\n /** {@link https://icons.getbootstrap.com/icons/grid-3x2-gap} */\n IconNamesEnum[\"Grid3X2Gap\"] = \"grid-3x2-gap\";\n /** {@link https://icons.getbootstrap.com/icons/grid-3x2} */\n IconNamesEnum[\"Grid3X2\"] = \"grid-3x2\";\n /** {@link https://icons.getbootstrap.com/icons/grid-3x3-gap-fill} */\n IconNamesEnum[\"Grid3X3GapFill\"] = \"grid-3x3-gap-fill\";\n /** {@link https://icons.getbootstrap.com/icons/grid-3x3-gap} */\n IconNamesEnum[\"Grid3X3Gap\"] = \"grid-3x3-gap\";\n /** {@link https://icons.getbootstrap.com/icons/grid-3x3} */\n IconNamesEnum[\"Grid3X3\"] = \"grid-3x3\";\n /** {@link https://icons.getbootstrap.com/icons/grid-fill} */\n IconNamesEnum[\"GridFill\"] = \"grid-fill\";\n /** {@link https://icons.getbootstrap.com/icons/grid} */\n IconNamesEnum[\"Grid\"] = \"grid\";\n /** {@link https://icons.getbootstrap.com/icons/grip-horizontal} */\n IconNamesEnum[\"GripHorizontal\"] = \"grip-horizontal\";\n /** {@link https://icons.getbootstrap.com/icons/grip-vertical} */\n IconNamesEnum[\"GripVertical\"] = \"grip-vertical\";\n /** {@link https://icons.getbootstrap.com/icons/h-circle-fill} */\n IconNamesEnum[\"HCircleFill\"] = \"h-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/h-circle} */\n IconNamesEnum[\"HCircle\"] = \"h-circle\";\n /** {@link https://icons.getbootstrap.com/icons/h-square-fill} */\n IconNamesEnum[\"HSquareFill\"] = \"h-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/h-square} */\n IconNamesEnum[\"HSquare\"] = \"h-square\";\n /** {@link https://icons.getbootstrap.com/icons/hammer} */\n IconNamesEnum[\"Hammer\"] = \"hammer\";\n /** {@link https://icons.getbootstrap.com/icons/hand-index-fill} */\n IconNamesEnum[\"HandIndexFill\"] = \"hand-index-fill\";\n /** {@link https://icons.getbootstrap.com/icons/hand-index-thumb-fill} */\n IconNamesEnum[\"HandIndexThumbFill\"] = \"hand-index-thumb-fill\";\n /** {@link https://icons.getbootstrap.com/icons/hand-index-thumb} */\n IconNamesEnum[\"HandIndexThumb\"] = \"hand-index-thumb\";\n /** {@link https://icons.getbootstrap.com/icons/hand-index} */\n IconNamesEnum[\"HandIndex\"] = \"hand-index\";\n /** {@link https://icons.getbootstrap.com/icons/hand-thumbs-down-fill} */\n IconNamesEnum[\"HandThumbsDownFill\"] = \"hand-thumbs-down-fill\";\n /** {@link https://icons.getbootstrap.com/icons/hand-thumbs-down} */\n IconNamesEnum[\"HandThumbsDown\"] = \"hand-thumbs-down\";\n /** {@link https://icons.getbootstrap.com/icons/hand-thumbs-up-fill} */\n IconNamesEnum[\"HandThumbsUpFill\"] = \"hand-thumbs-up-fill\";\n /** {@link https://icons.getbootstrap.com/icons/hand-thumbs-up} */\n IconNamesEnum[\"HandThumbsUp\"] = \"hand-thumbs-up\";\n /** {@link https://icons.getbootstrap.com/icons/handbag-fill} */\n IconNamesEnum[\"HandbagFill\"] = \"handbag-fill\";\n /** {@link https://icons.getbootstrap.com/icons/handbag} */\n IconNamesEnum[\"Handbag\"] = \"handbag\";\n /** {@link https://icons.getbootstrap.com/icons/hash} */\n IconNamesEnum[\"Hash\"] = \"hash\";\n /** {@link https://icons.getbootstrap.com/icons/hdd-fill} */\n IconNamesEnum[\"HddFill\"] = \"hdd-fill\";\n /** {@link https://icons.getbootstrap.com/icons/hdd-network-fill} */\n IconNamesEnum[\"HddNetworkFill\"] = \"hdd-network-fill\";\n /** {@link https://icons.getbootstrap.com/icons/hdd-network} */\n IconNamesEnum[\"HddNetwork\"] = \"hdd-network\";\n /** {@link https://icons.getbootstrap.com/icons/hdd-rack-fill} */\n IconNamesEnum[\"HddRackFill\"] = \"hdd-rack-fill\";\n /** {@link https://icons.getbootstrap.com/icons/hdd-rack} */\n IconNamesEnum[\"HddRack\"] = \"hdd-rack\";\n /** {@link https://icons.getbootstrap.com/icons/hdd-stack-fill} */\n IconNamesEnum[\"HddStackFill\"] = \"hdd-stack-fill\";\n /** {@link https://icons.getbootstrap.com/icons/hdd-stack} */\n IconNamesEnum[\"HddStack\"] = \"hdd-stack\";\n /** {@link https://icons.getbootstrap.com/icons/hdd} */\n IconNamesEnum[\"Hdd\"] = \"hdd\";\n /** {@link https://icons.getbootstrap.com/icons/hdmi-fill} */\n IconNamesEnum[\"HdmiFill\"] = \"hdmi-fill\";\n /** {@link https://icons.getbootstrap.com/icons/hdmi} */\n IconNamesEnum[\"Hdmi\"] = \"hdmi\";\n /** {@link https://icons.getbootstrap.com/icons/headphones} */\n IconNamesEnum[\"Headphones\"] = \"headphones\";\n /** {@link https://icons.getbootstrap.com/icons/headset-vr} */\n IconNamesEnum[\"HeadsetVr\"] = \"headset-vr\";\n /** {@link https://icons.getbootstrap.com/icons/headset} */\n IconNamesEnum[\"Headset\"] = \"headset\";\n /** {@link https://icons.getbootstrap.com/icons/heart-arrow} */\n IconNamesEnum[\"HeartArrow\"] = \"heart-arrow\";\n /** {@link https://icons.getbootstrap.com/icons/heart-fill} */\n IconNamesEnum[\"HeartFill\"] = \"heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/heart-half} */\n IconNamesEnum[\"HeartHalf\"] = \"heart-half\";\n /** {@link https://icons.getbootstrap.com/icons/heart-pulse-fill} */\n IconNamesEnum[\"HeartPulseFill\"] = \"heart-pulse-fill\";\n /** {@link https://icons.getbootstrap.com/icons/heart-pulse} */\n IconNamesEnum[\"HeartPulse\"] = \"heart-pulse\";\n /** {@link https://icons.getbootstrap.com/icons/heart} */\n IconNamesEnum[\"Heart\"] = \"heart\";\n /** {@link https://icons.getbootstrap.com/icons/heartbreak-fill} */\n IconNamesEnum[\"HeartbreakFill\"] = \"heartbreak-fill\";\n /** {@link https://icons.getbootstrap.com/icons/heartbreak} */\n IconNamesEnum[\"Heartbreak\"] = \"heartbreak\";\n /** {@link https://icons.getbootstrap.com/icons/hearts} */\n IconNamesEnum[\"Hearts\"] = \"hearts\";\n /** {@link https://icons.getbootstrap.com/icons/heptagon-fill} */\n IconNamesEnum[\"HeptagonFill\"] = \"heptagon-fill\";\n /** {@link https://icons.getbootstrap.com/icons/heptagon-half} */\n IconNamesEnum[\"HeptagonHalf\"] = \"heptagon-half\";\n /** {@link https://icons.getbootstrap.com/icons/heptagon} */\n IconNamesEnum[\"Heptagon\"] = \"heptagon\";\n /** {@link https://icons.getbootstrap.com/icons/hexagon-fill} */\n IconNamesEnum[\"HexagonFill\"] = \"hexagon-fill\";\n /** {@link https://icons.getbootstrap.com/icons/hexagon-half} */\n IconNamesEnum[\"HexagonHalf\"] = \"hexagon-half\";\n /** {@link https://icons.getbootstrap.com/icons/hexagon} */\n IconNamesEnum[\"Hexagon\"] = \"hexagon\";\n /** {@link https://icons.getbootstrap.com/icons/hospital-fill} */\n IconNamesEnum[\"HospitalFill\"] = \"hospital-fill\";\n /** {@link https://icons.getbootstrap.com/icons/hospital} */\n IconNamesEnum[\"Hospital\"] = \"hospital\";\n /** {@link https://icons.getbootstrap.com/icons/hourglass-bottom} */\n IconNamesEnum[\"HourglassBottom\"] = \"hourglass-bottom\";\n /** {@link https://icons.getbootstrap.com/icons/hourglass-split} */\n IconNamesEnum[\"HourglassSplit\"] = \"hourglass-split\";\n /** {@link https://icons.getbootstrap.com/icons/hourglass-top} */\n IconNamesEnum[\"HourglassTop\"] = \"hourglass-top\";\n /** {@link https://icons.getbootstrap.com/icons/hourglass} */\n IconNamesEnum[\"Hourglass\"] = \"hourglass\";\n /** {@link https://icons.getbootstrap.com/icons/house-add-fill} */\n IconNamesEnum[\"HouseAddFill\"] = \"house-add-fill\";\n /** {@link https://icons.getbootstrap.com/icons/house-add} */\n IconNamesEnum[\"HouseAdd\"] = \"house-add\";\n /** {@link https://icons.getbootstrap.com/icons/house-check-fill} */\n IconNamesEnum[\"HouseCheckFill\"] = \"house-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/house-check} */\n IconNamesEnum[\"HouseCheck\"] = \"house-check\";\n /** {@link https://icons.getbootstrap.com/icons/house-dash-fill} */\n IconNamesEnum[\"HouseDashFill\"] = \"house-dash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/house-dash} */\n IconNamesEnum[\"HouseDash\"] = \"house-dash\";\n /** {@link https://icons.getbootstrap.com/icons/house-door-fill} */\n IconNamesEnum[\"HouseDoorFill\"] = \"house-door-fill\";\n /** {@link https://icons.getbootstrap.com/icons/house-door} */\n IconNamesEnum[\"HouseDoor\"] = \"house-door\";\n /** {@link https://icons.getbootstrap.com/icons/house-down-fill} */\n IconNamesEnum[\"HouseDownFill\"] = \"house-down-fill\";\n /** {@link https://icons.getbootstrap.com/icons/house-down} */\n IconNamesEnum[\"HouseDown\"] = \"house-down\";\n /** {@link https://icons.getbootstrap.com/icons/house-exclamation-fill} */\n IconNamesEnum[\"HouseExclamationFill\"] = \"house-exclamation-fill\";\n /** {@link https://icons.getbootstrap.com/icons/house-exclamation} */\n IconNamesEnum[\"HouseExclamation\"] = \"house-exclamation\";\n /** {@link https://icons.getbootstrap.com/icons/house-fill} */\n IconNamesEnum[\"HouseFill\"] = \"house-fill\";\n /** {@link https://icons.getbootstrap.com/icons/house-gear-fill} */\n IconNamesEnum[\"HouseGearFill\"] = \"house-gear-fill\";\n /** {@link https://icons.getbootstrap.com/icons/house-gear} */\n IconNamesEnum[\"HouseGear\"] = \"house-gear\";\n /** {@link https://icons.getbootstrap.com/icons/house-heart-fill} */\n IconNamesEnum[\"HouseHeartFill\"] = \"house-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/house-heart} */\n IconNamesEnum[\"HouseHeart\"] = \"house-heart\";\n /** {@link https://icons.getbootstrap.com/icons/house-lock-fill} */\n IconNamesEnum[\"HouseLockFill\"] = \"house-lock-fill\";\n /** {@link https://icons.getbootstrap.com/icons/house-lock} */\n IconNamesEnum[\"HouseLock\"] = \"house-lock\";\n /** {@link https://icons.getbootstrap.com/icons/house-slash-fill} */\n IconNamesEnum[\"HouseSlashFill\"] = \"house-slash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/house-slash} */\n IconNamesEnum[\"HouseSlash\"] = \"house-slash\";\n /** {@link https://icons.getbootstrap.com/icons/house-up-fill} */\n IconNamesEnum[\"HouseUpFill\"] = \"house-up-fill\";\n /** {@link https://icons.getbootstrap.com/icons/house-up} */\n IconNamesEnum[\"HouseUp\"] = \"house-up\";\n /** {@link https://icons.getbootstrap.com/icons/house-x-fill} */\n IconNamesEnum[\"HouseXFill\"] = \"house-x-fill\";\n /** {@link https://icons.getbootstrap.com/icons/house-x} */\n IconNamesEnum[\"HouseX\"] = \"house-x\";\n /** {@link https://icons.getbootstrap.com/icons/house} */\n IconNamesEnum[\"House\"] = \"house\";\n /** {@link https://icons.getbootstrap.com/icons/houses-fill} */\n IconNamesEnum[\"HousesFill\"] = \"houses-fill\";\n /** {@link https://icons.getbootstrap.com/icons/houses} */\n IconNamesEnum[\"Houses\"] = \"houses\";\n /** {@link https://icons.getbootstrap.com/icons/hr} */\n IconNamesEnum[\"Hr\"] = \"hr\";\n /** {@link https://icons.getbootstrap.com/icons/hurricane} */\n IconNamesEnum[\"Hurricane\"] = \"hurricane\";\n /** {@link https://icons.getbootstrap.com/icons/hypnotize} */\n IconNamesEnum[\"Hypnotize\"] = \"hypnotize\";\n /** {@link https://icons.getbootstrap.com/icons/image-alt} */\n IconNamesEnum[\"ImageAlt\"] = \"image-alt\";\n /** {@link https://icons.getbootstrap.com/icons/image-fill} */\n IconNamesEnum[\"ImageFill\"] = \"image-fill\";\n /** {@link https://icons.getbootstrap.com/icons/image} */\n IconNamesEnum[\"Image\"] = \"image\";\n /** {@link https://icons.getbootstrap.com/icons/images} */\n IconNamesEnum[\"Images\"] = \"images\";\n /** {@link https://icons.getbootstrap.com/icons/inbox-fill} */\n IconNamesEnum[\"InboxFill\"] = \"inbox-fill\";\n /** {@link https://icons.getbootstrap.com/icons/inbox} */\n IconNamesEnum[\"Inbox\"] = \"inbox\";\n /** {@link https://icons.getbootstrap.com/icons/inboxes-fill} */\n IconNamesEnum[\"InboxesFill\"] = \"inboxes-fill\";\n /** {@link https://icons.getbootstrap.com/icons/inboxes} */\n IconNamesEnum[\"Inboxes\"] = \"inboxes\";\n /** {@link https://icons.getbootstrap.com/icons/incognito} */\n IconNamesEnum[\"Incognito\"] = \"incognito\";\n /** {@link https://icons.getbootstrap.com/icons/indent} */\n IconNamesEnum[\"Indent\"] = \"indent\";\n /** {@link https://icons.getbootstrap.com/icons/infinity} */\n IconNamesEnum[\"Infinity\"] = \"infinity\";\n /** {@link https://icons.getbootstrap.com/icons/info-circle-fill} */\n IconNamesEnum[\"InfoCircleFill\"] = \"info-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/info-circle} */\n IconNamesEnum[\"InfoCircle\"] = \"info-circle\";\n /** {@link https://icons.getbootstrap.com/icons/info-lg} */\n IconNamesEnum[\"InfoLg\"] = \"info-lg\";\n /** {@link https://icons.getbootstrap.com/icons/info-square-fill} */\n IconNamesEnum[\"InfoSquareFill\"] = \"info-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/info-square} */\n IconNamesEnum[\"InfoSquare\"] = \"info-square\";\n /** {@link https://icons.getbootstrap.com/icons/info} */\n IconNamesEnum[\"Info\"] = \"info\";\n /** {@link https://icons.getbootstrap.com/icons/input-cursor-text} */\n IconNamesEnum[\"InputCursorText\"] = \"input-cursor-text\";\n /** {@link https://icons.getbootstrap.com/icons/input-cursor} */\n IconNamesEnum[\"InputCursor\"] = \"input-cursor\";\n /** {@link https://icons.getbootstrap.com/icons/instagram} */\n IconNamesEnum[\"Instagram\"] = \"instagram\";\n /** {@link https://icons.getbootstrap.com/icons/intersect} */\n IconNamesEnum[\"Intersect\"] = \"intersect\";\n /** {@link https://icons.getbootstrap.com/icons/journal-album} */\n IconNamesEnum[\"JournalAlbum\"] = \"journal-album\";\n /** {@link https://icons.getbootstrap.com/icons/journal-arrow-down} */\n IconNamesEnum[\"JournalArrowDown\"] = \"journal-arrow-down\";\n /** {@link https://icons.getbootstrap.com/icons/journal-arrow-up} */\n IconNamesEnum[\"JournalArrowUp\"] = \"journal-arrow-up\";\n /** {@link https://icons.getbootstrap.com/icons/journal-bookmark-fill} */\n IconNamesEnum[\"JournalBookmarkFill\"] = \"journal-bookmark-fill\";\n /** {@link https://icons.getbootstrap.com/icons/journal-bookmark} */\n IconNamesEnum[\"JournalBookmark\"] = \"journal-bookmark\";\n /** {@link https://icons.getbootstrap.com/icons/journal-check} */\n IconNamesEnum[\"JournalCheck\"] = \"journal-check\";\n /** {@link https://icons.getbootstrap.com/icons/journal-code} */\n IconNamesEnum[\"JournalCode\"] = \"journal-code\";\n /** {@link https://icons.getbootstrap.com/icons/journal-medical} */\n IconNamesEnum[\"JournalMedical\"] = \"journal-medical\";\n /** {@link https://icons.getbootstrap.com/icons/journal-minus} */\n IconNamesEnum[\"JournalMinus\"] = \"journal-minus\";\n /** {@link https://icons.getbootstrap.com/icons/journal-plus} */\n IconNamesEnum[\"JournalPlus\"] = \"journal-plus\";\n /** {@link https://icons.getbootstrap.com/icons/journal-richtext} */\n IconNamesEnum[\"JournalRichtext\"] = \"journal-richtext\";\n /** {@link https://icons.getbootstrap.com/icons/journal-text} */\n IconNamesEnum[\"JournalText\"] = \"journal-text\";\n /** {@link https://icons.getbootstrap.com/icons/journal-x} */\n IconNamesEnum[\"JournalX\"] = \"journal-x\";\n /** {@link https://icons.getbootstrap.com/icons/journal} */\n IconNamesEnum[\"Journal\"] = \"journal\";\n /** {@link https://icons.getbootstrap.com/icons/journals} */\n IconNamesEnum[\"Journals\"] = \"journals\";\n /** {@link https://icons.getbootstrap.com/icons/joystick} */\n IconNamesEnum[\"Joystick\"] = \"joystick\";\n /** {@link https://icons.getbootstrap.com/icons/justify-left} */\n IconNamesEnum[\"JustifyLeft\"] = \"justify-left\";\n /** {@link https://icons.getbootstrap.com/icons/justify-right} */\n IconNamesEnum[\"JustifyRight\"] = \"justify-right\";\n /** {@link https://icons.getbootstrap.com/icons/justify} */\n IconNamesEnum[\"Justify\"] = \"justify\";\n /** {@link https://icons.getbootstrap.com/icons/kanban-fill} */\n IconNamesEnum[\"KanbanFill\"] = \"kanban-fill\";\n /** {@link https://icons.getbootstrap.com/icons/kanban} */\n IconNamesEnum[\"Kanban\"] = \"kanban\";\n /** {@link https://icons.getbootstrap.com/icons/key-fill} */\n IconNamesEnum[\"KeyFill\"] = \"key-fill\";\n /** {@link https://icons.getbootstrap.com/icons/key} */\n IconNamesEnum[\"Key\"] = \"key\";\n /** {@link https://icons.getbootstrap.com/icons/keyboard-fill} */\n IconNamesEnum[\"KeyboardFill\"] = \"keyboard-fill\";\n /** {@link https://icons.getbootstrap.com/icons/keyboard} */\n IconNamesEnum[\"Keyboard\"] = \"keyboard\";\n /** {@link https://icons.getbootstrap.com/icons/ladder} */\n IconNamesEnum[\"Ladder\"] = \"ladder\";\n /** {@link https://icons.getbootstrap.com/icons/lamp-fill} */\n IconNamesEnum[\"LampFill\"] = \"lamp-fill\";\n /** {@link https://icons.getbootstrap.com/icons/lamp} */\n IconNamesEnum[\"Lamp\"] = \"lamp\";\n /** {@link https://icons.getbootstrap.com/icons/laptop-fill} */\n IconNamesEnum[\"LaptopFill\"] = \"laptop-fill\";\n /** {@link https://icons.getbootstrap.com/icons/laptop} */\n IconNamesEnum[\"Laptop\"] = \"laptop\";\n /** {@link https://icons.getbootstrap.com/icons/layer-backward} */\n IconNamesEnum[\"LayerBackward\"] = \"layer-backward\";\n /** {@link https://icons.getbootstrap.com/icons/layer-forward} */\n IconNamesEnum[\"LayerForward\"] = \"layer-forward\";\n /** {@link https://icons.getbootstrap.com/icons/layers-fill} */\n IconNamesEnum[\"LayersFill\"] = \"layers-fill\";\n /** {@link https://icons.getbootstrap.com/icons/layers-half} */\n IconNamesEnum[\"LayersHalf\"] = \"layers-half\";\n /** {@link https://icons.getbootstrap.com/icons/layers} */\n IconNamesEnum[\"Layers\"] = \"layers\";\n /** {@link https://icons.getbootstrap.com/icons/layout-sidebar-inset-reverse} */\n IconNamesEnum[\"LayoutSidebarInsetReverse\"] = \"layout-sidebar-inset-reverse\";\n /** {@link https://icons.getbootstrap.com/icons/layout-sidebar-inset} */\n IconNamesEnum[\"LayoutSidebarInset\"] = \"layout-sidebar-inset\";\n /** {@link https://icons.getbootstrap.com/icons/layout-sidebar-reverse} */\n IconNamesEnum[\"LayoutSidebarReverse\"] = \"layout-sidebar-reverse\";\n /** {@link https://icons.getbootstrap.com/icons/layout-sidebar} */\n IconNamesEnum[\"LayoutSidebar\"] = \"layout-sidebar\";\n /** {@link https://icons.getbootstrap.com/icons/layout-split} */\n IconNamesEnum[\"LayoutSplit\"] = \"layout-split\";\n /** {@link https://icons.getbootstrap.com/icons/layout-text-sidebar-reverse} */\n IconNamesEnum[\"LayoutTextSidebarReverse\"] = \"layout-text-sidebar-reverse\";\n /** {@link https://icons.getbootstrap.com/icons/layout-text-sidebar} */\n IconNamesEnum[\"LayoutTextSidebar\"] = \"layout-text-sidebar\";\n /** {@link https://icons.getbootstrap.com/icons/layout-text-window-reverse} */\n IconNamesEnum[\"LayoutTextWindowReverse\"] = \"layout-text-window-reverse\";\n /** {@link https://icons.getbootstrap.com/icons/layout-text-window} */\n IconNamesEnum[\"LayoutTextWindow\"] = \"layout-text-window\";\n /** {@link https://icons.getbootstrap.com/icons/layout-three-columns} */\n IconNamesEnum[\"LayoutThreeColumns\"] = \"layout-three-columns\";\n /** {@link https://icons.getbootstrap.com/icons/layout-wtf} */\n IconNamesEnum[\"LayoutWtf\"] = \"layout-wtf\";\n /** {@link https://icons.getbootstrap.com/icons/life-preserver} */\n IconNamesEnum[\"LifePreserver\"] = \"life-preserver\";\n /** {@link https://icons.getbootstrap.com/icons/lightbulb-fill} */\n IconNamesEnum[\"LightbulbFill\"] = \"lightbulb-fill\";\n /** {@link https://icons.getbootstrap.com/icons/lightbulb-off-fill} */\n IconNamesEnum[\"LightbulbOffFill\"] = \"lightbulb-off-fill\";\n /** {@link https://icons.getbootstrap.com/icons/lightbulb-off} */\n IconNamesEnum[\"LightbulbOff\"] = \"lightbulb-off\";\n /** {@link https://icons.getbootstrap.com/icons/lightbulb} */\n IconNamesEnum[\"Lightbulb\"] = \"lightbulb\";\n /** {@link https://icons.getbootstrap.com/icons/lightning-charge-fill} */\n IconNamesEnum[\"LightningChargeFill\"] = \"lightning-charge-fill\";\n /** {@link https://icons.getbootstrap.com/icons/lightning-charge} */\n IconNamesEnum[\"LightningCharge\"] = \"lightning-charge\";\n /** {@link https://icons.getbootstrap.com/icons/lightning-fill} */\n IconNamesEnum[\"LightningFill\"] = \"lightning-fill\";\n /** {@link https://icons.getbootstrap.com/icons/lightning} */\n IconNamesEnum[\"Lightning\"] = \"lightning\";\n /** {@link https://icons.getbootstrap.com/icons/line} */\n IconNamesEnum[\"Line\"] = \"line\";\n /** {@link https://icons.getbootstrap.com/icons/link-45deg} */\n IconNamesEnum[\"Link45Deg\"] = \"link-45deg\";\n /** {@link https://icons.getbootstrap.com/icons/link} */\n IconNamesEnum[\"Link\"] = \"link\";\n /** {@link https://icons.getbootstrap.com/icons/linkedin} */\n IconNamesEnum[\"Linkedin\"] = \"linkedin\";\n /** {@link https://icons.getbootstrap.com/icons/list-check} */\n IconNamesEnum[\"ListCheck\"] = \"list-check\";\n /** {@link https://icons.getbootstrap.com/icons/list-columns-reverse} */\n IconNamesEnum[\"ListColumnsReverse\"] = \"list-columns-reverse\";\n /** {@link https://icons.getbootstrap.com/icons/list-columns} */\n IconNamesEnum[\"ListColumns\"] = \"list-columns\";\n /** {@link https://icons.getbootstrap.com/icons/list-nested} */\n IconNamesEnum[\"ListNested\"] = \"list-nested\";\n /** {@link https://icons.getbootstrap.com/icons/list-ol} */\n IconNamesEnum[\"ListOl\"] = \"list-ol\";\n /** {@link https://icons.getbootstrap.com/icons/list-stars} */\n IconNamesEnum[\"ListStars\"] = \"list-stars\";\n /** {@link https://icons.getbootstrap.com/icons/list-task} */\n IconNamesEnum[\"ListTask\"] = \"list-task\";\n /** {@link https://icons.getbootstrap.com/icons/list-ul} */\n IconNamesEnum[\"ListUl\"] = \"list-ul\";\n /** {@link https://icons.getbootstrap.com/icons/list} */\n IconNamesEnum[\"List\"] = \"list\";\n /** {@link https://icons.getbootstrap.com/icons/lock-fill} */\n IconNamesEnum[\"LockFill\"] = \"lock-fill\";\n /** {@link https://icons.getbootstrap.com/icons/lock} */\n IconNamesEnum[\"Lock\"] = \"lock\";\n /** {@link https://icons.getbootstrap.com/icons/lungs-fill} */\n IconNamesEnum[\"LungsFill\"] = \"lungs-fill\";\n /** {@link https://icons.getbootstrap.com/icons/lungs} */\n IconNamesEnum[\"Lungs\"] = \"lungs\";\n /** {@link https://icons.getbootstrap.com/icons/magic} */\n IconNamesEnum[\"Magic\"] = \"magic\";\n /** {@link https://icons.getbootstrap.com/icons/magnet-fill} */\n IconNamesEnum[\"MagnetFill\"] = \"magnet-fill\";\n /** {@link https://icons.getbootstrap.com/icons/magnet} */\n IconNamesEnum[\"Magnet\"] = \"magnet\";\n /** {@link https://icons.getbootstrap.com/icons/mailbox} */\n IconNamesEnum[\"Mailbox\"] = \"mailbox\";\n /** {@link https://icons.getbootstrap.com/icons/mailbox2} */\n IconNamesEnum[\"Mailbox2\"] = \"mailbox2\";\n /** {@link https://icons.getbootstrap.com/icons/map-fill} */\n IconNamesEnum[\"MapFill\"] = \"map-fill\";\n /** {@link https://icons.getbootstrap.com/icons/map} */\n IconNamesEnum[\"Map\"] = \"map\";\n /** {@link https://icons.getbootstrap.com/icons/markdown-fill} */\n IconNamesEnum[\"MarkdownFill\"] = \"markdown-fill\";\n /** {@link https://icons.getbootstrap.com/icons/markdown} */\n IconNamesEnum[\"Markdown\"] = \"markdown\";\n /** {@link https://icons.getbootstrap.com/icons/mask} */\n IconNamesEnum[\"Mask\"] = \"mask\";\n /** {@link https://icons.getbootstrap.com/icons/mastodon} */\n IconNamesEnum[\"Mastodon\"] = \"mastodon\";\n /** {@link https://icons.getbootstrap.com/icons/medium} */\n IconNamesEnum[\"Medium\"] = \"medium\";\n /** {@link https://icons.getbootstrap.com/icons/megaphone-fill} */\n IconNamesEnum[\"MegaphoneFill\"] = \"megaphone-fill\";\n /** {@link https://icons.getbootstrap.com/icons/megaphone} */\n IconNamesEnum[\"Megaphone\"] = \"megaphone\";\n /** {@link https://icons.getbootstrap.com/icons/memory} */\n IconNamesEnum[\"Memory\"] = \"memory\";\n /** {@link https://icons.getbootstrap.com/icons/menu-app-fill} */\n IconNamesEnum[\"MenuAppFill\"] = \"menu-app-fill\";\n /** {@link https://icons.getbootstrap.com/icons/menu-app} */\n IconNamesEnum[\"MenuApp\"] = \"menu-app\";\n /** {@link https://icons.getbootstrap.com/icons/menu-button-fill} */\n IconNamesEnum[\"MenuButtonFill\"] = \"menu-button-fill\";\n /** {@link https://icons.getbootstrap.com/icons/menu-button-wide-fill} */\n IconNamesEnum[\"MenuButtonWideFill\"] = \"menu-button-wide-fill\";\n /** {@link https://icons.getbootstrap.com/icons/menu-button-wide} */\n IconNamesEnum[\"MenuButtonWide\"] = \"menu-button-wide\";\n /** {@link https://icons.getbootstrap.com/icons/menu-button} */\n IconNamesEnum[\"MenuButton\"] = \"menu-button\";\n /** {@link https://icons.getbootstrap.com/icons/menu-down} */\n IconNamesEnum[\"MenuDown\"] = \"menu-down\";\n /** {@link https://icons.getbootstrap.com/icons/menu-up} */\n IconNamesEnum[\"MenuUp\"] = \"menu-up\";\n /** {@link https://icons.getbootstrap.com/icons/messenger} */\n IconNamesEnum[\"Messenger\"] = \"messenger\";\n /** {@link https://icons.getbootstrap.com/icons/meta} */\n IconNamesEnum[\"Meta\"] = \"meta\";\n /** {@link https://icons.getbootstrap.com/icons/mic-fill} */\n IconNamesEnum[\"MicFill\"] = \"mic-fill\";\n /** {@link https://icons.getbootstrap.com/icons/mic-mute-fill} */\n IconNamesEnum[\"MicMuteFill\"] = \"mic-mute-fill\";\n /** {@link https://icons.getbootstrap.com/icons/mic-mute} */\n IconNamesEnum[\"MicMute\"] = \"mic-mute\";\n /** {@link https://icons.getbootstrap.com/icons/mic} */\n IconNamesEnum[\"Mic\"] = \"mic\";\n /** {@link https://icons.getbootstrap.com/icons/microsoft-teams} */\n IconNamesEnum[\"MicrosoftTeams\"] = \"microsoft-teams\";\n /** {@link https://icons.getbootstrap.com/icons/microsoft} */\n IconNamesEnum[\"Microsoft\"] = \"microsoft\";\n /** {@link https://icons.getbootstrap.com/icons/minecart-loaded} */\n IconNamesEnum[\"MinecartLoaded\"] = \"minecart-loaded\";\n /** {@link https://icons.getbootstrap.com/icons/minecart} */\n IconNamesEnum[\"Minecart\"] = \"minecart\";\n /** {@link https://icons.getbootstrap.com/icons/modem-fill} */\n IconNamesEnum[\"ModemFill\"] = \"modem-fill\";\n /** {@link https://icons.getbootstrap.com/icons/modem} */\n IconNamesEnum[\"Modem\"] = \"modem\";\n /** {@link https://icons.getbootstrap.com/icons/moisture} */\n IconNamesEnum[\"Moisture\"] = \"moisture\";\n /** {@link https://icons.getbootstrap.com/icons/moon-fill} */\n IconNamesEnum[\"MoonFill\"] = \"moon-fill\";\n /** {@link https://icons.getbootstrap.com/icons/moon-stars-fill} */\n IconNamesEnum[\"MoonStarsFill\"] = \"moon-stars-fill\";\n /** {@link https://icons.getbootstrap.com/icons/moon-stars} */\n IconNamesEnum[\"MoonStars\"] = \"moon-stars\";\n /** {@link https://icons.getbootstrap.com/icons/moon} */\n IconNamesEnum[\"Moon\"] = \"moon\";\n /** {@link https://icons.getbootstrap.com/icons/mortarboard-fill} */\n IconNamesEnum[\"MortarboardFill\"] = \"mortarboard-fill\";\n /** {@link https://icons.getbootstrap.com/icons/mortarboard} */\n IconNamesEnum[\"Mortarboard\"] = \"mortarboard\";\n /** {@link https://icons.getbootstrap.com/icons/motherboard-fill} */\n IconNamesEnum[\"MotherboardFill\"] = \"motherboard-fill\";\n /** {@link https://icons.getbootstrap.com/icons/motherboard} */\n IconNamesEnum[\"Motherboard\"] = \"motherboard\";\n /** {@link https://icons.getbootstrap.com/icons/mouse-fill} */\n IconNamesEnum[\"MouseFill\"] = \"mouse-fill\";\n /** {@link https://icons.getbootstrap.com/icons/mouse} */\n IconNamesEnum[\"Mouse\"] = \"mouse\";\n /** {@link https://icons.getbootstrap.com/icons/mouse2-fill} */\n IconNamesEnum[\"Mouse2Fill\"] = \"mouse2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/mouse2} */\n IconNamesEnum[\"Mouse2\"] = \"mouse2\";\n /** {@link https://icons.getbootstrap.com/icons/mouse3-fill} */\n IconNamesEnum[\"Mouse3Fill\"] = \"mouse3-fill\";\n /** {@link https://icons.getbootstrap.com/icons/mouse3} */\n IconNamesEnum[\"Mouse3\"] = \"mouse3\";\n /** {@link https://icons.getbootstrap.com/icons/music-note-beamed} */\n IconNamesEnum[\"MusicNoteBeamed\"] = \"music-note-beamed\";\n /** {@link https://icons.getbootstrap.com/icons/music-note-list} */\n IconNamesEnum[\"MusicNoteList\"] = \"music-note-list\";\n /** {@link https://icons.getbootstrap.com/icons/music-note} */\n IconNamesEnum[\"MusicNote\"] = \"music-note\";\n /** {@link https://icons.getbootstrap.com/icons/music-player-fill} */\n IconNamesEnum[\"MusicPlayerFill\"] = \"music-player-fill\";\n /** {@link https://icons.getbootstrap.com/icons/music-player} */\n IconNamesEnum[\"MusicPlayer\"] = \"music-player\";\n /** {@link https://icons.getbootstrap.com/icons/newspaper} */\n IconNamesEnum[\"Newspaper\"] = \"newspaper\";\n /** {@link https://icons.getbootstrap.com/icons/nintendo-switch} */\n IconNamesEnum[\"NintendoSwitch\"] = \"nintendo-switch\";\n /** {@link https://icons.getbootstrap.com/icons/node-minus-fill} */\n IconNamesEnum[\"NodeMinusFill\"] = \"node-minus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/node-minus} */\n IconNamesEnum[\"NodeMinus\"] = \"node-minus\";\n /** {@link https://icons.getbootstrap.com/icons/node-plus-fill} */\n IconNamesEnum[\"NodePlusFill\"] = \"node-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/node-plus} */\n IconNamesEnum[\"NodePlus\"] = \"node-plus\";\n /** {@link https://icons.getbootstrap.com/icons/nut-fill} */\n IconNamesEnum[\"NutFill\"] = \"nut-fill\";\n /** {@link https://icons.getbootstrap.com/icons/nut} */\n IconNamesEnum[\"Nut\"] = \"nut\";\n /** {@link https://icons.getbootstrap.com/icons/nvidia} */\n IconNamesEnum[\"Nvidia\"] = \"nvidia\";\n /** {@link https://icons.getbootstrap.com/icons/octagon-fill} */\n IconNamesEnum[\"OctagonFill\"] = \"octagon-fill\";\n /** {@link https://icons.getbootstrap.com/icons/octagon-half} */\n IconNamesEnum[\"OctagonHalf\"] = \"octagon-half\";\n /** {@link https://icons.getbootstrap.com/icons/octagon} */\n IconNamesEnum[\"Octagon\"] = \"octagon\";\n /** {@link https://icons.getbootstrap.com/icons/optical-audio-fill} */\n IconNamesEnum[\"OpticalAudioFill\"] = \"optical-audio-fill\";\n /** {@link https://icons.getbootstrap.com/icons/optical-audio} */\n IconNamesEnum[\"OpticalAudio\"] = \"optical-audio\";\n /** {@link https://icons.getbootstrap.com/icons/option} */\n IconNamesEnum[\"Option\"] = \"option\";\n /** {@link https://icons.getbootstrap.com/icons/outlet} */\n IconNamesEnum[\"Outlet\"] = \"outlet\";\n /** {@link https://icons.getbootstrap.com/icons/p-circle-fill} */\n IconNamesEnum[\"PCircleFill\"] = \"p-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/p-circle} */\n IconNamesEnum[\"PCircle\"] = \"p-circle\";\n /** {@link https://icons.getbootstrap.com/icons/p-square-fill} */\n IconNamesEnum[\"PSquareFill\"] = \"p-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/p-square} */\n IconNamesEnum[\"PSquare\"] = \"p-square\";\n /** {@link https://icons.getbootstrap.com/icons/paint-bucket} */\n IconNamesEnum[\"PaintBucket\"] = \"paint-bucket\";\n /** {@link https://icons.getbootstrap.com/icons/palette-fill} */\n IconNamesEnum[\"PaletteFill\"] = \"palette-fill\";\n /** {@link https://icons.getbootstrap.com/icons/palette} */\n IconNamesEnum[\"Palette\"] = \"palette\";\n /** {@link https://icons.getbootstrap.com/icons/palette2} */\n IconNamesEnum[\"Palette2\"] = \"palette2\";\n /** {@link https://icons.getbootstrap.com/icons/paperclip} */\n IconNamesEnum[\"Paperclip\"] = \"paperclip\";\n /** {@link https://icons.getbootstrap.com/icons/paragraph} */\n IconNamesEnum[\"Paragraph\"] = \"paragraph\";\n /** {@link https://icons.getbootstrap.com/icons/pass-fill} */\n IconNamesEnum[\"PassFill\"] = \"pass-fill\";\n /** {@link https://icons.getbootstrap.com/icons/pass} */\n IconNamesEnum[\"Pass\"] = \"pass\";\n /** {@link https://icons.getbootstrap.com/icons/patch-check-fill} */\n IconNamesEnum[\"PatchCheckFill\"] = \"patch-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/patch-check} */\n IconNamesEnum[\"PatchCheck\"] = \"patch-check\";\n /** {@link https://icons.getbootstrap.com/icons/patch-exclamation-fill} */\n IconNamesEnum[\"PatchExclamationFill\"] = \"patch-exclamation-fill\";\n /** {@link https://icons.getbootstrap.com/icons/patch-exclamation} */\n IconNamesEnum[\"PatchExclamation\"] = \"patch-exclamation\";\n /** {@link https://icons.getbootstrap.com/icons/patch-minus-fill} */\n IconNamesEnum[\"PatchMinusFill\"] = \"patch-minus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/patch-minus} */\n IconNamesEnum[\"PatchMinus\"] = \"patch-minus\";\n /** {@link https://icons.getbootstrap.com/icons/patch-plus-fill} */\n IconNamesEnum[\"PatchPlusFill\"] = \"patch-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/patch-plus} */\n IconNamesEnum[\"PatchPlus\"] = \"patch-plus\";\n /** {@link https://icons.getbootstrap.com/icons/patch-question-fill} */\n IconNamesEnum[\"PatchQuestionFill\"] = \"patch-question-fill\";\n /** {@link https://icons.getbootstrap.com/icons/patch-question} */\n IconNamesEnum[\"PatchQuestion\"] = \"patch-question\";\n /** {@link https://icons.getbootstrap.com/icons/pause-btn-fill} */\n IconNamesEnum[\"PauseBtnFill\"] = \"pause-btn-fill\";\n /** {@link https://icons.getbootstrap.com/icons/pause-btn} */\n IconNamesEnum[\"PauseBtn\"] = \"pause-btn\";\n /** {@link https://icons.getbootstrap.com/icons/pause-circle-fill} */\n IconNamesEnum[\"PauseCircleFill\"] = \"pause-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/pause-circle} */\n IconNamesEnum[\"PauseCircle\"] = \"pause-circle\";\n /** {@link https://icons.getbootstrap.com/icons/pause-fill} */\n IconNamesEnum[\"PauseFill\"] = \"pause-fill\";\n /** {@link https://icons.getbootstrap.com/icons/pause} */\n IconNamesEnum[\"Pause\"] = \"pause\";\n /** {@link https://icons.getbootstrap.com/icons/paypal} */\n IconNamesEnum[\"Paypal\"] = \"paypal\";\n /** {@link https://icons.getbootstrap.com/icons/pc-display-horizontal} */\n IconNamesEnum[\"PcDisplayHorizontal\"] = \"pc-display-horizontal\";\n /** {@link https://icons.getbootstrap.com/icons/pc-display} */\n IconNamesEnum[\"PcDisplay\"] = \"pc-display\";\n /** {@link https://icons.getbootstrap.com/icons/pc-horizontal} */\n IconNamesEnum[\"PcHorizontal\"] = \"pc-horizontal\";\n /** {@link https://icons.getbootstrap.com/icons/pc} */\n IconNamesEnum[\"Pc\"] = \"pc\";\n /** {@link https://icons.getbootstrap.com/icons/pci-card} */\n IconNamesEnum[\"PciCard\"] = \"pci-card\";\n /** {@link https://icons.getbootstrap.com/icons/peace-fill} */\n IconNamesEnum[\"PeaceFill\"] = \"peace-fill\";\n /** {@link https://icons.getbootstrap.com/icons/peace} */\n IconNamesEnum[\"Peace\"] = \"peace\";\n /** {@link https://icons.getbootstrap.com/icons/pen-fill} */\n IconNamesEnum[\"PenFill\"] = \"pen-fill\";\n /** {@link https://icons.getbootstrap.com/icons/pen} */\n IconNamesEnum[\"Pen\"] = \"pen\";\n /** {@link https://icons.getbootstrap.com/icons/pencil-fill} */\n IconNamesEnum[\"PencilFill\"] = \"pencil-fill\";\n /** {@link https://icons.getbootstrap.com/icons/pencil-square} */\n IconNamesEnum[\"PencilSquare\"] = \"pencil-square\";\n /** {@link https://icons.getbootstrap.com/icons/pencil} */\n IconNamesEnum[\"Pencil\"] = \"pencil\";\n /** {@link https://icons.getbootstrap.com/icons/pentagon-fill} */\n IconNamesEnum[\"PentagonFill\"] = \"pentagon-fill\";\n /** {@link https://icons.getbootstrap.com/icons/pentagon-half} */\n IconNamesEnum[\"PentagonHalf\"] = \"pentagon-half\";\n /** {@link https://icons.getbootstrap.com/icons/pentagon} */\n IconNamesEnum[\"Pentagon\"] = \"pentagon\";\n /** {@link https://icons.getbootstrap.com/icons/people-fill} */\n IconNamesEnum[\"PeopleFill\"] = \"people-fill\";\n /** {@link https://icons.getbootstrap.com/icons/people} */\n IconNamesEnum[\"People\"] = \"people\";\n /** {@link https://icons.getbootstrap.com/icons/percent} */\n IconNamesEnum[\"Percent\"] = \"percent\";\n /** {@link https://icons.getbootstrap.com/icons/person-add} */\n IconNamesEnum[\"PersonAdd\"] = \"person-add\";\n /** {@link https://icons.getbootstrap.com/icons/person-badge-fill} */\n IconNamesEnum[\"PersonBadgeFill\"] = \"person-badge-fill\";\n /** {@link https://icons.getbootstrap.com/icons/person-badge} */\n IconNamesEnum[\"PersonBadge\"] = \"person-badge\";\n /** {@link https://icons.getbootstrap.com/icons/person-bounding-box} */\n IconNamesEnum[\"PersonBoundingBox\"] = \"person-bounding-box\";\n /** {@link https://icons.getbootstrap.com/icons/person-check-fill} */\n IconNamesEnum[\"PersonCheckFill\"] = \"person-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/person-check} */\n IconNamesEnum[\"PersonCheck\"] = \"person-check\";\n /** {@link https://icons.getbootstrap.com/icons/person-circle} */\n IconNamesEnum[\"PersonCircle\"] = \"person-circle\";\n /** {@link https://icons.getbootstrap.com/icons/person-dash-fill} */\n IconNamesEnum[\"PersonDashFill\"] = \"person-dash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/person-dash} */\n IconNamesEnum[\"PersonDash\"] = \"person-dash\";\n /** {@link https://icons.getbootstrap.com/icons/person-down} */\n IconNamesEnum[\"PersonDown\"] = \"person-down\";\n /** {@link https://icons.getbootstrap.com/icons/person-exclamation} */\n IconNamesEnum[\"PersonExclamation\"] = \"person-exclamation\";\n /** {@link https://icons.getbootstrap.com/icons/person-fill-add} */\n IconNamesEnum[\"PersonFillAdd\"] = \"person-fill-add\";\n /** {@link https://icons.getbootstrap.com/icons/person-fill-check} */\n IconNamesEnum[\"PersonFillCheck\"] = \"person-fill-check\";\n /** {@link https://icons.getbootstrap.com/icons/person-fill-dash} */\n IconNamesEnum[\"PersonFillDash\"] = \"person-fill-dash\";\n /** {@link https://icons.getbootstrap.com/icons/person-fill-down} */\n IconNamesEnum[\"PersonFillDown\"] = \"person-fill-down\";\n /** {@link https://icons.getbootstrap.com/icons/person-fill-exclamation} */\n IconNamesEnum[\"PersonFillExclamation\"] = \"person-fill-exclamation\";\n /** {@link https://icons.getbootstrap.com/icons/person-fill-gear} */\n IconNamesEnum[\"PersonFillGear\"] = \"person-fill-gear\";\n /** {@link https://icons.getbootstrap.com/icons/person-fill-lock} */\n IconNamesEnum[\"PersonFillLock\"] = \"person-fill-lock\";\n /** {@link https://icons.getbootstrap.com/icons/person-fill-slash} */\n IconNamesEnum[\"PersonFillSlash\"] = \"person-fill-slash\";\n /** {@link https://icons.getbootstrap.com/icons/person-fill-up} */\n IconNamesEnum[\"PersonFillUp\"] = \"person-fill-up\";\n /** {@link https://icons.getbootstrap.com/icons/person-fill-x} */\n IconNamesEnum[\"PersonFillX\"] = \"person-fill-x\";\n /** {@link https://icons.getbootstrap.com/icons/person-fill} */\n IconNamesEnum[\"PersonFill\"] = \"person-fill\";\n /** {@link https://icons.getbootstrap.com/icons/person-gear} */\n IconNamesEnum[\"PersonGear\"] = \"person-gear\";\n /** {@link https://icons.getbootstrap.com/icons/person-heart} */\n IconNamesEnum[\"PersonHeart\"] = \"person-heart\";\n /** {@link https://icons.getbootstrap.com/icons/person-hearts} */\n IconNamesEnum[\"PersonHearts\"] = \"person-hearts\";\n /** {@link https://icons.getbootstrap.com/icons/person-lines-fill} */\n IconNamesEnum[\"PersonLinesFill\"] = \"person-lines-fill\";\n /** {@link https://icons.getbootstrap.com/icons/person-lock} */\n IconNamesEnum[\"PersonLock\"] = \"person-lock\";\n /** {@link https://icons.getbootstrap.com/icons/person-plus-fill} */\n IconNamesEnum[\"PersonPlusFill\"] = \"person-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/person-plus} */\n IconNamesEnum[\"PersonPlus\"] = \"person-plus\";\n /** {@link https://icons.getbootstrap.com/icons/person-rolodex} */\n IconNamesEnum[\"PersonRolodex\"] = \"person-rolodex\";\n /** {@link https://icons.getbootstrap.com/icons/person-slash} */\n IconNamesEnum[\"PersonSlash\"] = \"person-slash\";\n /** {@link https://icons.getbootstrap.com/icons/person-square} */\n IconNamesEnum[\"PersonSquare\"] = \"person-square\";\n /** {@link https://icons.getbootstrap.com/icons/person-up} */\n IconNamesEnum[\"PersonUp\"] = \"person-up\";\n /** {@link https://icons.getbootstrap.com/icons/person-vcard-fill} */\n IconNamesEnum[\"PersonVcardFill\"] = \"person-vcard-fill\";\n /** {@link https://icons.getbootstrap.com/icons/person-vcard} */\n IconNamesEnum[\"PersonVcard\"] = \"person-vcard\";\n /** {@link https://icons.getbootstrap.com/icons/person-video} */\n IconNamesEnum[\"PersonVideo\"] = \"person-video\";\n /** {@link https://icons.getbootstrap.com/icons/person-video2} */\n IconNamesEnum[\"PersonVideo2\"] = \"person-video2\";\n /** {@link https://icons.getbootstrap.com/icons/person-video3} */\n IconNamesEnum[\"PersonVideo3\"] = \"person-video3\";\n /** {@link https://icons.getbootstrap.com/icons/person-workspace} */\n IconNamesEnum[\"PersonWorkspace\"] = \"person-workspace\";\n /** {@link https://icons.getbootstrap.com/icons/person-x-fill} */\n IconNamesEnum[\"PersonXFill\"] = \"person-x-fill\";\n /** {@link https://icons.getbootstrap.com/icons/person-x} */\n IconNamesEnum[\"PersonX\"] = \"person-x\";\n /** {@link https://icons.getbootstrap.com/icons/person} */\n IconNamesEnum[\"Person\"] = \"person\";\n /** {@link https://icons.getbootstrap.com/icons/phone-fill} */\n IconNamesEnum[\"PhoneFill\"] = \"phone-fill\";\n /** {@link https://icons.getbootstrap.com/icons/phone-flip} */\n IconNamesEnum[\"PhoneFlip\"] = \"phone-flip\";\n /** {@link https://icons.getbootstrap.com/icons/phone-landscape-fill} */\n IconNamesEnum[\"PhoneLandscapeFill\"] = \"phone-landscape-fill\";\n /** {@link https://icons.getbootstrap.com/icons/phone-landscape} */\n IconNamesEnum[\"PhoneLandscape\"] = \"phone-landscape\";\n /** {@link https://icons.getbootstrap.com/icons/phone-vibrate-fill} */\n IconNamesEnum[\"PhoneVibrateFill\"] = \"phone-vibrate-fill\";\n /** {@link https://icons.getbootstrap.com/icons/phone-vibrate} */\n IconNamesEnum[\"PhoneVibrate\"] = \"phone-vibrate\";\n /** {@link https://icons.getbootstrap.com/icons/phone} */\n IconNamesEnum[\"Phone\"] = \"phone\";\n /** {@link https://icons.getbootstrap.com/icons/pie-chart-fill} */\n IconNamesEnum[\"PieChartFill\"] = \"pie-chart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/pie-chart} */\n IconNamesEnum[\"PieChart\"] = \"pie-chart\";\n /** {@link https://icons.getbootstrap.com/icons/piggy-bank-fill} */\n IconNamesEnum[\"PiggyBankFill\"] = \"piggy-bank-fill\";\n /** {@link https://icons.getbootstrap.com/icons/piggy-bank} */\n IconNamesEnum[\"PiggyBank\"] = \"piggy-bank\";\n /** {@link https://icons.getbootstrap.com/icons/pin-angle-fill} */\n IconNamesEnum[\"PinAngleFill\"] = \"pin-angle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/pin-angle} */\n IconNamesEnum[\"PinAngle\"] = \"pin-angle\";\n /** {@link https://icons.getbootstrap.com/icons/pin-fill} */\n IconNamesEnum[\"PinFill\"] = \"pin-fill\";\n /** {@link https://icons.getbootstrap.com/icons/pin-map-fill} */\n IconNamesEnum[\"PinMapFill\"] = \"pin-map-fill\";\n /** {@link https://icons.getbootstrap.com/icons/pin-map} */\n IconNamesEnum[\"PinMap\"] = \"pin-map\";\n /** {@link https://icons.getbootstrap.com/icons/pin} */\n IconNamesEnum[\"Pin\"] = \"pin\";\n /** {@link https://icons.getbootstrap.com/icons/pinterest} */\n IconNamesEnum[\"Pinterest\"] = \"pinterest\";\n /** {@link https://icons.getbootstrap.com/icons/pip-fill} */\n IconNamesEnum[\"PipFill\"] = \"pip-fill\";\n /** {@link https://icons.getbootstrap.com/icons/pip} */\n IconNamesEnum[\"Pip\"] = \"pip\";\n /** {@link https://icons.getbootstrap.com/icons/play-btn-fill} */\n IconNamesEnum[\"PlayBtnFill\"] = \"play-btn-fill\";\n /** {@link https://icons.getbootstrap.com/icons/play-btn} */\n IconNamesEnum[\"PlayBtn\"] = \"play-btn\";\n /** {@link https://icons.getbootstrap.com/icons/play-circle-fill} */\n IconNamesEnum[\"PlayCircleFill\"] = \"play-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/play-circle} */\n IconNamesEnum[\"PlayCircle\"] = \"play-circle\";\n /** {@link https://icons.getbootstrap.com/icons/play-fill} */\n IconNamesEnum[\"PlayFill\"] = \"play-fill\";\n /** {@link https://icons.getbootstrap.com/icons/play} */\n IconNamesEnum[\"Play\"] = \"play\";\n /** {@link https://icons.getbootstrap.com/icons/playstation} */\n IconNamesEnum[\"Playstation\"] = \"playstation\";\n /** {@link https://icons.getbootstrap.com/icons/plug-fill} */\n IconNamesEnum[\"PlugFill\"] = \"plug-fill\";\n /** {@link https://icons.getbootstrap.com/icons/plug} */\n IconNamesEnum[\"Plug\"] = \"plug\";\n /** {@link https://icons.getbootstrap.com/icons/plugin} */\n IconNamesEnum[\"Plugin\"] = \"plugin\";\n /** {@link https://icons.getbootstrap.com/icons/plus-circle-dotted} */\n IconNamesEnum[\"PlusCircleDotted\"] = \"plus-circle-dotted\";\n /** {@link https://icons.getbootstrap.com/icons/plus-circle-fill} */\n IconNamesEnum[\"PlusCircleFill\"] = \"plus-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/plus-circle} */\n IconNamesEnum[\"PlusCircle\"] = \"plus-circle\";\n /** {@link https://icons.getbootstrap.com/icons/plus-lg} */\n IconNamesEnum[\"PlusLg\"] = \"plus-lg\";\n /** {@link https://icons.getbootstrap.com/icons/plus-slash-minus} */\n IconNamesEnum[\"PlusSlashMinus\"] = \"plus-slash-minus\";\n /** {@link https://icons.getbootstrap.com/icons/plus-square-dotted} */\n IconNamesEnum[\"PlusSquareDotted\"] = \"plus-square-dotted\";\n /** {@link https://icons.getbootstrap.com/icons/plus-square-fill} */\n IconNamesEnum[\"PlusSquareFill\"] = \"plus-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/plus-square} */\n IconNamesEnum[\"PlusSquare\"] = \"plus-square\";\n /** {@link https://icons.getbootstrap.com/icons/plus} */\n IconNamesEnum[\"Plus\"] = \"plus\";\n /** {@link https://icons.getbootstrap.com/icons/postage-fill} */\n IconNamesEnum[\"PostageFill\"] = \"postage-fill\";\n /** {@link https://icons.getbootstrap.com/icons/postage-heart-fill} */\n IconNamesEnum[\"PostageHeartFill\"] = \"postage-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/postage-heart} */\n IconNamesEnum[\"PostageHeart\"] = \"postage-heart\";\n /** {@link https://icons.getbootstrap.com/icons/postage} */\n IconNamesEnum[\"Postage\"] = \"postage\";\n /** {@link https://icons.getbootstrap.com/icons/postcard-fill} */\n IconNamesEnum[\"PostcardFill\"] = \"postcard-fill\";\n /** {@link https://icons.getbootstrap.com/icons/postcard-heart-fill} */\n IconNamesEnum[\"PostcardHeartFill\"] = \"postcard-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/postcard-heart} */\n IconNamesEnum[\"PostcardHeart\"] = \"postcard-heart\";\n /** {@link https://icons.getbootstrap.com/icons/postcard} */\n IconNamesEnum[\"Postcard\"] = \"postcard\";\n /** {@link https://icons.getbootstrap.com/icons/power} */\n IconNamesEnum[\"Power\"] = \"power\";\n /** {@link https://icons.getbootstrap.com/icons/prescription} */\n IconNamesEnum[\"Prescription\"] = \"prescription\";\n /** {@link https://icons.getbootstrap.com/icons/prescription2} */\n IconNamesEnum[\"Prescription2\"] = \"prescription2\";\n /** {@link https://icons.getbootstrap.com/icons/printer-fill} */\n IconNamesEnum[\"PrinterFill\"] = \"printer-fill\";\n /** {@link https://icons.getbootstrap.com/icons/printer} */\n IconNamesEnum[\"Printer\"] = \"printer\";\n /** {@link https://icons.getbootstrap.com/icons/projector-fill} */\n IconNamesEnum[\"ProjectorFill\"] = \"projector-fill\";\n /** {@link https://icons.getbootstrap.com/icons/projector} */\n IconNamesEnum[\"Projector\"] = \"projector\";\n /** {@link https://icons.getbootstrap.com/icons/puzzle-fill} */\n IconNamesEnum[\"PuzzleFill\"] = \"puzzle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/puzzle} */\n IconNamesEnum[\"Puzzle\"] = \"puzzle\";\n /** {@link https://icons.getbootstrap.com/icons/qr-code-scan} */\n IconNamesEnum[\"QrCodeScan\"] = \"qr-code-scan\";\n /** {@link https://icons.getbootstrap.com/icons/qr-code} */\n IconNamesEnum[\"QrCode\"] = \"qr-code\";\n /** {@link https://icons.getbootstrap.com/icons/question-circle-fill} */\n IconNamesEnum[\"QuestionCircleFill\"] = \"question-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/question-circle} */\n IconNamesEnum[\"QuestionCircle\"] = \"question-circle\";\n /** {@link https://icons.getbootstrap.com/icons/question-diamond-fill} */\n IconNamesEnum[\"QuestionDiamondFill\"] = \"question-diamond-fill\";\n /** {@link https://icons.getbootstrap.com/icons/question-diamond} */\n IconNamesEnum[\"QuestionDiamond\"] = \"question-diamond\";\n /** {@link https://icons.getbootstrap.com/icons/question-lg} */\n IconNamesEnum[\"QuestionLg\"] = \"question-lg\";\n /** {@link https://icons.getbootstrap.com/icons/question-octagon-fill} */\n IconNamesEnum[\"QuestionOctagonFill\"] = \"question-octagon-fill\";\n /** {@link https://icons.getbootstrap.com/icons/question-octagon} */\n IconNamesEnum[\"QuestionOctagon\"] = \"question-octagon\";\n /** {@link https://icons.getbootstrap.com/icons/question-square-fill} */\n IconNamesEnum[\"QuestionSquareFill\"] = \"question-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/question-square} */\n IconNamesEnum[\"QuestionSquare\"] = \"question-square\";\n /** {@link https://icons.getbootstrap.com/icons/question} */\n IconNamesEnum[\"Question\"] = \"question\";\n /** {@link https://icons.getbootstrap.com/icons/quora} */\n IconNamesEnum[\"Quora\"] = \"quora\";\n /** {@link https://icons.getbootstrap.com/icons/quote} */\n IconNamesEnum[\"Quote\"] = \"quote\";\n /** {@link https://icons.getbootstrap.com/icons/r-circle-fill} */\n IconNamesEnum[\"RCircleFill\"] = \"r-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/r-circle} */\n IconNamesEnum[\"RCircle\"] = \"r-circle\";\n /** {@link https://icons.getbootstrap.com/icons/r-square-fill} */\n IconNamesEnum[\"RSquareFill\"] = \"r-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/r-square} */\n IconNamesEnum[\"RSquare\"] = \"r-square\";\n /** {@link https://icons.getbootstrap.com/icons/radioactive} */\n IconNamesEnum[\"Radioactive\"] = \"radioactive\";\n /** {@link https://icons.getbootstrap.com/icons/rainbow} */\n IconNamesEnum[\"Rainbow\"] = \"rainbow\";\n /** {@link https://icons.getbootstrap.com/icons/receipt-cutoff} */\n IconNamesEnum[\"ReceiptCutoff\"] = \"receipt-cutoff\";\n /** {@link https://icons.getbootstrap.com/icons/receipt} */\n IconNamesEnum[\"Receipt\"] = \"receipt\";\n /** {@link https://icons.getbootstrap.com/icons/reception-0} */\n IconNamesEnum[\"Reception0\"] = \"reception-0\";\n /** {@link https://icons.getbootstrap.com/icons/reception-1} */\n IconNamesEnum[\"Reception1\"] = \"reception-1\";\n /** {@link https://icons.getbootstrap.com/icons/reception-2} */\n IconNamesEnum[\"Reception2\"] = \"reception-2\";\n /** {@link https://icons.getbootstrap.com/icons/reception-3} */\n IconNamesEnum[\"Reception3\"] = \"reception-3\";\n /** {@link https://icons.getbootstrap.com/icons/reception-4} */\n IconNamesEnum[\"Reception4\"] = \"reception-4\";\n /** {@link https://icons.getbootstrap.com/icons/record-btn-fill} */\n IconNamesEnum[\"RecordBtnFill\"] = \"record-btn-fill\";\n /** {@link https://icons.getbootstrap.com/icons/record-btn} */\n IconNamesEnum[\"RecordBtn\"] = \"record-btn\";\n /** {@link https://icons.getbootstrap.com/icons/record-circle-fill} */\n IconNamesEnum[\"RecordCircleFill\"] = \"record-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/record-circle} */\n IconNamesEnum[\"RecordCircle\"] = \"record-circle\";\n /** {@link https://icons.getbootstrap.com/icons/record-fill} */\n IconNamesEnum[\"RecordFill\"] = \"record-fill\";\n /** {@link https://icons.getbootstrap.com/icons/record} */\n IconNamesEnum[\"Record\"] = \"record\";\n /** {@link https://icons.getbootstrap.com/icons/record2-fill} */\n IconNamesEnum[\"Record2Fill\"] = \"record2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/record2} */\n IconNamesEnum[\"Record2\"] = \"record2\";\n /** {@link https://icons.getbootstrap.com/icons/recycle} */\n IconNamesEnum[\"Recycle\"] = \"recycle\";\n /** {@link https://icons.getbootstrap.com/icons/reddit} */\n IconNamesEnum[\"Reddit\"] = \"reddit\";\n /** {@link https://icons.getbootstrap.com/icons/regex} */\n IconNamesEnum[\"Regex\"] = \"regex\";\n /** {@link https://icons.getbootstrap.com/icons/repeat-1} */\n IconNamesEnum[\"Repeat1\"] = \"repeat-1\";\n /** {@link https://icons.getbootstrap.com/icons/repeat} */\n IconNamesEnum[\"Repeat\"] = \"repeat\";\n /** {@link https://icons.getbootstrap.com/icons/reply-all-fill} */\n IconNamesEnum[\"ReplyAllFill\"] = \"reply-all-fill\";\n /** {@link https://icons.getbootstrap.com/icons/reply-all} */\n IconNamesEnum[\"ReplyAll\"] = \"reply-all\";\n /** {@link https://icons.getbootstrap.com/icons/reply-fill} */\n IconNamesEnum[\"ReplyFill\"] = \"reply-fill\";\n /** {@link https://icons.getbootstrap.com/icons/reply} */\n IconNamesEnum[\"Reply\"] = \"reply\";\n /** {@link https://icons.getbootstrap.com/icons/rewind-btn-fill} */\n IconNamesEnum[\"RewindBtnFill\"] = \"rewind-btn-fill\";\n /** {@link https://icons.getbootstrap.com/icons/rewind-btn} */\n IconNamesEnum[\"RewindBtn\"] = \"rewind-btn\";\n /** {@link https://icons.getbootstrap.com/icons/rewind-circle-fill} */\n IconNamesEnum[\"RewindCircleFill\"] = \"rewind-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/rewind-circle} */\n IconNamesEnum[\"RewindCircle\"] = \"rewind-circle\";\n /** {@link https://icons.getbootstrap.com/icons/rewind-fill} */\n IconNamesEnum[\"RewindFill\"] = \"rewind-fill\";\n /** {@link https://icons.getbootstrap.com/icons/rewind} */\n IconNamesEnum[\"Rewind\"] = \"rewind\";\n /** {@link https://icons.getbootstrap.com/icons/robot} */\n IconNamesEnum[\"Robot\"] = \"robot\";\n /** {@link https://icons.getbootstrap.com/icons/rocket-fill} */\n IconNamesEnum[\"RocketFill\"] = \"rocket-fill\";\n /** {@link https://icons.getbootstrap.com/icons/rocket-takeoff-fill} */\n IconNamesEnum[\"RocketTakeoffFill\"] = \"rocket-takeoff-fill\";\n /** {@link https://icons.getbootstrap.com/icons/rocket-takeoff} */\n IconNamesEnum[\"RocketTakeoff\"] = \"rocket-takeoff\";\n /** {@link https://icons.getbootstrap.com/icons/rocket} */\n IconNamesEnum[\"Rocket\"] = \"rocket\";\n /** {@link https://icons.getbootstrap.com/icons/router-fill} */\n IconNamesEnum[\"RouterFill\"] = \"router-fill\";\n /** {@link https://icons.getbootstrap.com/icons/router} */\n IconNamesEnum[\"Router\"] = \"router\";\n /** {@link https://icons.getbootstrap.com/icons/rss-fill} */\n IconNamesEnum[\"RssFill\"] = \"rss-fill\";\n /** {@link https://icons.getbootstrap.com/icons/rss} */\n IconNamesEnum[\"Rss\"] = \"rss\";\n /** {@link https://icons.getbootstrap.com/icons/rulers} */\n IconNamesEnum[\"Rulers\"] = \"rulers\";\n /** {@link https://icons.getbootstrap.com/icons/safe-fill} */\n IconNamesEnum[\"SafeFill\"] = \"safe-fill\";\n /** {@link https://icons.getbootstrap.com/icons/safe} */\n IconNamesEnum[\"Safe\"] = \"safe\";\n /** {@link https://icons.getbootstrap.com/icons/safe2-fill} */\n IconNamesEnum[\"Safe2Fill\"] = \"safe2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/safe2} */\n IconNamesEnum[\"Safe2\"] = \"safe2\";\n /** {@link https://icons.getbootstrap.com/icons/save-fill} */\n IconNamesEnum[\"SaveFill\"] = \"save-fill\";\n /** {@link https://icons.getbootstrap.com/icons/save} */\n IconNamesEnum[\"Save\"] = \"save\";\n /** {@link https://icons.getbootstrap.com/icons/save2-fill} */\n IconNamesEnum[\"Save2Fill\"] = \"save2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/save2} */\n IconNamesEnum[\"Save2\"] = \"save2\";\n /** {@link https://icons.getbootstrap.com/icons/scissors} */\n IconNamesEnum[\"Scissors\"] = \"scissors\";\n /** {@link https://icons.getbootstrap.com/icons/scooter} */\n IconNamesEnum[\"Scooter\"] = \"scooter\";\n /** {@link https://icons.getbootstrap.com/icons/screwdriver} */\n IconNamesEnum[\"Screwdriver\"] = \"screwdriver\";\n /** {@link https://icons.getbootstrap.com/icons/sd-card-fill} */\n IconNamesEnum[\"SdCardFill\"] = \"sd-card-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sd-card} */\n IconNamesEnum[\"SdCard\"] = \"sd-card\";\n /** {@link https://icons.getbootstrap.com/icons/search-heart-fill} */\n IconNamesEnum[\"SearchHeartFill\"] = \"search-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/search-heart} */\n IconNamesEnum[\"SearchHeart\"] = \"search-heart\";\n /** {@link https://icons.getbootstrap.com/icons/search} */\n IconNamesEnum[\"Search\"] = \"search\";\n /** {@link https://icons.getbootstrap.com/icons/segmented-nav} */\n IconNamesEnum[\"SegmentedNav\"] = \"segmented-nav\";\n /** {@link https://icons.getbootstrap.com/icons/send-check-fill} */\n IconNamesEnum[\"SendCheckFill\"] = \"send-check-fill\";\n /** {@link https://icons.getbootstrap.com/icons/send-check} */\n IconNamesEnum[\"SendCheck\"] = \"send-check\";\n /** {@link https://icons.getbootstrap.com/icons/send-dash-fill} */\n IconNamesEnum[\"SendDashFill\"] = \"send-dash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/send-dash} */\n IconNamesEnum[\"SendDash\"] = \"send-dash\";\n /** {@link https://icons.getbootstrap.com/icons/send-exclamation-fill} */\n IconNamesEnum[\"SendExclamationFill\"] = \"send-exclamation-fill\";\n /** {@link https://icons.getbootstrap.com/icons/send-exclamation} */\n IconNamesEnum[\"SendExclamation\"] = \"send-exclamation\";\n /** {@link https://icons.getbootstrap.com/icons/send-fill} */\n IconNamesEnum[\"SendFill\"] = \"send-fill\";\n /** {@link https://icons.getbootstrap.com/icons/send-plus-fill} */\n IconNamesEnum[\"SendPlusFill\"] = \"send-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/send-plus} */\n IconNamesEnum[\"SendPlus\"] = \"send-plus\";\n /** {@link https://icons.getbootstrap.com/icons/send-slash-fill} */\n IconNamesEnum[\"SendSlashFill\"] = \"send-slash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/send-slash} */\n IconNamesEnum[\"SendSlash\"] = \"send-slash\";\n /** {@link https://icons.getbootstrap.com/icons/send-x-fill} */\n IconNamesEnum[\"SendXFill\"] = \"send-x-fill\";\n /** {@link https://icons.getbootstrap.com/icons/send-x} */\n IconNamesEnum[\"SendX\"] = \"send-x\";\n /** {@link https://icons.getbootstrap.com/icons/send} */\n IconNamesEnum[\"Send\"] = \"send\";\n /** {@link https://icons.getbootstrap.com/icons/server} */\n IconNamesEnum[\"Server\"] = \"server\";\n /** {@link https://icons.getbootstrap.com/icons/share-fill} */\n IconNamesEnum[\"ShareFill\"] = \"share-fill\";\n /** {@link https://icons.getbootstrap.com/icons/share} */\n IconNamesEnum[\"Share\"] = \"share\";\n /** {@link https://icons.getbootstrap.com/icons/shield-check} */\n IconNamesEnum[\"ShieldCheck\"] = \"shield-check\";\n /** {@link https://icons.getbootstrap.com/icons/shield-exclamation} */\n IconNamesEnum[\"ShieldExclamation\"] = \"shield-exclamation\";\n /** {@link https://icons.getbootstrap.com/icons/shield-fill-check} */\n IconNamesEnum[\"ShieldFillCheck\"] = \"shield-fill-check\";\n /** {@link https://icons.getbootstrap.com/icons/shield-fill-exclamation} */\n IconNamesEnum[\"ShieldFillExclamation\"] = \"shield-fill-exclamation\";\n /** {@link https://icons.getbootstrap.com/icons/shield-fill-minus} */\n IconNamesEnum[\"ShieldFillMinus\"] = \"shield-fill-minus\";\n /** {@link https://icons.getbootstrap.com/icons/shield-fill-plus} */\n IconNamesEnum[\"ShieldFillPlus\"] = \"shield-fill-plus\";\n /** {@link https://icons.getbootstrap.com/icons/shield-fill-x} */\n IconNamesEnum[\"ShieldFillX\"] = \"shield-fill-x\";\n /** {@link https://icons.getbootstrap.com/icons/shield-fill} */\n IconNamesEnum[\"ShieldFill\"] = \"shield-fill\";\n /** {@link https://icons.getbootstrap.com/icons/shield-lock-fill} */\n IconNamesEnum[\"ShieldLockFill\"] = \"shield-lock-fill\";\n /** {@link https://icons.getbootstrap.com/icons/shield-lock} */\n IconNamesEnum[\"ShieldLock\"] = \"shield-lock\";\n /** {@link https://icons.getbootstrap.com/icons/shield-minus} */\n IconNamesEnum[\"ShieldMinus\"] = \"shield-minus\";\n /** {@link https://icons.getbootstrap.com/icons/shield-plus} */\n IconNamesEnum[\"ShieldPlus\"] = \"shield-plus\";\n /** {@link https://icons.getbootstrap.com/icons/shield-shaded} */\n IconNamesEnum[\"ShieldShaded\"] = \"shield-shaded\";\n /** {@link https://icons.getbootstrap.com/icons/shield-slash-fill} */\n IconNamesEnum[\"ShieldSlashFill\"] = \"shield-slash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/shield-slash} */\n IconNamesEnum[\"ShieldSlash\"] = \"shield-slash\";\n /** {@link https://icons.getbootstrap.com/icons/shield-x} */\n IconNamesEnum[\"ShieldX\"] = \"shield-x\";\n /** {@link https://icons.getbootstrap.com/icons/shield} */\n IconNamesEnum[\"Shield\"] = \"shield\";\n /** {@link https://icons.getbootstrap.com/icons/shift-fill} */\n IconNamesEnum[\"ShiftFill\"] = \"shift-fill\";\n /** {@link https://icons.getbootstrap.com/icons/shift} */\n IconNamesEnum[\"Shift\"] = \"shift\";\n /** {@link https://icons.getbootstrap.com/icons/shop-window} */\n IconNamesEnum[\"ShopWindow\"] = \"shop-window\";\n /** {@link https://icons.getbootstrap.com/icons/shop} */\n IconNamesEnum[\"Shop\"] = \"shop\";\n /** {@link https://icons.getbootstrap.com/icons/shuffle} */\n IconNamesEnum[\"Shuffle\"] = \"shuffle\";\n /** {@link https://icons.getbootstrap.com/icons/sign-dead-end-fill} */\n IconNamesEnum[\"SignDeadEndFill\"] = \"sign-dead-end-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-dead-end} */\n IconNamesEnum[\"SignDeadEnd\"] = \"sign-dead-end\";\n /** {@link https://icons.getbootstrap.com/icons/sign-do-not-enter-fill} */\n IconNamesEnum[\"SignDoNotEnterFill\"] = \"sign-do-not-enter-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-do-not-enter} */\n IconNamesEnum[\"SignDoNotEnter\"] = \"sign-do-not-enter\";\n /** {@link https://icons.getbootstrap.com/icons/sign-intersection-fill} */\n IconNamesEnum[\"SignIntersectionFill\"] = \"sign-intersection-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-intersection-side-fill} */\n IconNamesEnum[\"SignIntersectionSideFill\"] = \"sign-intersection-side-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-intersection-side} */\n IconNamesEnum[\"SignIntersectionSide\"] = \"sign-intersection-side\";\n /** {@link https://icons.getbootstrap.com/icons/sign-intersection-t-fill} */\n IconNamesEnum[\"SignIntersectionTFill\"] = \"sign-intersection-t-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-intersection-t} */\n IconNamesEnum[\"SignIntersectionT\"] = \"sign-intersection-t\";\n /** {@link https://icons.getbootstrap.com/icons/sign-intersection-y-fill} */\n IconNamesEnum[\"SignIntersectionYFill\"] = \"sign-intersection-y-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-intersection-y} */\n IconNamesEnum[\"SignIntersectionY\"] = \"sign-intersection-y\";\n /** {@link https://icons.getbootstrap.com/icons/sign-intersection} */\n IconNamesEnum[\"SignIntersection\"] = \"sign-intersection\";\n /** {@link https://icons.getbootstrap.com/icons/sign-merge-left-fill} */\n IconNamesEnum[\"SignMergeLeftFill\"] = \"sign-merge-left-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-merge-left} */\n IconNamesEnum[\"SignMergeLeft\"] = \"sign-merge-left\";\n /** {@link https://icons.getbootstrap.com/icons/sign-merge-right-fill} */\n IconNamesEnum[\"SignMergeRightFill\"] = \"sign-merge-right-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-merge-right} */\n IconNamesEnum[\"SignMergeRight\"] = \"sign-merge-right\";\n /** {@link https://icons.getbootstrap.com/icons/sign-no-left-turn-fill} */\n IconNamesEnum[\"SignNoLeftTurnFill\"] = \"sign-no-left-turn-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-no-left-turn} */\n IconNamesEnum[\"SignNoLeftTurn\"] = \"sign-no-left-turn\";\n /** {@link https://icons.getbootstrap.com/icons/sign-no-parking-fill} */\n IconNamesEnum[\"SignNoParkingFill\"] = \"sign-no-parking-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-no-parking} */\n IconNamesEnum[\"SignNoParking\"] = \"sign-no-parking\";\n /** {@link https://icons.getbootstrap.com/icons/sign-no-right-turn-fill} */\n IconNamesEnum[\"SignNoRightTurnFill\"] = \"sign-no-right-turn-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-no-right-turn} */\n IconNamesEnum[\"SignNoRightTurn\"] = \"sign-no-right-turn\";\n /** {@link https://icons.getbootstrap.com/icons/sign-railroad-fill} */\n IconNamesEnum[\"SignRailroadFill\"] = \"sign-railroad-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-railroad} */\n IconNamesEnum[\"SignRailroad\"] = \"sign-railroad\";\n /** {@link https://icons.getbootstrap.com/icons/sign-stop-fill} */\n IconNamesEnum[\"SignStopFill\"] = \"sign-stop-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-stop-lights-fill} */\n IconNamesEnum[\"SignStopLightsFill\"] = \"sign-stop-lights-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-stop-lights} */\n IconNamesEnum[\"SignStopLights\"] = \"sign-stop-lights\";\n /** {@link https://icons.getbootstrap.com/icons/sign-stop} */\n IconNamesEnum[\"SignStop\"] = \"sign-stop\";\n /** {@link https://icons.getbootstrap.com/icons/sign-turn-left-fill} */\n IconNamesEnum[\"SignTurnLeftFill\"] = \"sign-turn-left-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-turn-left} */\n IconNamesEnum[\"SignTurnLeft\"] = \"sign-turn-left\";\n /** {@link https://icons.getbootstrap.com/icons/sign-turn-right-fill} */\n IconNamesEnum[\"SignTurnRightFill\"] = \"sign-turn-right-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-turn-right} */\n IconNamesEnum[\"SignTurnRight\"] = \"sign-turn-right\";\n /** {@link https://icons.getbootstrap.com/icons/sign-turn-slight-left-fill} */\n IconNamesEnum[\"SignTurnSlightLeftFill\"] = \"sign-turn-slight-left-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-turn-slight-left} */\n IconNamesEnum[\"SignTurnSlightLeft\"] = \"sign-turn-slight-left\";\n /** {@link https://icons.getbootstrap.com/icons/sign-turn-slight-right-fill} */\n IconNamesEnum[\"SignTurnSlightRightFill\"] = \"sign-turn-slight-right-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-turn-slight-right} */\n IconNamesEnum[\"SignTurnSlightRight\"] = \"sign-turn-slight-right\";\n /** {@link https://icons.getbootstrap.com/icons/sign-yield-fill} */\n IconNamesEnum[\"SignYieldFill\"] = \"sign-yield-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sign-yield} */\n IconNamesEnum[\"SignYield\"] = \"sign-yield\";\n /** {@link https://icons.getbootstrap.com/icons/signal} */\n IconNamesEnum[\"Signal\"] = \"signal\";\n /** {@link https://icons.getbootstrap.com/icons/signpost-2-fill} */\n IconNamesEnum[\"Signpost2Fill\"] = \"signpost-2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/signpost-2} */\n IconNamesEnum[\"Signpost2\"] = \"signpost-2\";\n /** {@link https://icons.getbootstrap.com/icons/signpost-fill} */\n IconNamesEnum[\"SignpostFill\"] = \"signpost-fill\";\n /** {@link https://icons.getbootstrap.com/icons/signpost-split-fill} */\n IconNamesEnum[\"SignpostSplitFill\"] = \"signpost-split-fill\";\n /** {@link https://icons.getbootstrap.com/icons/signpost-split} */\n IconNamesEnum[\"SignpostSplit\"] = \"signpost-split\";\n /** {@link https://icons.getbootstrap.com/icons/signpost} */\n IconNamesEnum[\"Signpost\"] = \"signpost\";\n /** {@link https://icons.getbootstrap.com/icons/sim-fill} */\n IconNamesEnum[\"SimFill\"] = \"sim-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sim} */\n IconNamesEnum[\"Sim\"] = \"sim\";\n /** {@link https://icons.getbootstrap.com/icons/sina-weibo} */\n IconNamesEnum[\"SinaWeibo\"] = \"sina-weibo\";\n /** {@link https://icons.getbootstrap.com/icons/skip-backward-btn-fill} */\n IconNamesEnum[\"SkipBackwardBtnFill\"] = \"skip-backward-btn-fill\";\n /** {@link https://icons.getbootstrap.com/icons/skip-backward-btn} */\n IconNamesEnum[\"SkipBackwardBtn\"] = \"skip-backward-btn\";\n /** {@link https://icons.getbootstrap.com/icons/skip-backward-circle-fill} */\n IconNamesEnum[\"SkipBackwardCircleFill\"] = \"skip-backward-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/skip-backward-circle} */\n IconNamesEnum[\"SkipBackwardCircle\"] = \"skip-backward-circle\";\n /** {@link https://icons.getbootstrap.com/icons/skip-backward-fill} */\n IconNamesEnum[\"SkipBackwardFill\"] = \"skip-backward-fill\";\n /** {@link https://icons.getbootstrap.com/icons/skip-backward} */\n IconNamesEnum[\"SkipBackward\"] = \"skip-backward\";\n /** {@link https://icons.getbootstrap.com/icons/skip-end-btn-fill} */\n IconNamesEnum[\"SkipEndBtnFill\"] = \"skip-end-btn-fill\";\n /** {@link https://icons.getbootstrap.com/icons/skip-end-btn} */\n IconNamesEnum[\"SkipEndBtn\"] = \"skip-end-btn\";\n /** {@link https://icons.getbootstrap.com/icons/skip-end-circle-fill} */\n IconNamesEnum[\"SkipEndCircleFill\"] = \"skip-end-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/skip-end-circle} */\n IconNamesEnum[\"SkipEndCircle\"] = \"skip-end-circle\";\n /** {@link https://icons.getbootstrap.com/icons/skip-end-fill} */\n IconNamesEnum[\"SkipEndFill\"] = \"skip-end-fill\";\n /** {@link https://icons.getbootstrap.com/icons/skip-end} */\n IconNamesEnum[\"SkipEnd\"] = \"skip-end\";\n /** {@link https://icons.getbootstrap.com/icons/skip-forward-btn-fill} */\n IconNamesEnum[\"SkipForwardBtnFill\"] = \"skip-forward-btn-fill\";\n /** {@link https://icons.getbootstrap.com/icons/skip-forward-btn} */\n IconNamesEnum[\"SkipForwardBtn\"] = \"skip-forward-btn\";\n /** {@link https://icons.getbootstrap.com/icons/skip-forward-circle-fill} */\n IconNamesEnum[\"SkipForwardCircleFill\"] = \"skip-forward-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/skip-forward-circle} */\n IconNamesEnum[\"SkipForwardCircle\"] = \"skip-forward-circle\";\n /** {@link https://icons.getbootstrap.com/icons/skip-forward-fill} */\n IconNamesEnum[\"SkipForwardFill\"] = \"skip-forward-fill\";\n /** {@link https://icons.getbootstrap.com/icons/skip-forward} */\n IconNamesEnum[\"SkipForward\"] = \"skip-forward\";\n /** {@link https://icons.getbootstrap.com/icons/skip-start-btn-fill} */\n IconNamesEnum[\"SkipStartBtnFill\"] = \"skip-start-btn-fill\";\n /** {@link https://icons.getbootstrap.com/icons/skip-start-btn} */\n IconNamesEnum[\"SkipStartBtn\"] = \"skip-start-btn\";\n /** {@link https://icons.getbootstrap.com/icons/skip-start-circle-fill} */\n IconNamesEnum[\"SkipStartCircleFill\"] = \"skip-start-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/skip-start-circle} */\n IconNamesEnum[\"SkipStartCircle\"] = \"skip-start-circle\";\n /** {@link https://icons.getbootstrap.com/icons/skip-start-fill} */\n IconNamesEnum[\"SkipStartFill\"] = \"skip-start-fill\";\n /** {@link https://icons.getbootstrap.com/icons/skip-start} */\n IconNamesEnum[\"SkipStart\"] = \"skip-start\";\n /** {@link https://icons.getbootstrap.com/icons/skype} */\n IconNamesEnum[\"Skype\"] = \"skype\";\n /** {@link https://icons.getbootstrap.com/icons/slack} */\n IconNamesEnum[\"Slack\"] = \"slack\";\n /** {@link https://icons.getbootstrap.com/icons/slash-circle-fill} */\n IconNamesEnum[\"SlashCircleFill\"] = \"slash-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/slash-circle} */\n IconNamesEnum[\"SlashCircle\"] = \"slash-circle\";\n /** {@link https://icons.getbootstrap.com/icons/slash-lg} */\n IconNamesEnum[\"SlashLg\"] = \"slash-lg\";\n /** {@link https://icons.getbootstrap.com/icons/slash-square-fill} */\n IconNamesEnum[\"SlashSquareFill\"] = \"slash-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/slash-square} */\n IconNamesEnum[\"SlashSquare\"] = \"slash-square\";\n /** {@link https://icons.getbootstrap.com/icons/slash} */\n IconNamesEnum[\"Slash\"] = \"slash\";\n /** {@link https://icons.getbootstrap.com/icons/sliders} */\n IconNamesEnum[\"Sliders\"] = \"sliders\";\n /** {@link https://icons.getbootstrap.com/icons/sliders2-vertical} */\n IconNamesEnum[\"Sliders2Vertical\"] = \"sliders2-vertical\";\n /** {@link https://icons.getbootstrap.com/icons/sliders2} */\n IconNamesEnum[\"Sliders2\"] = \"sliders2\";\n /** {@link https://icons.getbootstrap.com/icons/smartwatch} */\n IconNamesEnum[\"Smartwatch\"] = \"smartwatch\";\n /** {@link https://icons.getbootstrap.com/icons/snapchat} */\n IconNamesEnum[\"Snapchat\"] = \"snapchat\";\n /** {@link https://icons.getbootstrap.com/icons/snow} */\n IconNamesEnum[\"Snow\"] = \"snow\";\n /** {@link https://icons.getbootstrap.com/icons/snow2} */\n IconNamesEnum[\"Snow2\"] = \"snow2\";\n /** {@link https://icons.getbootstrap.com/icons/snow3} */\n IconNamesEnum[\"Snow3\"] = \"snow3\";\n /** {@link https://icons.getbootstrap.com/icons/sort-alpha-down-alt} */\n IconNamesEnum[\"SortAlphaDownAlt\"] = \"sort-alpha-down-alt\";\n /** {@link https://icons.getbootstrap.com/icons/sort-alpha-down} */\n IconNamesEnum[\"SortAlphaDown\"] = \"sort-alpha-down\";\n /** {@link https://icons.getbootstrap.com/icons/sort-alpha-up-alt} */\n IconNamesEnum[\"SortAlphaUpAlt\"] = \"sort-alpha-up-alt\";\n /** {@link https://icons.getbootstrap.com/icons/sort-alpha-up} */\n IconNamesEnum[\"SortAlphaUp\"] = \"sort-alpha-up\";\n /** {@link https://icons.getbootstrap.com/icons/sort-down-alt} */\n IconNamesEnum[\"SortDownAlt\"] = \"sort-down-alt\";\n /** {@link https://icons.getbootstrap.com/icons/sort-down} */\n IconNamesEnum[\"SortDown\"] = \"sort-down\";\n /** {@link https://icons.getbootstrap.com/icons/sort-numeric-down-alt} */\n IconNamesEnum[\"SortNumericDownAlt\"] = \"sort-numeric-down-alt\";\n /** {@link https://icons.getbootstrap.com/icons/sort-numeric-down} */\n IconNamesEnum[\"SortNumericDown\"] = \"sort-numeric-down\";\n /** {@link https://icons.getbootstrap.com/icons/sort-numeric-up-alt} */\n IconNamesEnum[\"SortNumericUpAlt\"] = \"sort-numeric-up-alt\";\n /** {@link https://icons.getbootstrap.com/icons/sort-numeric-up} */\n IconNamesEnum[\"SortNumericUp\"] = \"sort-numeric-up\";\n /** {@link https://icons.getbootstrap.com/icons/sort-up-alt} */\n IconNamesEnum[\"SortUpAlt\"] = \"sort-up-alt\";\n /** {@link https://icons.getbootstrap.com/icons/sort-up} */\n IconNamesEnum[\"SortUp\"] = \"sort-up\";\n /** {@link https://icons.getbootstrap.com/icons/soundwave} */\n IconNamesEnum[\"Soundwave\"] = \"soundwave\";\n /** {@link https://icons.getbootstrap.com/icons/speaker-fill} */\n IconNamesEnum[\"SpeakerFill\"] = \"speaker-fill\";\n /** {@link https://icons.getbootstrap.com/icons/speaker} */\n IconNamesEnum[\"Speaker\"] = \"speaker\";\n /** {@link https://icons.getbootstrap.com/icons/speedometer} */\n IconNamesEnum[\"Speedometer\"] = \"speedometer\";\n /** {@link https://icons.getbootstrap.com/icons/speedometer2} */\n IconNamesEnum[\"Speedometer2\"] = \"speedometer2\";\n /** {@link https://icons.getbootstrap.com/icons/spellcheck} */\n IconNamesEnum[\"Spellcheck\"] = \"spellcheck\";\n /** {@link https://icons.getbootstrap.com/icons/spotify} */\n IconNamesEnum[\"Spotify\"] = \"spotify\";\n /** {@link https://icons.getbootstrap.com/icons/square-fill} */\n IconNamesEnum[\"SquareFill\"] = \"square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/square-half} */\n IconNamesEnum[\"SquareHalf\"] = \"square-half\";\n /** {@link https://icons.getbootstrap.com/icons/square} */\n IconNamesEnum[\"Square\"] = \"square\";\n /** {@link https://icons.getbootstrap.com/icons/stack-overflow} */\n IconNamesEnum[\"StackOverflow\"] = \"stack-overflow\";\n /** {@link https://icons.getbootstrap.com/icons/stack} */\n IconNamesEnum[\"Stack\"] = \"stack\";\n /** {@link https://icons.getbootstrap.com/icons/star-fill} */\n IconNamesEnum[\"StarFill\"] = \"star-fill\";\n /** {@link https://icons.getbootstrap.com/icons/star-half} */\n IconNamesEnum[\"StarHalf\"] = \"star-half\";\n /** {@link https://icons.getbootstrap.com/icons/star} */\n IconNamesEnum[\"Star\"] = \"star\";\n /** {@link https://icons.getbootstrap.com/icons/stars} */\n IconNamesEnum[\"Stars\"] = \"stars\";\n /** {@link https://icons.getbootstrap.com/icons/steam} */\n IconNamesEnum[\"Steam\"] = \"steam\";\n /** {@link https://icons.getbootstrap.com/icons/stickies-fill} */\n IconNamesEnum[\"StickiesFill\"] = \"stickies-fill\";\n /** {@link https://icons.getbootstrap.com/icons/stickies} */\n IconNamesEnum[\"Stickies\"] = \"stickies\";\n /** {@link https://icons.getbootstrap.com/icons/sticky-fill} */\n IconNamesEnum[\"StickyFill\"] = \"sticky-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sticky} */\n IconNamesEnum[\"Sticky\"] = \"sticky\";\n /** {@link https://icons.getbootstrap.com/icons/stop-btn-fill} */\n IconNamesEnum[\"StopBtnFill\"] = \"stop-btn-fill\";\n /** {@link https://icons.getbootstrap.com/icons/stop-btn} */\n IconNamesEnum[\"StopBtn\"] = \"stop-btn\";\n /** {@link https://icons.getbootstrap.com/icons/stop-circle-fill} */\n IconNamesEnum[\"StopCircleFill\"] = \"stop-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/stop-circle} */\n IconNamesEnum[\"StopCircle\"] = \"stop-circle\";\n /** {@link https://icons.getbootstrap.com/icons/stop-fill} */\n IconNamesEnum[\"StopFill\"] = \"stop-fill\";\n /** {@link https://icons.getbootstrap.com/icons/stop} */\n IconNamesEnum[\"Stop\"] = \"stop\";\n /** {@link https://icons.getbootstrap.com/icons/stoplights-fill} */\n IconNamesEnum[\"StoplightsFill\"] = \"stoplights-fill\";\n /** {@link https://icons.getbootstrap.com/icons/stoplights} */\n IconNamesEnum[\"Stoplights\"] = \"stoplights\";\n /** {@link https://icons.getbootstrap.com/icons/stopwatch-fill} */\n IconNamesEnum[\"StopwatchFill\"] = \"stopwatch-fill\";\n /** {@link https://icons.getbootstrap.com/icons/stopwatch} */\n IconNamesEnum[\"Stopwatch\"] = \"stopwatch\";\n /** {@link https://icons.getbootstrap.com/icons/strava} */\n IconNamesEnum[\"Strava\"] = \"strava\";\n /** {@link https://icons.getbootstrap.com/icons/stripe} */\n IconNamesEnum[\"Stripe\"] = \"stripe\";\n /** {@link https://icons.getbootstrap.com/icons/subscript} */\n IconNamesEnum[\"Subscript\"] = \"subscript\";\n /** {@link https://icons.getbootstrap.com/icons/subtract} */\n IconNamesEnum[\"Subtract\"] = \"subtract\";\n /** {@link https://icons.getbootstrap.com/icons/suit-club-fill} */\n IconNamesEnum[\"SuitClubFill\"] = \"suit-club-fill\";\n /** {@link https://icons.getbootstrap.com/icons/suit-club} */\n IconNamesEnum[\"SuitClub\"] = \"suit-club\";\n /** {@link https://icons.getbootstrap.com/icons/suit-diamond-fill} */\n IconNamesEnum[\"SuitDiamondFill\"] = \"suit-diamond-fill\";\n /** {@link https://icons.getbootstrap.com/icons/suit-diamond} */\n IconNamesEnum[\"SuitDiamond\"] = \"suit-diamond\";\n /** {@link https://icons.getbootstrap.com/icons/suit-heart-fill} */\n IconNamesEnum[\"SuitHeartFill\"] = \"suit-heart-fill\";\n /** {@link https://icons.getbootstrap.com/icons/suit-heart} */\n IconNamesEnum[\"SuitHeart\"] = \"suit-heart\";\n /** {@link https://icons.getbootstrap.com/icons/suit-spade-fill} */\n IconNamesEnum[\"SuitSpadeFill\"] = \"suit-spade-fill\";\n /** {@link https://icons.getbootstrap.com/icons/suit-spade} */\n IconNamesEnum[\"SuitSpade\"] = \"suit-spade\";\n /** {@link https://icons.getbootstrap.com/icons/sun-fill} */\n IconNamesEnum[\"SunFill\"] = \"sun-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sun} */\n IconNamesEnum[\"Sun\"] = \"sun\";\n /** {@link https://icons.getbootstrap.com/icons/sunglasses} */\n IconNamesEnum[\"Sunglasses\"] = \"sunglasses\";\n /** {@link https://icons.getbootstrap.com/icons/sunrise-fill} */\n IconNamesEnum[\"SunriseFill\"] = \"sunrise-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sunrise} */\n IconNamesEnum[\"Sunrise\"] = \"sunrise\";\n /** {@link https://icons.getbootstrap.com/icons/sunset-fill} */\n IconNamesEnum[\"SunsetFill\"] = \"sunset-fill\";\n /** {@link https://icons.getbootstrap.com/icons/sunset} */\n IconNamesEnum[\"Sunset\"] = \"sunset\";\n /** {@link https://icons.getbootstrap.com/icons/superscript} */\n IconNamesEnum[\"Superscript\"] = \"superscript\";\n /** {@link https://icons.getbootstrap.com/icons/symmetry-horizontal} */\n IconNamesEnum[\"SymmetryHorizontal\"] = \"symmetry-horizontal\";\n /** {@link https://icons.getbootstrap.com/icons/symmetry-vertical} */\n IconNamesEnum[\"SymmetryVertical\"] = \"symmetry-vertical\";\n /** {@link https://icons.getbootstrap.com/icons/table} */\n IconNamesEnum[\"Table\"] = \"table\";\n /** {@link https://icons.getbootstrap.com/icons/tablet-fill} */\n IconNamesEnum[\"TabletFill\"] = \"tablet-fill\";\n /** {@link https://icons.getbootstrap.com/icons/tablet-landscape-fill} */\n IconNamesEnum[\"TabletLandscapeFill\"] = \"tablet-landscape-fill\";\n /** {@link https://icons.getbootstrap.com/icons/tablet-landscape} */\n IconNamesEnum[\"TabletLandscape\"] = \"tablet-landscape\";\n /** {@link https://icons.getbootstrap.com/icons/tablet} */\n IconNamesEnum[\"Tablet\"] = \"tablet\";\n /** {@link https://icons.getbootstrap.com/icons/tag-fill} */\n IconNamesEnum[\"TagFill\"] = \"tag-fill\";\n /** {@link https://icons.getbootstrap.com/icons/tag} */\n IconNamesEnum[\"Tag\"] = \"tag\";\n /** {@link https://icons.getbootstrap.com/icons/tags-fill} */\n IconNamesEnum[\"TagsFill\"] = \"tags-fill\";\n /** {@link https://icons.getbootstrap.com/icons/tags} */\n IconNamesEnum[\"Tags\"] = \"tags\";\n /** {@link https://icons.getbootstrap.com/icons/taxi-front-fill} */\n IconNamesEnum[\"TaxiFrontFill\"] = \"taxi-front-fill\";\n /** {@link https://icons.getbootstrap.com/icons/taxi-front} */\n IconNamesEnum[\"TaxiFront\"] = \"taxi-front\";\n /** {@link https://icons.getbootstrap.com/icons/telegram} */\n IconNamesEnum[\"Telegram\"] = \"telegram\";\n /** {@link https://icons.getbootstrap.com/icons/telephone-fill} */\n IconNamesEnum[\"TelephoneFill\"] = \"telephone-fill\";\n /** {@link https://icons.getbootstrap.com/icons/telephone-forward-fill} */\n IconNamesEnum[\"TelephoneForwardFill\"] = \"telephone-forward-fill\";\n /** {@link https://icons.getbootstrap.com/icons/telephone-forward} */\n IconNamesEnum[\"TelephoneForward\"] = \"telephone-forward\";\n /** {@link https://icons.getbootstrap.com/icons/telephone-inbound-fill} */\n IconNamesEnum[\"TelephoneInboundFill\"] = \"telephone-inbound-fill\";\n /** {@link https://icons.getbootstrap.com/icons/telephone-inbound} */\n IconNamesEnum[\"TelephoneInbound\"] = \"telephone-inbound\";\n /** {@link https://icons.getbootstrap.com/icons/telephone-minus-fill} */\n IconNamesEnum[\"TelephoneMinusFill\"] = \"telephone-minus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/telephone-minus} */\n IconNamesEnum[\"TelephoneMinus\"] = \"telephone-minus\";\n /** {@link https://icons.getbootstrap.com/icons/telephone-outbound-fill} */\n IconNamesEnum[\"TelephoneOutboundFill\"] = \"telephone-outbound-fill\";\n /** {@link https://icons.getbootstrap.com/icons/telephone-outbound} */\n IconNamesEnum[\"TelephoneOutbound\"] = \"telephone-outbound\";\n /** {@link https://icons.getbootstrap.com/icons/telephone-plus-fill} */\n IconNamesEnum[\"TelephonePlusFill\"] = \"telephone-plus-fill\";\n /** {@link https://icons.getbootstrap.com/icons/telephone-plus} */\n IconNamesEnum[\"TelephonePlus\"] = \"telephone-plus\";\n /** {@link https://icons.getbootstrap.com/icons/telephone-x-fill} */\n IconNamesEnum[\"TelephoneXFill\"] = \"telephone-x-fill\";\n /** {@link https://icons.getbootstrap.com/icons/telephone-x} */\n IconNamesEnum[\"TelephoneX\"] = \"telephone-x\";\n /** {@link https://icons.getbootstrap.com/icons/telephone} */\n IconNamesEnum[\"Telephone\"] = \"telephone\";\n /** {@link https://icons.getbootstrap.com/icons/tencent-qq} */\n IconNamesEnum[\"TencentQq\"] = \"tencent-qq\";\n /** {@link https://icons.getbootstrap.com/icons/terminal-dash} */\n IconNamesEnum[\"TerminalDash\"] = \"terminal-dash\";\n /** {@link https://icons.getbootstrap.com/icons/terminal-fill} */\n IconNamesEnum[\"TerminalFill\"] = \"terminal-fill\";\n /** {@link https://icons.getbootstrap.com/icons/terminal-plus} */\n IconNamesEnum[\"TerminalPlus\"] = \"terminal-plus\";\n /** {@link https://icons.getbootstrap.com/icons/terminal-split} */\n IconNamesEnum[\"TerminalSplit\"] = \"terminal-split\";\n /** {@link https://icons.getbootstrap.com/icons/terminal-x} */\n IconNamesEnum[\"TerminalX\"] = \"terminal-x\";\n /** {@link https://icons.getbootstrap.com/icons/terminal} */\n IconNamesEnum[\"Terminal\"] = \"terminal\";\n /** {@link https://icons.getbootstrap.com/icons/text-center} */\n IconNamesEnum[\"TextCenter\"] = \"text-center\";\n /** {@link https://icons.getbootstrap.com/icons/text-indent-left} */\n IconNamesEnum[\"TextIndentLeft\"] = \"text-indent-left\";\n /** {@link https://icons.getbootstrap.com/icons/text-indent-right} */\n IconNamesEnum[\"TextIndentRight\"] = \"text-indent-right\";\n /** {@link https://icons.getbootstrap.com/icons/text-left} */\n IconNamesEnum[\"TextLeft\"] = \"text-left\";\n /** {@link https://icons.getbootstrap.com/icons/text-paragraph} */\n IconNamesEnum[\"TextParagraph\"] = \"text-paragraph\";\n /** {@link https://icons.getbootstrap.com/icons/text-right} */\n IconNamesEnum[\"TextRight\"] = \"text-right\";\n /** {@link https://icons.getbootstrap.com/icons/text-wrap} */\n IconNamesEnum[\"TextWrap\"] = \"text-wrap\";\n /** {@link https://icons.getbootstrap.com/icons/textarea-resize} */\n IconNamesEnum[\"TextareaResize\"] = \"textarea-resize\";\n /** {@link https://icons.getbootstrap.com/icons/textarea-t} */\n IconNamesEnum[\"TextareaT\"] = \"textarea-t\";\n /** {@link https://icons.getbootstrap.com/icons/textarea} */\n IconNamesEnum[\"Textarea\"] = \"textarea\";\n /** {@link https://icons.getbootstrap.com/icons/thermometer-half} */\n IconNamesEnum[\"ThermometerHalf\"] = \"thermometer-half\";\n /** {@link https://icons.getbootstrap.com/icons/thermometer-high} */\n IconNamesEnum[\"ThermometerHigh\"] = \"thermometer-high\";\n /** {@link https://icons.getbootstrap.com/icons/thermometer-low} */\n IconNamesEnum[\"ThermometerLow\"] = \"thermometer-low\";\n /** {@link https://icons.getbootstrap.com/icons/thermometer-snow} */\n IconNamesEnum[\"ThermometerSnow\"] = \"thermometer-snow\";\n /** {@link https://icons.getbootstrap.com/icons/thermometer-sun} */\n IconNamesEnum[\"ThermometerSun\"] = \"thermometer-sun\";\n /** {@link https://icons.getbootstrap.com/icons/thermometer} */\n IconNamesEnum[\"Thermometer\"] = \"thermometer\";\n /** {@link https://icons.getbootstrap.com/icons/three-dots-vertical} */\n IconNamesEnum[\"ThreeDotsVertical\"] = \"three-dots-vertical\";\n /** {@link https://icons.getbootstrap.com/icons/three-dots} */\n IconNamesEnum[\"ThreeDots\"] = \"three-dots\";\n /** {@link https://icons.getbootstrap.com/icons/thunderbolt-fill} */\n IconNamesEnum[\"ThunderboltFill\"] = \"thunderbolt-fill\";\n /** {@link https://icons.getbootstrap.com/icons/thunderbolt} */\n IconNamesEnum[\"Thunderbolt\"] = \"thunderbolt\";\n /** {@link https://icons.getbootstrap.com/icons/ticket-detailed-fill} */\n IconNamesEnum[\"TicketDetailedFill\"] = \"ticket-detailed-fill\";\n /** {@link https://icons.getbootstrap.com/icons/ticket-detailed} */\n IconNamesEnum[\"TicketDetailed\"] = \"ticket-detailed\";\n /** {@link https://icons.getbootstrap.com/icons/ticket-fill} */\n IconNamesEnum[\"TicketFill\"] = \"ticket-fill\";\n /** {@link https://icons.getbootstrap.com/icons/ticket-perforated-fill} */\n IconNamesEnum[\"TicketPerforatedFill\"] = \"ticket-perforated-fill\";\n /** {@link https://icons.getbootstrap.com/icons/ticket-perforated} */\n IconNamesEnum[\"TicketPerforated\"] = \"ticket-perforated\";\n /** {@link https://icons.getbootstrap.com/icons/ticket} */\n IconNamesEnum[\"Ticket\"] = \"ticket\";\n /** {@link https://icons.getbootstrap.com/icons/tiktok} */\n IconNamesEnum[\"Tiktok\"] = \"tiktok\";\n /** {@link https://icons.getbootstrap.com/icons/toggle-off} */\n IconNamesEnum[\"ToggleOff\"] = \"toggle-off\";\n /** {@link https://icons.getbootstrap.com/icons/toggle-on} */\n IconNamesEnum[\"ToggleOn\"] = \"toggle-on\";\n /** {@link https://icons.getbootstrap.com/icons/toggle2-off} */\n IconNamesEnum[\"Toggle2Off\"] = \"toggle2-off\";\n /** {@link https://icons.getbootstrap.com/icons/toggle2-on} */\n IconNamesEnum[\"Toggle2On\"] = \"toggle2-on\";\n /** {@link https://icons.getbootstrap.com/icons/toggles} */\n IconNamesEnum[\"Toggles\"] = \"toggles\";\n /** {@link https://icons.getbootstrap.com/icons/toggles2} */\n IconNamesEnum[\"Toggles2\"] = \"toggles2\";\n /** {@link https://icons.getbootstrap.com/icons/tools} */\n IconNamesEnum[\"Tools\"] = \"tools\";\n /** {@link https://icons.getbootstrap.com/icons/tornado} */\n IconNamesEnum[\"Tornado\"] = \"tornado\";\n /** {@link https://icons.getbootstrap.com/icons/train-freight-front-fill} */\n IconNamesEnum[\"TrainFreightFrontFill\"] = \"train-freight-front-fill\";\n /** {@link https://icons.getbootstrap.com/icons/train-freight-front} */\n IconNamesEnum[\"TrainFreightFront\"] = \"train-freight-front\";\n /** {@link https://icons.getbootstrap.com/icons/train-front-fill} */\n IconNamesEnum[\"TrainFrontFill\"] = \"train-front-fill\";\n /** {@link https://icons.getbootstrap.com/icons/train-front} */\n IconNamesEnum[\"TrainFront\"] = \"train-front\";\n /** {@link https://icons.getbootstrap.com/icons/train-lightrail-front-fill} */\n IconNamesEnum[\"TrainLightrailFrontFill\"] = \"train-lightrail-front-fill\";\n /** {@link https://icons.getbootstrap.com/icons/train-lightrail-front} */\n IconNamesEnum[\"TrainLightrailFront\"] = \"train-lightrail-front\";\n /** {@link https://icons.getbootstrap.com/icons/translate} */\n IconNamesEnum[\"Translate\"] = \"translate\";\n /** {@link https://icons.getbootstrap.com/icons/trash-fill} */\n IconNamesEnum[\"TrashFill\"] = \"trash-fill\";\n /** {@link https://icons.getbootstrap.com/icons/trash} */\n IconNamesEnum[\"Trash\"] = \"trash\";\n /** {@link https://icons.getbootstrap.com/icons/trash2-fill} */\n IconNamesEnum[\"Trash2Fill\"] = \"trash2-fill\";\n /** {@link https://icons.getbootstrap.com/icons/trash2} */\n IconNamesEnum[\"Trash2\"] = \"trash2\";\n /** {@link https://icons.getbootstrap.com/icons/trash3-fill} */\n IconNamesEnum[\"Trash3Fill\"] = \"trash3-fill\";\n /** {@link https://icons.getbootstrap.com/icons/trash3} */\n IconNamesEnum[\"Trash3\"] = \"trash3\";\n /** {@link https://icons.getbootstrap.com/icons/tree-fill} */\n IconNamesEnum[\"TreeFill\"] = \"tree-fill\";\n /** {@link https://icons.getbootstrap.com/icons/tree} */\n IconNamesEnum[\"Tree\"] = \"tree\";\n /** {@link https://icons.getbootstrap.com/icons/trello} */\n IconNamesEnum[\"Trello\"] = \"trello\";\n /** {@link https://icons.getbootstrap.com/icons/triangle-fill} */\n IconNamesEnum[\"TriangleFill\"] = \"triangle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/triangle-half} */\n IconNamesEnum[\"TriangleHalf\"] = \"triangle-half\";\n /** {@link https://icons.getbootstrap.com/icons/triangle} */\n IconNamesEnum[\"Triangle\"] = \"triangle\";\n /** {@link https://icons.getbootstrap.com/icons/trophy-fill} */\n IconNamesEnum[\"TrophyFill\"] = \"trophy-fill\";\n /** {@link https://icons.getbootstrap.com/icons/trophy} */\n IconNamesEnum[\"Trophy\"] = \"trophy\";\n /** {@link https://icons.getbootstrap.com/icons/tropical-storm} */\n IconNamesEnum[\"TropicalStorm\"] = \"tropical-storm\";\n /** {@link https://icons.getbootstrap.com/icons/truck-flatbed} */\n IconNamesEnum[\"TruckFlatbed\"] = \"truck-flatbed\";\n /** {@link https://icons.getbootstrap.com/icons/truck-front-fill} */\n IconNamesEnum[\"TruckFrontFill\"] = \"truck-front-fill\";\n /** {@link https://icons.getbootstrap.com/icons/truck-front} */\n IconNamesEnum[\"TruckFront\"] = \"truck-front\";\n /** {@link https://icons.getbootstrap.com/icons/truck} */\n IconNamesEnum[\"Truck\"] = \"truck\";\n /** {@link https://icons.getbootstrap.com/icons/tsunami} */\n IconNamesEnum[\"Tsunami\"] = \"tsunami\";\n /** {@link https://icons.getbootstrap.com/icons/tv-fill} */\n IconNamesEnum[\"TvFill\"] = \"tv-fill\";\n /** {@link https://icons.getbootstrap.com/icons/tv} */\n IconNamesEnum[\"Tv\"] = \"tv\";\n /** {@link https://icons.getbootstrap.com/icons/twitch} */\n IconNamesEnum[\"Twitch\"] = \"twitch\";\n /** {@link https://icons.getbootstrap.com/icons/twitter} */\n IconNamesEnum[\"Twitter\"] = \"twitter\";\n /** {@link https://icons.getbootstrap.com/icons/type-bold} */\n IconNamesEnum[\"TypeBold\"] = \"type-bold\";\n /** {@link https://icons.getbootstrap.com/icons/type-h1} */\n IconNamesEnum[\"TypeH1\"] = \"type-h1\";\n /** {@link https://icons.getbootstrap.com/icons/type-h2} */\n IconNamesEnum[\"TypeH2\"] = \"type-h2\";\n /** {@link https://icons.getbootstrap.com/icons/type-h3} */\n IconNamesEnum[\"TypeH3\"] = \"type-h3\";\n /** {@link https://icons.getbootstrap.com/icons/type-italic} */\n IconNamesEnum[\"TypeItalic\"] = \"type-italic\";\n /** {@link https://icons.getbootstrap.com/icons/type-strikethrough} */\n IconNamesEnum[\"TypeStrikethrough\"] = \"type-strikethrough\";\n /** {@link https://icons.getbootstrap.com/icons/type-underline} */\n IconNamesEnum[\"TypeUnderline\"] = \"type-underline\";\n /** {@link https://icons.getbootstrap.com/icons/type} */\n IconNamesEnum[\"Type\"] = \"type\";\n /** {@link https://icons.getbootstrap.com/icons/ubuntu} */\n IconNamesEnum[\"Ubuntu\"] = \"ubuntu\";\n /** {@link https://icons.getbootstrap.com/icons/ui-checks-grid} */\n IconNamesEnum[\"UiChecksGrid\"] = \"ui-checks-grid\";\n /** {@link https://icons.getbootstrap.com/icons/ui-checks} */\n IconNamesEnum[\"UiChecks\"] = \"ui-checks\";\n /** {@link https://icons.getbootstrap.com/icons/ui-radios-grid} */\n IconNamesEnum[\"UiRadiosGrid\"] = \"ui-radios-grid\";\n /** {@link https://icons.getbootstrap.com/icons/ui-radios} */\n IconNamesEnum[\"UiRadios\"] = \"ui-radios\";\n /** {@link https://icons.getbootstrap.com/icons/umbrella-fill} */\n IconNamesEnum[\"UmbrellaFill\"] = \"umbrella-fill\";\n /** {@link https://icons.getbootstrap.com/icons/umbrella} */\n IconNamesEnum[\"Umbrella\"] = \"umbrella\";\n /** {@link https://icons.getbootstrap.com/icons/unindent} */\n IconNamesEnum[\"Unindent\"] = \"unindent\";\n /** {@link https://icons.getbootstrap.com/icons/union} */\n IconNamesEnum[\"Union\"] = \"union\";\n /** {@link https://icons.getbootstrap.com/icons/unity} */\n IconNamesEnum[\"Unity\"] = \"unity\";\n /** {@link https://icons.getbootstrap.com/icons/universal-access-circle} */\n IconNamesEnum[\"UniversalAccessCircle\"] = \"universal-access-circle\";\n /** {@link https://icons.getbootstrap.com/icons/universal-access} */\n IconNamesEnum[\"UniversalAccess\"] = \"universal-access\";\n /** {@link https://icons.getbootstrap.com/icons/unlock-fill} */\n IconNamesEnum[\"UnlockFill\"] = \"unlock-fill\";\n /** {@link https://icons.getbootstrap.com/icons/unlock} */\n IconNamesEnum[\"Unlock\"] = \"unlock\";\n /** {@link https://icons.getbootstrap.com/icons/upc-scan} */\n IconNamesEnum[\"UpcScan\"] = \"upc-scan\";\n /** {@link https://icons.getbootstrap.com/icons/upc} */\n IconNamesEnum[\"Upc\"] = \"upc\";\n /** {@link https://icons.getbootstrap.com/icons/upload} */\n IconNamesEnum[\"Upload\"] = \"upload\";\n /** {@link https://icons.getbootstrap.com/icons/usb-c-fill} */\n IconNamesEnum[\"UsbCFill\"] = \"usb-c-fill\";\n /** {@link https://icons.getbootstrap.com/icons/usb-c} */\n IconNamesEnum[\"UsbC\"] = \"usb-c\";\n /** {@link https://icons.getbootstrap.com/icons/usb-drive-fill} */\n IconNamesEnum[\"UsbDriveFill\"] = \"usb-drive-fill\";\n /** {@link https://icons.getbootstrap.com/icons/usb-drive} */\n IconNamesEnum[\"UsbDrive\"] = \"usb-drive\";\n /** {@link https://icons.getbootstrap.com/icons/usb-fill} */\n IconNamesEnum[\"UsbFill\"] = \"usb-fill\";\n /** {@link https://icons.getbootstrap.com/icons/usb-micro-fill} */\n IconNamesEnum[\"UsbMicroFill\"] = \"usb-micro-fill\";\n /** {@link https://icons.getbootstrap.com/icons/usb-micro} */\n IconNamesEnum[\"UsbMicro\"] = \"usb-micro\";\n /** {@link https://icons.getbootstrap.com/icons/usb-mini-fill} */\n IconNamesEnum[\"UsbMiniFill\"] = \"usb-mini-fill\";\n /** {@link https://icons.getbootstrap.com/icons/usb-mini} */\n IconNamesEnum[\"UsbMini\"] = \"usb-mini\";\n /** {@link https://icons.getbootstrap.com/icons/usb-plug-fill} */\n IconNamesEnum[\"UsbPlugFill\"] = \"usb-plug-fill\";\n /** {@link https://icons.getbootstrap.com/icons/usb-plug} */\n IconNamesEnum[\"UsbPlug\"] = \"usb-plug\";\n /** {@link https://icons.getbootstrap.com/icons/usb-symbol} */\n IconNamesEnum[\"UsbSymbol\"] = \"usb-symbol\";\n /** {@link https://icons.getbootstrap.com/icons/usb} */\n IconNamesEnum[\"Usb\"] = \"usb\";\n /** {@link https://icons.getbootstrap.com/icons/valentine} */\n IconNamesEnum[\"Valentine\"] = \"valentine\";\n /** {@link https://icons.getbootstrap.com/icons/valentine2} */\n IconNamesEnum[\"Valentine2\"] = \"valentine2\";\n /** {@link https://icons.getbootstrap.com/icons/vector-pen} */\n IconNamesEnum[\"VectorPen\"] = \"vector-pen\";\n /** {@link https://icons.getbootstrap.com/icons/view-list} */\n IconNamesEnum[\"ViewList\"] = \"view-list\";\n /** {@link https://icons.getbootstrap.com/icons/view-stacked} */\n IconNamesEnum[\"ViewStacked\"] = \"view-stacked\";\n /** {@link https://icons.getbootstrap.com/icons/vimeo} */\n IconNamesEnum[\"Vimeo\"] = \"vimeo\";\n /** {@link https://icons.getbootstrap.com/icons/vinyl-fill} */\n IconNamesEnum[\"VinylFill\"] = \"vinyl-fill\";\n /** {@link https://icons.getbootstrap.com/icons/vinyl} */\n IconNamesEnum[\"Vinyl\"] = \"vinyl\";\n /** {@link https://icons.getbootstrap.com/icons/virus} */\n IconNamesEnum[\"Virus\"] = \"virus\";\n /** {@link https://icons.getbootstrap.com/icons/virus2} */\n IconNamesEnum[\"Virus2\"] = \"virus2\";\n /** {@link https://icons.getbootstrap.com/icons/voicemail} */\n IconNamesEnum[\"Voicemail\"] = \"voicemail\";\n /** {@link https://icons.getbootstrap.com/icons/volume-down-fill} */\n IconNamesEnum[\"VolumeDownFill\"] = \"volume-down-fill\";\n /** {@link https://icons.getbootstrap.com/icons/volume-down} */\n IconNamesEnum[\"VolumeDown\"] = \"volume-down\";\n /** {@link https://icons.getbootstrap.com/icons/volume-mute-fill} */\n IconNamesEnum[\"VolumeMuteFill\"] = \"volume-mute-fill\";\n /** {@link https://icons.getbootstrap.com/icons/volume-mute} */\n IconNamesEnum[\"VolumeMute\"] = \"volume-mute\";\n /** {@link https://icons.getbootstrap.com/icons/volume-off-fill} */\n IconNamesEnum[\"VolumeOffFill\"] = \"volume-off-fill\";\n /** {@link https://icons.getbootstrap.com/icons/volume-off} */\n IconNamesEnum[\"VolumeOff\"] = \"volume-off\";\n /** {@link https://icons.getbootstrap.com/icons/volume-up-fill} */\n IconNamesEnum[\"VolumeUpFill\"] = \"volume-up-fill\";\n /** {@link https://icons.getbootstrap.com/icons/volume-up} */\n IconNamesEnum[\"VolumeUp\"] = \"volume-up\";\n /** {@link https://icons.getbootstrap.com/icons/vr} */\n IconNamesEnum[\"Vr\"] = \"vr\";\n /** {@link https://icons.getbootstrap.com/icons/wallet-fill} */\n IconNamesEnum[\"WalletFill\"] = \"wallet-fill\";\n /** {@link https://icons.getbootstrap.com/icons/wallet} */\n IconNamesEnum[\"Wallet\"] = \"wallet\";\n /** {@link https://icons.getbootstrap.com/icons/wallet2} */\n IconNamesEnum[\"Wallet2\"] = \"wallet2\";\n /** {@link https://icons.getbootstrap.com/icons/watch} */\n IconNamesEnum[\"Watch\"] = \"watch\";\n /** {@link https://icons.getbootstrap.com/icons/water} */\n IconNamesEnum[\"Water\"] = \"water\";\n /** {@link https://icons.getbootstrap.com/icons/webcam-fill} */\n IconNamesEnum[\"WebcamFill\"] = \"webcam-fill\";\n /** {@link https://icons.getbootstrap.com/icons/webcam} */\n IconNamesEnum[\"Webcam\"] = \"webcam\";\n /** {@link https://icons.getbootstrap.com/icons/wechat} */\n IconNamesEnum[\"Wechat\"] = \"wechat\";\n /** {@link https://icons.getbootstrap.com/icons/whatsapp} */\n IconNamesEnum[\"Whatsapp\"] = \"whatsapp\";\n /** {@link https://icons.getbootstrap.com/icons/wifi-1} */\n IconNamesEnum[\"Wifi1\"] = \"wifi-1\";\n /** {@link https://icons.getbootstrap.com/icons/wifi-2} */\n IconNamesEnum[\"Wifi2\"] = \"wifi-2\";\n /** {@link https://icons.getbootstrap.com/icons/wifi-off} */\n IconNamesEnum[\"WifiOff\"] = \"wifi-off\";\n /** {@link https://icons.getbootstrap.com/icons/wifi} */\n IconNamesEnum[\"Wifi\"] = \"wifi\";\n /** {@link https://icons.getbootstrap.com/icons/wikipedia} */\n IconNamesEnum[\"Wikipedia\"] = \"wikipedia\";\n /** {@link https://icons.getbootstrap.com/icons/wind} */\n IconNamesEnum[\"Wind\"] = \"wind\";\n /** {@link https://icons.getbootstrap.com/icons/window-dash} */\n IconNamesEnum[\"WindowDash\"] = \"window-dash\";\n /** {@link https://icons.getbootstrap.com/icons/window-desktop} */\n IconNamesEnum[\"WindowDesktop\"] = \"window-desktop\";\n /** {@link https://icons.getbootstrap.com/icons/window-dock} */\n IconNamesEnum[\"WindowDock\"] = \"window-dock\";\n /** {@link https://icons.getbootstrap.com/icons/window-fullscreen} */\n IconNamesEnum[\"WindowFullscreen\"] = \"window-fullscreen\";\n /** {@link https://icons.getbootstrap.com/icons/window-plus} */\n IconNamesEnum[\"WindowPlus\"] = \"window-plus\";\n /** {@link https://icons.getbootstrap.com/icons/window-sidebar} */\n IconNamesEnum[\"WindowSidebar\"] = \"window-sidebar\";\n /** {@link https://icons.getbootstrap.com/icons/window-split} */\n IconNamesEnum[\"WindowSplit\"] = \"window-split\";\n /** {@link https://icons.getbootstrap.com/icons/window-stack} */\n IconNamesEnum[\"WindowStack\"] = \"window-stack\";\n /** {@link https://icons.getbootstrap.com/icons/window-x} */\n IconNamesEnum[\"WindowX\"] = \"window-x\";\n /** {@link https://icons.getbootstrap.com/icons/window} */\n IconNamesEnum[\"Window\"] = \"window\";\n /** {@link https://icons.getbootstrap.com/icons/windows} */\n IconNamesEnum[\"Windows\"] = \"windows\";\n /** {@link https://icons.getbootstrap.com/icons/wordpress} */\n IconNamesEnum[\"Wordpress\"] = \"wordpress\";\n /** {@link https://icons.getbootstrap.com/icons/wrench-adjustable-circle-fill} */\n IconNamesEnum[\"WrenchAdjustableCircleFill\"] = \"wrench-adjustable-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/wrench-adjustable-circle} */\n IconNamesEnum[\"WrenchAdjustableCircle\"] = \"wrench-adjustable-circle\";\n /** {@link https://icons.getbootstrap.com/icons/wrench-adjustable} */\n IconNamesEnum[\"WrenchAdjustable\"] = \"wrench-adjustable\";\n /** {@link https://icons.getbootstrap.com/icons/wrench} */\n IconNamesEnum[\"Wrench\"] = \"wrench\";\n /** {@link https://icons.getbootstrap.com/icons/x-circle-fill} */\n IconNamesEnum[\"XCircleFill\"] = \"x-circle-fill\";\n /** {@link https://icons.getbootstrap.com/icons/x-circle} */\n IconNamesEnum[\"XCircle\"] = \"x-circle\";\n /** {@link https://icons.getbootstrap.com/icons/x-diamond-fill} */\n IconNamesEnum[\"XDiamondFill\"] = \"x-diamond-fill\";\n /** {@link https://icons.getbootstrap.com/icons/x-diamond} */\n IconNamesEnum[\"XDiamond\"] = \"x-diamond\";\n /** {@link https://icons.getbootstrap.com/icons/x-lg} */\n IconNamesEnum[\"XLg\"] = \"x-lg\";\n /** {@link https://icons.getbootstrap.com/icons/x-octagon-fill} */\n IconNamesEnum[\"XOctagonFill\"] = \"x-octagon-fill\";\n /** {@link https://icons.getbootstrap.com/icons/x-octagon} */\n IconNamesEnum[\"XOctagon\"] = \"x-octagon\";\n /** {@link https://icons.getbootstrap.com/icons/x-square-fill} */\n IconNamesEnum[\"XSquareFill\"] = \"x-square-fill\";\n /** {@link https://icons.getbootstrap.com/icons/x-square} */\n IconNamesEnum[\"XSquare\"] = \"x-square\";\n /** {@link https://icons.getbootstrap.com/icons/x} */\n IconNamesEnum[\"X\"] = \"x\";\n /** {@link https://icons.getbootstrap.com/icons/xbox} */\n IconNamesEnum[\"Xbox\"] = \"xbox\";\n /** {@link https://icons.getbootstrap.com/icons/yelp} */\n IconNamesEnum[\"Yelp\"] = \"yelp\";\n /** {@link https://icons.getbootstrap.com/icons/yin-yang} */\n IconNamesEnum[\"YinYang\"] = \"yin-yang\";\n /** {@link https://icons.getbootstrap.com/icons/youtube} */\n IconNamesEnum[\"Youtube\"] = \"youtube\";\n /** {@link https://icons.getbootstrap.com/icons/zoom-in} */\n IconNamesEnum[\"ZoomIn\"] = \"zoom-in\";\n /** {@link https://icons.getbootstrap.com/icons/zoom-out} */\n IconNamesEnum[\"ZoomOut\"] = \"zoom-out\";\n return IconNamesEnum;\n}(IconNamesEnum || {});\n;\n\n/* eslint-disable max-len */\n/**\r\n * icon0-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon0-circle-fill/}.\r\n */\nconst icon0CircleFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon0-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon0-circle/}.\r\n */\nconst icon0Circle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon0-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon0-square-fill/}.\r\n */\nconst icon0SquareFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon0-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon0-square/}.\r\n */\nconst icon0Square = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon1-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon1-circle-fill/}.\r\n */\nconst icon1CircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon1-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon1-circle/}.\r\n */\nconst icon1Circle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon1-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon1-square-fill/}.\r\n */\nconst icon1SquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon1-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon1-square/}.\r\n */\nconst icon1Square = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon123.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon123/}.\r\n */\nconst icon123 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon2-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon2-circle-fill/}.\r\n */\nconst icon2CircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon2-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon2-circle/}.\r\n */\nconst icon2Circle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon2-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon2-square-fill/}.\r\n */\nconst icon2SquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon2-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon2-square/}.\r\n */\nconst icon2Square = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon3-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon3-circle-fill/}.\r\n */\nconst icon3CircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon3-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon3-circle/}.\r\n */\nconst icon3Circle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon3-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon3-square-fill/}.\r\n */\nconst icon3SquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon3-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon3-square/}.\r\n */\nconst icon3Square = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon4-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon4-circle-fill/}.\r\n */\nconst icon4CircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon4-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon4-circle/}.\r\n */\nconst icon4Circle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon4-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon4-square-fill/}.\r\n */\nconst icon4SquareFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon4-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon4-square/}.\r\n */\nconst icon4Square = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon5-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon5-circle-fill/}.\r\n */\nconst icon5CircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon5-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon5-circle/}.\r\n */\nconst icon5Circle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon5-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon5-square-fill/}.\r\n */\nconst icon5SquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon5-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon5-square/}.\r\n */\nconst icon5Square = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon6-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon6-circle-fill/}.\r\n */\nconst icon6CircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon6-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon6-circle/}.\r\n */\nconst icon6Circle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon6-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon6-square-fill/}.\r\n */\nconst icon6SquareFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon6-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon6-square/}.\r\n */\nconst icon6Square = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon7-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon7-circle-fill/}.\r\n */\nconst icon7CircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon7-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon7-circle/}.\r\n */\nconst icon7Circle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon7-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon7-square-fill/}.\r\n */\nconst icon7SquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon7-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon7-square/}.\r\n */\nconst icon7Square = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon8-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon8-circle-fill/}.\r\n */\nconst icon8CircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon8-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon8-circle/}.\r\n */\nconst icon8Circle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon8-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon8-square-fill/}.\r\n */\nconst icon8SquareFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon8-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon8-square/}.\r\n */\nconst icon8Square = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon9-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon9-circle-fill/}.\r\n */\nconst icon9CircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon9-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon9-circle/}.\r\n */\nconst icon9Circle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon9-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon9-square-fill/}.\r\n */\nconst icon9SquareFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * icon9-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/icon9-square/}.\r\n */\nconst icon9Square = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * activity.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/activity/}.\r\n */\nconst activity = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * airplane-engines-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/airplane-engines-fill/}.\r\n */\nconst airplaneEnginesFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * airplane-engines.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/airplane-engines/}.\r\n */\nconst airplaneEngines = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * airplane-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/airplane-fill/}.\r\n */\nconst airplaneFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * airplane.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/airplane/}.\r\n */\nconst airplane = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * alarm-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/alarm-fill/}.\r\n */\nconst alarmFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * alarm.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/alarm/}.\r\n */\nconst alarm = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * alexa.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/alexa/}.\r\n */\nconst alexa = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * align-bottom.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/align-bottom/}.\r\n */\nconst alignBottom = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * align-center.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/align-center/}.\r\n */\nconst alignCenter = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * align-end.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/align-end/}.\r\n */\nconst alignEnd = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * align-middle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/align-middle/}.\r\n */\nconst alignMiddle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * align-start.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/align-start/}.\r\n */\nconst alignStart = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * align-top.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/align-top/}.\r\n */\nconst alignTop = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * alipay.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/alipay/}.\r\n */\nconst alipay = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * alt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/alt/}.\r\n */\nconst alt = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * amd.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/amd/}.\r\n */\nconst amd = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * android.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/android/}.\r\n */\nconst android = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * android2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/android2/}.\r\n */\nconst android2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * app-indicator.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/app-indicator/}.\r\n */\nconst appIndicator = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * app.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/app/}.\r\n */\nconst app = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * apple.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/apple/}.\r\n */\nconst apple = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * archive-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/archive-fill/}.\r\n */\nconst archiveFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * archive.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/archive/}.\r\n */\nconst archive = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-90deg-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-90deg-down/}.\r\n */\nconst arrow90DegDown = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-90deg-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-90deg-left/}.\r\n */\nconst arrow90DegLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-90deg-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-90deg-right/}.\r\n */\nconst arrow90DegRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-90deg-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-90deg-up/}.\r\n */\nconst arrow90DegUp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-bar-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-bar-down/}.\r\n */\nconst arrowBarDown = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-bar-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-bar-left/}.\r\n */\nconst arrowBarLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-bar-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-bar-right/}.\r\n */\nconst arrowBarRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-bar-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-bar-up/}.\r\n */\nconst arrowBarUp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-clockwise.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-clockwise/}.\r\n */\nconst arrowClockwise = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-counterclockwise.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-counterclockwise/}.\r\n */\nconst arrowCounterclockwise = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-circle-fill/}.\r\n */\nconst arrowDownCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-circle/}.\r\n */\nconst arrowDownCircle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-left-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-left-circle-fill/}.\r\n */\nconst arrowDownLeftCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-left-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-left-circle/}.\r\n */\nconst arrowDownLeftCircle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-left-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-left-square-fill/}.\r\n */\nconst arrowDownLeftSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-left-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-left-square/}.\r\n */\nconst arrowDownLeftSquare = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-left/}.\r\n */\nconst arrowDownLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-right-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-right-circle-fill/}.\r\n */\nconst arrowDownRightCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-right-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-right-circle/}.\r\n */\nconst arrowDownRightCircle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-right-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-right-square-fill/}.\r\n */\nconst arrowDownRightSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-right-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-right-square/}.\r\n */\nconst arrowDownRightSquare = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-right/}.\r\n */\nconst arrowDownRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-short.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-short/}.\r\n */\nconst arrowDownShort = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-square-fill/}.\r\n */\nconst arrowDownSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-square/}.\r\n */\nconst arrowDownSquare = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down-up/}.\r\n */\nconst arrowDownUp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-down/}.\r\n */\nconst arrowDown = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-left-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-left-circle-fill/}.\r\n */\nconst arrowLeftCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-left-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-left-circle/}.\r\n */\nconst arrowLeftCircle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-left-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-left-right/}.\r\n */\nconst arrowLeftRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-left-short.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-left-short/}.\r\n */\nconst arrowLeftShort = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-left-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-left-square-fill/}.\r\n */\nconst arrowLeftSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-left-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-left-square/}.\r\n */\nconst arrowLeftSquare = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-left/}.\r\n */\nconst arrowLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-repeat.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-repeat/}.\r\n */\nconst arrowRepeat = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-return-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-return-left/}.\r\n */\nconst arrowReturnLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-return-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-return-right/}.\r\n */\nconst arrowReturnRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-right-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-right-circle-fill/}.\r\n */\nconst arrowRightCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-right-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-right-circle/}.\r\n */\nconst arrowRightCircle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-right-short.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-right-short/}.\r\n */\nconst arrowRightShort = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-right-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-right-square-fill/}.\r\n */\nconst arrowRightSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-right-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-right-square/}.\r\n */\nconst arrowRightSquare = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-right/}.\r\n */\nconst arrowRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-through-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-through-heart-fill/}.\r\n */\nconst arrowThroughHeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-through-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-through-heart/}.\r\n */\nconst arrowThroughHeart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-circle-fill/}.\r\n */\nconst arrowUpCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-circle/}.\r\n */\nconst arrowUpCircle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-left-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-left-circle-fill/}.\r\n */\nconst arrowUpLeftCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-left-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-left-circle/}.\r\n */\nconst arrowUpLeftCircle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-left-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-left-square-fill/}.\r\n */\nconst arrowUpLeftSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-left-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-left-square/}.\r\n */\nconst arrowUpLeftSquare = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-left/}.\r\n */\nconst arrowUpLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-right-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-right-circle-fill/}.\r\n */\nconst arrowUpRightCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-right-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-right-circle/}.\r\n */\nconst arrowUpRightCircle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-right-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-right-square-fill/}.\r\n */\nconst arrowUpRightSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-right-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-right-square/}.\r\n */\nconst arrowUpRightSquare = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-right/}.\r\n */\nconst arrowUpRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-short.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-short/}.\r\n */\nconst arrowUpShort = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-square-fill/}.\r\n */\nconst arrowUpSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up-square/}.\r\n */\nconst arrowUpSquare = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrow-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrow-up/}.\r\n */\nconst arrowUp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrows-angle-contract.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrows-angle-contract/}.\r\n */\nconst arrowsAngleContract = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrows-angle-expand.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrows-angle-expand/}.\r\n */\nconst arrowsAngleExpand = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrows-collapse.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrows-collapse/}.\r\n */\nconst arrowsCollapse = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrows-expand.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrows-expand/}.\r\n */\nconst arrowsExpand = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrows-fullscreen.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrows-fullscreen/}.\r\n */\nconst arrowsFullscreen = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * arrows-move.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/arrows-move/}.\r\n */\nconst arrowsMove = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * aspect-ratio-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/aspect-ratio-fill/}.\r\n */\nconst aspectRatioFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * aspect-ratio.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/aspect-ratio/}.\r\n */\nconst aspectRatio = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * asterisk.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/asterisk/}.\r\n */\nconst asterisk = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * at.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/at/}.\r\n */\nconst at = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * award-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/award-fill/}.\r\n */\nconst awardFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * award.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/award/}.\r\n */\nconst award = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * back.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/back/}.\r\n */\nconst back = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * backspace-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/backspace-fill/}.\r\n */\nconst backspaceFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * backspace-reverse-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/backspace-reverse-fill/}.\r\n */\nconst backspaceReverseFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * backspace-reverse.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/backspace-reverse/}.\r\n */\nconst backspaceReverse = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * backspace.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/backspace/}.\r\n */\nconst backspace = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-3d-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-3d-fill/}.\r\n */\nconst badge3DFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-3d.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-3d/}.\r\n */\nconst badge3D = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-4k-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-4k-fill/}.\r\n */\nconst badge4KFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-4k.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-4k/}.\r\n */\nconst badge4K = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-8k-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-8k-fill/}.\r\n */\nconst badge8KFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-8k.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-8k/}.\r\n */\nconst badge8K = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-ad-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-ad-fill/}.\r\n */\nconst badgeAdFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-ad.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-ad/}.\r\n */\nconst badgeAd = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-ar-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-ar-fill/}.\r\n */\nconst badgeArFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-ar.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-ar/}.\r\n */\nconst badgeAr = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-cc-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-cc-fill/}.\r\n */\nconst badgeCcFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-cc.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-cc/}.\r\n */\nconst badgeCc = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-hd-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-hd-fill/}.\r\n */\nconst badgeHdFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-hd.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-hd/}.\r\n */\nconst badgeHd = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-sd-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-sd-fill/}.\r\n */\nconst badgeSdFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-sd.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-sd/}.\r\n */\nconst badgeSd = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-tm-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-tm-fill/}.\r\n */\nconst badgeTmFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-tm.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-tm/}.\r\n */\nconst badgeTm = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-vo-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-vo-fill/}.\r\n */\nconst badgeVoFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-vo.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-vo/}.\r\n */\nconst badgeVo = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-vr-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-vr-fill/}.\r\n */\nconst badgeVrFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-vr.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-vr/}.\r\n */\nconst badgeVr = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-wc-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-wc-fill/}.\r\n */\nconst badgeWcFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * badge-wc.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/badge-wc/}.\r\n */\nconst badgeWc = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bag-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bag-check-fill/}.\r\n */\nconst bagCheckFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bag-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bag-check/}.\r\n */\nconst bagCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bag-dash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bag-dash-fill/}.\r\n */\nconst bagDashFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bag-dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bag-dash/}.\r\n */\nconst bagDash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bag-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bag-fill/}.\r\n */\nconst bagFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bag-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bag-heart-fill/}.\r\n */\nconst bagHeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bag-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bag-heart/}.\r\n */\nconst bagHeart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bag-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bag-plus-fill/}.\r\n */\nconst bagPlusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bag-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bag-plus/}.\r\n */\nconst bagPlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bag-x-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bag-x-fill/}.\r\n */\nconst bagXFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bag-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bag-x/}.\r\n */\nconst bagX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bag.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bag/}.\r\n */\nconst bag = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * balloon-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/balloon-fill/}.\r\n */\nconst balloonFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * balloon-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/balloon-heart-fill/}.\r\n */\nconst balloonHeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * balloon-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/balloon-heart/}.\r\n */\nconst balloonHeart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * balloon.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/balloon/}.\r\n */\nconst balloon = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bandaid-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bandaid-fill/}.\r\n */\nconst bandaidFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bandaid.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bandaid/}.\r\n */\nconst bandaid = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bank.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bank/}.\r\n */\nconst bank = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bank2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bank2/}.\r\n */\nconst bank2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bar-chart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bar-chart-fill/}.\r\n */\nconst barChartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bar-chart-line-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bar-chart-line-fill/}.\r\n */\nconst barChartLineFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bar-chart-line.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bar-chart-line/}.\r\n */\nconst barChartLine = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bar-chart-steps.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bar-chart-steps/}.\r\n */\nconst barChartSteps = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bar-chart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bar-chart/}.\r\n */\nconst barChart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * basket-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/basket-fill/}.\r\n */\nconst basketFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * basket.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/basket/}.\r\n */\nconst basket = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * basket2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/basket2-fill/}.\r\n */\nconst basket2Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * basket2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/basket2/}.\r\n */\nconst basket2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * basket3-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/basket3-fill/}.\r\n */\nconst basket3Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * basket3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/basket3/}.\r\n */\nconst basket3 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * battery-charging.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/battery-charging/}.\r\n */\nconst batteryCharging = `\n \n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * battery-full.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/battery-full/}.\r\n */\nconst batteryFull = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * battery-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/battery-half/}.\r\n */\nconst batteryHalf = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * battery.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/battery/}.\r\n */\nconst battery = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * behance.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/behance/}.\r\n */\nconst behance = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bell-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bell-fill/}.\r\n */\nconst bellFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bell-slash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bell-slash-fill/}.\r\n */\nconst bellSlashFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bell-slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bell-slash/}.\r\n */\nconst bellSlash = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bell.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bell/}.\r\n */\nconst bell = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bezier.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bezier/}.\r\n */\nconst bezier = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bezier2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bezier2/}.\r\n */\nconst bezier2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bicycle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bicycle/}.\r\n */\nconst bicycle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * binoculars-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/binoculars-fill/}.\r\n */\nconst binocularsFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * binoculars.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/binoculars/}.\r\n */\nconst binoculars = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * blockquote-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/blockquote-left/}.\r\n */\nconst blockquoteLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * blockquote-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/blockquote-right/}.\r\n */\nconst blockquoteRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bluetooth.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bluetooth/}.\r\n */\nconst bluetooth = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * body-text.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/body-text/}.\r\n */\nconst bodyText = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * book-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/book-fill/}.\r\n */\nconst bookFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * book-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/book-half/}.\r\n */\nconst bookHalf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * book.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/book/}.\r\n */\nconst book = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmark-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmark-check-fill/}.\r\n */\nconst bookmarkCheckFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmark-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmark-check/}.\r\n */\nconst bookmarkCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmark-dash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmark-dash-fill/}.\r\n */\nconst bookmarkDashFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmark-dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmark-dash/}.\r\n */\nconst bookmarkDash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmark-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmark-fill/}.\r\n */\nconst bookmarkFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmark-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmark-heart-fill/}.\r\n */\nconst bookmarkHeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmark-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmark-heart/}.\r\n */\nconst bookmarkHeart = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmark-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmark-plus-fill/}.\r\n */\nconst bookmarkPlusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmark-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmark-plus/}.\r\n */\nconst bookmarkPlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmark-star-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmark-star-fill/}.\r\n */\nconst bookmarkStarFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmark-star.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmark-star/}.\r\n */\nconst bookmarkStar = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmark-x-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmark-x-fill/}.\r\n */\nconst bookmarkXFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmark-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmark-x/}.\r\n */\nconst bookmarkX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmark.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmark/}.\r\n */\nconst bookmark = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmarks-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmarks-fill/}.\r\n */\nconst bookmarksFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookmarks.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookmarks/}.\r\n */\nconst bookmarks = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bookshelf.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bookshelf/}.\r\n */\nconst bookshelf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * boombox-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/boombox-fill/}.\r\n */\nconst boomboxFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * boombox.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/boombox/}.\r\n */\nconst boombox = `\n \n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bootstrap-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bootstrap-fill/}.\r\n */\nconst bootstrapFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bootstrap-reboot.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bootstrap-reboot/}.\r\n */\nconst bootstrapReboot = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bootstrap.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bootstrap/}.\r\n */\nconst bootstrap = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * border-all.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/border-all/}.\r\n */\nconst borderAll = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * border-bottom.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/border-bottom/}.\r\n */\nconst borderBottom = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * border-center.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/border-center/}.\r\n */\nconst borderCenter = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * border-inner.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/border-inner/}.\r\n */\nconst borderInner = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * border-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/border-left/}.\r\n */\nconst borderLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * border-middle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/border-middle/}.\r\n */\nconst borderMiddle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * border-outer.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/border-outer/}.\r\n */\nconst borderOuter = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * border-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/border-right/}.\r\n */\nconst borderRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * border-style.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/border-style/}.\r\n */\nconst borderStyle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * border-top.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/border-top/}.\r\n */\nconst borderTop = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * border-width.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/border-width/}.\r\n */\nconst borderWidth = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * border.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/border/}.\r\n */\nconst border = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bounding-box-circles.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bounding-box-circles/}.\r\n */\nconst boundingBoxCircles = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bounding-box.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bounding-box/}.\r\n */\nconst boundingBox = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-down-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-down-left/}.\r\n */\nconst boxArrowDownLeft = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-down-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-down-right/}.\r\n */\nconst boxArrowDownRight = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-down/}.\r\n */\nconst boxArrowDown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-in-down-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-in-down-left/}.\r\n */\nconst boxArrowInDownLeft = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-in-down-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-in-down-right/}.\r\n */\nconst boxArrowInDownRight = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-in-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-in-down/}.\r\n */\nconst boxArrowInDown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-in-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-in-left/}.\r\n */\nconst boxArrowInLeft = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-in-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-in-right/}.\r\n */\nconst boxArrowInRight = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-in-up-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-in-up-left/}.\r\n */\nconst boxArrowInUpLeft = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-in-up-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-in-up-right/}.\r\n */\nconst boxArrowInUpRight = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-in-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-in-up/}.\r\n */\nconst boxArrowInUp = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-left/}.\r\n */\nconst boxArrowLeft = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-right/}.\r\n */\nconst boxArrowRight = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-up-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-up-left/}.\r\n */\nconst boxArrowUpLeft = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-up-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-up-right/}.\r\n */\nconst boxArrowUpRight = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-arrow-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-arrow-up/}.\r\n */\nconst boxArrowUp = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-fill/}.\r\n */\nconst boxFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-seam-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-seam-fill/}.\r\n */\nconst boxSeamFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box-seam.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box-seam/}.\r\n */\nconst boxSeam = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box/}.\r\n */\nconst box = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box2-fill/}.\r\n */\nconst box2Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box2-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box2-heart-fill/}.\r\n */\nconst box2HeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box2-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box2-heart/}.\r\n */\nconst box2Heart = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * box2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/box2/}.\r\n */\nconst box2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * boxes.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/boxes/}.\r\n */\nconst boxes = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * braces-asterisk.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/braces-asterisk/}.\r\n */\nconst bracesAsterisk = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * braces.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/braces/}.\r\n */\nconst braces = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bricks.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bricks/}.\r\n */\nconst bricks = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * briefcase-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/briefcase-fill/}.\r\n */\nconst briefcaseFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * briefcase.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/briefcase/}.\r\n */\nconst briefcase = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * brightness-alt-high-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/brightness-alt-high-fill/}.\r\n */\nconst brightnessAltHighFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * brightness-alt-high.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/brightness-alt-high/}.\r\n */\nconst brightnessAltHigh = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * brightness-alt-low-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/brightness-alt-low-fill/}.\r\n */\nconst brightnessAltLowFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * brightness-alt-low.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/brightness-alt-low/}.\r\n */\nconst brightnessAltLow = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * brightness-high-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/brightness-high-fill/}.\r\n */\nconst brightnessHighFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * brightness-high.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/brightness-high/}.\r\n */\nconst brightnessHigh = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * brightness-low-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/brightness-low-fill/}.\r\n */\nconst brightnessLowFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * brightness-low.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/brightness-low/}.\r\n */\nconst brightnessLow = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * broadcast-pin.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/broadcast-pin/}.\r\n */\nconst broadcastPin = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * broadcast.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/broadcast/}.\r\n */\nconst broadcast = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * browser-chrome.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/browser-chrome/}.\r\n */\nconst browserChrome = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * browser-edge.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/browser-edge/}.\r\n */\nconst browserEdge = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * browser-firefox.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/browser-firefox/}.\r\n */\nconst browserFirefox = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * browser-safari.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/browser-safari/}.\r\n */\nconst browserSafari = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * brush-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/brush-fill/}.\r\n */\nconst brushFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * brush.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/brush/}.\r\n */\nconst brush = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bucket-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bucket-fill/}.\r\n */\nconst bucketFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bucket.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bucket/}.\r\n */\nconst bucket = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bug-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bug-fill/}.\r\n */\nconst bugFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bug.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bug/}.\r\n */\nconst bug = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-add.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-add/}.\r\n */\nconst buildingAdd = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-check/}.\r\n */\nconst buildingCheck = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-dash/}.\r\n */\nconst buildingDash = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-down/}.\r\n */\nconst buildingDown = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-exclamation.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-exclamation/}.\r\n */\nconst buildingExclamation = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-fill-add.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-fill-add/}.\r\n */\nconst buildingFillAdd = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-fill-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-fill-check/}.\r\n */\nconst buildingFillCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-fill-dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-fill-dash/}.\r\n */\nconst buildingFillDash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-fill-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-fill-down/}.\r\n */\nconst buildingFillDown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-fill-exclamation.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-fill-exclamation/}.\r\n */\nconst buildingFillExclamation = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-fill-gear.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-fill-gear/}.\r\n */\nconst buildingFillGear = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-fill-lock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-fill-lock/}.\r\n */\nconst buildingFillLock = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-fill-slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-fill-slash/}.\r\n */\nconst buildingFillSlash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-fill-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-fill-up/}.\r\n */\nconst buildingFillUp = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-fill-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-fill-x/}.\r\n */\nconst buildingFillX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-fill/}.\r\n */\nconst buildingFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-gear.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-gear/}.\r\n */\nconst buildingGear = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-lock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-lock/}.\r\n */\nconst buildingLock = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-slash/}.\r\n */\nconst buildingSlash = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-up/}.\r\n */\nconst buildingUp = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building-x/}.\r\n */\nconst buildingX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * building.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/building/}.\r\n */\nconst building = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * buildings-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/buildings-fill/}.\r\n */\nconst buildingsFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * buildings.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/buildings/}.\r\n */\nconst buildings = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bullseye.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bullseye/}.\r\n */\nconst bullseye = `\n \n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bus-front-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bus-front-fill/}.\r\n */\nconst busFrontFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * bus-front.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/bus-front/}.\r\n */\nconst busFront = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * c-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/c-circle-fill/}.\r\n */\nconst cCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * c-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/c-circle/}.\r\n */\nconst cCircle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * c-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/c-square-fill/}.\r\n */\nconst cSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * c-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/c-square/}.\r\n */\nconst cSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calculator-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calculator-fill/}.\r\n */\nconst calculatorFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calculator.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calculator/}.\r\n */\nconst calculator = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-check-fill/}.\r\n */\nconst calendarCheckFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-check/}.\r\n */\nconst calendarCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-date-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-date-fill/}.\r\n */\nconst calendarDateFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-date.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-date/}.\r\n */\nconst calendarDate = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-day-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-day-fill/}.\r\n */\nconst calendarDayFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-day.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-day/}.\r\n */\nconst calendarDay = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-event-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-event-fill/}.\r\n */\nconst calendarEventFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-event.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-event/}.\r\n */\nconst calendarEvent = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-fill/}.\r\n */\nconst calendarFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-heart-fill/}.\r\n */\nconst calendarHeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-heart/}.\r\n */\nconst calendarHeart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-minus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-minus-fill/}.\r\n */\nconst calendarMinusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-minus/}.\r\n */\nconst calendarMinus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-month-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-month-fill/}.\r\n */\nconst calendarMonthFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-month.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-month/}.\r\n */\nconst calendarMonth = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-plus-fill/}.\r\n */\nconst calendarPlusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-plus/}.\r\n */\nconst calendarPlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-range-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-range-fill/}.\r\n */\nconst calendarRangeFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-range.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-range/}.\r\n */\nconst calendarRange = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-week-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-week-fill/}.\r\n */\nconst calendarWeekFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-week.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-week/}.\r\n */\nconst calendarWeek = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-x-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-x-fill/}.\r\n */\nconst calendarXFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar-x/}.\r\n */\nconst calendarX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar/}.\r\n */\nconst calendar = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-check-fill/}.\r\n */\nconst calendar2CheckFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-check/}.\r\n */\nconst calendar2Check = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-date-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-date-fill/}.\r\n */\nconst calendar2DateFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-date.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-date/}.\r\n */\nconst calendar2Date = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-day-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-day-fill/}.\r\n */\nconst calendar2DayFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-day.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-day/}.\r\n */\nconst calendar2Day = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-event-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-event-fill/}.\r\n */\nconst calendar2EventFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-event.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-event/}.\r\n */\nconst calendar2Event = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-fill/}.\r\n */\nconst calendar2Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-heart-fill/}.\r\n */\nconst calendar2HeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-heart/}.\r\n */\nconst calendar2Heart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-minus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-minus-fill/}.\r\n */\nconst calendar2MinusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-minus/}.\r\n */\nconst calendar2Minus = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-month-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-month-fill/}.\r\n */\nconst calendar2MonthFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-month.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-month/}.\r\n */\nconst calendar2Month = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-plus-fill/}.\r\n */\nconst calendar2PlusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-plus/}.\r\n */\nconst calendar2Plus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-range-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-range-fill/}.\r\n */\nconst calendar2RangeFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-range.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-range/}.\r\n */\nconst calendar2Range = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-week-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-week-fill/}.\r\n */\nconst calendar2WeekFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-week.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-week/}.\r\n */\nconst calendar2Week = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-x-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-x-fill/}.\r\n */\nconst calendar2XFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2-x/}.\r\n */\nconst calendar2X = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar2/}.\r\n */\nconst calendar2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar3-event-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar3-event-fill/}.\r\n */\nconst calendar3EventFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar3-event.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar3-event/}.\r\n */\nconst calendar3Event = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar3-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar3-fill/}.\r\n */\nconst calendar3Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar3-range-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar3-range-fill/}.\r\n */\nconst calendar3RangeFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar3-range.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar3-range/}.\r\n */\nconst calendar3Range = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar3-week-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar3-week-fill/}.\r\n */\nconst calendar3WeekFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar3-week.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar3-week/}.\r\n */\nconst calendar3Week = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar3/}.\r\n */\nconst calendar3 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar4-event.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar4-event/}.\r\n */\nconst calendar4Event = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar4-range.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar4-range/}.\r\n */\nconst calendar4Range = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar4-week.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar4-week/}.\r\n */\nconst calendar4Week = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * calendar4.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/calendar4/}.\r\n */\nconst calendar4 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * camera-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/camera-fill/}.\r\n */\nconst cameraFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * camera-reels-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/camera-reels-fill/}.\r\n */\nconst cameraReelsFill = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * camera-reels.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/camera-reels/}.\r\n */\nconst cameraReels = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * camera-video-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/camera-video-fill/}.\r\n */\nconst cameraVideoFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * camera-video-off-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/camera-video-off-fill/}.\r\n */\nconst cameraVideoOffFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * camera-video-off.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/camera-video-off/}.\r\n */\nconst cameraVideoOff = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * camera-video.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/camera-video/}.\r\n */\nconst cameraVideo = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * camera.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/camera/}.\r\n */\nconst camera = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * camera2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/camera2/}.\r\n */\nconst camera2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * capslock-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/capslock-fill/}.\r\n */\nconst capslockFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * capslock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/capslock/}.\r\n */\nconst capslock = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * capsule-pill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/capsule-pill/}.\r\n */\nconst capsulePill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * capsule.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/capsule/}.\r\n */\nconst capsule = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * car-front-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/car-front-fill/}.\r\n */\nconst carFrontFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * car-front.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/car-front/}.\r\n */\nconst carFront = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * card-checklist.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/card-checklist/}.\r\n */\nconst cardChecklist = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * card-heading.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/card-heading/}.\r\n */\nconst cardHeading = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * card-image.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/card-image/}.\r\n */\nconst cardImage = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * card-list.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/card-list/}.\r\n */\nconst cardList = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * card-text.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/card-text/}.\r\n */\nconst cardText = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-down-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-down-fill/}.\r\n */\nconst caretDownFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-down-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-down-square-fill/}.\r\n */\nconst caretDownSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-down-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-down-square/}.\r\n */\nconst caretDownSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-down/}.\r\n */\nconst caretDown = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-left-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-left-fill/}.\r\n */\nconst caretLeftFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-left-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-left-square-fill/}.\r\n */\nconst caretLeftSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-left-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-left-square/}.\r\n */\nconst caretLeftSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-left/}.\r\n */\nconst caretLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-right-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-right-fill/}.\r\n */\nconst caretRightFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-right-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-right-square-fill/}.\r\n */\nconst caretRightSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-right-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-right-square/}.\r\n */\nconst caretRightSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-right/}.\r\n */\nconst caretRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-up-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-up-fill/}.\r\n */\nconst caretUpFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-up-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-up-square-fill/}.\r\n */\nconst caretUpSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-up-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-up-square/}.\r\n */\nconst caretUpSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * caret-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/caret-up/}.\r\n */\nconst caretUp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cart-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cart-check-fill/}.\r\n */\nconst cartCheckFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cart-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cart-check/}.\r\n */\nconst cartCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cart-dash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cart-dash-fill/}.\r\n */\nconst cartDashFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cart-dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cart-dash/}.\r\n */\nconst cartDash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cart-fill/}.\r\n */\nconst cartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cart-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cart-plus-fill/}.\r\n */\nconst cartPlusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cart-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cart-plus/}.\r\n */\nconst cartPlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cart-x-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cart-x-fill/}.\r\n */\nconst cartXFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cart-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cart-x/}.\r\n */\nconst cartX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cart/}.\r\n */\nconst cart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cart2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cart2/}.\r\n */\nconst cart2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cart3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cart3/}.\r\n */\nconst cart3 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cart4.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cart4/}.\r\n */\nconst cart4 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cash-coin.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cash-coin/}.\r\n */\nconst cashCoin = `\n \n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cash-stack.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cash-stack/}.\r\n */\nconst cashStack = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cash/}.\r\n */\nconst cash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cassette-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cassette-fill/}.\r\n */\nconst cassetteFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cassette.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cassette/}.\r\n */\nconst cassette = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cast.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cast/}.\r\n */\nconst cast = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cc-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cc-circle-fill/}.\r\n */\nconst ccCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cc-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cc-circle/}.\r\n */\nconst ccCircle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cc-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cc-square-fill/}.\r\n */\nconst ccSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cc-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cc-square/}.\r\n */\nconst ccSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-dots-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-dots-fill/}.\r\n */\nconst chatDotsFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-dots.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-dots/}.\r\n */\nconst chatDots = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-fill/}.\r\n */\nconst chatFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-heart-fill/}.\r\n */\nconst chatHeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-heart/}.\r\n */\nconst chatHeart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-left-dots-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-left-dots-fill/}.\r\n */\nconst chatLeftDotsFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-left-dots.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-left-dots/}.\r\n */\nconst chatLeftDots = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-left-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-left-fill/}.\r\n */\nconst chatLeftFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-left-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-left-heart-fill/}.\r\n */\nconst chatLeftHeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-left-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-left-heart/}.\r\n */\nconst chatLeftHeart = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-left-quote-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-left-quote-fill/}.\r\n */\nconst chatLeftQuoteFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-left-quote.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-left-quote/}.\r\n */\nconst chatLeftQuote = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-left-text-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-left-text-fill/}.\r\n */\nconst chatLeftTextFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-left-text.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-left-text/}.\r\n */\nconst chatLeftText = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-left/}.\r\n */\nconst chatLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-quote-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-quote-fill/}.\r\n */\nconst chatQuoteFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-quote.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-quote/}.\r\n */\nconst chatQuote = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-right-dots-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-right-dots-fill/}.\r\n */\nconst chatRightDotsFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-right-dots.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-right-dots/}.\r\n */\nconst chatRightDots = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-right-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-right-fill/}.\r\n */\nconst chatRightFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-right-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-right-heart-fill/}.\r\n */\nconst chatRightHeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-right-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-right-heart/}.\r\n */\nconst chatRightHeart = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-right-quote-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-right-quote-fill/}.\r\n */\nconst chatRightQuoteFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-right-quote.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-right-quote/}.\r\n */\nconst chatRightQuote = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-right-text-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-right-text-fill/}.\r\n */\nconst chatRightTextFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-right-text.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-right-text/}.\r\n */\nconst chatRightText = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-right/}.\r\n */\nconst chatRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-square-dots-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-square-dots-fill/}.\r\n */\nconst chatSquareDotsFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-square-dots.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-square-dots/}.\r\n */\nconst chatSquareDots = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-square-fill/}.\r\n */\nconst chatSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-square-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-square-heart-fill/}.\r\n */\nconst chatSquareHeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-square-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-square-heart/}.\r\n */\nconst chatSquareHeart = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-square-quote-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-square-quote-fill/}.\r\n */\nconst chatSquareQuoteFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-square-quote.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-square-quote/}.\r\n */\nconst chatSquareQuote = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-square-text-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-square-text-fill/}.\r\n */\nconst chatSquareTextFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-square-text.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-square-text/}.\r\n */\nconst chatSquareText = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-square/}.\r\n */\nconst chatSquare = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-text-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-text-fill/}.\r\n */\nconst chatTextFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat-text.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat-text/}.\r\n */\nconst chatText = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chat.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chat/}.\r\n */\nconst chat = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * check-all.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/check-all/}.\r\n */\nconst checkAll = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * check-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/check-circle-fill/}.\r\n */\nconst checkCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * check-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/check-circle/}.\r\n */\nconst checkCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * check-lg.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/check-lg/}.\r\n */\nconst checkLg = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * check-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/check-square-fill/}.\r\n */\nconst checkSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * check-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/check-square/}.\r\n */\nconst checkSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/check/}.\r\n */\nconst check = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * check2-all.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/check2-all/}.\r\n */\nconst check2All = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * check2-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/check2-circle/}.\r\n */\nconst check2Circle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * check2-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/check2-square/}.\r\n */\nconst check2Square = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * check2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/check2/}.\r\n */\nconst check2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-bar-contract.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-bar-contract/}.\r\n */\nconst chevronBarContract = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-bar-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-bar-down/}.\r\n */\nconst chevronBarDown = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-bar-expand.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-bar-expand/}.\r\n */\nconst chevronBarExpand = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-bar-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-bar-left/}.\r\n */\nconst chevronBarLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-bar-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-bar-right/}.\r\n */\nconst chevronBarRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-bar-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-bar-up/}.\r\n */\nconst chevronBarUp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-compact-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-compact-down/}.\r\n */\nconst chevronCompactDown = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-compact-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-compact-left/}.\r\n */\nconst chevronCompactLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-compact-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-compact-right/}.\r\n */\nconst chevronCompactRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-compact-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-compact-up/}.\r\n */\nconst chevronCompactUp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-contract.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-contract/}.\r\n */\nconst chevronContract = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-double-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-double-down/}.\r\n */\nconst chevronDoubleDown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-double-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-double-left/}.\r\n */\nconst chevronDoubleLeft = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-double-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-double-right/}.\r\n */\nconst chevronDoubleRight = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-double-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-double-up/}.\r\n */\nconst chevronDoubleUp = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-down/}.\r\n */\nconst chevronDown = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-expand.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-expand/}.\r\n */\nconst chevronExpand = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-left/}.\r\n */\nconst chevronLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-right/}.\r\n */\nconst chevronRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * chevron-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/chevron-up/}.\r\n */\nconst chevronUp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/circle-fill/}.\r\n */\nconst circleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * circle-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/circle-half/}.\r\n */\nconst circleHalf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * circle-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/circle-square/}.\r\n */\nconst circleSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/circle/}.\r\n */\nconst circle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard-check-fill/}.\r\n */\nconst clipboardCheckFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard-check/}.\r\n */\nconst clipboardCheck = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard-data-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard-data-fill/}.\r\n */\nconst clipboardDataFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard-data.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard-data/}.\r\n */\nconst clipboardData = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard-fill/}.\r\n */\nconst clipboardFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard-heart-fill/}.\r\n */\nconst clipboardHeartFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard-heart/}.\r\n */\nconst clipboardHeart = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard-minus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard-minus-fill/}.\r\n */\nconst clipboardMinusFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard-minus/}.\r\n */\nconst clipboardMinus = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard-plus-fill/}.\r\n */\nconst clipboardPlusFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard-plus/}.\r\n */\nconst clipboardPlus = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard-pulse.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard-pulse/}.\r\n */\nconst clipboardPulse = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard-x-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard-x-fill/}.\r\n */\nconst clipboardXFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard-x/}.\r\n */\nconst clipboardX = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard/}.\r\n */\nconst clipboard = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-check-fill/}.\r\n */\nconst clipboard2CheckFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-check/}.\r\n */\nconst clipboard2Check = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-data-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-data-fill/}.\r\n */\nconst clipboard2DataFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-data.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-data/}.\r\n */\nconst clipboard2Data = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-fill/}.\r\n */\nconst clipboard2Fill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-heart-fill/}.\r\n */\nconst clipboard2HeartFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-heart/}.\r\n */\nconst clipboard2Heart = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-minus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-minus-fill/}.\r\n */\nconst clipboard2MinusFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-minus/}.\r\n */\nconst clipboard2Minus = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-plus-fill/}.\r\n */\nconst clipboard2PlusFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-plus/}.\r\n */\nconst clipboard2Plus = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-pulse-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-pulse-fill/}.\r\n */\nconst clipboard2PulseFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-pulse.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-pulse/}.\r\n */\nconst clipboard2Pulse = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-x-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-x-fill/}.\r\n */\nconst clipboard2XFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2-x/}.\r\n */\nconst clipboard2X = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clipboard2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clipboard2/}.\r\n */\nconst clipboard2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clock-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clock-fill/}.\r\n */\nconst clockFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clock-history.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clock-history/}.\r\n */\nconst clockHistory = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clock/}.\r\n */\nconst clock = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-arrow-down-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-arrow-down-fill/}.\r\n */\nconst cloudArrowDownFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-arrow-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-arrow-down/}.\r\n */\nconst cloudArrowDown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-arrow-up-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-arrow-up-fill/}.\r\n */\nconst cloudArrowUpFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-arrow-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-arrow-up/}.\r\n */\nconst cloudArrowUp = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-check-fill/}.\r\n */\nconst cloudCheckFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-check/}.\r\n */\nconst cloudCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-download-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-download-fill/}.\r\n */\nconst cloudDownloadFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-download.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-download/}.\r\n */\nconst cloudDownload = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-drizzle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-drizzle-fill/}.\r\n */\nconst cloudDrizzleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-drizzle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-drizzle/}.\r\n */\nconst cloudDrizzle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-fill/}.\r\n */\nconst cloudFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-fog-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-fog-fill/}.\r\n */\nconst cloudFogFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-fog.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-fog/}.\r\n */\nconst cloudFog = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-fog2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-fog2-fill/}.\r\n */\nconst cloudFog2Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-fog2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-fog2/}.\r\n */\nconst cloudFog2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-hail-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-hail-fill/}.\r\n */\nconst cloudHailFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-hail.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-hail/}.\r\n */\nconst cloudHail = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-haze-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-haze-fill/}.\r\n */\nconst cloudHazeFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-haze.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-haze/}.\r\n */\nconst cloudHaze = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-haze2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-haze2-fill/}.\r\n */\nconst cloudHaze2Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-haze2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-haze2/}.\r\n */\nconst cloudHaze2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-lightning-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-lightning-fill/}.\r\n */\nconst cloudLightningFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-lightning-rain-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-lightning-rain-fill/}.\r\n */\nconst cloudLightningRainFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-lightning-rain.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-lightning-rain/}.\r\n */\nconst cloudLightningRain = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-lightning.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-lightning/}.\r\n */\nconst cloudLightning = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-minus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-minus-fill/}.\r\n */\nconst cloudMinusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-minus/}.\r\n */\nconst cloudMinus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-moon-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-moon-fill/}.\r\n */\nconst cloudMoonFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-moon.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-moon/}.\r\n */\nconst cloudMoon = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-plus-fill/}.\r\n */\nconst cloudPlusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-plus/}.\r\n */\nconst cloudPlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-rain-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-rain-fill/}.\r\n */\nconst cloudRainFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-rain-heavy-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-rain-heavy-fill/}.\r\n */\nconst cloudRainHeavyFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-rain-heavy.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-rain-heavy/}.\r\n */\nconst cloudRainHeavy = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-rain.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-rain/}.\r\n */\nconst cloudRain = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-slash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-slash-fill/}.\r\n */\nconst cloudSlashFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-slash/}.\r\n */\nconst cloudSlash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-sleet-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-sleet-fill/}.\r\n */\nconst cloudSleetFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-sleet.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-sleet/}.\r\n */\nconst cloudSleet = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-snow-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-snow-fill/}.\r\n */\nconst cloudSnowFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-snow.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-snow/}.\r\n */\nconst cloudSnow = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-sun-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-sun-fill/}.\r\n */\nconst cloudSunFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-sun.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-sun/}.\r\n */\nconst cloudSun = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-upload-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-upload-fill/}.\r\n */\nconst cloudUploadFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud-upload.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud-upload/}.\r\n */\nconst cloudUpload = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloud.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloud/}.\r\n */\nconst cloud = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clouds-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clouds-fill/}.\r\n */\nconst cloudsFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * clouds.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/clouds/}.\r\n */\nconst clouds = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloudy-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloudy-fill/}.\r\n */\nconst cloudyFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cloudy.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cloudy/}.\r\n */\nconst cloudy = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * code-slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/code-slash/}.\r\n */\nconst codeSlash = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * code-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/code-square/}.\r\n */\nconst codeSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * code.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/code/}.\r\n */\nconst code = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * coin.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/coin/}.\r\n */\nconst coin = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * collection-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/collection-fill/}.\r\n */\nconst collectionFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * collection-play-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/collection-play-fill/}.\r\n */\nconst collectionPlayFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * collection-play.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/collection-play/}.\r\n */\nconst collectionPlay = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * collection.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/collection/}.\r\n */\nconst collection = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * columns-gap.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/columns-gap/}.\r\n */\nconst columnsGap = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * columns.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/columns/}.\r\n */\nconst columns = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * command.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/command/}.\r\n */\nconst command = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * compass-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/compass-fill/}.\r\n */\nconst compassFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * compass.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/compass/}.\r\n */\nconst compass = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cone-striped.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cone-striped/}.\r\n */\nconst coneStriped = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cone.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cone/}.\r\n */\nconst cone = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * controller.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/controller/}.\r\n */\nconst controller = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cpu-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cpu-fill/}.\r\n */\nconst cpuFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cpu.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cpu/}.\r\n */\nconst cpu = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * credit-card-2-back-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/credit-card-2-back-fill/}.\r\n */\nconst creditCard2BackFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * credit-card-2-back.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/credit-card-2-back/}.\r\n */\nconst creditCard2Back = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * credit-card-2-front-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/credit-card-2-front-fill/}.\r\n */\nconst creditCard2FrontFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * credit-card-2-front.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/credit-card-2-front/}.\r\n */\nconst creditCard2Front = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * credit-card-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/credit-card-fill/}.\r\n */\nconst creditCardFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * credit-card.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/credit-card/}.\r\n */\nconst creditCard = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * crop.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/crop/}.\r\n */\nconst crop = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cup-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cup-fill/}.\r\n */\nconst cupFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cup-hot-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cup-hot-fill/}.\r\n */\nconst cupHotFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cup-hot.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cup-hot/}.\r\n */\nconst cupHot = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cup-straw.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cup-straw/}.\r\n */\nconst cupStraw = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cup.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cup/}.\r\n */\nconst cup = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * currency-bitcoin.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/currency-bitcoin/}.\r\n */\nconst currencyBitcoin = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * currency-dollar.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/currency-dollar/}.\r\n */\nconst currencyDollar = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * currency-euro.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/currency-euro/}.\r\n */\nconst currencyEuro = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * currency-exchange.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/currency-exchange/}.\r\n */\nconst currencyExchange = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * currency-pound.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/currency-pound/}.\r\n */\nconst currencyPound = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * currency-rupee.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/currency-rupee/}.\r\n */\nconst currencyRupee = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * currency-yen.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/currency-yen/}.\r\n */\nconst currencyYen = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cursor-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cursor-fill/}.\r\n */\nconst cursorFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cursor-text.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cursor-text/}.\r\n */\nconst cursorText = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * cursor.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/cursor/}.\r\n */\nconst cursor = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dash-circle-dotted.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dash-circle-dotted/}.\r\n */\nconst dashCircleDotted = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dash-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dash-circle-fill/}.\r\n */\nconst dashCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dash-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dash-circle/}.\r\n */\nconst dashCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dash-lg.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dash-lg/}.\r\n */\nconst dashLg = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dash-square-dotted.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dash-square-dotted/}.\r\n */\nconst dashSquareDotted = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dash-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dash-square-fill/}.\r\n */\nconst dashSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dash-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dash-square/}.\r\n */\nconst dashSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dash/}.\r\n */\nconst dash = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-add.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-add/}.\r\n */\nconst databaseAdd = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-check/}.\r\n */\nconst databaseCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-dash/}.\r\n */\nconst databaseDash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-down/}.\r\n */\nconst databaseDown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-exclamation.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-exclamation/}.\r\n */\nconst databaseExclamation = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-fill-add.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-fill-add/}.\r\n */\nconst databaseFillAdd = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-fill-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-fill-check/}.\r\n */\nconst databaseFillCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-fill-dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-fill-dash/}.\r\n */\nconst databaseFillDash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-fill-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-fill-down/}.\r\n */\nconst databaseFillDown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-fill-exclamation.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-fill-exclamation/}.\r\n */\nconst databaseFillExclamation = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-fill-gear.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-fill-gear/}.\r\n */\nconst databaseFillGear = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-fill-lock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-fill-lock/}.\r\n */\nconst databaseFillLock = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-fill-slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-fill-slash/}.\r\n */\nconst databaseFillSlash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-fill-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-fill-up/}.\r\n */\nconst databaseFillUp = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-fill-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-fill-x/}.\r\n */\nconst databaseFillX = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-fill/}.\r\n */\nconst databaseFill = `\n \n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-gear.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-gear/}.\r\n */\nconst databaseGear = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-lock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-lock/}.\r\n */\nconst databaseLock = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-slash/}.\r\n */\nconst databaseSlash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-up/}.\r\n */\nconst databaseUp = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database-x/}.\r\n */\nconst databaseX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * database.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/database/}.\r\n */\nconst database = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * device-hdd-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/device-hdd-fill/}.\r\n */\nconst deviceHddFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * device-hdd.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/device-hdd/}.\r\n */\nconst deviceHdd = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * device-ssd-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/device-ssd-fill/}.\r\n */\nconst deviceSsdFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * device-ssd.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/device-ssd/}.\r\n */\nconst deviceSsd = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * diagram-2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/diagram-2-fill/}.\r\n */\nconst diagram2Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * diagram-2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/diagram-2/}.\r\n */\nconst diagram2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * diagram-3-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/diagram-3-fill/}.\r\n */\nconst diagram3Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * diagram-3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/diagram-3/}.\r\n */\nconst diagram3 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * diamond-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/diamond-fill/}.\r\n */\nconst diamondFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * diamond-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/diamond-half/}.\r\n */\nconst diamondHalf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * diamond.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/diamond/}.\r\n */\nconst diamond = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dice-1-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dice-1-fill/}.\r\n */\nconst dice1Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dice-1.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dice-1/}.\r\n */\nconst dice1 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dice-2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dice-2-fill/}.\r\n */\nconst dice2Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dice-2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dice-2/}.\r\n */\nconst dice2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dice-3-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dice-3-fill/}.\r\n */\nconst dice3Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dice-3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dice-3/}.\r\n */\nconst dice3 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dice-4-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dice-4-fill/}.\r\n */\nconst dice4Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dice-4.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dice-4/}.\r\n */\nconst dice4 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dice-5-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dice-5-fill/}.\r\n */\nconst dice5Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dice-5.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dice-5/}.\r\n */\nconst dice5 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dice-6-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dice-6-fill/}.\r\n */\nconst dice6Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dice-6.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dice-6/}.\r\n */\nconst dice6 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * disc-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/disc-fill/}.\r\n */\nconst discFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * disc.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/disc/}.\r\n */\nconst disc = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * discord.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/discord/}.\r\n */\nconst discord = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * display-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/display-fill/}.\r\n */\nconst displayFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * display.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/display/}.\r\n */\nconst display = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * displayport-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/displayport-fill/}.\r\n */\nconst displayportFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * displayport.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/displayport/}.\r\n */\nconst displayport = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * distribute-horizontal.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/distribute-horizontal/}.\r\n */\nconst distributeHorizontal = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * distribute-vertical.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/distribute-vertical/}.\r\n */\nconst distributeVertical = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * door-closed-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/door-closed-fill/}.\r\n */\nconst doorClosedFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * door-closed.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/door-closed/}.\r\n */\nconst doorClosed = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * door-open-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/door-open-fill/}.\r\n */\nconst doorOpenFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * door-open.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/door-open/}.\r\n */\nconst doorOpen = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dot.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dot/}.\r\n */\nconst dot = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * download.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/download/}.\r\n */\nconst download = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dpad-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dpad-fill/}.\r\n */\nconst dpadFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dpad.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dpad/}.\r\n */\nconst dpad = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dribbble.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dribbble/}.\r\n */\nconst dribbble = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * dropbox.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/dropbox/}.\r\n */\nconst dropbox = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * droplet-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/droplet-fill/}.\r\n */\nconst dropletFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * droplet-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/droplet-half/}.\r\n */\nconst dropletHalf = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * droplet.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/droplet/}.\r\n */\nconst droplet = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ear-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ear-fill/}.\r\n */\nconst earFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ear.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ear/}.\r\n */\nconst ear = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * earbuds.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/earbuds/}.\r\n */\nconst earbuds = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * easel-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/easel-fill/}.\r\n */\nconst easelFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * easel.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/easel/}.\r\n */\nconst easel = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * easel2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/easel2-fill/}.\r\n */\nconst easel2Fill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * easel2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/easel2/}.\r\n */\nconst easel2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * easel3-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/easel3-fill/}.\r\n */\nconst easel3Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * easel3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/easel3/}.\r\n */\nconst easel3 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * egg-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/egg-fill/}.\r\n */\nconst eggFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * egg-fried.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/egg-fried/}.\r\n */\nconst eggFried = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * egg.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/egg/}.\r\n */\nconst egg = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * eject-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/eject-fill/}.\r\n */\nconst ejectFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * eject.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/eject/}.\r\n */\nconst eject = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-angry-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-angry-fill/}.\r\n */\nconst emojiAngryFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-angry.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-angry/}.\r\n */\nconst emojiAngry = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-dizzy-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-dizzy-fill/}.\r\n */\nconst emojiDizzyFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-dizzy.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-dizzy/}.\r\n */\nconst emojiDizzy = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-expressionless-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-expressionless-fill/}.\r\n */\nconst emojiExpressionlessFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-expressionless.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-expressionless/}.\r\n */\nconst emojiExpressionless = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-frown-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-frown-fill/}.\r\n */\nconst emojiFrownFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-frown.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-frown/}.\r\n */\nconst emojiFrown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-heart-eyes-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-heart-eyes-fill/}.\r\n */\nconst emojiHeartEyesFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-heart-eyes.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-heart-eyes/}.\r\n */\nconst emojiHeartEyes = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-kiss-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-kiss-fill/}.\r\n */\nconst emojiKissFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-kiss.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-kiss/}.\r\n */\nconst emojiKiss = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-laughing-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-laughing-fill/}.\r\n */\nconst emojiLaughingFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-laughing.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-laughing/}.\r\n */\nconst emojiLaughing = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-neutral-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-neutral-fill/}.\r\n */\nconst emojiNeutralFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-neutral.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-neutral/}.\r\n */\nconst emojiNeutral = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-smile-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-smile-fill/}.\r\n */\nconst emojiSmileFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-smile-upside-down-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-smile-upside-down-fill/}.\r\n */\nconst emojiSmileUpsideDownFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-smile-upside-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-smile-upside-down/}.\r\n */\nconst emojiSmileUpsideDown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-smile.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-smile/}.\r\n */\nconst emojiSmile = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-sunglasses-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-sunglasses-fill/}.\r\n */\nconst emojiSunglassesFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-sunglasses.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-sunglasses/}.\r\n */\nconst emojiSunglasses = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-wink-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-wink-fill/}.\r\n */\nconst emojiWinkFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * emoji-wink.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/emoji-wink/}.\r\n */\nconst emojiWink = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-at-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-at-fill/}.\r\n */\nconst envelopeAtFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-at.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-at/}.\r\n */\nconst envelopeAt = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-check-fill/}.\r\n */\nconst envelopeCheckFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-check/}.\r\n */\nconst envelopeCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-dash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-dash-fill/}.\r\n */\nconst envelopeDashFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-dash/}.\r\n */\nconst envelopeDash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-exclamation-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-exclamation-fill/}.\r\n */\nconst envelopeExclamationFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-exclamation.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-exclamation/}.\r\n */\nconst envelopeExclamation = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-fill/}.\r\n */\nconst envelopeFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-heart-fill/}.\r\n */\nconst envelopeHeartFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-heart/}.\r\n */\nconst envelopeHeart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-open-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-open-fill/}.\r\n */\nconst envelopeOpenFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-open-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-open-heart-fill/}.\r\n */\nconst envelopeOpenHeartFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-open-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-open-heart/}.\r\n */\nconst envelopeOpenHeart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-open.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-open/}.\r\n */\nconst envelopeOpen = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-paper-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-paper-fill/}.\r\n */\nconst envelopePaperFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-paper-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-paper-heart-fill/}.\r\n */\nconst envelopePaperHeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-paper-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-paper-heart/}.\r\n */\nconst envelopePaperHeart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-paper.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-paper/}.\r\n */\nconst envelopePaper = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-plus-fill/}.\r\n */\nconst envelopePlusFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-plus/}.\r\n */\nconst envelopePlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-slash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-slash-fill/}.\r\n */\nconst envelopeSlashFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-slash/}.\r\n */\nconst envelopeSlash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-x-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-x-fill/}.\r\n */\nconst envelopeXFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope-x/}.\r\n */\nconst envelopeX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * envelope.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/envelope/}.\r\n */\nconst envelope = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * eraser-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/eraser-fill/}.\r\n */\nconst eraserFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * eraser.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/eraser/}.\r\n */\nconst eraser = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * escape.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/escape/}.\r\n */\nconst escape = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ethernet.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ethernet/}.\r\n */\nconst ethernet = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ev-front-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ev-front-fill/}.\r\n */\nconst evFrontFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ev-front.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ev-front/}.\r\n */\nconst evFront = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ev-station-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ev-station-fill/}.\r\n */\nconst evStationFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ev-station.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ev-station/}.\r\n */\nconst evStation = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * exclamation-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/exclamation-circle-fill/}.\r\n */\nconst exclamationCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * exclamation-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/exclamation-circle/}.\r\n */\nconst exclamationCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * exclamation-diamond-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/exclamation-diamond-fill/}.\r\n */\nconst exclamationDiamondFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * exclamation-diamond.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/exclamation-diamond/}.\r\n */\nconst exclamationDiamond = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * exclamation-lg.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/exclamation-lg/}.\r\n */\nconst exclamationLg = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * exclamation-octagon-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/exclamation-octagon-fill/}.\r\n */\nconst exclamationOctagonFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * exclamation-octagon.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/exclamation-octagon/}.\r\n */\nconst exclamationOctagon = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * exclamation-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/exclamation-square-fill/}.\r\n */\nconst exclamationSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * exclamation-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/exclamation-square/}.\r\n */\nconst exclamationSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * exclamation-triangle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/exclamation-triangle-fill/}.\r\n */\nconst exclamationTriangleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * exclamation-triangle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/exclamation-triangle/}.\r\n */\nconst exclamationTriangle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * exclamation.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/exclamation/}.\r\n */\nconst exclamation = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * exclude.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/exclude/}.\r\n */\nconst exclude = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * explicit-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/explicit-fill/}.\r\n */\nconst explicitFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * explicit.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/explicit/}.\r\n */\nconst explicit = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * eye-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/eye-fill/}.\r\n */\nconst eyeFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * eye-slash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/eye-slash-fill/}.\r\n */\nconst eyeSlashFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * eye-slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/eye-slash/}.\r\n */\nconst eyeSlash = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * eye.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/eye/}.\r\n */\nconst eye = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * eyedropper.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/eyedropper/}.\r\n */\nconst eyedropper = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * eyeglasses.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/eyeglasses/}.\r\n */\nconst eyeglasses = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * facebook.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/facebook/}.\r\n */\nconst facebook = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fan.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fan/}.\r\n */\nconst fan = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fast-forward-btn-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fast-forward-btn-fill/}.\r\n */\nconst fastForwardBtnFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fast-forward-btn.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fast-forward-btn/}.\r\n */\nconst fastForwardBtn = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fast-forward-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fast-forward-circle-fill/}.\r\n */\nconst fastForwardCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fast-forward-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fast-forward-circle/}.\r\n */\nconst fastForwardCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fast-forward-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fast-forward-fill/}.\r\n */\nconst fastForwardFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fast-forward.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fast-forward/}.\r\n */\nconst fastForward = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-arrow-down-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-arrow-down-fill/}.\r\n */\nconst fileArrowDownFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-arrow-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-arrow-down/}.\r\n */\nconst fileArrowDown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-arrow-up-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-arrow-up-fill/}.\r\n */\nconst fileArrowUpFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-arrow-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-arrow-up/}.\r\n */\nconst fileArrowUp = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-bar-graph-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-bar-graph-fill/}.\r\n */\nconst fileBarGraphFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-bar-graph.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-bar-graph/}.\r\n */\nconst fileBarGraph = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-binary-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-binary-fill/}.\r\n */\nconst fileBinaryFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-binary.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-binary/}.\r\n */\nconst fileBinary = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-break-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-break-fill/}.\r\n */\nconst fileBreakFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-break.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-break/}.\r\n */\nconst fileBreak = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-check-fill/}.\r\n */\nconst fileCheckFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-check/}.\r\n */\nconst fileCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-code-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-code-fill/}.\r\n */\nconst fileCodeFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-code.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-code/}.\r\n */\nconst fileCode = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-diff-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-diff-fill/}.\r\n */\nconst fileDiffFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-diff.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-diff/}.\r\n */\nconst fileDiff = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-arrow-down-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-arrow-down-fill/}.\r\n */\nconst fileEarmarkArrowDownFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-arrow-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-arrow-down/}.\r\n */\nconst fileEarmarkArrowDown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-arrow-up-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-arrow-up-fill/}.\r\n */\nconst fileEarmarkArrowUpFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-arrow-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-arrow-up/}.\r\n */\nconst fileEarmarkArrowUp = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-bar-graph-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-bar-graph-fill/}.\r\n */\nconst fileEarmarkBarGraphFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-bar-graph.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-bar-graph/}.\r\n */\nconst fileEarmarkBarGraph = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-binary-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-binary-fill/}.\r\n */\nconst fileEarmarkBinaryFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-binary.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-binary/}.\r\n */\nconst fileEarmarkBinary = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-break-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-break-fill/}.\r\n */\nconst fileEarmarkBreakFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-break.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-break/}.\r\n */\nconst fileEarmarkBreak = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-check-fill/}.\r\n */\nconst fileEarmarkCheckFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-check/}.\r\n */\nconst fileEarmarkCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-code-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-code-fill/}.\r\n */\nconst fileEarmarkCodeFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-code.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-code/}.\r\n */\nconst fileEarmarkCode = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-diff-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-diff-fill/}.\r\n */\nconst fileEarmarkDiffFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-diff.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-diff/}.\r\n */\nconst fileEarmarkDiff = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-easel-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-easel-fill/}.\r\n */\nconst fileEarmarkEaselFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-easel.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-easel/}.\r\n */\nconst fileEarmarkEasel = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-excel-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-excel-fill/}.\r\n */\nconst fileEarmarkExcelFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-excel.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-excel/}.\r\n */\nconst fileEarmarkExcel = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-fill/}.\r\n */\nconst fileEarmarkFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-font-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-font-fill/}.\r\n */\nconst fileEarmarkFontFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-font.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-font/}.\r\n */\nconst fileEarmarkFont = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-image-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-image-fill/}.\r\n */\nconst fileEarmarkImageFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-image.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-image/}.\r\n */\nconst fileEarmarkImage = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-lock-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-lock-fill/}.\r\n */\nconst fileEarmarkLockFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-lock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-lock/}.\r\n */\nconst fileEarmarkLock = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-lock2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-lock2-fill/}.\r\n */\nconst fileEarmarkLock2Fill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-lock2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-lock2/}.\r\n */\nconst fileEarmarkLock2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-medical-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-medical-fill/}.\r\n */\nconst fileEarmarkMedicalFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-medical.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-medical/}.\r\n */\nconst fileEarmarkMedical = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-minus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-minus-fill/}.\r\n */\nconst fileEarmarkMinusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-minus/}.\r\n */\nconst fileEarmarkMinus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-music-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-music-fill/}.\r\n */\nconst fileEarmarkMusicFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-music.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-music/}.\r\n */\nconst fileEarmarkMusic = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-pdf-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-pdf-fill/}.\r\n */\nconst fileEarmarkPdfFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-pdf.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-pdf/}.\r\n */\nconst fileEarmarkPdf = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-person-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-person-fill/}.\r\n */\nconst fileEarmarkPersonFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-person.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-person/}.\r\n */\nconst fileEarmarkPerson = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-play-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-play-fill/}.\r\n */\nconst fileEarmarkPlayFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-play.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-play/}.\r\n */\nconst fileEarmarkPlay = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-plus-fill/}.\r\n */\nconst fileEarmarkPlusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-plus/}.\r\n */\nconst fileEarmarkPlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-post-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-post-fill/}.\r\n */\nconst fileEarmarkPostFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-post.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-post/}.\r\n */\nconst fileEarmarkPost = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-ppt-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-ppt-fill/}.\r\n */\nconst fileEarmarkPptFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-ppt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-ppt/}.\r\n */\nconst fileEarmarkPpt = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-richtext-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-richtext-fill/}.\r\n */\nconst fileEarmarkRichtextFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-richtext.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-richtext/}.\r\n */\nconst fileEarmarkRichtext = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-ruled-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-ruled-fill/}.\r\n */\nconst fileEarmarkRuledFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-ruled.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-ruled/}.\r\n */\nconst fileEarmarkRuled = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-slides-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-slides-fill/}.\r\n */\nconst fileEarmarkSlidesFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-slides.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-slides/}.\r\n */\nconst fileEarmarkSlides = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-spreadsheet-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-spreadsheet-fill/}.\r\n */\nconst fileEarmarkSpreadsheetFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-spreadsheet.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-spreadsheet/}.\r\n */\nconst fileEarmarkSpreadsheet = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-text-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-text-fill/}.\r\n */\nconst fileEarmarkTextFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-text.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-text/}.\r\n */\nconst fileEarmarkText = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-word-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-word-fill/}.\r\n */\nconst fileEarmarkWordFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-word.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-word/}.\r\n */\nconst fileEarmarkWord = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-x-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-x-fill/}.\r\n */\nconst fileEarmarkXFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-x/}.\r\n */\nconst fileEarmarkX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-zip-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-zip-fill/}.\r\n */\nconst fileEarmarkZipFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark-zip.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark-zip/}.\r\n */\nconst fileEarmarkZip = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-earmark.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-earmark/}.\r\n */\nconst fileEarmark = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-easel-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-easel-fill/}.\r\n */\nconst fileEaselFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-easel.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-easel/}.\r\n */\nconst fileEasel = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-excel-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-excel-fill/}.\r\n */\nconst fileExcelFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-excel.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-excel/}.\r\n */\nconst fileExcel = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-fill/}.\r\n */\nconst fileFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-font-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-font-fill/}.\r\n */\nconst fileFontFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-font.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-font/}.\r\n */\nconst fileFont = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-image-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-image-fill/}.\r\n */\nconst fileImageFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-image.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-image/}.\r\n */\nconst fileImage = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-lock-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-lock-fill/}.\r\n */\nconst fileLockFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-lock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-lock/}.\r\n */\nconst fileLock = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-lock2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-lock2-fill/}.\r\n */\nconst fileLock2Fill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-lock2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-lock2/}.\r\n */\nconst fileLock2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-medical-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-medical-fill/}.\r\n */\nconst fileMedicalFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-medical.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-medical/}.\r\n */\nconst fileMedical = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-minus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-minus-fill/}.\r\n */\nconst fileMinusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-minus/}.\r\n */\nconst fileMinus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-music-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-music-fill/}.\r\n */\nconst fileMusicFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-music.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-music/}.\r\n */\nconst fileMusic = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-pdf-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-pdf-fill/}.\r\n */\nconst filePdfFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-pdf.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-pdf/}.\r\n */\nconst filePdf = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-person-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-person-fill/}.\r\n */\nconst filePersonFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-person.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-person/}.\r\n */\nconst filePerson = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-play-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-play-fill/}.\r\n */\nconst filePlayFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-play.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-play/}.\r\n */\nconst filePlay = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-plus-fill/}.\r\n */\nconst filePlusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-plus/}.\r\n */\nconst filePlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-post-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-post-fill/}.\r\n */\nconst filePostFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-post.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-post/}.\r\n */\nconst filePost = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-ppt-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-ppt-fill/}.\r\n */\nconst filePptFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-ppt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-ppt/}.\r\n */\nconst filePpt = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-richtext-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-richtext-fill/}.\r\n */\nconst fileRichtextFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-richtext.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-richtext/}.\r\n */\nconst fileRichtext = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-ruled-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-ruled-fill/}.\r\n */\nconst fileRuledFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-ruled.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-ruled/}.\r\n */\nconst fileRuled = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-slides-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-slides-fill/}.\r\n */\nconst fileSlidesFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-slides.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-slides/}.\r\n */\nconst fileSlides = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-spreadsheet-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-spreadsheet-fill/}.\r\n */\nconst fileSpreadsheetFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-spreadsheet.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-spreadsheet/}.\r\n */\nconst fileSpreadsheet = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-text-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-text-fill/}.\r\n */\nconst fileTextFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-text.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-text/}.\r\n */\nconst fileText = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-word-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-word-fill/}.\r\n */\nconst fileWordFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-word.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-word/}.\r\n */\nconst fileWord = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-x-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-x-fill/}.\r\n */\nconst fileXFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-x/}.\r\n */\nconst fileX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-zip-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-zip-fill/}.\r\n */\nconst fileZipFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file-zip.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file-zip/}.\r\n */\nconst fileZip = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * file.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/file/}.\r\n */\nconst file = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * files-alt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/files-alt/}.\r\n */\nconst filesAlt = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * files.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/files/}.\r\n */\nconst files = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-aac.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-aac/}.\r\n */\nconst filetypeAac = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-ai.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-ai/}.\r\n */\nconst filetypeAi = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-bmp.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-bmp/}.\r\n */\nconst filetypeBmp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-cs.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-cs/}.\r\n */\nconst filetypeCs = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-css.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-css/}.\r\n */\nconst filetypeCss = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-csv.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-csv/}.\r\n */\nconst filetypeCsv = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-doc.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-doc/}.\r\n */\nconst filetypeDoc = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-docx.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-docx/}.\r\n */\nconst filetypeDocx = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-exe.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-exe/}.\r\n */\nconst filetypeExe = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-gif.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-gif/}.\r\n */\nconst filetypeGif = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-heic.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-heic/}.\r\n */\nconst filetypeHeic = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-html.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-html/}.\r\n */\nconst filetypeHtml = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-java.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-java/}.\r\n */\nconst filetypeJava = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-jpg.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-jpg/}.\r\n */\nconst filetypeJpg = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-js.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-js/}.\r\n */\nconst filetypeJs = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-json.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-json/}.\r\n */\nconst filetypeJson = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-jsx.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-jsx/}.\r\n */\nconst filetypeJsx = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-key.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-key/}.\r\n */\nconst filetypeKey = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-m4p.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-m4p/}.\r\n */\nconst filetypeM4P = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-md.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-md/}.\r\n */\nconst filetypeMd = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-mdx.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-mdx/}.\r\n */\nconst filetypeMdx = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-mov.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-mov/}.\r\n */\nconst filetypeMov = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-mp3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-mp3/}.\r\n */\nconst filetypeMp3 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-mp4.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-mp4/}.\r\n */\nconst filetypeMp4 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-otf.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-otf/}.\r\n */\nconst filetypeOtf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-pdf.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-pdf/}.\r\n */\nconst filetypePdf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-php.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-php/}.\r\n */\nconst filetypePhp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-png.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-png/}.\r\n */\nconst filetypePng = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-ppt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-ppt/}.\r\n */\nconst filetypePpt = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-pptx.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-pptx/}.\r\n */\nconst filetypePptx = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-psd.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-psd/}.\r\n */\nconst filetypePsd = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-py.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-py/}.\r\n */\nconst filetypePy = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-raw.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-raw/}.\r\n */\nconst filetypeRaw = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-rb.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-rb/}.\r\n */\nconst filetypeRb = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-sass.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-sass/}.\r\n */\nconst filetypeSass = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-scss.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-scss/}.\r\n */\nconst filetypeScss = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-sh.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-sh/}.\r\n */\nconst filetypeSh = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-sql.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-sql/}.\r\n */\nconst filetypeSql = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-svg.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-svg/}.\r\n */\nconst filetypeSvg = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-tiff.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-tiff/}.\r\n */\nconst filetypeTiff = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-tsx.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-tsx/}.\r\n */\nconst filetypeTsx = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-ttf.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-ttf/}.\r\n */\nconst filetypeTtf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-txt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-txt/}.\r\n */\nconst filetypeTxt = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-wav.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-wav/}.\r\n */\nconst filetypeWav = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-woff.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-woff/}.\r\n */\nconst filetypeWoff = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-xls.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-xls/}.\r\n */\nconst filetypeXls = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-xlsx.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-xlsx/}.\r\n */\nconst filetypeXlsx = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-xml.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-xml/}.\r\n */\nconst filetypeXml = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filetype-yml.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filetype-yml/}.\r\n */\nconst filetypeYml = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * film.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/film/}.\r\n */\nconst film = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filter-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filter-circle-fill/}.\r\n */\nconst filterCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filter-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filter-circle/}.\r\n */\nconst filterCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filter-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filter-left/}.\r\n */\nconst filterLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filter-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filter-right/}.\r\n */\nconst filterRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filter-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filter-square-fill/}.\r\n */\nconst filterSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filter-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filter-square/}.\r\n */\nconst filterSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * filter.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/filter/}.\r\n */\nconst filter = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fingerprint.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fingerprint/}.\r\n */\nconst fingerprint = `\n \n \n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fire.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fire/}.\r\n */\nconst fire = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * flag-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/flag-fill/}.\r\n */\nconst flagFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * flag.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/flag/}.\r\n */\nconst flag = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * flower1.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/flower1/}.\r\n */\nconst flower1 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * flower2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/flower2/}.\r\n */\nconst flower2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * flower3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/flower3/}.\r\n */\nconst flower3 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * folder-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/folder-check/}.\r\n */\nconst folderCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * folder-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/folder-fill/}.\r\n */\nconst folderFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * folder-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/folder-minus/}.\r\n */\nconst folderMinus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * folder-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/folder-plus/}.\r\n */\nconst folderPlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * folder-symlink-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/folder-symlink-fill/}.\r\n */\nconst folderSymlinkFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * folder-symlink.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/folder-symlink/}.\r\n */\nconst folderSymlink = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * folder-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/folder-x/}.\r\n */\nconst folderX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * folder.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/folder/}.\r\n */\nconst folder = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * folder2-open.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/folder2-open/}.\r\n */\nconst folder2Open = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * folder2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/folder2/}.\r\n */\nconst folder2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fonts.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fonts/}.\r\n */\nconst fonts = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * forward-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/forward-fill/}.\r\n */\nconst forwardFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * forward.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/forward/}.\r\n */\nconst forward = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * front.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/front/}.\r\n */\nconst front = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fuel-pump-diesel-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fuel-pump-diesel-fill/}.\r\n */\nconst fuelPumpDieselFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fuel-pump-diesel.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fuel-pump-diesel/}.\r\n */\nconst fuelPumpDiesel = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fuel-pump-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fuel-pump-fill/}.\r\n */\nconst fuelPumpFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fuel-pump.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fuel-pump/}.\r\n */\nconst fuelPump = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fullscreen-exit.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fullscreen-exit/}.\r\n */\nconst fullscreenExit = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * fullscreen.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/fullscreen/}.\r\n */\nconst fullscreen = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * funnel-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/funnel-fill/}.\r\n */\nconst funnelFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * funnel.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/funnel/}.\r\n */\nconst funnel = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * gear-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/gear-fill/}.\r\n */\nconst gearFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * gear-wide-connected.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/gear-wide-connected/}.\r\n */\nconst gearWideConnected = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * gear-wide.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/gear-wide/}.\r\n */\nconst gearWide = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * gear.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/gear/}.\r\n */\nconst gear = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * gem.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/gem/}.\r\n */\nconst gem = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * gender-ambiguous.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/gender-ambiguous/}.\r\n */\nconst genderAmbiguous = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * gender-female.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/gender-female/}.\r\n */\nconst genderFemale = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * gender-male.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/gender-male/}.\r\n */\nconst genderMale = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * gender-trans.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/gender-trans/}.\r\n */\nconst genderTrans = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * geo-alt-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/geo-alt-fill/}.\r\n */\nconst geoAltFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * geo-alt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/geo-alt/}.\r\n */\nconst geoAlt = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * geo-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/geo-fill/}.\r\n */\nconst geoFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * geo.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/geo/}.\r\n */\nconst geo = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * gift-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/gift-fill/}.\r\n */\nconst giftFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * gift.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/gift/}.\r\n */\nconst gift = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * git.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/git/}.\r\n */\nconst git = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * github.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/github/}.\r\n */\nconst github = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * globe-americas.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/globe-americas/}.\r\n */\nconst globeAmericas = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * globe-asia-australia.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/globe-asia-australia/}.\r\n */\nconst globeAsiaAustralia = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * globe-central-south-asia.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/globe-central-south-asia/}.\r\n */\nconst globeCentralSouthAsia = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * globe-europe-africa.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/globe-europe-africa/}.\r\n */\nconst globeEuropeAfrica = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * globe.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/globe/}.\r\n */\nconst globe = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * globe2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/globe2/}.\r\n */\nconst globe2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * google-play.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/google-play/}.\r\n */\nconst googlePlay = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * google.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/google/}.\r\n */\nconst google = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * gpu-card.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/gpu-card/}.\r\n */\nconst gpuCard = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * graph-down-arrow.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/graph-down-arrow/}.\r\n */\nconst graphDownArrow = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * graph-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/graph-down/}.\r\n */\nconst graphDown = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * graph-up-arrow.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/graph-up-arrow/}.\r\n */\nconst graphUpArrow = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * graph-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/graph-up/}.\r\n */\nconst graphUp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * grid-1x2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/grid-1x2-fill/}.\r\n */\nconst grid1X2Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * grid-1x2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/grid-1x2/}.\r\n */\nconst grid1X2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * grid-3x2-gap-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/grid-3x2-gap-fill/}.\r\n */\nconst grid3X2GapFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * grid-3x2-gap.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/grid-3x2-gap/}.\r\n */\nconst grid3X2Gap = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * grid-3x2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/grid-3x2/}.\r\n */\nconst grid3X2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * grid-3x3-gap-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/grid-3x3-gap-fill/}.\r\n */\nconst grid3X3GapFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * grid-3x3-gap.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/grid-3x3-gap/}.\r\n */\nconst grid3X3Gap = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * grid-3x3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/grid-3x3/}.\r\n */\nconst grid3X3 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * grid-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/grid-fill/}.\r\n */\nconst gridFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * grid.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/grid/}.\r\n */\nconst grid = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * grip-horizontal.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/grip-horizontal/}.\r\n */\nconst gripHorizontal = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * grip-vertical.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/grip-vertical/}.\r\n */\nconst gripVertical = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * h-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/h-circle-fill/}.\r\n */\nconst hCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * h-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/h-circle/}.\r\n */\nconst hCircle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * h-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/h-square-fill/}.\r\n */\nconst hSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * h-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/h-square/}.\r\n */\nconst hSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hammer.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hammer/}.\r\n */\nconst hammer = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hand-index-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hand-index-fill/}.\r\n */\nconst handIndexFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hand-index-thumb-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hand-index-thumb-fill/}.\r\n */\nconst handIndexThumbFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hand-index-thumb.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hand-index-thumb/}.\r\n */\nconst handIndexThumb = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hand-index.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hand-index/}.\r\n */\nconst handIndex = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hand-thumbs-down-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hand-thumbs-down-fill/}.\r\n */\nconst handThumbsDownFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hand-thumbs-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hand-thumbs-down/}.\r\n */\nconst handThumbsDown = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hand-thumbs-up-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hand-thumbs-up-fill/}.\r\n */\nconst handThumbsUpFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hand-thumbs-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hand-thumbs-up/}.\r\n */\nconst handThumbsUp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * handbag-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/handbag-fill/}.\r\n */\nconst handbagFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * handbag.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/handbag/}.\r\n */\nconst handbag = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hash/}.\r\n */\nconst hash = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hdd-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hdd-fill/}.\r\n */\nconst hddFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hdd-network-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hdd-network-fill/}.\r\n */\nconst hddNetworkFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hdd-network.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hdd-network/}.\r\n */\nconst hddNetwork = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hdd-rack-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hdd-rack-fill/}.\r\n */\nconst hddRackFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hdd-rack.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hdd-rack/}.\r\n */\nconst hddRack = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hdd-stack-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hdd-stack-fill/}.\r\n */\nconst hddStackFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hdd-stack.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hdd-stack/}.\r\n */\nconst hddStack = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hdd.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hdd/}.\r\n */\nconst hdd = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hdmi-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hdmi-fill/}.\r\n */\nconst hdmiFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hdmi.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hdmi/}.\r\n */\nconst hdmi = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * headphones.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/headphones/}.\r\n */\nconst headphones = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * headset-vr.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/headset-vr/}.\r\n */\nconst headsetVr = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * headset.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/headset/}.\r\n */\nconst headset = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * heart-arrow.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/heart-arrow/}.\r\n */\nconst heartArrow = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/heart-fill/}.\r\n */\nconst heartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * heart-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/heart-half/}.\r\n */\nconst heartHalf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * heart-pulse-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/heart-pulse-fill/}.\r\n */\nconst heartPulseFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * heart-pulse.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/heart-pulse/}.\r\n */\nconst heartPulse = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/heart/}.\r\n */\nconst heart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * heartbreak-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/heartbreak-fill/}.\r\n */\nconst heartbreakFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * heartbreak.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/heartbreak/}.\r\n */\nconst heartbreak = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hearts.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hearts/}.\r\n */\nconst hearts = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * heptagon-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/heptagon-fill/}.\r\n */\nconst heptagonFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * heptagon-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/heptagon-half/}.\r\n */\nconst heptagonHalf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * heptagon.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/heptagon/}.\r\n */\nconst heptagon = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hexagon-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hexagon-fill/}.\r\n */\nconst hexagonFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hexagon-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hexagon-half/}.\r\n */\nconst hexagonHalf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hexagon.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hexagon/}.\r\n */\nconst hexagon = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hospital-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hospital-fill/}.\r\n */\nconst hospitalFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hospital.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hospital/}.\r\n */\nconst hospital = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hourglass-bottom.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hourglass-bottom/}.\r\n */\nconst hourglassBottom = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hourglass-split.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hourglass-split/}.\r\n */\nconst hourglassSplit = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hourglass-top.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hourglass-top/}.\r\n */\nconst hourglassTop = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hourglass.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hourglass/}.\r\n */\nconst hourglass = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-add-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-add-fill/}.\r\n */\nconst houseAddFill = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-add.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-add/}.\r\n */\nconst houseAdd = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-check-fill/}.\r\n */\nconst houseCheckFill = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-check/}.\r\n */\nconst houseCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-dash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-dash-fill/}.\r\n */\nconst houseDashFill = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-dash/}.\r\n */\nconst houseDash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-door-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-door-fill/}.\r\n */\nconst houseDoorFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-door.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-door/}.\r\n */\nconst houseDoor = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-down-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-down-fill/}.\r\n */\nconst houseDownFill = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-down/}.\r\n */\nconst houseDown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-exclamation-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-exclamation-fill/}.\r\n */\nconst houseExclamationFill = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-exclamation.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-exclamation/}.\r\n */\nconst houseExclamation = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-fill/}.\r\n */\nconst houseFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-gear-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-gear-fill/}.\r\n */\nconst houseGearFill = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-gear.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-gear/}.\r\n */\nconst houseGear = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-heart-fill/}.\r\n */\nconst houseHeartFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-heart/}.\r\n */\nconst houseHeart = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-lock-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-lock-fill/}.\r\n */\nconst houseLockFill = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-lock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-lock/}.\r\n */\nconst houseLock = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-slash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-slash-fill/}.\r\n */\nconst houseSlashFill = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-slash/}.\r\n */\nconst houseSlash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-up-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-up-fill/}.\r\n */\nconst houseUpFill = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-up/}.\r\n */\nconst houseUp = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-x-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-x-fill/}.\r\n */\nconst houseXFill = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house-x/}.\r\n */\nconst houseX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * house.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/house/}.\r\n */\nconst house = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * houses-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/houses-fill/}.\r\n */\nconst housesFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * houses.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/houses/}.\r\n */\nconst houses = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hr.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hr/}.\r\n */\nconst hr = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hurricane.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hurricane/}.\r\n */\nconst hurricane = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * hypnotize.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/hypnotize/}.\r\n */\nconst hypnotize = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * image-alt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/image-alt/}.\r\n */\nconst imageAlt = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * image-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/image-fill/}.\r\n */\nconst imageFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * image.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/image/}.\r\n */\nconst image = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * images.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/images/}.\r\n */\nconst images = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * inbox-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/inbox-fill/}.\r\n */\nconst inboxFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * inbox.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/inbox/}.\r\n */\nconst inbox = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * inboxes-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/inboxes-fill/}.\r\n */\nconst inboxesFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * inboxes.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/inboxes/}.\r\n */\nconst inboxes = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * incognito.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/incognito/}.\r\n */\nconst incognito = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * indent.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/indent/}.\r\n */\nconst indent = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * infinity.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/infinity/}.\r\n */\nconst infinity = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * info-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/info-circle-fill/}.\r\n */\nconst infoCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * info-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/info-circle/}.\r\n */\nconst infoCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * info-lg.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/info-lg/}.\r\n */\nconst infoLg = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * info-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/info-square-fill/}.\r\n */\nconst infoSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * info-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/info-square/}.\r\n */\nconst infoSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * info.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/info/}.\r\n */\nconst info = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * input-cursor-text.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/input-cursor-text/}.\r\n */\nconst inputCursorText = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * input-cursor.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/input-cursor/}.\r\n */\nconst inputCursor = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * instagram.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/instagram/}.\r\n */\nconst instagram = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * intersect.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/intersect/}.\r\n */\nconst intersect = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journal-album.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journal-album/}.\r\n */\nconst journalAlbum = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journal-arrow-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journal-arrow-down/}.\r\n */\nconst journalArrowDown = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journal-arrow-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journal-arrow-up/}.\r\n */\nconst journalArrowUp = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journal-bookmark-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journal-bookmark-fill/}.\r\n */\nconst journalBookmarkFill = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journal-bookmark.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journal-bookmark/}.\r\n */\nconst journalBookmark = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journal-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journal-check/}.\r\n */\nconst journalCheck = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journal-code.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journal-code/}.\r\n */\nconst journalCode = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journal-medical.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journal-medical/}.\r\n */\nconst journalMedical = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journal-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journal-minus/}.\r\n */\nconst journalMinus = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journal-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journal-plus/}.\r\n */\nconst journalPlus = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journal-richtext.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journal-richtext/}.\r\n */\nconst journalRichtext = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journal-text.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journal-text/}.\r\n */\nconst journalText = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journal-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journal-x/}.\r\n */\nconst journalX = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journal.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journal/}.\r\n */\nconst journal = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * journals.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/journals/}.\r\n */\nconst journals = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * joystick.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/joystick/}.\r\n */\nconst joystick = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * justify-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/justify-left/}.\r\n */\nconst justifyLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * justify-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/justify-right/}.\r\n */\nconst justifyRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * justify.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/justify/}.\r\n */\nconst justify = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * kanban-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/kanban-fill/}.\r\n */\nconst kanbanFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * kanban.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/kanban/}.\r\n */\nconst kanban = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * key-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/key-fill/}.\r\n */\nconst keyFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * key.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/key/}.\r\n */\nconst key = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * keyboard-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/keyboard-fill/}.\r\n */\nconst keyboardFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * keyboard.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/keyboard/}.\r\n */\nconst keyboard = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ladder.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ladder/}.\r\n */\nconst ladder = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * lamp-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/lamp-fill/}.\r\n */\nconst lampFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * lamp.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/lamp/}.\r\n */\nconst lamp = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * laptop-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/laptop-fill/}.\r\n */\nconst laptopFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * laptop.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/laptop/}.\r\n */\nconst laptop = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layer-backward.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layer-backward/}.\r\n */\nconst layerBackward = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layer-forward.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layer-forward/}.\r\n */\nconst layerForward = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layers-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layers-fill/}.\r\n */\nconst layersFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layers-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layers-half/}.\r\n */\nconst layersHalf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layers.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layers/}.\r\n */\nconst layers = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layout-sidebar-inset-reverse.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layout-sidebar-inset-reverse/}.\r\n */\nconst layoutSidebarInsetReverse = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layout-sidebar-inset.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layout-sidebar-inset/}.\r\n */\nconst layoutSidebarInset = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layout-sidebar-reverse.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layout-sidebar-reverse/}.\r\n */\nconst layoutSidebarReverse = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layout-sidebar.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layout-sidebar/}.\r\n */\nconst layoutSidebar = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layout-split.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layout-split/}.\r\n */\nconst layoutSplit = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layout-text-sidebar-reverse.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layout-text-sidebar-reverse/}.\r\n */\nconst layoutTextSidebarReverse = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layout-text-sidebar.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layout-text-sidebar/}.\r\n */\nconst layoutTextSidebar = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layout-text-window-reverse.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layout-text-window-reverse/}.\r\n */\nconst layoutTextWindowReverse = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layout-text-window.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layout-text-window/}.\r\n */\nconst layoutTextWindow = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layout-three-columns.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layout-three-columns/}.\r\n */\nconst layoutThreeColumns = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * layout-wtf.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/layout-wtf/}.\r\n */\nconst layoutWtf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * life-preserver.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/life-preserver/}.\r\n */\nconst lifePreserver = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * lightbulb-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/lightbulb-fill/}.\r\n */\nconst lightbulbFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * lightbulb-off-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/lightbulb-off-fill/}.\r\n */\nconst lightbulbOffFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * lightbulb-off.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/lightbulb-off/}.\r\n */\nconst lightbulbOff = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * lightbulb.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/lightbulb/}.\r\n */\nconst lightbulb = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * lightning-charge-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/lightning-charge-fill/}.\r\n */\nconst lightningChargeFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * lightning-charge.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/lightning-charge/}.\r\n */\nconst lightningCharge = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * lightning-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/lightning-fill/}.\r\n */\nconst lightningFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * lightning.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/lightning/}.\r\n */\nconst lightning = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * line.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/line/}.\r\n */\nconst line = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * link-45deg.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/link-45deg/}.\r\n */\nconst link45Deg = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * link.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/link/}.\r\n */\nconst link = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * linkedin.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/linkedin/}.\r\n */\nconst linkedin = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * list-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/list-check/}.\r\n */\nconst listCheck = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * list-columns-reverse.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/list-columns-reverse/}.\r\n */\nconst listColumnsReverse = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * list-columns.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/list-columns/}.\r\n */\nconst listColumns = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * list-nested.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/list-nested/}.\r\n */\nconst listNested = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * list-ol.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/list-ol/}.\r\n */\nconst listOl = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * list-stars.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/list-stars/}.\r\n */\nconst listStars = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * list-task.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/list-task/}.\r\n */\nconst listTask = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * list-ul.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/list-ul/}.\r\n */\nconst listUl = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * list.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/list/}.\r\n */\nconst list = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * lock-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/lock-fill/}.\r\n */\nconst lockFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * lock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/lock/}.\r\n */\nconst lock = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * lungs-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/lungs-fill/}.\r\n */\nconst lungsFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * lungs.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/lungs/}.\r\n */\nconst lungs = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * magic.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/magic/}.\r\n */\nconst magic = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * magnet-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/magnet-fill/}.\r\n */\nconst magnetFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * magnet.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/magnet/}.\r\n */\nconst magnet = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mailbox.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mailbox/}.\r\n */\nconst mailbox = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mailbox2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mailbox2/}.\r\n */\nconst mailbox2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * map-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/map-fill/}.\r\n */\nconst mapFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * map.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/map/}.\r\n */\nconst map = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * markdown-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/markdown-fill/}.\r\n */\nconst markdownFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * markdown.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/markdown/}.\r\n */\nconst markdown = `\n \n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mask.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mask/}.\r\n */\nconst mask = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mastodon.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mastodon/}.\r\n */\nconst mastodon = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * medium.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/medium/}.\r\n */\nconst medium = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * megaphone-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/megaphone-fill/}.\r\n */\nconst megaphoneFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * megaphone.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/megaphone/}.\r\n */\nconst megaphone = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * memory.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/memory/}.\r\n */\nconst memory = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * menu-app-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/menu-app-fill/}.\r\n */\nconst menuAppFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * menu-app.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/menu-app/}.\r\n */\nconst menuApp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * menu-button-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/menu-button-fill/}.\r\n */\nconst menuButtonFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * menu-button-wide-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/menu-button-wide-fill/}.\r\n */\nconst menuButtonWideFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * menu-button-wide.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/menu-button-wide/}.\r\n */\nconst menuButtonWide = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * menu-button.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/menu-button/}.\r\n */\nconst menuButton = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * menu-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/menu-down/}.\r\n */\nconst menuDown = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * menu-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/menu-up/}.\r\n */\nconst menuUp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * messenger.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/messenger/}.\r\n */\nconst messenger = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * meta.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/meta/}.\r\n */\nconst meta = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mic-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mic-fill/}.\r\n */\nconst micFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mic-mute-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mic-mute-fill/}.\r\n */\nconst micMuteFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mic-mute.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mic-mute/}.\r\n */\nconst micMute = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mic.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mic/}.\r\n */\nconst mic = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * microsoft-teams.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/microsoft-teams/}.\r\n */\nconst microsoftTeams = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * microsoft.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/microsoft/}.\r\n */\nconst microsoft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * minecart-loaded.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/minecart-loaded/}.\r\n */\nconst minecartLoaded = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * minecart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/minecart/}.\r\n */\nconst minecart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * modem-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/modem-fill/}.\r\n */\nconst modemFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * modem.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/modem/}.\r\n */\nconst modem = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * moisture.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/moisture/}.\r\n */\nconst moisture = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * moon-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/moon-fill/}.\r\n */\nconst moonFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * moon-stars-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/moon-stars-fill/}.\r\n */\nconst moonStarsFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * moon-stars.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/moon-stars/}.\r\n */\nconst moonStars = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * moon.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/moon/}.\r\n */\nconst moon = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mortarboard-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mortarboard-fill/}.\r\n */\nconst mortarboardFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mortarboard.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mortarboard/}.\r\n */\nconst mortarboard = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * motherboard-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/motherboard-fill/}.\r\n */\nconst motherboardFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * motherboard.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/motherboard/}.\r\n */\nconst motherboard = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mouse-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mouse-fill/}.\r\n */\nconst mouseFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mouse.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mouse/}.\r\n */\nconst mouse = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mouse2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mouse2-fill/}.\r\n */\nconst mouse2Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mouse2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mouse2/}.\r\n */\nconst mouse2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mouse3-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mouse3-fill/}.\r\n */\nconst mouse3Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * mouse3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/mouse3/}.\r\n */\nconst mouse3 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * music-note-beamed.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/music-note-beamed/}.\r\n */\nconst musicNoteBeamed = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * music-note-list.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/music-note-list/}.\r\n */\nconst musicNoteList = `\n \n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * music-note.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/music-note/}.\r\n */\nconst musicNote = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * music-player-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/music-player-fill/}.\r\n */\nconst musicPlayerFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * music-player.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/music-player/}.\r\n */\nconst musicPlayer = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * newspaper.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/newspaper/}.\r\n */\nconst newspaper = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * nintendo-switch.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/nintendo-switch/}.\r\n */\nconst nintendoSwitch = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * node-minus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/node-minus-fill/}.\r\n */\nconst nodeMinusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * node-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/node-minus/}.\r\n */\nconst nodeMinus = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * node-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/node-plus-fill/}.\r\n */\nconst nodePlusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * node-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/node-plus/}.\r\n */\nconst nodePlus = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * nut-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/nut-fill/}.\r\n */\nconst nutFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * nut.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/nut/}.\r\n */\nconst nut = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * nvidia.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/nvidia/}.\r\n */\nconst nvidia = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * octagon-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/octagon-fill/}.\r\n */\nconst octagonFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * octagon-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/octagon-half/}.\r\n */\nconst octagonHalf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * octagon.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/octagon/}.\r\n */\nconst octagon = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * optical-audio-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/optical-audio-fill/}.\r\n */\nconst opticalAudioFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * optical-audio.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/optical-audio/}.\r\n */\nconst opticalAudio = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * option.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/option/}.\r\n */\nconst option = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * outlet.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/outlet/}.\r\n */\nconst outlet = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * p-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/p-circle-fill/}.\r\n */\nconst pCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * p-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/p-circle/}.\r\n */\nconst pCircle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * p-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/p-square-fill/}.\r\n */\nconst pSquareFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * p-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/p-square/}.\r\n */\nconst pSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * paint-bucket.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/paint-bucket/}.\r\n */\nconst paintBucket = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * palette-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/palette-fill/}.\r\n */\nconst paletteFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * palette.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/palette/}.\r\n */\nconst palette = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * palette2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/palette2/}.\r\n */\nconst palette2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * paperclip.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/paperclip/}.\r\n */\nconst paperclip = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * paragraph.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/paragraph/}.\r\n */\nconst paragraph = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pass-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pass-fill/}.\r\n */\nconst passFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pass.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pass/}.\r\n */\nconst pass = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * patch-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/patch-check-fill/}.\r\n */\nconst patchCheckFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * patch-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/patch-check/}.\r\n */\nconst patchCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * patch-exclamation-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/patch-exclamation-fill/}.\r\n */\nconst patchExclamationFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * patch-exclamation.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/patch-exclamation/}.\r\n */\nconst patchExclamation = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * patch-minus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/patch-minus-fill/}.\r\n */\nconst patchMinusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * patch-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/patch-minus/}.\r\n */\nconst patchMinus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * patch-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/patch-plus-fill/}.\r\n */\nconst patchPlusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * patch-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/patch-plus/}.\r\n */\nconst patchPlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * patch-question-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/patch-question-fill/}.\r\n */\nconst patchQuestionFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * patch-question.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/patch-question/}.\r\n */\nconst patchQuestion = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pause-btn-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pause-btn-fill/}.\r\n */\nconst pauseBtnFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pause-btn.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pause-btn/}.\r\n */\nconst pauseBtn = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pause-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pause-circle-fill/}.\r\n */\nconst pauseCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pause-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pause-circle/}.\r\n */\nconst pauseCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pause-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pause-fill/}.\r\n */\nconst pauseFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pause.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pause/}.\r\n */\nconst pause = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * paypal.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/paypal/}.\r\n */\nconst paypal = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pc-display-horizontal.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pc-display-horizontal/}.\r\n */\nconst pcDisplayHorizontal = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pc-display.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pc-display/}.\r\n */\nconst pcDisplay = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pc-horizontal.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pc-horizontal/}.\r\n */\nconst pcHorizontal = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pc.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pc/}.\r\n */\nconst pc = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pci-card.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pci-card/}.\r\n */\nconst pciCard = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * peace-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/peace-fill/}.\r\n */\nconst peaceFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * peace.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/peace/}.\r\n */\nconst peace = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pen-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pen-fill/}.\r\n */\nconst penFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pen.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pen/}.\r\n */\nconst pen = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pencil-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pencil-fill/}.\r\n */\nconst pencilFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pencil-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pencil-square/}.\r\n */\nconst pencilSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pencil.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pencil/}.\r\n */\nconst pencil = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pentagon-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pentagon-fill/}.\r\n */\nconst pentagonFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pentagon-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pentagon-half/}.\r\n */\nconst pentagonHalf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pentagon.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pentagon/}.\r\n */\nconst pentagon = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * people-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/people-fill/}.\r\n */\nconst peopleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * people.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/people/}.\r\n */\nconst people = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * percent.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/percent/}.\r\n */\nconst percent = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-add.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-add/}.\r\n */\nconst personAdd = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-badge-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-badge-fill/}.\r\n */\nconst personBadgeFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-badge.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-badge/}.\r\n */\nconst personBadge = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-bounding-box.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-bounding-box/}.\r\n */\nconst personBoundingBox = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-check-fill/}.\r\n */\nconst personCheckFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-check/}.\r\n */\nconst personCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-circle/}.\r\n */\nconst personCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-dash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-dash-fill/}.\r\n */\nconst personDashFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-dash/}.\r\n */\nconst personDash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-down/}.\r\n */\nconst personDown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-exclamation.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-exclamation/}.\r\n */\nconst personExclamation = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-fill-add.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-fill-add/}.\r\n */\nconst personFillAdd = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-fill-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-fill-check/}.\r\n */\nconst personFillCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-fill-dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-fill-dash/}.\r\n */\nconst personFillDash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-fill-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-fill-down/}.\r\n */\nconst personFillDown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-fill-exclamation.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-fill-exclamation/}.\r\n */\nconst personFillExclamation = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-fill-gear.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-fill-gear/}.\r\n */\nconst personFillGear = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-fill-lock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-fill-lock/}.\r\n */\nconst personFillLock = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-fill-slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-fill-slash/}.\r\n */\nconst personFillSlash = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-fill-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-fill-up/}.\r\n */\nconst personFillUp = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-fill-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-fill-x/}.\r\n */\nconst personFillX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-fill/}.\r\n */\nconst personFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-gear.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-gear/}.\r\n */\nconst personGear = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-heart/}.\r\n */\nconst personHeart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-hearts.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-hearts/}.\r\n */\nconst personHearts = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-lines-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-lines-fill/}.\r\n */\nconst personLinesFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-lock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-lock/}.\r\n */\nconst personLock = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-plus-fill/}.\r\n */\nconst personPlusFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-plus/}.\r\n */\nconst personPlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-rolodex.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-rolodex/}.\r\n */\nconst personRolodex = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-slash/}.\r\n */\nconst personSlash = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-square/}.\r\n */\nconst personSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-up/}.\r\n */\nconst personUp = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-vcard-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-vcard-fill/}.\r\n */\nconst personVcardFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-vcard.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-vcard/}.\r\n */\nconst personVcard = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-video.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-video/}.\r\n */\nconst personVideo = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-video2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-video2/}.\r\n */\nconst personVideo2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-video3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-video3/}.\r\n */\nconst personVideo3 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-workspace.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-workspace/}.\r\n */\nconst personWorkspace = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-x-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-x-fill/}.\r\n */\nconst personXFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person-x/}.\r\n */\nconst personX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * person.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/person/}.\r\n */\nconst person = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * phone-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/phone-fill/}.\r\n */\nconst phoneFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * phone-flip.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/phone-flip/}.\r\n */\nconst phoneFlip = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * phone-landscape-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/phone-landscape-fill/}.\r\n */\nconst phoneLandscapeFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * phone-landscape.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/phone-landscape/}.\r\n */\nconst phoneLandscape = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * phone-vibrate-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/phone-vibrate-fill/}.\r\n */\nconst phoneVibrateFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * phone-vibrate.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/phone-vibrate/}.\r\n */\nconst phoneVibrate = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * phone.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/phone/}.\r\n */\nconst phone = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pie-chart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pie-chart-fill/}.\r\n */\nconst pieChartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pie-chart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pie-chart/}.\r\n */\nconst pieChart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * piggy-bank-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/piggy-bank-fill/}.\r\n */\nconst piggyBankFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * piggy-bank.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/piggy-bank/}.\r\n */\nconst piggyBank = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pin-angle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pin-angle-fill/}.\r\n */\nconst pinAngleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pin-angle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pin-angle/}.\r\n */\nconst pinAngle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pin-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pin-fill/}.\r\n */\nconst pinFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pin-map-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pin-map-fill/}.\r\n */\nconst pinMapFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pin-map.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pin-map/}.\r\n */\nconst pinMap = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pin.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pin/}.\r\n */\nconst pin = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pinterest.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pinterest/}.\r\n */\nconst pinterest = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pip-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pip-fill/}.\r\n */\nconst pipFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * pip.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/pip/}.\r\n */\nconst pip = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * play-btn-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/play-btn-fill/}.\r\n */\nconst playBtnFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * play-btn.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/play-btn/}.\r\n */\nconst playBtn = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * play-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/play-circle-fill/}.\r\n */\nconst playCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * play-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/play-circle/}.\r\n */\nconst playCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * play-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/play-fill/}.\r\n */\nconst playFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * play.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/play/}.\r\n */\nconst play = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * playstation.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/playstation/}.\r\n */\nconst playstation = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * plug-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/plug-fill/}.\r\n */\nconst plugFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * plug.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/plug/}.\r\n */\nconst plug = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * plugin.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/plugin/}.\r\n */\nconst plugin = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * plus-circle-dotted.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/plus-circle-dotted/}.\r\n */\nconst plusCircleDotted = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * plus-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/plus-circle-fill/}.\r\n */\nconst plusCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * plus-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/plus-circle/}.\r\n */\nconst plusCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * plus-lg.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/plus-lg/}.\r\n */\nconst plusLg = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * plus-slash-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/plus-slash-minus/}.\r\n */\nconst plusSlashMinus = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * plus-square-dotted.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/plus-square-dotted/}.\r\n */\nconst plusSquareDotted = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * plus-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/plus-square-fill/}.\r\n */\nconst plusSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * plus-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/plus-square/}.\r\n */\nconst plusSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/plus/}.\r\n */\nconst plus = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * postage-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/postage-fill/}.\r\n */\nconst postageFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * postage-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/postage-heart-fill/}.\r\n */\nconst postageHeartFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * postage-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/postage-heart/}.\r\n */\nconst postageHeart = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * postage.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/postage/}.\r\n */\nconst postage = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * postcard-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/postcard-fill/}.\r\n */\nconst postcardFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * postcard-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/postcard-heart-fill/}.\r\n */\nconst postcardHeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * postcard-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/postcard-heart/}.\r\n */\nconst postcardHeart = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * postcard.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/postcard/}.\r\n */\nconst postcard = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * power.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/power/}.\r\n */\nconst power = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * prescription.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/prescription/}.\r\n */\nconst prescription = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * prescription2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/prescription2/}.\r\n */\nconst prescription2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * printer-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/printer-fill/}.\r\n */\nconst printerFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * printer.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/printer/}.\r\n */\nconst printer = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * projector-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/projector-fill/}.\r\n */\nconst projectorFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * projector.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/projector/}.\r\n */\nconst projector = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * puzzle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/puzzle-fill/}.\r\n */\nconst puzzleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * puzzle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/puzzle/}.\r\n */\nconst puzzle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * qr-code-scan.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/qr-code-scan/}.\r\n */\nconst qrCodeScan = `\n \n \n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * qr-code.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/qr-code/}.\r\n */\nconst qrCode = `\n \n \n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * question-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/question-circle-fill/}.\r\n */\nconst questionCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * question-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/question-circle/}.\r\n */\nconst questionCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * question-diamond-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/question-diamond-fill/}.\r\n */\nconst questionDiamondFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * question-diamond.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/question-diamond/}.\r\n */\nconst questionDiamond = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * question-lg.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/question-lg/}.\r\n */\nconst questionLg = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * question-octagon-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/question-octagon-fill/}.\r\n */\nconst questionOctagonFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * question-octagon.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/question-octagon/}.\r\n */\nconst questionOctagon = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * question-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/question-square-fill/}.\r\n */\nconst questionSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * question-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/question-square/}.\r\n */\nconst questionSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * question.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/question/}.\r\n */\nconst question = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * quora.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/quora/}.\r\n */\nconst quora = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * quote.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/quote/}.\r\n */\nconst quote = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * r-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/r-circle-fill/}.\r\n */\nconst rCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * r-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/r-circle/}.\r\n */\nconst rCircle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * r-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/r-square-fill/}.\r\n */\nconst rSquareFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * r-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/r-square/}.\r\n */\nconst rSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * radioactive.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/radioactive/}.\r\n */\nconst radioactive = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * rainbow.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/rainbow/}.\r\n */\nconst rainbow = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * receipt-cutoff.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/receipt-cutoff/}.\r\n */\nconst receiptCutoff = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * receipt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/receipt/}.\r\n */\nconst receipt = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * reception-0.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/reception-0/}.\r\n */\nconst reception0 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * reception-1.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/reception-1/}.\r\n */\nconst reception1 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * reception-2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/reception-2/}.\r\n */\nconst reception2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * reception-3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/reception-3/}.\r\n */\nconst reception3 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * reception-4.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/reception-4/}.\r\n */\nconst reception4 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * record-btn-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/record-btn-fill/}.\r\n */\nconst recordBtnFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * record-btn.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/record-btn/}.\r\n */\nconst recordBtn = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * record-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/record-circle-fill/}.\r\n */\nconst recordCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * record-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/record-circle/}.\r\n */\nconst recordCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * record-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/record-fill/}.\r\n */\nconst recordFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * record.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/record/}.\r\n */\nconst record = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * record2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/record2-fill/}.\r\n */\nconst record2Fill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * record2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/record2/}.\r\n */\nconst record2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * recycle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/recycle/}.\r\n */\nconst recycle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * reddit.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/reddit/}.\r\n */\nconst reddit = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * regex.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/regex/}.\r\n */\nconst regex = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * repeat-1.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/repeat-1/}.\r\n */\nconst repeat1 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * repeat.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/repeat/}.\r\n */\nconst repeat = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * reply-all-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/reply-all-fill/}.\r\n */\nconst replyAllFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * reply-all.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/reply-all/}.\r\n */\nconst replyAll = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * reply-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/reply-fill/}.\r\n */\nconst replyFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * reply.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/reply/}.\r\n */\nconst reply = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * rewind-btn-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/rewind-btn-fill/}.\r\n */\nconst rewindBtnFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * rewind-btn.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/rewind-btn/}.\r\n */\nconst rewindBtn = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * rewind-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/rewind-circle-fill/}.\r\n */\nconst rewindCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * rewind-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/rewind-circle/}.\r\n */\nconst rewindCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * rewind-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/rewind-fill/}.\r\n */\nconst rewindFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * rewind.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/rewind/}.\r\n */\nconst rewind = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * robot.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/robot/}.\r\n */\nconst robot = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * rocket-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/rocket-fill/}.\r\n */\nconst rocketFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * rocket-takeoff-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/rocket-takeoff-fill/}.\r\n */\nconst rocketTakeoffFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * rocket-takeoff.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/rocket-takeoff/}.\r\n */\nconst rocketTakeoff = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * rocket.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/rocket/}.\r\n */\nconst rocket = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * router-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/router-fill/}.\r\n */\nconst routerFill = `\n \n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * router.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/router/}.\r\n */\nconst router = `\n \n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * rss-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/rss-fill/}.\r\n */\nconst rssFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * rss.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/rss/}.\r\n */\nconst rss = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * rulers.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/rulers/}.\r\n */\nconst rulers = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * safe-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/safe-fill/}.\r\n */\nconst safeFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * safe.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/safe/}.\r\n */\nconst safe = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * safe2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/safe2-fill/}.\r\n */\nconst safe2Fill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * safe2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/safe2/}.\r\n */\nconst safe2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * save-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/save-fill/}.\r\n */\nconst saveFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * save.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/save/}.\r\n */\nconst save = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * save2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/save2-fill/}.\r\n */\nconst save2Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * save2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/save2/}.\r\n */\nconst save2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * scissors.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/scissors/}.\r\n */\nconst scissors = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * scooter.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/scooter/}.\r\n */\nconst scooter = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * screwdriver.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/screwdriver/}.\r\n */\nconst screwdriver = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sd-card-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sd-card-fill/}.\r\n */\nconst sdCardFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sd-card.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sd-card/}.\r\n */\nconst sdCard = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * search-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/search-heart-fill/}.\r\n */\nconst searchHeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * search-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/search-heart/}.\r\n */\nconst searchHeart = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * search.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/search/}.\r\n */\nconst search = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * segmented-nav.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/segmented-nav/}.\r\n */\nconst segmentedNav = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * send-check-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/send-check-fill/}.\r\n */\nconst sendCheckFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * send-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/send-check/}.\r\n */\nconst sendCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * send-dash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/send-dash-fill/}.\r\n */\nconst sendDashFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * send-dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/send-dash/}.\r\n */\nconst sendDash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * send-exclamation-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/send-exclamation-fill/}.\r\n */\nconst sendExclamationFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * send-exclamation.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/send-exclamation/}.\r\n */\nconst sendExclamation = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * send-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/send-fill/}.\r\n */\nconst sendFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * send-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/send-plus-fill/}.\r\n */\nconst sendPlusFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * send-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/send-plus/}.\r\n */\nconst sendPlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * send-slash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/send-slash-fill/}.\r\n */\nconst sendSlashFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * send-slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/send-slash/}.\r\n */\nconst sendSlash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * send-x-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/send-x-fill/}.\r\n */\nconst sendXFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * send-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/send-x/}.\r\n */\nconst sendX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * send.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/send/}.\r\n */\nconst send = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * server.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/server/}.\r\n */\nconst server = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * share-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/share-fill/}.\r\n */\nconst shareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * share.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/share/}.\r\n */\nconst share = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-check/}.\r\n */\nconst shieldCheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-exclamation.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-exclamation/}.\r\n */\nconst shieldExclamation = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-fill-check.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-fill-check/}.\r\n */\nconst shieldFillCheck = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-fill-exclamation.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-fill-exclamation/}.\r\n */\nconst shieldFillExclamation = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-fill-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-fill-minus/}.\r\n */\nconst shieldFillMinus = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-fill-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-fill-plus/}.\r\n */\nconst shieldFillPlus = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-fill-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-fill-x/}.\r\n */\nconst shieldFillX = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-fill/}.\r\n */\nconst shieldFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-lock-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-lock-fill/}.\r\n */\nconst shieldLockFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-lock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-lock/}.\r\n */\nconst shieldLock = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-minus/}.\r\n */\nconst shieldMinus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-plus/}.\r\n */\nconst shieldPlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-shaded.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-shaded/}.\r\n */\nconst shieldShaded = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-slash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-slash-fill/}.\r\n */\nconst shieldSlashFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-slash/}.\r\n */\nconst shieldSlash = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield-x/}.\r\n */\nconst shieldX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shield.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shield/}.\r\n */\nconst shield = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shift-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shift-fill/}.\r\n */\nconst shiftFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shift.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shift/}.\r\n */\nconst shift = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shop-window.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shop-window/}.\r\n */\nconst shopWindow = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shop.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shop/}.\r\n */\nconst shop = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * shuffle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/shuffle/}.\r\n */\nconst shuffle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-dead-end-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-dead-end-fill/}.\r\n */\nconst signDeadEndFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-dead-end.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-dead-end/}.\r\n */\nconst signDeadEnd = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-do-not-enter-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-do-not-enter-fill/}.\r\n */\nconst signDoNotEnterFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-do-not-enter.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-do-not-enter/}.\r\n */\nconst signDoNotEnter = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-intersection-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-intersection-fill/}.\r\n */\nconst signIntersectionFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-intersection-side-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-intersection-side-fill/}.\r\n */\nconst signIntersectionSideFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-intersection-side.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-intersection-side/}.\r\n */\nconst signIntersectionSide = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-intersection-t-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-intersection-t-fill/}.\r\n */\nconst signIntersectionTFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-intersection-t.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-intersection-t/}.\r\n */\nconst signIntersectionT = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-intersection-y-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-intersection-y-fill/}.\r\n */\nconst signIntersectionYFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-intersection-y.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-intersection-y/}.\r\n */\nconst signIntersectionY = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-intersection.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-intersection/}.\r\n */\nconst signIntersection = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-merge-left-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-merge-left-fill/}.\r\n */\nconst signMergeLeftFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-merge-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-merge-left/}.\r\n */\nconst signMergeLeft = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-merge-right-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-merge-right-fill/}.\r\n */\nconst signMergeRightFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-merge-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-merge-right/}.\r\n */\nconst signMergeRight = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-no-left-turn-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-no-left-turn-fill/}.\r\n */\nconst signNoLeftTurnFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-no-left-turn.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-no-left-turn/}.\r\n */\nconst signNoLeftTurn = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-no-parking-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-no-parking-fill/}.\r\n */\nconst signNoParkingFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-no-parking.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-no-parking/}.\r\n */\nconst signNoParking = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-no-right-turn-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-no-right-turn-fill/}.\r\n */\nconst signNoRightTurnFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-no-right-turn.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-no-right-turn/}.\r\n */\nconst signNoRightTurn = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-railroad-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-railroad-fill/}.\r\n */\nconst signRailroadFill = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-railroad.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-railroad/}.\r\n */\nconst signRailroad = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-stop-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-stop-fill/}.\r\n */\nconst signStopFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-stop-lights-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-stop-lights-fill/}.\r\n */\nconst signStopLightsFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-stop-lights.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-stop-lights/}.\r\n */\nconst signStopLights = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-stop.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-stop/}.\r\n */\nconst signStop = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-turn-left-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-turn-left-fill/}.\r\n */\nconst signTurnLeftFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-turn-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-turn-left/}.\r\n */\nconst signTurnLeft = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-turn-right-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-turn-right-fill/}.\r\n */\nconst signTurnRightFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-turn-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-turn-right/}.\r\n */\nconst signTurnRight = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-turn-slight-left-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-turn-slight-left-fill/}.\r\n */\nconst signTurnSlightLeftFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-turn-slight-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-turn-slight-left/}.\r\n */\nconst signTurnSlightLeft = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-turn-slight-right-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-turn-slight-right-fill/}.\r\n */\nconst signTurnSlightRightFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-turn-slight-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-turn-slight-right/}.\r\n */\nconst signTurnSlightRight = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-yield-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-yield-fill/}.\r\n */\nconst signYieldFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sign-yield.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sign-yield/}.\r\n */\nconst signYield = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * signal.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/signal/}.\r\n */\nconst signal = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * signpost-2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/signpost-2-fill/}.\r\n */\nconst signpost2Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * signpost-2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/signpost-2/}.\r\n */\nconst signpost2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * signpost-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/signpost-fill/}.\r\n */\nconst signpostFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * signpost-split-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/signpost-split-fill/}.\r\n */\nconst signpostSplitFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * signpost-split.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/signpost-split/}.\r\n */\nconst signpostSplit = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * signpost.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/signpost/}.\r\n */\nconst signpost = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sim-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sim-fill/}.\r\n */\nconst simFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sim.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sim/}.\r\n */\nconst sim = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sina-weibo.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sina-weibo/}.\r\n */\nconst sinaWeibo = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-backward-btn-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-backward-btn-fill/}.\r\n */\nconst skipBackwardBtnFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-backward-btn.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-backward-btn/}.\r\n */\nconst skipBackwardBtn = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-backward-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-backward-circle-fill/}.\r\n */\nconst skipBackwardCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-backward-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-backward-circle/}.\r\n */\nconst skipBackwardCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-backward-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-backward-fill/}.\r\n */\nconst skipBackwardFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-backward.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-backward/}.\r\n */\nconst skipBackward = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-end-btn-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-end-btn-fill/}.\r\n */\nconst skipEndBtnFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-end-btn.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-end-btn/}.\r\n */\nconst skipEndBtn = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-end-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-end-circle-fill/}.\r\n */\nconst skipEndCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-end-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-end-circle/}.\r\n */\nconst skipEndCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-end-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-end-fill/}.\r\n */\nconst skipEndFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-end.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-end/}.\r\n */\nconst skipEnd = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-forward-btn-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-forward-btn-fill/}.\r\n */\nconst skipForwardBtnFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-forward-btn.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-forward-btn/}.\r\n */\nconst skipForwardBtn = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-forward-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-forward-circle-fill/}.\r\n */\nconst skipForwardCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-forward-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-forward-circle/}.\r\n */\nconst skipForwardCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-forward-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-forward-fill/}.\r\n */\nconst skipForwardFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-forward.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-forward/}.\r\n */\nconst skipForward = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-start-btn-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-start-btn-fill/}.\r\n */\nconst skipStartBtnFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-start-btn.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-start-btn/}.\r\n */\nconst skipStartBtn = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-start-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-start-circle-fill/}.\r\n */\nconst skipStartCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-start-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-start-circle/}.\r\n */\nconst skipStartCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-start-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-start-fill/}.\r\n */\nconst skipStartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skip-start.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skip-start/}.\r\n */\nconst skipStart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * skype.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/skype/}.\r\n */\nconst skype = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * slack.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/slack/}.\r\n */\nconst slack = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * slash-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/slash-circle-fill/}.\r\n */\nconst slashCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * slash-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/slash-circle/}.\r\n */\nconst slashCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * slash-lg.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/slash-lg/}.\r\n */\nconst slashLg = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * slash-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/slash-square-fill/}.\r\n */\nconst slashSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * slash-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/slash-square/}.\r\n */\nconst slashSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * slash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/slash/}.\r\n */\nconst slash = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sliders.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sliders/}.\r\n */\nconst sliders = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sliders2-vertical.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sliders2-vertical/}.\r\n */\nconst sliders2Vertical = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sliders2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sliders2/}.\r\n */\nconst sliders2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * smartwatch.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/smartwatch/}.\r\n */\nconst smartwatch = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * snapchat.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/snapchat/}.\r\n */\nconst snapchat = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * snow.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/snow/}.\r\n */\nconst snow = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * snow2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/snow2/}.\r\n */\nconst snow2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * snow3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/snow3/}.\r\n */\nconst snow3 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sort-alpha-down-alt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sort-alpha-down-alt/}.\r\n */\nconst sortAlphaDownAlt = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sort-alpha-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sort-alpha-down/}.\r\n */\nconst sortAlphaDown = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sort-alpha-up-alt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sort-alpha-up-alt/}.\r\n */\nconst sortAlphaUpAlt = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sort-alpha-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sort-alpha-up/}.\r\n */\nconst sortAlphaUp = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sort-down-alt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sort-down-alt/}.\r\n */\nconst sortDownAlt = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sort-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sort-down/}.\r\n */\nconst sortDown = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sort-numeric-down-alt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sort-numeric-down-alt/}.\r\n */\nconst sortNumericDownAlt = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sort-numeric-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sort-numeric-down/}.\r\n */\nconst sortNumericDown = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sort-numeric-up-alt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sort-numeric-up-alt/}.\r\n */\nconst sortNumericUpAlt = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sort-numeric-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sort-numeric-up/}.\r\n */\nconst sortNumericUp = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sort-up-alt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sort-up-alt/}.\r\n */\nconst sortUpAlt = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sort-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sort-up/}.\r\n */\nconst sortUp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * soundwave.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/soundwave/}.\r\n */\nconst soundwave = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * speaker-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/speaker-fill/}.\r\n */\nconst speakerFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * speaker.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/speaker/}.\r\n */\nconst speaker = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * speedometer.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/speedometer/}.\r\n */\nconst speedometer = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * speedometer2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/speedometer2/}.\r\n */\nconst speedometer2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * spellcheck.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/spellcheck/}.\r\n */\nconst spellcheck = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * spotify.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/spotify/}.\r\n */\nconst spotify = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/square-fill/}.\r\n */\nconst squareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * square-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/square-half/}.\r\n */\nconst squareHalf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/square/}.\r\n */\nconst square = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stack-overflow.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stack-overflow/}.\r\n */\nconst stackOverflow = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stack.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stack/}.\r\n */\nconst stack = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * star-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/star-fill/}.\r\n */\nconst starFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * star-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/star-half/}.\r\n */\nconst starHalf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * star.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/star/}.\r\n */\nconst star = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stars.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stars/}.\r\n */\nconst stars = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * steam.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/steam/}.\r\n */\nconst steam = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stickies-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stickies-fill/}.\r\n */\nconst stickiesFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stickies.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stickies/}.\r\n */\nconst stickies = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sticky-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sticky-fill/}.\r\n */\nconst stickyFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sticky.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sticky/}.\r\n */\nconst sticky = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stop-btn-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stop-btn-fill/}.\r\n */\nconst stopBtnFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stop-btn.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stop-btn/}.\r\n */\nconst stopBtn = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stop-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stop-circle-fill/}.\r\n */\nconst stopCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stop-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stop-circle/}.\r\n */\nconst stopCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stop-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stop-fill/}.\r\n */\nconst stopFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stop.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stop/}.\r\n */\nconst stop = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stoplights-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stoplights-fill/}.\r\n */\nconst stoplightsFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stoplights.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stoplights/}.\r\n */\nconst stoplights = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stopwatch-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stopwatch-fill/}.\r\n */\nconst stopwatchFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stopwatch.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stopwatch/}.\r\n */\nconst stopwatch = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * strava.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/strava/}.\r\n */\nconst strava = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * stripe.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/stripe/}.\r\n */\nconst stripe = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * subscript.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/subscript/}.\r\n */\nconst subscript = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * subtract.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/subtract/}.\r\n */\nconst subtract = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * suit-club-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/suit-club-fill/}.\r\n */\nconst suitClubFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * suit-club.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/suit-club/}.\r\n */\nconst suitClub = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * suit-diamond-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/suit-diamond-fill/}.\r\n */\nconst suitDiamondFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * suit-diamond.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/suit-diamond/}.\r\n */\nconst suitDiamond = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * suit-heart-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/suit-heart-fill/}.\r\n */\nconst suitHeartFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * suit-heart.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/suit-heart/}.\r\n */\nconst suitHeart = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * suit-spade-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/suit-spade-fill/}.\r\n */\nconst suitSpadeFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * suit-spade.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/suit-spade/}.\r\n */\nconst suitSpade = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sun-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sun-fill/}.\r\n */\nconst sunFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sun.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sun/}.\r\n */\nconst sun = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sunglasses.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sunglasses/}.\r\n */\nconst sunglasses = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sunrise-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sunrise-fill/}.\r\n */\nconst sunriseFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sunrise.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sunrise/}.\r\n */\nconst sunrise = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sunset-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sunset-fill/}.\r\n */\nconst sunsetFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * sunset.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/sunset/}.\r\n */\nconst sunset = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * superscript.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/superscript/}.\r\n */\nconst superscript = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * symmetry-horizontal.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/symmetry-horizontal/}.\r\n */\nconst symmetryHorizontal = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * symmetry-vertical.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/symmetry-vertical/}.\r\n */\nconst symmetryVertical = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * table.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/table/}.\r\n */\nconst table = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tablet-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tablet-fill/}.\r\n */\nconst tabletFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tablet-landscape-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tablet-landscape-fill/}.\r\n */\nconst tabletLandscapeFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tablet-landscape.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tablet-landscape/}.\r\n */\nconst tabletLandscape = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tablet.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tablet/}.\r\n */\nconst tablet = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tag-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tag-fill/}.\r\n */\nconst tagFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tag.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tag/}.\r\n */\nconst tag = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tags-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tags-fill/}.\r\n */\nconst tagsFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tags.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tags/}.\r\n */\nconst tags = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * taxi-front-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/taxi-front-fill/}.\r\n */\nconst taxiFrontFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * taxi-front.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/taxi-front/}.\r\n */\nconst taxiFront = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telegram.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telegram/}.\r\n */\nconst telegram = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telephone-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telephone-fill/}.\r\n */\nconst telephoneFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telephone-forward-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telephone-forward-fill/}.\r\n */\nconst telephoneForwardFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telephone-forward.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telephone-forward/}.\r\n */\nconst telephoneForward = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telephone-inbound-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telephone-inbound-fill/}.\r\n */\nconst telephoneInboundFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telephone-inbound.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telephone-inbound/}.\r\n */\nconst telephoneInbound = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telephone-minus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telephone-minus-fill/}.\r\n */\nconst telephoneMinusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telephone-minus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telephone-minus/}.\r\n */\nconst telephoneMinus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telephone-outbound-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telephone-outbound-fill/}.\r\n */\nconst telephoneOutboundFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telephone-outbound.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telephone-outbound/}.\r\n */\nconst telephoneOutbound = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telephone-plus-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telephone-plus-fill/}.\r\n */\nconst telephonePlusFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telephone-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telephone-plus/}.\r\n */\nconst telephonePlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telephone-x-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telephone-x-fill/}.\r\n */\nconst telephoneXFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telephone-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telephone-x/}.\r\n */\nconst telephoneX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * telephone.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/telephone/}.\r\n */\nconst telephone = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tencent-qq.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tencent-qq/}.\r\n */\nconst tencentQq = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * terminal-dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/terminal-dash/}.\r\n */\nconst terminalDash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * terminal-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/terminal-fill/}.\r\n */\nconst terminalFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * terminal-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/terminal-plus/}.\r\n */\nconst terminalPlus = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * terminal-split.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/terminal-split/}.\r\n */\nconst terminalSplit = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * terminal-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/terminal-x/}.\r\n */\nconst terminalX = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * terminal.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/terminal/}.\r\n */\nconst terminal = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * text-center.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/text-center/}.\r\n */\nconst textCenter = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * text-indent-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/text-indent-left/}.\r\n */\nconst textIndentLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * text-indent-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/text-indent-right/}.\r\n */\nconst textIndentRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * text-left.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/text-left/}.\r\n */\nconst textLeft = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * text-paragraph.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/text-paragraph/}.\r\n */\nconst textParagraph = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * text-right.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/text-right/}.\r\n */\nconst textRight = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * text-wrap.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/text-wrap/}.\r\n */\nconst textWrap = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * textarea-resize.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/textarea-resize/}.\r\n */\nconst textareaResize = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * textarea-t.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/textarea-t/}.\r\n */\nconst textareaT = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * textarea.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/textarea/}.\r\n */\nconst textarea = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * thermometer-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/thermometer-half/}.\r\n */\nconst thermometerHalf = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * thermometer-high.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/thermometer-high/}.\r\n */\nconst thermometerHigh = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * thermometer-low.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/thermometer-low/}.\r\n */\nconst thermometerLow = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * thermometer-snow.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/thermometer-snow/}.\r\n */\nconst thermometerSnow = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * thermometer-sun.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/thermometer-sun/}.\r\n */\nconst thermometerSun = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * thermometer.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/thermometer/}.\r\n */\nconst thermometer = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * three-dots-vertical.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/three-dots-vertical/}.\r\n */\nconst threeDotsVertical = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * three-dots.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/three-dots/}.\r\n */\nconst threeDots = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * thunderbolt-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/thunderbolt-fill/}.\r\n */\nconst thunderboltFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * thunderbolt.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/thunderbolt/}.\r\n */\nconst thunderbolt = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ticket-detailed-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ticket-detailed-fill/}.\r\n */\nconst ticketDetailedFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ticket-detailed.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ticket-detailed/}.\r\n */\nconst ticketDetailed = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ticket-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ticket-fill/}.\r\n */\nconst ticketFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ticket-perforated-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ticket-perforated-fill/}.\r\n */\nconst ticketPerforatedFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ticket-perforated.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ticket-perforated/}.\r\n */\nconst ticketPerforated = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ticket.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ticket/}.\r\n */\nconst ticket = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tiktok.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tiktok/}.\r\n */\nconst tiktok = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * toggle-off.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/toggle-off/}.\r\n */\nconst toggleOff = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * toggle-on.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/toggle-on/}.\r\n */\nconst toggleOn = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * toggle2-off.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/toggle2-off/}.\r\n */\nconst toggle2Off = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * toggle2-on.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/toggle2-on/}.\r\n */\nconst toggle2On = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * toggles.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/toggles/}.\r\n */\nconst toggles = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * toggles2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/toggles2/}.\r\n */\nconst toggles2 = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tools.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tools/}.\r\n */\nconst tools = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tornado.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tornado/}.\r\n */\nconst tornado = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * train-freight-front-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/train-freight-front-fill/}.\r\n */\nconst trainFreightFrontFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * train-freight-front.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/train-freight-front/}.\r\n */\nconst trainFreightFront = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * train-front-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/train-front-fill/}.\r\n */\nconst trainFrontFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * train-front.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/train-front/}.\r\n */\nconst trainFront = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * train-lightrail-front-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/train-lightrail-front-fill/}.\r\n */\nconst trainLightrailFrontFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * train-lightrail-front.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/train-lightrail-front/}.\r\n */\nconst trainLightrailFront = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * translate.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/translate/}.\r\n */\nconst translate = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * trash-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/trash-fill/}.\r\n */\nconst trashFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * trash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/trash/}.\r\n */\nconst trash = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * trash2-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/trash2-fill/}.\r\n */\nconst trash2Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * trash2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/trash2/}.\r\n */\nconst trash2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * trash3-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/trash3-fill/}.\r\n */\nconst trash3Fill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * trash3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/trash3/}.\r\n */\nconst trash3 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tree-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tree-fill/}.\r\n */\nconst treeFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tree.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tree/}.\r\n */\nconst tree = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * trello.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/trello/}.\r\n */\nconst trello = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * triangle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/triangle-fill/}.\r\n */\nconst triangleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * triangle-half.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/triangle-half/}.\r\n */\nconst triangleHalf = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * triangle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/triangle/}.\r\n */\nconst triangle = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * trophy-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/trophy-fill/}.\r\n */\nconst trophyFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * trophy.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/trophy/}.\r\n */\nconst trophy = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tropical-storm.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tropical-storm/}.\r\n */\nconst tropicalStorm = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * truck-flatbed.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/truck-flatbed/}.\r\n */\nconst truckFlatbed = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * truck-front-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/truck-front-fill/}.\r\n */\nconst truckFrontFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * truck-front.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/truck-front/}.\r\n */\nconst truckFront = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * truck.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/truck/}.\r\n */\nconst truck = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tsunami.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tsunami/}.\r\n */\nconst tsunami = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tv-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tv-fill/}.\r\n */\nconst tvFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * tv.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/tv/}.\r\n */\nconst tv = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * twitch.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/twitch/}.\r\n */\nconst twitch = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * twitter.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/twitter/}.\r\n */\nconst twitter = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * type-bold.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/type-bold/}.\r\n */\nconst typeBold = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * type-h1.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/type-h1/}.\r\n */\nconst typeH1 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * type-h2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/type-h2/}.\r\n */\nconst typeH2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * type-h3.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/type-h3/}.\r\n */\nconst typeH3 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * type-italic.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/type-italic/}.\r\n */\nconst typeItalic = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * type-strikethrough.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/type-strikethrough/}.\r\n */\nconst typeStrikethrough = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * type-underline.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/type-underline/}.\r\n */\nconst typeUnderline = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * type.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/type/}.\r\n */\nconst type = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ubuntu.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ubuntu/}.\r\n */\nconst ubuntu = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ui-checks-grid.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ui-checks-grid/}.\r\n */\nconst uiChecksGrid = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ui-checks.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ui-checks/}.\r\n */\nconst uiChecks = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ui-radios-grid.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ui-radios-grid/}.\r\n */\nconst uiRadiosGrid = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * ui-radios.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/ui-radios/}.\r\n */\nconst uiRadios = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * umbrella-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/umbrella-fill/}.\r\n */\nconst umbrellaFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * umbrella.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/umbrella/}.\r\n */\nconst umbrella = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * unindent.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/unindent/}.\r\n */\nconst unindent = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * union.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/union/}.\r\n */\nconst union = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * unity.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/unity/}.\r\n */\nconst unity = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * universal-access-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/universal-access-circle/}.\r\n */\nconst universalAccessCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * universal-access.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/universal-access/}.\r\n */\nconst universalAccess = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * unlock-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/unlock-fill/}.\r\n */\nconst unlockFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * unlock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/unlock/}.\r\n */\nconst unlock = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * upc-scan.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/upc-scan/}.\r\n */\nconst upcScan = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * upc.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/upc/}.\r\n */\nconst upc = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * upload.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/upload/}.\r\n */\nconst upload = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * usb-c-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/usb-c-fill/}.\r\n */\nconst usbCFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * usb-c.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/usb-c/}.\r\n */\nconst usbC = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * usb-drive-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/usb-drive-fill/}.\r\n */\nconst usbDriveFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * usb-drive.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/usb-drive/}.\r\n */\nconst usbDrive = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * usb-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/usb-fill/}.\r\n */\nconst usbFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * usb-micro-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/usb-micro-fill/}.\r\n */\nconst usbMicroFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * usb-micro.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/usb-micro/}.\r\n */\nconst usbMicro = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * usb-mini-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/usb-mini-fill/}.\r\n */\nconst usbMiniFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * usb-mini.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/usb-mini/}.\r\n */\nconst usbMini = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * usb-plug-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/usb-plug-fill/}.\r\n */\nconst usbPlugFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * usb-plug.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/usb-plug/}.\r\n */\nconst usbPlug = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * usb-symbol.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/usb-symbol/}.\r\n */\nconst usbSymbol = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * usb.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/usb/}.\r\n */\nconst usb = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * valentine.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/valentine/}.\r\n */\nconst valentine = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * valentine2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/valentine2/}.\r\n */\nconst valentine2 = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * vector-pen.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/vector-pen/}.\r\n */\nconst vectorPen = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * view-list.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/view-list/}.\r\n */\nconst viewList = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * view-stacked.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/view-stacked/}.\r\n */\nconst viewStacked = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * vimeo.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/vimeo/}.\r\n */\nconst vimeo = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * vinyl-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/vinyl-fill/}.\r\n */\nconst vinylFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * vinyl.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/vinyl/}.\r\n */\nconst vinyl = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * virus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/virus/}.\r\n */\nconst virus = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * virus2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/virus2/}.\r\n */\nconst virus2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * voicemail.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/voicemail/}.\r\n */\nconst voicemail = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * volume-down-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/volume-down-fill/}.\r\n */\nconst volumeDownFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * volume-down.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/volume-down/}.\r\n */\nconst volumeDown = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * volume-mute-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/volume-mute-fill/}.\r\n */\nconst volumeMuteFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * volume-mute.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/volume-mute/}.\r\n */\nconst volumeMute = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * volume-off-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/volume-off-fill/}.\r\n */\nconst volumeOffFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * volume-off.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/volume-off/}.\r\n */\nconst volumeOff = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * volume-up-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/volume-up-fill/}.\r\n */\nconst volumeUpFill = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * volume-up.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/volume-up/}.\r\n */\nconst volumeUp = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * vr.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/vr/}.\r\n */\nconst vr = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wallet-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wallet-fill/}.\r\n */\nconst walletFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wallet.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wallet/}.\r\n */\nconst wallet = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wallet2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wallet2/}.\r\n */\nconst wallet2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * watch.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/watch/}.\r\n */\nconst watch = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * water.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/water/}.\r\n */\nconst water = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * webcam-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/webcam-fill/}.\r\n */\nconst webcamFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * webcam.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/webcam/}.\r\n */\nconst webcam = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wechat.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wechat/}.\r\n */\nconst wechat = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * whatsapp.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/whatsapp/}.\r\n */\nconst whatsapp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wifi-1.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wifi-1/}.\r\n */\nconst wifi1 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wifi-2.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wifi-2/}.\r\n */\nconst wifi2 = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wifi-off.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wifi-off/}.\r\n */\nconst wifiOff = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wifi.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wifi/}.\r\n */\nconst wifi = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wikipedia.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wikipedia/}.\r\n */\nconst wikipedia = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wind.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wind/}.\r\n */\nconst wind = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * window-dash.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/window-dash/}.\r\n */\nconst windowDash = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * window-desktop.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/window-desktop/}.\r\n */\nconst windowDesktop = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * window-dock.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/window-dock/}.\r\n */\nconst windowDock = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * window-fullscreen.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/window-fullscreen/}.\r\n */\nconst windowFullscreen = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * window-plus.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/window-plus/}.\r\n */\nconst windowPlus = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * window-sidebar.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/window-sidebar/}.\r\n */\nconst windowSidebar = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * window-split.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/window-split/}.\r\n */\nconst windowSplit = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * window-stack.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/window-stack/}.\r\n */\nconst windowStack = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * window-x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/window-x/}.\r\n */\nconst windowX = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * window.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/window/}.\r\n */\nconst window = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * windows.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/windows/}.\r\n */\nconst windows = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wordpress.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wordpress/}.\r\n */\nconst wordpress = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wrench-adjustable-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wrench-adjustable-circle-fill/}.\r\n */\nconst wrenchAdjustableCircleFill = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wrench-adjustable-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wrench-adjustable-circle/}.\r\n */\nconst wrenchAdjustableCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wrench-adjustable.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wrench-adjustable/}.\r\n */\nconst wrenchAdjustable = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * wrench.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/wrench/}.\r\n */\nconst wrench = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * x-circle-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/x-circle-fill/}.\r\n */\nconst xCircleFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * x-circle.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/x-circle/}.\r\n */\nconst xCircle = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * x-diamond-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/x-diamond-fill/}.\r\n */\nconst xDiamondFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * x-diamond.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/x-diamond/}.\r\n */\nconst xDiamond = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * x-lg.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/x-lg/}.\r\n */\nconst xLg = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * x-octagon-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/x-octagon-fill/}.\r\n */\nconst xOctagonFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * x-octagon.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/x-octagon/}.\r\n */\nconst xOctagon = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * x-square-fill.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/x-square-fill/}.\r\n */\nconst xSquareFill = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * x-square.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/x-square/}.\r\n */\nconst xSquare = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * x.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/x/}.\r\n */\nconst x = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * xbox.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/xbox/}.\r\n */\nconst xbox = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * yelp.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/yelp/}.\r\n */\nconst yelp = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * yin-yang.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/yin-yang/}.\r\n */\nconst yinYang = `\n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * youtube.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/youtube/}.\r\n */\nconst youtube = `\n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * zoom-in.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/zoom-in/}.\r\n */\nconst zoomIn = `\n \n \n \n`;\n\n/* eslint-disable max-len */\n/**\r\n * zoom-out.\r\n *\r\n * {@link https://icons.getbootstrap.com/icons/zoom-out/}.\r\n */\nconst zoomOut = `\n \n \n \n`;\nconst allIcons = {\n icon0CircleFill,\n icon0Circle,\n icon0SquareFill,\n icon0Square,\n icon1CircleFill,\n icon1Circle,\n icon1SquareFill,\n icon1Square,\n icon123,\n icon2CircleFill,\n icon2Circle,\n icon2SquareFill,\n icon2Square,\n icon3CircleFill,\n icon3Circle,\n icon3SquareFill,\n icon3Square,\n icon4CircleFill,\n icon4Circle,\n icon4SquareFill,\n icon4Square,\n icon5CircleFill,\n icon5Circle,\n icon5SquareFill,\n icon5Square,\n icon6CircleFill,\n icon6Circle,\n icon6SquareFill,\n icon6Square,\n icon7CircleFill,\n icon7Circle,\n icon7SquareFill,\n icon7Square,\n icon8CircleFill,\n icon8Circle,\n icon8SquareFill,\n icon8Square,\n icon9CircleFill,\n icon9Circle,\n icon9SquareFill,\n icon9Square,\n activity,\n airplaneEnginesFill,\n airplaneEngines,\n airplaneFill,\n airplane,\n alarmFill,\n alarm,\n alexa,\n alignBottom,\n alignCenter,\n alignEnd,\n alignMiddle,\n alignStart,\n alignTop,\n alipay,\n alt,\n amd,\n android,\n android2,\n appIndicator,\n app,\n apple,\n archiveFill,\n archive,\n arrow90DegDown,\n arrow90DegLeft,\n arrow90DegRight,\n arrow90DegUp,\n arrowBarDown,\n arrowBarLeft,\n arrowBarRight,\n arrowBarUp,\n arrowClockwise,\n arrowCounterclockwise,\n arrowDownCircleFill,\n arrowDownCircle,\n arrowDownLeftCircleFill,\n arrowDownLeftCircle,\n arrowDownLeftSquareFill,\n arrowDownLeftSquare,\n arrowDownLeft,\n arrowDownRightCircleFill,\n arrowDownRightCircle,\n arrowDownRightSquareFill,\n arrowDownRightSquare,\n arrowDownRight,\n arrowDownShort,\n arrowDownSquareFill,\n arrowDownSquare,\n arrowDownUp,\n arrowDown,\n arrowLeftCircleFill,\n arrowLeftCircle,\n arrowLeftRight,\n arrowLeftShort,\n arrowLeftSquareFill,\n arrowLeftSquare,\n arrowLeft,\n arrowRepeat,\n arrowReturnLeft,\n arrowReturnRight,\n arrowRightCircleFill,\n arrowRightCircle,\n arrowRightShort,\n arrowRightSquareFill,\n arrowRightSquare,\n arrowRight,\n arrowThroughHeartFill,\n arrowThroughHeart,\n arrowUpCircleFill,\n arrowUpCircle,\n arrowUpLeftCircleFill,\n arrowUpLeftCircle,\n arrowUpLeftSquareFill,\n arrowUpLeftSquare,\n arrowUpLeft,\n arrowUpRightCircleFill,\n arrowUpRightCircle,\n arrowUpRightSquareFill,\n arrowUpRightSquare,\n arrowUpRight,\n arrowUpShort,\n arrowUpSquareFill,\n arrowUpSquare,\n arrowUp,\n arrowsAngleContract,\n arrowsAngleExpand,\n arrowsCollapse,\n arrowsExpand,\n arrowsFullscreen,\n arrowsMove,\n aspectRatioFill,\n aspectRatio,\n asterisk,\n at,\n awardFill,\n award,\n back,\n backspaceFill,\n backspaceReverseFill,\n backspaceReverse,\n backspace,\n badge3DFill,\n badge3D,\n badge4KFill,\n badge4K,\n badge8KFill,\n badge8K,\n badgeAdFill,\n badgeAd,\n badgeArFill,\n badgeAr,\n badgeCcFill,\n badgeCc,\n badgeHdFill,\n badgeHd,\n badgeSdFill,\n badgeSd,\n badgeTmFill,\n badgeTm,\n badgeVoFill,\n badgeVo,\n badgeVrFill,\n badgeVr,\n badgeWcFill,\n badgeWc,\n bagCheckFill,\n bagCheck,\n bagDashFill,\n bagDash,\n bagFill,\n bagHeartFill,\n bagHeart,\n bagPlusFill,\n bagPlus,\n bagXFill,\n bagX,\n bag,\n balloonFill,\n balloonHeartFill,\n balloonHeart,\n balloon,\n bandaidFill,\n bandaid,\n bank,\n bank2,\n barChartFill,\n barChartLineFill,\n barChartLine,\n barChartSteps,\n barChart,\n basketFill,\n basket,\n basket2Fill,\n basket2,\n basket3Fill,\n basket3,\n batteryCharging,\n batteryFull,\n batteryHalf,\n battery,\n behance,\n bellFill,\n bellSlashFill,\n bellSlash,\n bell,\n bezier,\n bezier2,\n bicycle,\n binocularsFill,\n binoculars,\n blockquoteLeft,\n blockquoteRight,\n bluetooth,\n bodyText,\n bookFill,\n bookHalf,\n book,\n bookmarkCheckFill,\n bookmarkCheck,\n bookmarkDashFill,\n bookmarkDash,\n bookmarkFill,\n bookmarkHeartFill,\n bookmarkHeart,\n bookmarkPlusFill,\n bookmarkPlus,\n bookmarkStarFill,\n bookmarkStar,\n bookmarkXFill,\n bookmarkX,\n bookmark,\n bookmarksFill,\n bookmarks,\n bookshelf,\n boomboxFill,\n boombox,\n bootstrapFill,\n bootstrapReboot,\n bootstrap,\n borderAll,\n borderBottom,\n borderCenter,\n borderInner,\n borderLeft,\n borderMiddle,\n borderOuter,\n borderRight,\n borderStyle,\n borderTop,\n borderWidth,\n border,\n boundingBoxCircles,\n boundingBox,\n boxArrowDownLeft,\n boxArrowDownRight,\n boxArrowDown,\n boxArrowInDownLeft,\n boxArrowInDownRight,\n boxArrowInDown,\n boxArrowInLeft,\n boxArrowInRight,\n boxArrowInUpLeft,\n boxArrowInUpRight,\n boxArrowInUp,\n boxArrowLeft,\n boxArrowRight,\n boxArrowUpLeft,\n boxArrowUpRight,\n boxArrowUp,\n boxFill,\n boxSeamFill,\n boxSeam,\n box,\n box2Fill,\n box2HeartFill,\n box2Heart,\n box2,\n boxes,\n bracesAsterisk,\n braces,\n bricks,\n briefcaseFill,\n briefcase,\n brightnessAltHighFill,\n brightnessAltHigh,\n brightnessAltLowFill,\n brightnessAltLow,\n brightnessHighFill,\n brightnessHigh,\n brightnessLowFill,\n brightnessLow,\n broadcastPin,\n broadcast,\n browserChrome,\n browserEdge,\n browserFirefox,\n browserSafari,\n brushFill,\n brush,\n bucketFill,\n bucket,\n bugFill,\n bug,\n buildingAdd,\n buildingCheck,\n buildingDash,\n buildingDown,\n buildingExclamation,\n buildingFillAdd,\n buildingFillCheck,\n buildingFillDash,\n buildingFillDown,\n buildingFillExclamation,\n buildingFillGear,\n buildingFillLock,\n buildingFillSlash,\n buildingFillUp,\n buildingFillX,\n buildingFill,\n buildingGear,\n buildingLock,\n buildingSlash,\n buildingUp,\n buildingX,\n building,\n buildingsFill,\n buildings,\n bullseye,\n busFrontFill,\n busFront,\n cCircleFill,\n cCircle,\n cSquareFill,\n cSquare,\n calculatorFill,\n calculator,\n calendarCheckFill,\n calendarCheck,\n calendarDateFill,\n calendarDate,\n calendarDayFill,\n calendarDay,\n calendarEventFill,\n calendarEvent,\n calendarFill,\n calendarHeartFill,\n calendarHeart,\n calendarMinusFill,\n calendarMinus,\n calendarMonthFill,\n calendarMonth,\n calendarPlusFill,\n calendarPlus,\n calendarRangeFill,\n calendarRange,\n calendarWeekFill,\n calendarWeek,\n calendarXFill,\n calendarX,\n calendar,\n calendar2CheckFill,\n calendar2Check,\n calendar2DateFill,\n calendar2Date,\n calendar2DayFill,\n calendar2Day,\n calendar2EventFill,\n calendar2Event,\n calendar2Fill,\n calendar2HeartFill,\n calendar2Heart,\n calendar2MinusFill,\n calendar2Minus,\n calendar2MonthFill,\n calendar2Month,\n calendar2PlusFill,\n calendar2Plus,\n calendar2RangeFill,\n calendar2Range,\n calendar2WeekFill,\n calendar2Week,\n calendar2XFill,\n calendar2X,\n calendar2,\n calendar3EventFill,\n calendar3Event,\n calendar3Fill,\n calendar3RangeFill,\n calendar3Range,\n calendar3WeekFill,\n calendar3Week,\n calendar3,\n calendar4Event,\n calendar4Range,\n calendar4Week,\n calendar4,\n cameraFill,\n cameraReelsFill,\n cameraReels,\n cameraVideoFill,\n cameraVideoOffFill,\n cameraVideoOff,\n cameraVideo,\n camera,\n camera2,\n capslockFill,\n capslock,\n capsulePill,\n capsule,\n carFrontFill,\n carFront,\n cardChecklist,\n cardHeading,\n cardImage,\n cardList,\n cardText,\n caretDownFill,\n caretDownSquareFill,\n caretDownSquare,\n caretDown,\n caretLeftFill,\n caretLeftSquareFill,\n caretLeftSquare,\n caretLeft,\n caretRightFill,\n caretRightSquareFill,\n caretRightSquare,\n caretRight,\n caretUpFill,\n caretUpSquareFill,\n caretUpSquare,\n caretUp,\n cartCheckFill,\n cartCheck,\n cartDashFill,\n cartDash,\n cartFill,\n cartPlusFill,\n cartPlus,\n cartXFill,\n cartX,\n cart,\n cart2,\n cart3,\n cart4,\n cashCoin,\n cashStack,\n cash,\n cassetteFill,\n cassette,\n cast,\n ccCircleFill,\n ccCircle,\n ccSquareFill,\n ccSquare,\n chatDotsFill,\n chatDots,\n chatFill,\n chatHeartFill,\n chatHeart,\n chatLeftDotsFill,\n chatLeftDots,\n chatLeftFill,\n chatLeftHeartFill,\n chatLeftHeart,\n chatLeftQuoteFill,\n chatLeftQuote,\n chatLeftTextFill,\n chatLeftText,\n chatLeft,\n chatQuoteFill,\n chatQuote,\n chatRightDotsFill,\n chatRightDots,\n chatRightFill,\n chatRightHeartFill,\n chatRightHeart,\n chatRightQuoteFill,\n chatRightQuote,\n chatRightTextFill,\n chatRightText,\n chatRight,\n chatSquareDotsFill,\n chatSquareDots,\n chatSquareFill,\n chatSquareHeartFill,\n chatSquareHeart,\n chatSquareQuoteFill,\n chatSquareQuote,\n chatSquareTextFill,\n chatSquareText,\n chatSquare,\n chatTextFill,\n chatText,\n chat,\n checkAll,\n checkCircleFill,\n checkCircle,\n checkLg,\n checkSquareFill,\n checkSquare,\n check,\n check2All,\n check2Circle,\n check2Square,\n check2,\n chevronBarContract,\n chevronBarDown,\n chevronBarExpand,\n chevronBarLeft,\n chevronBarRight,\n chevronBarUp,\n chevronCompactDown,\n chevronCompactLeft,\n chevronCompactRight,\n chevronCompactUp,\n chevronContract,\n chevronDoubleDown,\n chevronDoubleLeft,\n chevronDoubleRight,\n chevronDoubleUp,\n chevronDown,\n chevronExpand,\n chevronLeft,\n chevronRight,\n chevronUp,\n circleFill,\n circleHalf,\n circleSquare,\n circle,\n clipboardCheckFill,\n clipboardCheck,\n clipboardDataFill,\n clipboardData,\n clipboardFill,\n clipboardHeartFill,\n clipboardHeart,\n clipboardMinusFill,\n clipboardMinus,\n clipboardPlusFill,\n clipboardPlus,\n clipboardPulse,\n clipboardXFill,\n clipboardX,\n clipboard,\n clipboard2CheckFill,\n clipboard2Check,\n clipboard2DataFill,\n clipboard2Data,\n clipboard2Fill,\n clipboard2HeartFill,\n clipboard2Heart,\n clipboard2MinusFill,\n clipboard2Minus,\n clipboard2PlusFill,\n clipboard2Plus,\n clipboard2PulseFill,\n clipboard2Pulse,\n clipboard2XFill,\n clipboard2X,\n clipboard2,\n clockFill,\n clockHistory,\n clock,\n cloudArrowDownFill,\n cloudArrowDown,\n cloudArrowUpFill,\n cloudArrowUp,\n cloudCheckFill,\n cloudCheck,\n cloudDownloadFill,\n cloudDownload,\n cloudDrizzleFill,\n cloudDrizzle,\n cloudFill,\n cloudFogFill,\n cloudFog,\n cloudFog2Fill,\n cloudFog2,\n cloudHailFill,\n cloudHail,\n cloudHazeFill,\n cloudHaze,\n cloudHaze2Fill,\n cloudHaze2,\n cloudLightningFill,\n cloudLightningRainFill,\n cloudLightningRain,\n cloudLightning,\n cloudMinusFill,\n cloudMinus,\n cloudMoonFill,\n cloudMoon,\n cloudPlusFill,\n cloudPlus,\n cloudRainFill,\n cloudRainHeavyFill,\n cloudRainHeavy,\n cloudRain,\n cloudSlashFill,\n cloudSlash,\n cloudSleetFill,\n cloudSleet,\n cloudSnowFill,\n cloudSnow,\n cloudSunFill,\n cloudSun,\n cloudUploadFill,\n cloudUpload,\n cloud,\n cloudsFill,\n clouds,\n cloudyFill,\n cloudy,\n codeSlash,\n codeSquare,\n code,\n coin,\n collectionFill,\n collectionPlayFill,\n collectionPlay,\n collection,\n columnsGap,\n columns,\n command,\n compassFill,\n compass,\n coneStriped,\n cone,\n controller,\n cpuFill,\n cpu,\n creditCard2BackFill,\n creditCard2Back,\n creditCard2FrontFill,\n creditCard2Front,\n creditCardFill,\n creditCard,\n crop,\n cupFill,\n cupHotFill,\n cupHot,\n cupStraw,\n cup,\n currencyBitcoin,\n currencyDollar,\n currencyEuro,\n currencyExchange,\n currencyPound,\n currencyRupee,\n currencyYen,\n cursorFill,\n cursorText,\n cursor,\n dashCircleDotted,\n dashCircleFill,\n dashCircle,\n dashLg,\n dashSquareDotted,\n dashSquareFill,\n dashSquare,\n dash,\n databaseAdd,\n databaseCheck,\n databaseDash,\n databaseDown,\n databaseExclamation,\n databaseFillAdd,\n databaseFillCheck,\n databaseFillDash,\n databaseFillDown,\n databaseFillExclamation,\n databaseFillGear,\n databaseFillLock,\n databaseFillSlash,\n databaseFillUp,\n databaseFillX,\n databaseFill,\n databaseGear,\n databaseLock,\n databaseSlash,\n databaseUp,\n databaseX,\n database,\n deviceHddFill,\n deviceHdd,\n deviceSsdFill,\n deviceSsd,\n diagram2Fill,\n diagram2,\n diagram3Fill,\n diagram3,\n diamondFill,\n diamondHalf,\n diamond,\n dice1Fill,\n dice1,\n dice2Fill,\n dice2,\n dice3Fill,\n dice3,\n dice4Fill,\n dice4,\n dice5Fill,\n dice5,\n dice6Fill,\n dice6,\n discFill,\n disc,\n discord,\n displayFill,\n display,\n displayportFill,\n displayport,\n distributeHorizontal,\n distributeVertical,\n doorClosedFill,\n doorClosed,\n doorOpenFill,\n doorOpen,\n dot,\n download,\n dpadFill,\n dpad,\n dribbble,\n dropbox,\n dropletFill,\n dropletHalf,\n droplet,\n earFill,\n ear,\n earbuds,\n easelFill,\n easel,\n easel2Fill,\n easel2,\n easel3Fill,\n easel3,\n eggFill,\n eggFried,\n egg,\n ejectFill,\n eject,\n emojiAngryFill,\n emojiAngry,\n emojiDizzyFill,\n emojiDizzy,\n emojiExpressionlessFill,\n emojiExpressionless,\n emojiFrownFill,\n emojiFrown,\n emojiHeartEyesFill,\n emojiHeartEyes,\n emojiKissFill,\n emojiKiss,\n emojiLaughingFill,\n emojiLaughing,\n emojiNeutralFill,\n emojiNeutral,\n emojiSmileFill,\n emojiSmileUpsideDownFill,\n emojiSmileUpsideDown,\n emojiSmile,\n emojiSunglassesFill,\n emojiSunglasses,\n emojiWinkFill,\n emojiWink,\n envelopeAtFill,\n envelopeAt,\n envelopeCheckFill,\n envelopeCheck,\n envelopeDashFill,\n envelopeDash,\n envelopeExclamationFill,\n envelopeExclamation,\n envelopeFill,\n envelopeHeartFill,\n envelopeHeart,\n envelopeOpenFill,\n envelopeOpenHeartFill,\n envelopeOpenHeart,\n envelopeOpen,\n envelopePaperFill,\n envelopePaperHeartFill,\n envelopePaperHeart,\n envelopePaper,\n envelopePlusFill,\n envelopePlus,\n envelopeSlashFill,\n envelopeSlash,\n envelopeXFill,\n envelopeX,\n envelope,\n eraserFill,\n eraser,\n escape,\n ethernet,\n evFrontFill,\n evFront,\n evStationFill,\n evStation,\n exclamationCircleFill,\n exclamationCircle,\n exclamationDiamondFill,\n exclamationDiamond,\n exclamationLg,\n exclamationOctagonFill,\n exclamationOctagon,\n exclamationSquareFill,\n exclamationSquare,\n exclamationTriangleFill,\n exclamationTriangle,\n exclamation,\n exclude,\n explicitFill,\n explicit,\n eyeFill,\n eyeSlashFill,\n eyeSlash,\n eye,\n eyedropper,\n eyeglasses,\n facebook,\n fan,\n fastForwardBtnFill,\n fastForwardBtn,\n fastForwardCircleFill,\n fastForwardCircle,\n fastForwardFill,\n fastForward,\n fileArrowDownFill,\n fileArrowDown,\n fileArrowUpFill,\n fileArrowUp,\n fileBarGraphFill,\n fileBarGraph,\n fileBinaryFill,\n fileBinary,\n fileBreakFill,\n fileBreak,\n fileCheckFill,\n fileCheck,\n fileCodeFill,\n fileCode,\n fileDiffFill,\n fileDiff,\n fileEarmarkArrowDownFill,\n fileEarmarkArrowDown,\n fileEarmarkArrowUpFill,\n fileEarmarkArrowUp,\n fileEarmarkBarGraphFill,\n fileEarmarkBarGraph,\n fileEarmarkBinaryFill,\n fileEarmarkBinary,\n fileEarmarkBreakFill,\n fileEarmarkBreak,\n fileEarmarkCheckFill,\n fileEarmarkCheck,\n fileEarmarkCodeFill,\n fileEarmarkCode,\n fileEarmarkDiffFill,\n fileEarmarkDiff,\n fileEarmarkEaselFill,\n fileEarmarkEasel,\n fileEarmarkExcelFill,\n fileEarmarkExcel,\n fileEarmarkFill,\n fileEarmarkFontFill,\n fileEarmarkFont,\n fileEarmarkImageFill,\n fileEarmarkImage,\n fileEarmarkLockFill,\n fileEarmarkLock,\n fileEarmarkLock2Fill,\n fileEarmarkLock2,\n fileEarmarkMedicalFill,\n fileEarmarkMedical,\n fileEarmarkMinusFill,\n fileEarmarkMinus,\n fileEarmarkMusicFill,\n fileEarmarkMusic,\n fileEarmarkPdfFill,\n fileEarmarkPdf,\n fileEarmarkPersonFill,\n fileEarmarkPerson,\n fileEarmarkPlayFill,\n fileEarmarkPlay,\n fileEarmarkPlusFill,\n fileEarmarkPlus,\n fileEarmarkPostFill,\n fileEarmarkPost,\n fileEarmarkPptFill,\n fileEarmarkPpt,\n fileEarmarkRichtextFill,\n fileEarmarkRichtext,\n fileEarmarkRuledFill,\n fileEarmarkRuled,\n fileEarmarkSlidesFill,\n fileEarmarkSlides,\n fileEarmarkSpreadsheetFill,\n fileEarmarkSpreadsheet,\n fileEarmarkTextFill,\n fileEarmarkText,\n fileEarmarkWordFill,\n fileEarmarkWord,\n fileEarmarkXFill,\n fileEarmarkX,\n fileEarmarkZipFill,\n fileEarmarkZip,\n fileEarmark,\n fileEaselFill,\n fileEasel,\n fileExcelFill,\n fileExcel,\n fileFill,\n fileFontFill,\n fileFont,\n fileImageFill,\n fileImage,\n fileLockFill,\n fileLock,\n fileLock2Fill,\n fileLock2,\n fileMedicalFill,\n fileMedical,\n fileMinusFill,\n fileMinus,\n fileMusicFill,\n fileMusic,\n filePdfFill,\n filePdf,\n filePersonFill,\n filePerson,\n filePlayFill,\n filePlay,\n filePlusFill,\n filePlus,\n filePostFill,\n filePost,\n filePptFill,\n filePpt,\n fileRichtextFill,\n fileRichtext,\n fileRuledFill,\n fileRuled,\n fileSlidesFill,\n fileSlides,\n fileSpreadsheetFill,\n fileSpreadsheet,\n fileTextFill,\n fileText,\n fileWordFill,\n fileWord,\n fileXFill,\n fileX,\n fileZipFill,\n fileZip,\n file,\n filesAlt,\n files,\n filetypeAac,\n filetypeAi,\n filetypeBmp,\n filetypeCs,\n filetypeCss,\n filetypeCsv,\n filetypeDoc,\n filetypeDocx,\n filetypeExe,\n filetypeGif,\n filetypeHeic,\n filetypeHtml,\n filetypeJava,\n filetypeJpg,\n filetypeJs,\n filetypeJson,\n filetypeJsx,\n filetypeKey,\n filetypeM4P,\n filetypeMd,\n filetypeMdx,\n filetypeMov,\n filetypeMp3,\n filetypeMp4,\n filetypeOtf,\n filetypePdf,\n filetypePhp,\n filetypePng,\n filetypePpt,\n filetypePptx,\n filetypePsd,\n filetypePy,\n filetypeRaw,\n filetypeRb,\n filetypeSass,\n filetypeScss,\n filetypeSh,\n filetypeSql,\n filetypeSvg,\n filetypeTiff,\n filetypeTsx,\n filetypeTtf,\n filetypeTxt,\n filetypeWav,\n filetypeWoff,\n filetypeXls,\n filetypeXlsx,\n filetypeXml,\n filetypeYml,\n film,\n filterCircleFill,\n filterCircle,\n filterLeft,\n filterRight,\n filterSquareFill,\n filterSquare,\n filter,\n fingerprint,\n fire,\n flagFill,\n flag,\n flower1,\n flower2,\n flower3,\n folderCheck,\n folderFill,\n folderMinus,\n folderPlus,\n folderSymlinkFill,\n folderSymlink,\n folderX,\n folder,\n folder2Open,\n folder2,\n fonts,\n forwardFill,\n forward,\n front,\n fuelPumpDieselFill,\n fuelPumpDiesel,\n fuelPumpFill,\n fuelPump,\n fullscreenExit,\n fullscreen,\n funnelFill,\n funnel,\n gearFill,\n gearWideConnected,\n gearWide,\n gear,\n gem,\n genderAmbiguous,\n genderFemale,\n genderMale,\n genderTrans,\n geoAltFill,\n geoAlt,\n geoFill,\n geo,\n giftFill,\n gift,\n git,\n github,\n globeAmericas,\n globeAsiaAustralia,\n globeCentralSouthAsia,\n globeEuropeAfrica,\n globe,\n globe2,\n googlePlay,\n google,\n gpuCard,\n graphDownArrow,\n graphDown,\n graphUpArrow,\n graphUp,\n grid1X2Fill,\n grid1X2,\n grid3X2GapFill,\n grid3X2Gap,\n grid3X2,\n grid3X3GapFill,\n grid3X3Gap,\n grid3X3,\n gridFill,\n grid,\n gripHorizontal,\n gripVertical,\n hCircleFill,\n hCircle,\n hSquareFill,\n hSquare,\n hammer,\n handIndexFill,\n handIndexThumbFill,\n handIndexThumb,\n handIndex,\n handThumbsDownFill,\n handThumbsDown,\n handThumbsUpFill,\n handThumbsUp,\n handbagFill,\n handbag,\n hash,\n hddFill,\n hddNetworkFill,\n hddNetwork,\n hddRackFill,\n hddRack,\n hddStackFill,\n hddStack,\n hdd,\n hdmiFill,\n hdmi,\n headphones,\n headsetVr,\n headset,\n heartArrow,\n heartFill,\n heartHalf,\n heartPulseFill,\n heartPulse,\n heart,\n heartbreakFill,\n heartbreak,\n hearts,\n heptagonFill,\n heptagonHalf,\n heptagon,\n hexagonFill,\n hexagonHalf,\n hexagon,\n hospitalFill,\n hospital,\n hourglassBottom,\n hourglassSplit,\n hourglassTop,\n hourglass,\n houseAddFill,\n houseAdd,\n houseCheckFill,\n houseCheck,\n houseDashFill,\n houseDash,\n houseDoorFill,\n houseDoor,\n houseDownFill,\n houseDown,\n houseExclamationFill,\n houseExclamation,\n houseFill,\n houseGearFill,\n houseGear,\n houseHeartFill,\n houseHeart,\n houseLockFill,\n houseLock,\n houseSlashFill,\n houseSlash,\n houseUpFill,\n houseUp,\n houseXFill,\n houseX,\n house,\n housesFill,\n houses,\n hr,\n hurricane,\n hypnotize,\n imageAlt,\n imageFill,\n image,\n images,\n inboxFill,\n inbox,\n inboxesFill,\n inboxes,\n incognito,\n indent,\n infinity,\n infoCircleFill,\n infoCircle,\n infoLg,\n infoSquareFill,\n infoSquare,\n info,\n inputCursorText,\n inputCursor,\n instagram,\n intersect,\n journalAlbum,\n journalArrowDown,\n journalArrowUp,\n journalBookmarkFill,\n journalBookmark,\n journalCheck,\n journalCode,\n journalMedical,\n journalMinus,\n journalPlus,\n journalRichtext,\n journalText,\n journalX,\n journal,\n journals,\n joystick,\n justifyLeft,\n justifyRight,\n justify,\n kanbanFill,\n kanban,\n keyFill,\n key,\n keyboardFill,\n keyboard,\n ladder,\n lampFill,\n lamp,\n laptopFill,\n laptop,\n layerBackward,\n layerForward,\n layersFill,\n layersHalf,\n layers,\n layoutSidebarInsetReverse,\n layoutSidebarInset,\n layoutSidebarReverse,\n layoutSidebar,\n layoutSplit,\n layoutTextSidebarReverse,\n layoutTextSidebar,\n layoutTextWindowReverse,\n layoutTextWindow,\n layoutThreeColumns,\n layoutWtf,\n lifePreserver,\n lightbulbFill,\n lightbulbOffFill,\n lightbulbOff,\n lightbulb,\n lightningChargeFill,\n lightningCharge,\n lightningFill,\n lightning,\n line,\n link45Deg,\n link,\n linkedin,\n listCheck,\n listColumnsReverse,\n listColumns,\n listNested,\n listOl,\n listStars,\n listTask,\n listUl,\n list,\n lockFill,\n lock,\n lungsFill,\n lungs,\n magic,\n magnetFill,\n magnet,\n mailbox,\n mailbox2,\n mapFill,\n map,\n markdownFill,\n markdown,\n mask,\n mastodon,\n medium,\n megaphoneFill,\n megaphone,\n memory,\n menuAppFill,\n menuApp,\n menuButtonFill,\n menuButtonWideFill,\n menuButtonWide,\n menuButton,\n menuDown,\n menuUp,\n messenger,\n meta,\n micFill,\n micMuteFill,\n micMute,\n mic,\n microsoftTeams,\n microsoft,\n minecartLoaded,\n minecart,\n modemFill,\n modem,\n moisture,\n moonFill,\n moonStarsFill,\n moonStars,\n moon,\n mortarboardFill,\n mortarboard,\n motherboardFill,\n motherboard,\n mouseFill,\n mouse,\n mouse2Fill,\n mouse2,\n mouse3Fill,\n mouse3,\n musicNoteBeamed,\n musicNoteList,\n musicNote,\n musicPlayerFill,\n musicPlayer,\n newspaper,\n nintendoSwitch,\n nodeMinusFill,\n nodeMinus,\n nodePlusFill,\n nodePlus,\n nutFill,\n nut,\n nvidia,\n octagonFill,\n octagonHalf,\n octagon,\n opticalAudioFill,\n opticalAudio,\n option,\n outlet,\n pCircleFill,\n pCircle,\n pSquareFill,\n pSquare,\n paintBucket,\n paletteFill,\n palette,\n palette2,\n paperclip,\n paragraph,\n passFill,\n pass,\n patchCheckFill,\n patchCheck,\n patchExclamationFill,\n patchExclamation,\n patchMinusFill,\n patchMinus,\n patchPlusFill,\n patchPlus,\n patchQuestionFill,\n patchQuestion,\n pauseBtnFill,\n pauseBtn,\n pauseCircleFill,\n pauseCircle,\n pauseFill,\n pause,\n paypal,\n pcDisplayHorizontal,\n pcDisplay,\n pcHorizontal,\n pc,\n pciCard,\n peaceFill,\n peace,\n penFill,\n pen,\n pencilFill,\n pencilSquare,\n pencil,\n pentagonFill,\n pentagonHalf,\n pentagon,\n peopleFill,\n people,\n percent,\n personAdd,\n personBadgeFill,\n personBadge,\n personBoundingBox,\n personCheckFill,\n personCheck,\n personCircle,\n personDashFill,\n personDash,\n personDown,\n personExclamation,\n personFillAdd,\n personFillCheck,\n personFillDash,\n personFillDown,\n personFillExclamation,\n personFillGear,\n personFillLock,\n personFillSlash,\n personFillUp,\n personFillX,\n personFill,\n personGear,\n personHeart,\n personHearts,\n personLinesFill,\n personLock,\n personPlusFill,\n personPlus,\n personRolodex,\n personSlash,\n personSquare,\n personUp,\n personVcardFill,\n personVcard,\n personVideo,\n personVideo2,\n personVideo3,\n personWorkspace,\n personXFill,\n personX,\n person,\n phoneFill,\n phoneFlip,\n phoneLandscapeFill,\n phoneLandscape,\n phoneVibrateFill,\n phoneVibrate,\n phone,\n pieChartFill,\n pieChart,\n piggyBankFill,\n piggyBank,\n pinAngleFill,\n pinAngle,\n pinFill,\n pinMapFill,\n pinMap,\n pin,\n pinterest,\n pipFill,\n pip,\n playBtnFill,\n playBtn,\n playCircleFill,\n playCircle,\n playFill,\n play,\n playstation,\n plugFill,\n plug,\n plugin,\n plusCircleDotted,\n plusCircleFill,\n plusCircle,\n plusLg,\n plusSlashMinus,\n plusSquareDotted,\n plusSquareFill,\n plusSquare,\n plus,\n postageFill,\n postageHeartFill,\n postageHeart,\n postage,\n postcardFill,\n postcardHeartFill,\n postcardHeart,\n postcard,\n power,\n prescription,\n prescription2,\n printerFill,\n printer,\n projectorFill,\n projector,\n puzzleFill,\n puzzle,\n qrCodeScan,\n qrCode,\n questionCircleFill,\n questionCircle,\n questionDiamondFill,\n questionDiamond,\n questionLg,\n questionOctagonFill,\n questionOctagon,\n questionSquareFill,\n questionSquare,\n question,\n quora,\n quote,\n rCircleFill,\n rCircle,\n rSquareFill,\n rSquare,\n radioactive,\n rainbow,\n receiptCutoff,\n receipt,\n reception0,\n reception1,\n reception2,\n reception3,\n reception4,\n recordBtnFill,\n recordBtn,\n recordCircleFill,\n recordCircle,\n recordFill,\n record,\n record2Fill,\n record2,\n recycle,\n reddit,\n regex,\n repeat1,\n repeat,\n replyAllFill,\n replyAll,\n replyFill,\n reply,\n rewindBtnFill,\n rewindBtn,\n rewindCircleFill,\n rewindCircle,\n rewindFill,\n rewind,\n robot,\n rocketFill,\n rocketTakeoffFill,\n rocketTakeoff,\n rocket,\n routerFill,\n router,\n rssFill,\n rss,\n rulers,\n safeFill,\n safe,\n safe2Fill,\n safe2,\n saveFill,\n save,\n save2Fill,\n save2,\n scissors,\n scooter,\n screwdriver,\n sdCardFill,\n sdCard,\n searchHeartFill,\n searchHeart,\n search,\n segmentedNav,\n sendCheckFill,\n sendCheck,\n sendDashFill,\n sendDash,\n sendExclamationFill,\n sendExclamation,\n sendFill,\n sendPlusFill,\n sendPlus,\n sendSlashFill,\n sendSlash,\n sendXFill,\n sendX,\n send,\n server,\n shareFill,\n share,\n shieldCheck,\n shieldExclamation,\n shieldFillCheck,\n shieldFillExclamation,\n shieldFillMinus,\n shieldFillPlus,\n shieldFillX,\n shieldFill,\n shieldLockFill,\n shieldLock,\n shieldMinus,\n shieldPlus,\n shieldShaded,\n shieldSlashFill,\n shieldSlash,\n shieldX,\n shield,\n shiftFill,\n shift,\n shopWindow,\n shop,\n shuffle,\n signDeadEndFill,\n signDeadEnd,\n signDoNotEnterFill,\n signDoNotEnter,\n signIntersectionFill,\n signIntersectionSideFill,\n signIntersectionSide,\n signIntersectionTFill,\n signIntersectionT,\n signIntersectionYFill,\n signIntersectionY,\n signIntersection,\n signMergeLeftFill,\n signMergeLeft,\n signMergeRightFill,\n signMergeRight,\n signNoLeftTurnFill,\n signNoLeftTurn,\n signNoParkingFill,\n signNoParking,\n signNoRightTurnFill,\n signNoRightTurn,\n signRailroadFill,\n signRailroad,\n signStopFill,\n signStopLightsFill,\n signStopLights,\n signStop,\n signTurnLeftFill,\n signTurnLeft,\n signTurnRightFill,\n signTurnRight,\n signTurnSlightLeftFill,\n signTurnSlightLeft,\n signTurnSlightRightFill,\n signTurnSlightRight,\n signYieldFill,\n signYield,\n signal,\n signpost2Fill,\n signpost2,\n signpostFill,\n signpostSplitFill,\n signpostSplit,\n signpost,\n simFill,\n sim,\n sinaWeibo,\n skipBackwardBtnFill,\n skipBackwardBtn,\n skipBackwardCircleFill,\n skipBackwardCircle,\n skipBackwardFill,\n skipBackward,\n skipEndBtnFill,\n skipEndBtn,\n skipEndCircleFill,\n skipEndCircle,\n skipEndFill,\n skipEnd,\n skipForwardBtnFill,\n skipForwardBtn,\n skipForwardCircleFill,\n skipForwardCircle,\n skipForwardFill,\n skipForward,\n skipStartBtnFill,\n skipStartBtn,\n skipStartCircleFill,\n skipStartCircle,\n skipStartFill,\n skipStart,\n skype,\n slack,\n slashCircleFill,\n slashCircle,\n slashLg,\n slashSquareFill,\n slashSquare,\n slash,\n sliders,\n sliders2Vertical,\n sliders2,\n smartwatch,\n snapchat,\n snow,\n snow2,\n snow3,\n sortAlphaDownAlt,\n sortAlphaDown,\n sortAlphaUpAlt,\n sortAlphaUp,\n sortDownAlt,\n sortDown,\n sortNumericDownAlt,\n sortNumericDown,\n sortNumericUpAlt,\n sortNumericUp,\n sortUpAlt,\n sortUp,\n soundwave,\n speakerFill,\n speaker,\n speedometer,\n speedometer2,\n spellcheck,\n spotify,\n squareFill,\n squareHalf,\n square,\n stackOverflow,\n stack,\n starFill,\n starHalf,\n star,\n stars,\n steam,\n stickiesFill,\n stickies,\n stickyFill,\n sticky,\n stopBtnFill,\n stopBtn,\n stopCircleFill,\n stopCircle,\n stopFill,\n stop,\n stoplightsFill,\n stoplights,\n stopwatchFill,\n stopwatch,\n strava,\n stripe,\n subscript,\n subtract,\n suitClubFill,\n suitClub,\n suitDiamondFill,\n suitDiamond,\n suitHeartFill,\n suitHeart,\n suitSpadeFill,\n suitSpade,\n sunFill,\n sun,\n sunglasses,\n sunriseFill,\n sunrise,\n sunsetFill,\n sunset,\n superscript,\n symmetryHorizontal,\n symmetryVertical,\n table,\n tabletFill,\n tabletLandscapeFill,\n tabletLandscape,\n tablet,\n tagFill,\n tag,\n tagsFill,\n tags,\n taxiFrontFill,\n taxiFront,\n telegram,\n telephoneFill,\n telephoneForwardFill,\n telephoneForward,\n telephoneInboundFill,\n telephoneInbound,\n telephoneMinusFill,\n telephoneMinus,\n telephoneOutboundFill,\n telephoneOutbound,\n telephonePlusFill,\n telephonePlus,\n telephoneXFill,\n telephoneX,\n telephone,\n tencentQq,\n terminalDash,\n terminalFill,\n terminalPlus,\n terminalSplit,\n terminalX,\n terminal,\n textCenter,\n textIndentLeft,\n textIndentRight,\n textLeft,\n textParagraph,\n textRight,\n textWrap,\n textareaResize,\n textareaT,\n textarea,\n thermometerHalf,\n thermometerHigh,\n thermometerLow,\n thermometerSnow,\n thermometerSun,\n thermometer,\n threeDotsVertical,\n threeDots,\n thunderboltFill,\n thunderbolt,\n ticketDetailedFill,\n ticketDetailed,\n ticketFill,\n ticketPerforatedFill,\n ticketPerforated,\n ticket,\n tiktok,\n toggleOff,\n toggleOn,\n toggle2Off,\n toggle2On,\n toggles,\n toggles2,\n tools,\n tornado,\n trainFreightFrontFill,\n trainFreightFront,\n trainFrontFill,\n trainFront,\n trainLightrailFrontFill,\n trainLightrailFront,\n translate,\n trashFill,\n trash,\n trash2Fill,\n trash2,\n trash3Fill,\n trash3,\n treeFill,\n tree,\n trello,\n triangleFill,\n triangleHalf,\n triangle,\n trophyFill,\n trophy,\n tropicalStorm,\n truckFlatbed,\n truckFrontFill,\n truckFront,\n truck,\n tsunami,\n tvFill,\n tv,\n twitch,\n twitter,\n typeBold,\n typeH1,\n typeH2,\n typeH3,\n typeItalic,\n typeStrikethrough,\n typeUnderline,\n type,\n ubuntu,\n uiChecksGrid,\n uiChecks,\n uiRadiosGrid,\n uiRadios,\n umbrellaFill,\n umbrella,\n unindent,\n union,\n unity,\n universalAccessCircle,\n universalAccess,\n unlockFill,\n unlock,\n upcScan,\n upc,\n upload,\n usbCFill,\n usbC,\n usbDriveFill,\n usbDrive,\n usbFill,\n usbMicroFill,\n usbMicro,\n usbMiniFill,\n usbMini,\n usbPlugFill,\n usbPlug,\n usbSymbol,\n usb,\n valentine,\n valentine2,\n vectorPen,\n viewList,\n viewStacked,\n vimeo,\n vinylFill,\n vinyl,\n virus,\n virus2,\n voicemail,\n volumeDownFill,\n volumeDown,\n volumeMuteFill,\n volumeMute,\n volumeOffFill,\n volumeOff,\n volumeUpFill,\n volumeUp,\n vr,\n walletFill,\n wallet,\n wallet2,\n watch,\n water,\n webcamFill,\n webcam,\n wechat,\n whatsapp,\n wifi1,\n wifi2,\n wifiOff,\n wifi,\n wikipedia,\n wind,\n windowDash,\n windowDesktop,\n windowDock,\n windowFullscreen,\n windowPlus,\n windowSidebar,\n windowSplit,\n windowStack,\n windowX,\n window,\n windows,\n wordpress,\n wrenchAdjustableCircleFill,\n wrenchAdjustableCircle,\n wrenchAdjustable,\n wrench,\n xCircleFill,\n xCircle,\n xDiamondFill,\n xDiamond,\n xLg,\n xOctagonFill,\n xOctagon,\n xSquareFill,\n xSquare,\n x,\n xbox,\n yelp,\n yinYang,\n youtube,\n zoomIn,\n zoomOut\n};\nlet NgxBootstrapIconsModule = /*#__PURE__*/(() => {\n class NgxBootstrapIconsModule {\n static pick(icons, config) {\n return {\n ngModule: NgxBootstrapIconsModule,\n providers: [{\n provide: Icons,\n multi: true,\n useValue: icons\n }, {\n provide: MODULE_CONFIG_TOKEN,\n useValue: config\n }]\n };\n }\n }\n NgxBootstrapIconsModule.ɵfac = function NgxBootstrapIconsModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || NgxBootstrapIconsModule)();\n };\n NgxBootstrapIconsModule.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: NgxBootstrapIconsModule\n });\n NgxBootstrapIconsModule.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({});\n return NgxBootstrapIconsModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/*\r\n * Public API Surface of ngx-bootstrap-icons-lib\r\n */\n\n/**\r\n * Generated bundle index. Do not edit.\r\n */\n\nexport { ColorTheme, IconNamesEnum, MODULE_CONFIG_TOKEN, NgxBootstrapIconsLibComponent, NgxBootstrapIconsModule, activity, airplane, airplaneEngines, airplaneEnginesFill, airplaneFill, alarm, alarmFill, alexa, alignBottom, alignCenter, alignEnd, alignMiddle, alignStart, alignTop, alipay, allIcons, alt, amd, android, android2, app, appIndicator, apple, archive, archiveFill, arrow90DegDown, arrow90DegLeft, arrow90DegRight, arrow90DegUp, arrowBarDown, arrowBarLeft, arrowBarRight, arrowBarUp, arrowClockwise, arrowCounterclockwise, arrowDown, arrowDownCircle, arrowDownCircleFill, arrowDownLeft, arrowDownLeftCircle, arrowDownLeftCircleFill, arrowDownLeftSquare, arrowDownLeftSquareFill, arrowDownRight, arrowDownRightCircle, arrowDownRightCircleFill, arrowDownRightSquare, arrowDownRightSquareFill, arrowDownShort, arrowDownSquare, arrowDownSquareFill, arrowDownUp, arrowLeft, arrowLeftCircle, arrowLeftCircleFill, arrowLeftRight, arrowLeftShort, arrowLeftSquare, arrowLeftSquareFill, arrowRepeat, arrowReturnLeft, arrowReturnRight, arrowRight, arrowRightCircle, arrowRightCircleFill, arrowRightShort, arrowRightSquare, arrowRightSquareFill, arrowThroughHeart, arrowThroughHeartFill, arrowUp, arrowUpCircle, arrowUpCircleFill, arrowUpLeft, arrowUpLeftCircle, arrowUpLeftCircleFill, arrowUpLeftSquare, arrowUpLeftSquareFill, arrowUpRight, arrowUpRightCircle, arrowUpRightCircleFill, arrowUpRightSquare, arrowUpRightSquareFill, arrowUpShort, arrowUpSquare, arrowUpSquareFill, arrowsAngleContract, arrowsAngleExpand, arrowsCollapse, arrowsExpand, arrowsFullscreen, arrowsMove, aspectRatio, aspectRatioFill, asterisk, at, award, awardFill, back, backspace, backspaceFill, backspaceReverse, backspaceReverseFill, badge3D, badge3DFill, badge4K, badge4KFill, badge8K, badge8KFill, badgeAd, badgeAdFill, badgeAr, badgeArFill, badgeCc, badgeCcFill, badgeHd, badgeHdFill, badgeSd, badgeSdFill, badgeTm, badgeTmFill, badgeVo, badgeVoFill, badgeVr, badgeVrFill, badgeWc, badgeWcFill, bag, bagCheck, bagCheckFill, bagDash, bagDashFill, bagFill, bagHeart, bagHeartFill, bagPlus, bagPlusFill, bagX, bagXFill, balloon, balloonFill, balloonHeart, balloonHeartFill, bandaid, bandaidFill, bank, bank2, barChart, barChartFill, barChartLine, barChartLineFill, barChartSteps, basket, basket2, basket2Fill, basket3, basket3Fill, basketFill, battery, batteryCharging, batteryFull, batteryHalf, behance, bell, bellFill, bellSlash, bellSlashFill, bezier, bezier2, bicycle, binoculars, binocularsFill, blockquoteLeft, blockquoteRight, bluetooth, bodyText, book, bookFill, bookHalf, bookmark, bookmarkCheck, bookmarkCheckFill, bookmarkDash, bookmarkDashFill, bookmarkFill, bookmarkHeart, bookmarkHeartFill, bookmarkPlus, bookmarkPlusFill, bookmarkStar, bookmarkStarFill, bookmarkX, bookmarkXFill, bookmarks, bookmarksFill, bookshelf, boombox, boomboxFill, bootstrap, bootstrapFill, bootstrapReboot, border, borderAll, borderBottom, borderCenter, borderInner, borderLeft, borderMiddle, borderOuter, borderRight, borderStyle, borderTop, borderWidth, boundingBox, boundingBoxCircles, box, box2, box2Fill, box2Heart, box2HeartFill, boxArrowDown, boxArrowDownLeft, boxArrowDownRight, boxArrowInDown, boxArrowInDownLeft, boxArrowInDownRight, boxArrowInLeft, boxArrowInRight, boxArrowInUp, boxArrowInUpLeft, boxArrowInUpRight, boxArrowLeft, boxArrowRight, boxArrowUp, boxArrowUpLeft, boxArrowUpRight, boxFill, boxSeam, boxSeamFill, boxes, braces, bracesAsterisk, bricks, briefcase, briefcaseFill, brightnessAltHigh, brightnessAltHighFill, brightnessAltLow, brightnessAltLowFill, brightnessHigh, brightnessHighFill, brightnessLow, brightnessLowFill, broadcast, broadcastPin, browserChrome, browserEdge, browserFirefox, browserSafari, brush, brushFill, bucket, bucketFill, bug, bugFill, building, buildingAdd, buildingCheck, buildingDash, buildingDown, buildingExclamation, buildingFill, buildingFillAdd, buildingFillCheck, buildingFillDash, buildingFillDown, buildingFillExclamation, buildingFillGear, buildingFillLock, buildingFillSlash, buildingFillUp, buildingFillX, buildingGear, buildingLock, buildingSlash, buildingUp, buildingX, buildings, buildingsFill, bullseye, busFront, busFrontFill, cCircle, cCircleFill, cSquare, cSquareFill, calculator, calculatorFill, calendar, calendar2, calendar2Check, calendar2CheckFill, calendar2Date, calendar2DateFill, calendar2Day, calendar2DayFill, calendar2Event, calendar2EventFill, calendar2Fill, calendar2Heart, calendar2HeartFill, calendar2Minus, calendar2MinusFill, calendar2Month, calendar2MonthFill, calendar2Plus, calendar2PlusFill, calendar2Range, calendar2RangeFill, calendar2Week, calendar2WeekFill, calendar2X, calendar2XFill, calendar3, calendar3Event, calendar3EventFill, calendar3Fill, calendar3Range, calendar3RangeFill, calendar3Week, calendar3WeekFill, calendar4, calendar4Event, calendar4Range, calendar4Week, calendarCheck, calendarCheckFill, calendarDate, calendarDateFill, calendarDay, calendarDayFill, calendarEvent, calendarEventFill, calendarFill, calendarHeart, calendarHeartFill, calendarMinus, calendarMinusFill, calendarMonth, calendarMonthFill, calendarPlus, calendarPlusFill, calendarRange, calendarRangeFill, calendarWeek, calendarWeekFill, calendarX, calendarXFill, camera, camera2, cameraFill, cameraReels, cameraReelsFill, cameraVideo, cameraVideoFill, cameraVideoOff, cameraVideoOffFill, capslock, capslockFill, capsule, capsulePill, carFront, carFrontFill, cardChecklist, cardHeading, cardImage, cardList, cardText, caretDown, caretDownFill, caretDownSquare, caretDownSquareFill, caretLeft, caretLeftFill, caretLeftSquare, caretLeftSquareFill, caretRight, caretRightFill, caretRightSquare, caretRightSquareFill, caretUp, caretUpFill, caretUpSquare, caretUpSquareFill, cart, cart2, cart3, cart4, cartCheck, cartCheckFill, cartDash, cartDashFill, cartFill, cartPlus, cartPlusFill, cartX, cartXFill, cash, cashCoin, cashStack, cassette, cassetteFill, cast, ccCircle, ccCircleFill, ccSquare, ccSquareFill, chat, chatDots, chatDotsFill, chatFill, chatHeart, chatHeartFill, chatLeft, chatLeftDots, chatLeftDotsFill, chatLeftFill, chatLeftHeart, chatLeftHeartFill, chatLeftQuote, chatLeftQuoteFill, chatLeftText, chatLeftTextFill, chatQuote, chatQuoteFill, chatRight, chatRightDots, chatRightDotsFill, chatRightFill, chatRightHeart, chatRightHeartFill, chatRightQuote, chatRightQuoteFill, chatRightText, chatRightTextFill, chatSquare, chatSquareDots, chatSquareDotsFill, chatSquareFill, chatSquareHeart, chatSquareHeartFill, chatSquareQuote, chatSquareQuoteFill, chatSquareText, chatSquareTextFill, chatText, chatTextFill, check, check2, check2All, check2Circle, check2Square, checkAll, checkCircle, checkCircleFill, checkLg, checkSquare, checkSquareFill, chevronBarContract, chevronBarDown, chevronBarExpand, chevronBarLeft, chevronBarRight, chevronBarUp, chevronCompactDown, chevronCompactLeft, chevronCompactRight, chevronCompactUp, chevronContract, chevronDoubleDown, chevronDoubleLeft, chevronDoubleRight, chevronDoubleUp, chevronDown, chevronExpand, chevronLeft, chevronRight, chevronUp, circle, circleFill, circleHalf, circleSquare, clipboard, clipboard2, clipboard2Check, clipboard2CheckFill, clipboard2Data, clipboard2DataFill, clipboard2Fill, clipboard2Heart, clipboard2HeartFill, clipboard2Minus, clipboard2MinusFill, clipboard2Plus, clipboard2PlusFill, clipboard2Pulse, clipboard2PulseFill, clipboard2X, clipboard2XFill, clipboardCheck, clipboardCheckFill, clipboardData, clipboardDataFill, clipboardFill, clipboardHeart, clipboardHeartFill, clipboardMinus, clipboardMinusFill, clipboardPlus, clipboardPlusFill, clipboardPulse, clipboardX, clipboardXFill, clock, clockFill, clockHistory, cloud, cloudArrowDown, cloudArrowDownFill, cloudArrowUp, cloudArrowUpFill, cloudCheck, cloudCheckFill, cloudDownload, cloudDownloadFill, cloudDrizzle, cloudDrizzleFill, cloudFill, cloudFog, cloudFog2, cloudFog2Fill, cloudFogFill, cloudHail, cloudHailFill, cloudHaze, cloudHaze2, cloudHaze2Fill, cloudHazeFill, cloudLightning, cloudLightningFill, cloudLightningRain, cloudLightningRainFill, cloudMinus, cloudMinusFill, cloudMoon, cloudMoonFill, cloudPlus, cloudPlusFill, cloudRain, cloudRainFill, cloudRainHeavy, cloudRainHeavyFill, cloudSlash, cloudSlashFill, cloudSleet, cloudSleetFill, cloudSnow, cloudSnowFill, cloudSun, cloudSunFill, cloudUpload, cloudUploadFill, clouds, cloudsFill, cloudy, cloudyFill, code, codeSlash, codeSquare, coin, collection, collectionFill, collectionPlay, collectionPlayFill, columns, columnsGap, command, compass, compassFill, cone, coneStriped, controller, cpu, cpuFill, creditCard, creditCard2Back, creditCard2BackFill, creditCard2Front, creditCard2FrontFill, creditCardFill, crop, cup, cupFill, cupHot, cupHotFill, cupStraw, currencyBitcoin, currencyDollar, currencyEuro, currencyExchange, currencyPound, currencyRupee, currencyYen, cursor, cursorFill, cursorText, dash, dashCircle, dashCircleDotted, dashCircleFill, dashLg, dashSquare, dashSquareDotted, dashSquareFill, database, databaseAdd, databaseCheck, databaseDash, databaseDown, databaseExclamation, databaseFill, databaseFillAdd, databaseFillCheck, databaseFillDash, databaseFillDown, databaseFillExclamation, databaseFillGear, databaseFillLock, databaseFillSlash, databaseFillUp, databaseFillX, databaseGear, databaseLock, databaseSlash, databaseUp, databaseX, deviceHdd, deviceHddFill, deviceSsd, deviceSsdFill, diagram2, diagram2Fill, diagram3, diagram3Fill, diamond, diamondFill, diamondHalf, dice1, dice1Fill, dice2, dice2Fill, dice3, dice3Fill, dice4, dice4Fill, dice5, dice5Fill, dice6, dice6Fill, disc, discFill, discord, display, displayFill, displayport, displayportFill, distributeHorizontal, distributeVertical, doorClosed, doorClosedFill, doorOpen, doorOpenFill, dot, download, dpad, dpadFill, dribbble, dropbox, droplet, dropletFill, dropletHalf, ear, earFill, earbuds, easel, easel2, easel2Fill, easel3, easel3Fill, easelFill, egg, eggFill, eggFried, eject, ejectFill, emojiAngry, emojiAngryFill, emojiDizzy, emojiDizzyFill, emojiExpressionless, emojiExpressionlessFill, emojiFrown, emojiFrownFill, emojiHeartEyes, emojiHeartEyesFill, emojiKiss, emojiKissFill, emojiLaughing, emojiLaughingFill, emojiNeutral, emojiNeutralFill, emojiSmile, emojiSmileFill, emojiSmileUpsideDown, emojiSmileUpsideDownFill, emojiSunglasses, emojiSunglassesFill, emojiWink, emojiWinkFill, envelope, envelopeAt, envelopeAtFill, envelopeCheck, envelopeCheckFill, envelopeDash, envelopeDashFill, envelopeExclamation, envelopeExclamationFill, envelopeFill, envelopeHeart, envelopeHeartFill, envelopeOpen, envelopeOpenFill, envelopeOpenHeart, envelopeOpenHeartFill, envelopePaper, envelopePaperFill, envelopePaperHeart, envelopePaperHeartFill, envelopePlus, envelopePlusFill, envelopeSlash, envelopeSlashFill, envelopeX, envelopeXFill, eraser, eraserFill, escape, ethernet, evFront, evFrontFill, evStation, evStationFill, exclamation, exclamationCircle, exclamationCircleFill, exclamationDiamond, exclamationDiamondFill, exclamationLg, exclamationOctagon, exclamationOctagonFill, exclamationSquare, exclamationSquareFill, exclamationTriangle, exclamationTriangleFill, exclude, explicit, explicitFill, eye, eyeFill, eyeSlash, eyeSlashFill, eyedropper, eyeglasses, facebook, fan, fastForward, fastForwardBtn, fastForwardBtnFill, fastForwardCircle, fastForwardCircleFill, fastForwardFill, file, fileArrowDown, fileArrowDownFill, fileArrowUp, fileArrowUpFill, fileBarGraph, fileBarGraphFill, fileBinary, fileBinaryFill, fileBreak, fileBreakFill, fileCheck, fileCheckFill, fileCode, fileCodeFill, fileDiff, fileDiffFill, fileEarmark, fileEarmarkArrowDown, fileEarmarkArrowDownFill, fileEarmarkArrowUp, fileEarmarkArrowUpFill, fileEarmarkBarGraph, fileEarmarkBarGraphFill, fileEarmarkBinary, fileEarmarkBinaryFill, fileEarmarkBreak, fileEarmarkBreakFill, fileEarmarkCheck, fileEarmarkCheckFill, fileEarmarkCode, fileEarmarkCodeFill, fileEarmarkDiff, fileEarmarkDiffFill, fileEarmarkEasel, fileEarmarkEaselFill, fileEarmarkExcel, fileEarmarkExcelFill, fileEarmarkFill, fileEarmarkFont, fileEarmarkFontFill, fileEarmarkImage, fileEarmarkImageFill, fileEarmarkLock, fileEarmarkLock2, fileEarmarkLock2Fill, fileEarmarkLockFill, fileEarmarkMedical, fileEarmarkMedicalFill, fileEarmarkMinus, fileEarmarkMinusFill, fileEarmarkMusic, fileEarmarkMusicFill, fileEarmarkPdf, fileEarmarkPdfFill, fileEarmarkPerson, fileEarmarkPersonFill, fileEarmarkPlay, fileEarmarkPlayFill, fileEarmarkPlus, fileEarmarkPlusFill, fileEarmarkPost, fileEarmarkPostFill, fileEarmarkPpt, fileEarmarkPptFill, fileEarmarkRichtext, fileEarmarkRichtextFill, fileEarmarkRuled, fileEarmarkRuledFill, fileEarmarkSlides, fileEarmarkSlidesFill, fileEarmarkSpreadsheet, fileEarmarkSpreadsheetFill, fileEarmarkText, fileEarmarkTextFill, fileEarmarkWord, fileEarmarkWordFill, fileEarmarkX, fileEarmarkXFill, fileEarmarkZip, fileEarmarkZipFill, fileEasel, fileEaselFill, fileExcel, fileExcelFill, fileFill, fileFont, fileFontFill, fileImage, fileImageFill, fileLock, fileLock2, fileLock2Fill, fileLockFill, fileMedical, fileMedicalFill, fileMinus, fileMinusFill, fileMusic, fileMusicFill, filePdf, filePdfFill, filePerson, filePersonFill, filePlay, filePlayFill, filePlus, filePlusFill, filePost, filePostFill, filePpt, filePptFill, fileRichtext, fileRichtextFill, fileRuled, fileRuledFill, fileSlides, fileSlidesFill, fileSpreadsheet, fileSpreadsheetFill, fileText, fileTextFill, fileWord, fileWordFill, fileX, fileXFill, fileZip, fileZipFill, files, filesAlt, filetypeAac, filetypeAi, filetypeBmp, filetypeCs, filetypeCss, filetypeCsv, filetypeDoc, filetypeDocx, filetypeExe, filetypeGif, filetypeHeic, filetypeHtml, filetypeJava, filetypeJpg, filetypeJs, filetypeJson, filetypeJsx, filetypeKey, filetypeM4P, filetypeMd, filetypeMdx, filetypeMov, filetypeMp3, filetypeMp4, filetypeOtf, filetypePdf, filetypePhp, filetypePng, filetypePpt, filetypePptx, filetypePsd, filetypePy, filetypeRaw, filetypeRb, filetypeSass, filetypeScss, filetypeSh, filetypeSql, filetypeSvg, filetypeTiff, filetypeTsx, filetypeTtf, filetypeTxt, filetypeWav, filetypeWoff, filetypeXls, filetypeXlsx, filetypeXml, filetypeYml, film, filter, filterCircle, filterCircleFill, filterLeft, filterRight, filterSquare, filterSquareFill, fingerprint, fire, flag, flagFill, flower1, flower2, flower3, folder, folder2, folder2Open, folderCheck, folderFill, folderMinus, folderPlus, folderSymlink, folderSymlinkFill, folderX, fonts, forward, forwardFill, front, fuelPump, fuelPumpDiesel, fuelPumpDieselFill, fuelPumpFill, fullscreen, fullscreenExit, funnel, funnelFill, gear, gearFill, gearWide, gearWideConnected, gem, genderAmbiguous, genderFemale, genderMale, genderTrans, geo, geoAlt, geoAltFill, geoFill, gift, giftFill, git, github, globe, globe2, globeAmericas, globeAsiaAustralia, globeCentralSouthAsia, globeEuropeAfrica, google, googlePlay, gpuCard, graphDown, graphDownArrow, graphUp, graphUpArrow, grid, grid1X2, grid1X2Fill, grid3X2, grid3X2Gap, grid3X2GapFill, grid3X3, grid3X3Gap, grid3X3GapFill, gridFill, gripHorizontal, gripVertical, hCircle, hCircleFill, hSquare, hSquareFill, hammer, handIndex, handIndexFill, handIndexThumb, handIndexThumbFill, handThumbsDown, handThumbsDownFill, handThumbsUp, handThumbsUpFill, handbag, handbagFill, hash, hdd, hddFill, hddNetwork, hddNetworkFill, hddRack, hddRackFill, hddStack, hddStackFill, hdmi, hdmiFill, headphones, headset, headsetVr, heart, heartArrow, heartFill, heartHalf, heartPulse, heartPulseFill, heartbreak, heartbreakFill, hearts, heptagon, heptagonFill, heptagonHalf, hexagon, hexagonFill, hexagonHalf, hospital, hospitalFill, hourglass, hourglassBottom, hourglassSplit, hourglassTop, house, houseAdd, houseAddFill, houseCheck, houseCheckFill, houseDash, houseDashFill, houseDoor, houseDoorFill, houseDown, houseDownFill, houseExclamation, houseExclamationFill, houseFill, houseGear, houseGearFill, houseHeart, houseHeartFill, houseLock, houseLockFill, houseSlash, houseSlashFill, houseUp, houseUpFill, houseX, houseXFill, houses, housesFill, hr, hurricane, hypnotize, icon0Circle, icon0CircleFill, icon0Square, icon0SquareFill, icon123, icon1Circle, icon1CircleFill, icon1Square, icon1SquareFill, icon2Circle, icon2CircleFill, icon2Square, icon2SquareFill, icon3Circle, icon3CircleFill, icon3Square, icon3SquareFill, icon4Circle, icon4CircleFill, icon4Square, icon4SquareFill, icon5Circle, icon5CircleFill, icon5Square, icon5SquareFill, icon6Circle, icon6CircleFill, icon6Square, icon6SquareFill, icon7Circle, icon7CircleFill, icon7Square, icon7SquareFill, icon8Circle, icon8CircleFill, icon8Square, icon8SquareFill, icon9Circle, icon9CircleFill, icon9Square, icon9SquareFill, image, imageAlt, imageFill, images, inbox, inboxFill, inboxes, inboxesFill, incognito, indent, infinity, info, infoCircle, infoCircleFill, infoLg, infoSquare, infoSquareFill, inputCursor, inputCursorText, instagram, intersect, journal, journalAlbum, journalArrowDown, journalArrowUp, journalBookmark, journalBookmarkFill, journalCheck, journalCode, journalMedical, journalMinus, journalPlus, journalRichtext, journalText, journalX, journals, joystick, justify, justifyLeft, justifyRight, kanban, kanbanFill, key, keyFill, keyboard, keyboardFill, ladder, lamp, lampFill, laptop, laptopFill, layerBackward, layerForward, layers, layersFill, layersHalf, layoutSidebar, layoutSidebarInset, layoutSidebarInsetReverse, layoutSidebarReverse, layoutSplit, layoutTextSidebar, layoutTextSidebarReverse, layoutTextWindow, layoutTextWindowReverse, layoutThreeColumns, layoutWtf, lifePreserver, lightbulb, lightbulbFill, lightbulbOff, lightbulbOffFill, lightning, lightningCharge, lightningChargeFill, lightningFill, line, link, link45Deg, linkedin, list, listCheck, listColumns, listColumnsReverse, listNested, listOl, listStars, listTask, listUl, lock, lockFill, lungs, lungsFill, magic, magnet, magnetFill, mailbox, mailbox2, map, mapFill, markdown, markdownFill, mask, mastodon, medium, megaphone, megaphoneFill, memory, menuApp, menuAppFill, menuButton, menuButtonFill, menuButtonWide, menuButtonWideFill, menuDown, menuUp, messenger, meta, mic, micFill, micMute, micMuteFill, microsoft, microsoftTeams, minecart, minecartLoaded, modem, modemFill, moisture, moon, moonFill, moonStars, moonStarsFill, mortarboard, mortarboardFill, motherboard, motherboardFill, mouse, mouse2, mouse2Fill, mouse3, mouse3Fill, mouseFill, musicNote, musicNoteBeamed, musicNoteList, musicPlayer, musicPlayerFill, newspaper, nintendoSwitch, nodeMinus, nodeMinusFill, nodePlus, nodePlusFill, nut, nutFill, nvidia, octagon, octagonFill, octagonHalf, opticalAudio, opticalAudioFill, option, outlet, pCircle, pCircleFill, pSquare, pSquareFill, paintBucket, palette, palette2, paletteFill, paperclip, paragraph, pass, passFill, patchCheck, patchCheckFill, patchExclamation, patchExclamationFill, patchMinus, patchMinusFill, patchPlus, patchPlusFill, patchQuestion, patchQuestionFill, pause, pauseBtn, pauseBtnFill, pauseCircle, pauseCircleFill, pauseFill, paypal, pc, pcDisplay, pcDisplayHorizontal, pcHorizontal, pciCard, peace, peaceFill, pen, penFill, pencil, pencilFill, pencilSquare, pentagon, pentagonFill, pentagonHalf, people, peopleFill, percent, person, personAdd, personBadge, personBadgeFill, personBoundingBox, personCheck, personCheckFill, personCircle, personDash, personDashFill, personDown, personExclamation, personFill, personFillAdd, personFillCheck, personFillDash, personFillDown, personFillExclamation, personFillGear, personFillLock, personFillSlash, personFillUp, personFillX, personGear, personHeart, personHearts, personLinesFill, personLock, personPlus, personPlusFill, personRolodex, personSlash, personSquare, personUp, personVcard, personVcardFill, personVideo, personVideo2, personVideo3, personWorkspace, personX, personXFill, phone, phoneFill, phoneFlip, phoneLandscape, phoneLandscapeFill, phoneVibrate, phoneVibrateFill, pieChart, pieChartFill, piggyBank, piggyBankFill, pin, pinAngle, pinAngleFill, pinFill, pinMap, pinMapFill, pinterest, pip, pipFill, play, playBtn, playBtnFill, playCircle, playCircleFill, playFill, playstation, plug, plugFill, plugin, plus, plusCircle, plusCircleDotted, plusCircleFill, plusLg, plusSlashMinus, plusSquare, plusSquareDotted, plusSquareFill, postage, postageFill, postageHeart, postageHeartFill, postcard, postcardFill, postcardHeart, postcardHeartFill, power, prescription, prescription2, printer, printerFill, projector, projectorFill, puzzle, puzzleFill, qrCode, qrCodeScan, question, questionCircle, questionCircleFill, questionDiamond, questionDiamondFill, questionLg, questionOctagon, questionOctagonFill, questionSquare, questionSquareFill, quora, quote, rCircle, rCircleFill, rSquare, rSquareFill, radioactive, rainbow, receipt, receiptCutoff, reception0, reception1, reception2, reception3, reception4, record, record2, record2Fill, recordBtn, recordBtnFill, recordCircle, recordCircleFill, recordFill, recycle, reddit, regex, repeat, repeat1, reply, replyAll, replyAllFill, replyFill, rewind, rewindBtn, rewindBtnFill, rewindCircle, rewindCircleFill, rewindFill, robot, rocket, rocketFill, rocketTakeoff, rocketTakeoffFill, router, routerFill, rss, rssFill, rulers, safe, safe2, safe2Fill, safeFill, save, save2, save2Fill, saveFill, scissors, scooter, screwdriver, sdCard, sdCardFill, search, searchHeart, searchHeartFill, segmentedNav, send, sendCheck, sendCheckFill, sendDash, sendDashFill, sendExclamation, sendExclamationFill, sendFill, sendPlus, sendPlusFill, sendSlash, sendSlashFill, sendX, sendXFill, server, share, shareFill, shield, shieldCheck, shieldExclamation, shieldFill, shieldFillCheck, shieldFillExclamation, shieldFillMinus, shieldFillPlus, shieldFillX, shieldLock, shieldLockFill, shieldMinus, shieldPlus, shieldShaded, shieldSlash, shieldSlashFill, shieldX, shift, shiftFill, shop, shopWindow, shuffle, signDeadEnd, signDeadEndFill, signDoNotEnter, signDoNotEnterFill, signIntersection, signIntersectionFill, signIntersectionSide, signIntersectionSideFill, signIntersectionT, signIntersectionTFill, signIntersectionY, signIntersectionYFill, signMergeLeft, signMergeLeftFill, signMergeRight, signMergeRightFill, signNoLeftTurn, signNoLeftTurnFill, signNoParking, signNoParkingFill, signNoRightTurn, signNoRightTurnFill, signRailroad, signRailroadFill, signStop, signStopFill, signStopLights, signStopLightsFill, signTurnLeft, signTurnLeftFill, signTurnRight, signTurnRightFill, signTurnSlightLeft, signTurnSlightLeftFill, signTurnSlightRight, signTurnSlightRightFill, signYield, signYieldFill, signal, signpost, signpost2, signpost2Fill, signpostFill, signpostSplit, signpostSplitFill, sim, simFill, sinaWeibo, skipBackward, skipBackwardBtn, skipBackwardBtnFill, skipBackwardCircle, skipBackwardCircleFill, skipBackwardFill, skipEnd, skipEndBtn, skipEndBtnFill, skipEndCircle, skipEndCircleFill, skipEndFill, skipForward, skipForwardBtn, skipForwardBtnFill, skipForwardCircle, skipForwardCircleFill, skipForwardFill, skipStart, skipStartBtn, skipStartBtnFill, skipStartCircle, skipStartCircleFill, skipStartFill, skype, slack, slash, slashCircle, slashCircleFill, slashLg, slashSquare, slashSquareFill, sliders, sliders2, sliders2Vertical, smartwatch, snapchat, snow, snow2, snow3, sortAlphaDown, sortAlphaDownAlt, sortAlphaUp, sortAlphaUpAlt, sortDown, sortDownAlt, sortNumericDown, sortNumericDownAlt, sortNumericUp, sortNumericUpAlt, sortUp, sortUpAlt, soundwave, speaker, speakerFill, speedometer, speedometer2, spellcheck, spotify, square, squareFill, squareHalf, stack, stackOverflow, star, starFill, starHalf, stars, steam, stickies, stickiesFill, sticky, stickyFill, stop, stopBtn, stopBtnFill, stopCircle, stopCircleFill, stopFill, stoplights, stoplightsFill, stopwatch, stopwatchFill, strava, stripe, subscript, subtract, suitClub, suitClubFill, suitDiamond, suitDiamondFill, suitHeart, suitHeartFill, suitSpade, suitSpadeFill, sun, sunFill, sunglasses, sunrise, sunriseFill, sunset, sunsetFill, superscript, symmetryHorizontal, symmetryVertical, table, tablet, tabletFill, tabletLandscape, tabletLandscapeFill, tag, tagFill, tags, tagsFill, taxiFront, taxiFrontFill, telegram, telephone, telephoneFill, telephoneForward, telephoneForwardFill, telephoneInbound, telephoneInboundFill, telephoneMinus, telephoneMinusFill, telephoneOutbound, telephoneOutboundFill, telephonePlus, telephonePlusFill, telephoneX, telephoneXFill, tencentQq, terminal, terminalDash, terminalFill, terminalPlus, terminalSplit, terminalX, textCenter, textIndentLeft, textIndentRight, textLeft, textParagraph, textRight, textWrap, textarea, textareaResize, textareaT, thermometer, thermometerHalf, thermometerHigh, thermometerLow, thermometerSnow, thermometerSun, threeDots, threeDotsVertical, thunderbolt, thunderboltFill, ticket, ticketDetailed, ticketDetailedFill, ticketFill, ticketPerforated, ticketPerforatedFill, tiktok, toggle2Off, toggle2On, toggleOff, toggleOn, toggles, toggles2, tools, tornado, trainFreightFront, trainFreightFrontFill, trainFront, trainFrontFill, trainLightrailFront, trainLightrailFrontFill, translate, trash, trash2, trash2Fill, trash3, trash3Fill, trashFill, tree, treeFill, trello, triangle, triangleFill, triangleHalf, trophy, trophyFill, tropicalStorm, truck, truckFlatbed, truckFront, truckFrontFill, tsunami, tv, tvFill, twitch, twitter, type, typeBold, typeH1, typeH2, typeH3, typeItalic, typeStrikethrough, typeUnderline, ubuntu, uiChecks, uiChecksGrid, uiRadios, uiRadiosGrid, umbrella, umbrellaFill, unindent, union, unity, universalAccess, universalAccessCircle, unlock, unlockFill, upc, upcScan, upload, usb, usbC, usbCFill, usbDrive, usbDriveFill, usbFill, usbMicro, usbMicroFill, usbMini, usbMiniFill, usbPlug, usbPlugFill, usbSymbol, valentine, valentine2, vectorPen, viewList, viewStacked, vimeo, vinyl, vinylFill, virus, virus2, voicemail, volumeDown, volumeDownFill, volumeMute, volumeMuteFill, volumeOff, volumeOffFill, volumeUp, volumeUpFill, vr, wallet, wallet2, walletFill, watch, water, webcam, webcamFill, wechat, whatsapp, wifi, wifi1, wifi2, wifiOff, wikipedia, wind, window, windowDash, windowDesktop, windowDock, windowFullscreen, windowPlus, windowSidebar, windowSplit, windowStack, windowX, windows, wordpress, wrench, wrenchAdjustable, wrenchAdjustableCircle, wrenchAdjustableCircleFill, x, xCircle, xCircleFill, xDiamond, xDiamondFill, xLg, xOctagon, xOctagonFill, xSquare, xSquareFill, xbox, yelp, yinYang, youtube, zoomIn, zoomOut };\n"],"names":["_c0","MODULE_CONFIG_TOKEN","InjectionToken","toCamelCase","input","separator","val","res","iterator","char","Icons","_icons","DEFAULT_SIZE","MESSAGE","DimensionType","NgxBootstrapIconsLibComponent","_elem","_changeDetector","_config","type","size","message","icon","changes","svg","__ngFactoryType__","ɵɵdirectiveInject","ElementRef","ChangeDetectorRef","ɵɵdefineComponent","ɵɵNgOnChangesFeature","rf","ctx","ɵɵprojectionDef","ɵɵprojection","IconNamesEnum","alarmFill","alarm","arrowClockwise","arrowsAngleExpand","asterisk","at","bodyText","bookmark","borderStyle","boxArrowUpRight","briefcase","browserChrome","buildingCheck","building","buildings","calendar4Range","caretDownFill","caretDown","caretLeft","caretRight","caretUpFill","caretUp","chatDotsFill","chatLeftDots","check2All","check2","chevronDoubleDown","chevronDown","chevronLeft","chevronRight","chevronUp","circleHalf","clipboard","collection","currencyDollar","dashCircle","download","envelopeAt","envelopePlusFill","envelopePlus","exclamationTriangle","fileEarmarkCheck","fileEarmarkDiff","fileEarmarkExcel","fileExcel","filePdf","file","houseFill","house","infoCircle","inputCursorText","linkedin","listCheck","list","lock","moonFill","moonStarsFill","pencilSquare","people","percent","personFill","person","plusCircle","printerFill","printer","saveFill","save","search","sendCheck","share","sortAlphaDownAlt","sortAlphaUpAlt","sortNumericDownAlt","sortNumericUpAlt","sunFill","table","tags","telephoneOutbound","trashFill","trash","trash2Fill","trash2","uiChecks","x","NgxBootstrapIconsModule","icons","config","Icons","MODULE_CONFIG_TOKEN","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector"],"mappings":"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","debug_id":"bbcb7535-9c41-530b-b230-58b7b63e1407"}