diff --git a/.bundlewatch.config.json b/.bundlewatch.config.json index d1c2eca0bf8..810e7c16e9a 100644 --- a/.bundlewatch.config.json +++ b/.bundlewatch.config.json @@ -2,27 +2,27 @@ "files": [ { "path": "./dist/bootstrap-vue-icons.js", - "maxSize": "105 kB" + "maxSize": "110 kB" }, { "path": "./dist/bootstrap-vue-icons.min.js", - "maxSize": "100 kB" + "maxSize": "105 kB" }, { "path": "./dist/bootstrap-vue-icons.common.js", - "maxSize": "110 kB" + "maxSize": "120 kB" }, { "path": "./dist/bootstrap-vue-icons.common.min.js", - "maxSize": "105 kB" + "maxSize": "110 kB" }, { "path": "./dist/bootstrap-vue-icons.esm.js", - "maxSize": "110 kB" + "maxSize": "115 kB" }, { "path": "./dist/bootstrap-vue-icons.esm.min.js", - "maxSize": "105 kB" + "maxSize": "110 kB" }, { "path": "./dist/bootstrap-vue-icons.css", @@ -42,19 +42,19 @@ }, { "path": "./dist/bootstrap-vue.common.js", - "maxSize": "310 kB" + "maxSize": "320 kB" }, { "path": "./dist/bootstrap-vue.common.min.js", - "maxSize": "195 kB" + "maxSize": "200 kB" }, { "path": "./dist/bootstrap-vue.esm.js", - "maxSize": "310 kB" + "maxSize": "320 kB" }, { "path": "./dist/bootstrap-vue.esm.min.js", - "maxSize": "195 kB" + "maxSize": "200 kB" }, { "path": "./dist/bootstrap-vue.css", diff --git a/docs/content.js b/docs/content.js index a55f60282f8..a7963ac1547 100644 --- a/docs/content.js +++ b/docs/content.js @@ -74,7 +74,7 @@ export const bootstrapVersionMajor = bootstrapVersion.replace(majorRE, '$1') export const bootstrapIconsVersion = parseFullVersion(devDependencies['bootstrap-icons']) export const bootstrapIconsVersionMinor = bootstrapIconsVersion.replace(minorRE, '$1') export const bootstrapIconsVersionMajor = bootstrapIconsVersion.replace(majorRE, '$1') -export const bootstrapIconsCount = 1000 +export const bootstrapIconsCount = 1100 export const popperVersion = parseVersion(dependencies['popper.js']) export const popperVersionMinor = popperVersion.replace(minorRE, '$1') diff --git a/docs/utils/index.js b/docs/utils/index.js index 784d5e47a8a..bfd6a97054f 100644 --- a/docs/utils/index.js +++ b/docs/utils/index.js @@ -7,16 +7,14 @@ export const kebabCase = str => { // Parse a fully qualified version from a string export const parseVersion = version => { - const matches = version.match(/([0-9]+\.[0-9]+\.[0-9]+)/) - const matchesCount = matches.length - return matchesCount > 0 ? matches[matchesCount - 1] : '' + const matches = version.match(/([0-9]+\.[0-9]+\.[0-9]+)/) || [] + return matches.length > 0 ? matches[0] : '' } -// Parse a fully qualified version from a string (including alpha/beta/etc +// Parse a fully qualified version from a string (including alpha/beta/etc.) export const parseFullVersion = version => { - const matches = version.match(/([0-9]+\.[0-9]+\.[0-9]+(?:-[a-z]+[.-]?[0-9]+))/) - const matchesCount = matches.length - return matchesCount > 0 ? matches[matchesCount - 1] : '' + const matches = version.match(/([0-9]+\.[0-9]+\.[0-9]+(-[a-z]+[.-]?[0-9]+)?)/) || [] + return matches.length > 0 ? matches[0] : '' } export const parseUrl = value => { diff --git a/package.json b/package.json index c21f3fcee30..ee30e6bc3e6 100644 --- a/package.json +++ b/package.json @@ -99,32 +99,32 @@ "vue-functional-data-merge": "^3.1.0" }, "devDependencies": { - "@babel/cli": "^7.10.5", - "@babel/core": "^7.11.4", + "@babel/cli": "^7.11.5", + "@babel/core": "^7.11.5", "@babel/plugin-transform-modules-commonjs": "^7.10.4", - "@babel/plugin-transform-runtime": "^7.11.0", - "@babel/preset-env": "^7.11.0", - "@babel/standalone": "^7.11.4", - "@nuxt/content": "^1.7.0", + "@babel/plugin-transform-runtime": "^7.11.5", + "@babel/preset-env": "^7.11.5", + "@babel/standalone": "^7.11.5", + "@nuxt/content": "^1.7.1", "@nuxtjs/google-analytics": "^2.4.0", "@nuxtjs/pwa": "^3.0.2", "@nuxtjs/robots": "^2.4.2", "@nuxtjs/sitemap": "^2.4.0", "@testing-library/jest-dom": "^5.11.4", - "@vue/test-utils": "^1.0.4", + "@vue/test-utils": "^1.0.5", "autoprefixer": "^9.8.6", "babel-core": "^7.0.0-bridge.0", "babel-eslint": "^10.1.0", "babel-jest": "^26.3.0", "babel-plugin-istanbul": "^6.0.0", - "bootstrap-icons": "^1.0.0-alpha5", + "bootstrap-icons": "^1.0.0", "bundlewatch": "^0.2.7", "clean-css-cli": "^4.3.0", "codemirror": "^5.57.0", "codesandbox": "^2.1.16", "core-js": ">=2.6.5 <3.0.0", "cross-env": "^7.0.2", - "eslint": "^7.7.0", + "eslint": "^7.8.0", "eslint-config-prettier": "^6.11.0", "eslint-config-standard": "^14.1.1", "eslint-config-vue": "^2.0.2", @@ -149,11 +149,11 @@ "marked": "^1.1.1", "node-sass": "^4.14.1", "nuxt": "^2.14.4", - "postcss-cli": "^7.1.1", + "postcss-cli": "^7.1.2", "prettier": "1.14.3", "regenerator-runtime": "^0.13.7", "require-context": "^1.1.0", - "rollup": "^2.26.6", + "rollup": "^2.26.9", "rollup-plugin-babel": "^4.4.0", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-node-resolve": "^5.2.0", diff --git a/src/icons/README.md b/src/icons/README.md index ed07c60a4fd..c961133424d 100644 --- a/src/icons/README.md +++ b/src/icons/README.md @@ -13,6 +13,7 @@ installed by default. You do not need `bootstrap-icons` as a dependency. - Bootstrap Icons `v1.0.0-alpha3` icons were added in BootstrapVue release `v2.8.0`. - Bootstrap Icons `v1.0.0-alpha4` icons were added in BootstrapVue release `v2.15.0`. - Bootstrap Icons `v1.0.0-alpha5` icons were added in BootstrapVue release `v2.16.0`. +- Bootstrap Icons `v1.0.0` icons were added in BootstrapVue release `v2.17.0`.

@@ -22,20 +23,23 @@ installed by default. You do not need `bootstrap-icons` as a dependency.

diff --git a/src/icons/icons.d.ts b/src/icons/icons.d.ts index 600decf8bbd..369c582f604 100644 --- a/src/icons/icons.d.ts +++ b/src/icons/icons.d.ts @@ -1,7 +1,7 @@ // --- BEGIN AUTO-GENERATED FILE --- // -// @IconsVersion: 1.0.0-alpha5 -// @Generated: 2020-07-15T16:57:43.043Z +// @IconsVersion: 1.0.0 +// @Generated: 2020-09-01T12:06:08.751Z // // This file is generated on each build. Do not edit this file! @@ -200,6 +200,10 @@ export declare class BIconBadge8k extends BvComponent {} export declare class BIconBadge8kFill extends BvComponent {} +export declare class BIconBadgeAd extends BvComponent {} + +export declare class BIconBadgeAdFill extends BvComponent {} + export declare class BIconBadgeCc extends BvComponent {} export declare class BIconBadgeCcFill extends BvComponent {} @@ -220,12 +224,22 @@ export declare class BIconBag extends BvComponent {} export declare class BIconBagCheck extends BvComponent {} +export declare class BIconBagCheckFill extends BvComponent {} + export declare class BIconBagDash extends BvComponent {} +export declare class BIconBagDashFill extends BvComponent {} + export declare class BIconBagFill extends BvComponent {} export declare class BIconBagPlus extends BvComponent {} +export declare class BIconBagPlusFill extends BvComponent {} + +export declare class BIconBagX extends BvComponent {} + +export declare class BIconBagXFill extends BvComponent {} + export declare class BIconBarChart extends BvComponent {} export declare class BIconBarChartFill extends BvComponent {} @@ -284,12 +298,30 @@ export declare class BIconBookmark extends BvComponent {} export declare class BIconBookmarkCheck extends BvComponent {} +export declare class BIconBookmarkCheckFill extends BvComponent {} + export declare class BIconBookmarkDash extends BvComponent {} +export declare class BIconBookmarkDashFill extends BvComponent {} + export declare class BIconBookmarkFill extends BvComponent {} +export declare class BIconBookmarkHeart extends BvComponent {} + +export declare class BIconBookmarkHeartFill extends BvComponent {} + export declare class BIconBookmarkPlus extends BvComponent {} +export declare class BIconBookmarkPlusFill extends BvComponent {} + +export declare class BIconBookmarkStar extends BvComponent {} + +export declare class BIconBookmarkStarFill extends BvComponent {} + +export declare class BIconBookmarkX extends BvComponent {} + +export declare class BIconBookmarkXFill extends BvComponent {} + export declare class BIconBookmarks extends BvComponent {} export declare class BIconBookmarksFill extends BvComponent {} @@ -376,6 +408,8 @@ export declare class BIconBroadcastPin extends BvComponent {} export declare class BIconBrush extends BvComponent {} +export declare class BIconBrushFill extends BvComponent {} + export declare class BIconBucket extends BvComponent {} export declare class BIconBucketFill extends BvComponent {} @@ -434,6 +468,10 @@ export declare class BIconCalendar2Week extends BvComponent {} export declare class BIconCalendar2WeekFill extends BvComponent {} +export declare class BIconCalendar2X extends BvComponent {} + +export declare class BIconCalendar2XFill extends BvComponent {} + export declare class BIconCalendar3 extends BvComponent {} export declare class BIconCalendar3Event extends BvComponent {} @@ -496,6 +534,10 @@ export declare class BIconCalendarWeek extends BvComponent {} export declare class BIconCalendarWeekFill extends BvComponent {} +export declare class BIconCalendarX extends BvComponent {} + +export declare class BIconCalendarXFill extends BvComponent {} + export declare class BIconCamera extends BvComponent {} export declare class BIconCamera2 extends BvComponent {} @@ -570,12 +612,22 @@ export declare class BIconCart4 extends BvComponent {} export declare class BIconCartCheck extends BvComponent {} +export declare class BIconCartCheckFill extends BvComponent {} + export declare class BIconCartDash extends BvComponent {} +export declare class BIconCartDashFill extends BvComponent {} + export declare class BIconCartFill extends BvComponent {} export declare class BIconCartPlus extends BvComponent {} +export declare class BIconCartPlusFill extends BvComponent {} + +export declare class BIconCartX extends BvComponent {} + +export declare class BIconCartXFill extends BvComponent {} + export declare class BIconCash extends BvComponent {} export declare class BIconCashStack extends BvComponent {} @@ -724,6 +776,8 @@ export declare class BIconClipboardMinus extends BvComponent {} export declare class BIconClipboardPlus extends BvComponent {} +export declare class BIconClipboardX extends BvComponent {} + export declare class BIconClock extends BvComponent {} export declare class BIconClockFill extends BvComponent {} @@ -788,6 +842,8 @@ export declare class BIconCommand extends BvComponent {} export declare class BIconCompass extends BvComponent {} +export declare class BIconCompassFill extends BvComponent {} + export declare class BIconCone extends BvComponent {} export declare class BIconConeStriped extends BvComponent {} @@ -814,6 +870,8 @@ export declare class BIconCrop extends BvComponent {} export declare class BIconCup extends BvComponent {} +export declare class BIconCupFill extends BvComponent {} + export declare class BIconCupStraw extends BvComponent {} export declare class BIconCursor extends BvComponent {} @@ -1006,6 +1064,8 @@ export declare class BIconFileEarmark extends BvComponent {} export declare class BIconFileEarmarkArrowDown extends BvComponent {} +export declare class BIconFileEarmarkArrowDownFill extends BvComponent {} + export declare class BIconFileEarmarkArrowUp extends BvComponent {} export declare class BIconFileEarmarkArrowUpFill extends BvComponent {} @@ -1030,8 +1090,28 @@ export declare class BIconFileEarmarkDiff extends BvComponent {} export declare class BIconFileEarmarkDiffFill extends BvComponent {} +export declare class BIconFileEarmarkEasel extends BvComponent {} + +export declare class BIconFileEarmarkEaselFill extends BvComponent {} + export declare class BIconFileEarmarkFill extends BvComponent {} +export declare class BIconFileEarmarkFont extends BvComponent {} + +export declare class BIconFileEarmarkFontFill extends BvComponent {} + +export declare class BIconFileEarmarkImage extends BvComponent {} + +export declare class BIconFileEarmarkImageFill extends BvComponent {} + +export declare class BIconFileEarmarkLock extends BvComponent {} + +export declare class BIconFileEarmarkLock2 extends BvComponent {} + +export declare class BIconFileEarmarkLock2Fill extends BvComponent {} + +export declare class BIconFileEarmarkLockFill extends BvComponent {} + export declare class BIconFileEarmarkMedical extends BvComponent {} export declare class BIconFileEarmarkMedicalFill extends BvComponent {} @@ -1040,14 +1120,38 @@ export declare class BIconFileEarmarkMinus extends BvComponent {} export declare class BIconFileEarmarkMinusFill extends BvComponent {} +export declare class BIconFileEarmarkMusic extends BvComponent {} + +export declare class BIconFileEarmarkMusicFill extends BvComponent {} + +export declare class BIconFileEarmarkPerson extends BvComponent {} + +export declare class BIconFileEarmarkPersonFill extends BvComponent {} + +export declare class BIconFileEarmarkPlay extends BvComponent {} + +export declare class BIconFileEarmarkPlayFill extends BvComponent {} + export declare class BIconFileEarmarkPlus extends BvComponent {} export declare class BIconFileEarmarkPlusFill extends BvComponent {} +export declare class BIconFileEarmarkPost extends BvComponent {} + +export declare class BIconFileEarmarkPostFill extends BvComponent {} + +export declare class BIconFileEarmarkRichtext extends BvComponent {} + +export declare class BIconFileEarmarkRichtextFill extends BvComponent {} + export declare class BIconFileEarmarkRuled extends BvComponent {} export declare class BIconFileEarmarkRuledFill extends BvComponent {} +export declare class BIconFileEarmarkSlides extends BvComponent {} + +export declare class BIconFileEarmarkSlidesFill extends BvComponent {} + export declare class BIconFileEarmarkSpreadsheet extends BvComponent {} export declare class BIconFileEarmarkSpreadsheetFill extends BvComponent {} @@ -1056,12 +1160,36 @@ export declare class BIconFileEarmarkText extends BvComponent {} export declare class BIconFileEarmarkTextFill extends BvComponent {} +export declare class BIconFileEarmarkX extends BvComponent {} + +export declare class BIconFileEarmarkXFill extends BvComponent {} + export declare class BIconFileEarmarkZip extends BvComponent {} export declare class BIconFileEarmarkZipFill extends BvComponent {} +export declare class BIconFileEasel extends BvComponent {} + +export declare class BIconFileEaselFill extends BvComponent {} + export declare class BIconFileFill extends BvComponent {} +export declare class BIconFileFont extends BvComponent {} + +export declare class BIconFileFontFill extends BvComponent {} + +export declare class BIconFileImage extends BvComponent {} + +export declare class BIconFileImageFill extends BvComponent {} + +export declare class BIconFileLock extends BvComponent {} + +export declare class BIconFileLock2 extends BvComponent {} + +export declare class BIconFileLock2Fill extends BvComponent {} + +export declare class BIconFileLockFill extends BvComponent {} + export declare class BIconFileMedical extends BvComponent {} export declare class BIconFileMedicalFill extends BvComponent {} @@ -1078,6 +1206,10 @@ export declare class BIconFilePerson extends BvComponent {} export declare class BIconFilePersonFill extends BvComponent {} +export declare class BIconFilePlay extends BvComponent {} + +export declare class BIconFilePlayFill extends BvComponent {} + export declare class BIconFilePlus extends BvComponent {} export declare class BIconFilePlusFill extends BvComponent {} @@ -1094,6 +1226,10 @@ export declare class BIconFileRuled extends BvComponent {} export declare class BIconFileRuledFill extends BvComponent {} +export declare class BIconFileSlides extends BvComponent {} + +export declare class BIconFileSlidesFill extends BvComponent {} + export declare class BIconFileSpreadsheet extends BvComponent {} export declare class BIconFileSpreadsheetFill extends BvComponent {} @@ -1102,6 +1238,10 @@ export declare class BIconFileText extends BvComponent {} export declare class BIconFileTextFill extends BvComponent {} +export declare class BIconFileX extends BvComponent {} + +export declare class BIconFileXFill extends BvComponent {} + export declare class BIconFileZip extends BvComponent {} export declare class BIconFileZipFill extends BvComponent {} @@ -1154,6 +1294,8 @@ export declare class BIconFolderSymlink extends BvComponent {} export declare class BIconFolderSymlinkFill extends BvComponent {} +export declare class BIconFolderX extends BvComponent {} + export declare class BIconFonts extends BvComponent {} export declare class BIconForward extends BvComponent {} @@ -1184,6 +1326,10 @@ export declare class BIconGeo extends BvComponent {} export declare class BIconGeoAlt extends BvComponent {} +export declare class BIconGeoAltFill extends BvComponent {} + +export declare class BIconGeoFill extends BvComponent {} + export declare class BIconGift extends BvComponent {} export declare class BIconGiftFill extends BvComponent {} @@ -1346,6 +1492,8 @@ export declare class BIconJournalRichtext extends BvComponent {} export declare class BIconJournalText extends BvComponent {} +export declare class BIconJournalX extends BvComponent {} + export declare class BIconJournals extends BvComponent {} export declare class BIconJoystick extends BvComponent {} @@ -1440,6 +1588,8 @@ export declare class BIconMailbox2 extends BvComponent {} export declare class BIconMap extends BvComponent {} +export declare class BIconMapFill extends BvComponent {} + export declare class BIconMarkdown extends BvComponent {} export declare class BIconMarkdownFill extends BvComponent {} @@ -1548,8 +1698,12 @@ export declare class BIconPeaceFill extends BvComponent {} export declare class BIconPen extends BvComponent {} +export declare class BIconPenFill extends BvComponent {} + export declare class BIconPencil extends BvComponent {} +export declare class BIconPencilFill extends BvComponent {} + export declare class BIconPencilSquare extends BvComponent {} export declare class BIconPentagon extends BvComponent {} @@ -1592,6 +1746,10 @@ export declare class BIconPersonPlusFill extends BvComponent {} export declare class BIconPersonSquare extends BvComponent {} +export declare class BIconPersonX extends BvComponent {} + +export declare class BIconPersonXFill extends BvComponent {} + export declare class BIconPhone extends BvComponent {} export declare class BIconPhoneFill extends BvComponent {} @@ -1600,6 +1758,8 @@ export declare class BIconPhoneLandscape extends BvComponent {} export declare class BIconPhoneLandscapeFill extends BvComponent {} +export declare class BIconPhoneVibrate extends BvComponent {} + export declare class BIconPieChart extends BvComponent {} export declare class BIconPieChartFill extends BvComponent {} @@ -1614,6 +1774,8 @@ export declare class BIconPlayFill extends BvComponent {} export declare class BIconPlug extends BvComponent {} +export declare class BIconPlugFill extends BvComponent {} + export declare class BIconPlus extends BvComponent {} export declare class BIconPlusCircle extends BvComponent {} @@ -1678,6 +1840,8 @@ export declare class BIconRss extends BvComponent {} export declare class BIconRssFill extends BvComponent {} +export declare class BIconScissors extends BvComponent {} + export declare class BIconScrewdriver extends BvComponent {} export declare class BIconSearch extends BvComponent {} @@ -1706,6 +1870,8 @@ export declare class BIconShieldFillMinus extends BvComponent {} export declare class BIconShieldFillPlus extends BvComponent {} +export declare class BIconShieldFillX extends BvComponent {} + export declare class BIconShieldLock extends BvComponent {} export declare class BIconShieldLockFill extends BvComponent {} @@ -1720,6 +1886,8 @@ export declare class BIconShieldSlash extends BvComponent {} export declare class BIconShieldSlashFill extends BvComponent {} +export declare class BIconShieldX extends BvComponent {} + export declare class BIconShift extends BvComponent {} export declare class BIconShiftFill extends BvComponent {} @@ -1804,6 +1972,8 @@ export declare class BIconSoundwave extends BvComponent {} export declare class BIconSpeaker extends BvComponent {} +export declare class BIconSpeakerFill extends BvComponent {} + export declare class BIconSpellcheck extends BvComponent {} export declare class BIconSquare extends BvComponent {} @@ -1918,6 +2088,8 @@ export declare class BIconTextIndentRight extends BvComponent {} export declare class BIconTextLeft extends BvComponent {} +export declare class BIconTextParagraph extends BvComponent {} + export declare class BIconTextRight extends BvComponent {} export declare class BIconTextarea extends BvComponent {} @@ -1968,6 +2140,8 @@ export declare class BIconTriangleHalf extends BvComponent {} export declare class BIconTrophy extends BvComponent {} +export declare class BIconTrophyFill extends BvComponent {} + export declare class BIconTruck extends BvComponent {} export declare class BIconTruckFlatbed extends BvComponent {} @@ -1994,8 +2168,12 @@ export declare class BIconTypeUnderline extends BvComponent {} export declare class BIconUiChecks extends BvComponent {} +export declare class BIconUiChecksGrid extends BvComponent {} + export declare class BIconUiRadios extends BvComponent {} +export declare class BIconUiRadiosGrid extends BvComponent {} + export declare class BIconUnion extends BvComponent {} export declare class BIconUnlock extends BvComponent {} @@ -2008,6 +2186,8 @@ export declare class BIconUpcScan extends BvComponent {} export declare class BIconUpload extends BvComponent {} +export declare class BIconVectorPen extends BvComponent {} + export declare class BIconViewList extends BvComponent {} export declare class BIconViewStacked extends BvComponent {} diff --git a/src/icons/icons.js b/src/icons/icons.js index 61d069cd5ea..d29c65edc50 100644 --- a/src/icons/icons.js +++ b/src/icons/icons.js @@ -1,12 +1,12 @@ // --- BEGIN AUTO-GENERATED FILE --- // -// @IconsVersion: 1.0.0-alpha5 -// @Generated: 2020-07-15T16:57:43.043Z +// @IconsVersion: 1.0.0 +// @Generated: 2020-09-01T12:06:08.751Z // // This file is generated on each build. Do not edit this file! /*! - * BootstrapVue Icons, generated from Bootstrap Icons 1.0.0-alpha5 + * BootstrapVue Icons, generated from Bootstrap Icons 1.0.0 * * @link https://icons.getbootstrap.com/ * @license MIT @@ -24,13 +24,13 @@ export const BIconBlank = /*#__PURE__*/ makeIcon('Blank', '') // eslint-disable-next-line export const BIconAlarm = /*#__PURE__*/ makeIcon( 'Alarm', - '' + '' ) // eslint-disable-next-line export const BIconAlarmFill = /*#__PURE__*/ makeIcon( 'AlarmFill', - '' + '' ) // eslint-disable-next-line @@ -90,403 +90,403 @@ export const BIconAppIndicator = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconArchive = /*#__PURE__*/ makeIcon( 'Archive', - '' + '' ) // eslint-disable-next-line export const BIconArchiveFill = /*#__PURE__*/ makeIcon( 'ArchiveFill', - '' + '' ) // eslint-disable-next-line export const BIconArrow90degDown = /*#__PURE__*/ makeIcon( 'Arrow90degDown', - '' + '' ) // eslint-disable-next-line export const BIconArrow90degLeft = /*#__PURE__*/ makeIcon( 'Arrow90degLeft', - '' + '' ) // eslint-disable-next-line export const BIconArrow90degRight = /*#__PURE__*/ makeIcon( 'Arrow90degRight', - '' + '' ) // eslint-disable-next-line export const BIconArrow90degUp = /*#__PURE__*/ makeIcon( 'Arrow90degUp', - '' + '' ) // eslint-disable-next-line export const BIconArrowBarDown = /*#__PURE__*/ makeIcon( 'ArrowBarDown', - '' + '' ) // eslint-disable-next-line export const BIconArrowBarLeft = /*#__PURE__*/ makeIcon( 'ArrowBarLeft', - '' + '' ) // eslint-disable-next-line export const BIconArrowBarRight = /*#__PURE__*/ makeIcon( 'ArrowBarRight', - '' + '' ) // eslint-disable-next-line export const BIconArrowBarUp = /*#__PURE__*/ makeIcon( 'ArrowBarUp', - '' + '' ) // eslint-disable-next-line export const BIconArrowClockwise = /*#__PURE__*/ makeIcon( 'ArrowClockwise', - '' + '' ) // eslint-disable-next-line export const BIconArrowCounterclockwise = /*#__PURE__*/ makeIcon( 'ArrowCounterclockwise', - '' + '' ) // eslint-disable-next-line export const BIconArrowDown = /*#__PURE__*/ makeIcon( 'ArrowDown', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownCircle = /*#__PURE__*/ makeIcon( 'ArrowDownCircle', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownCircleFill = /*#__PURE__*/ makeIcon( 'ArrowDownCircleFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownLeft = /*#__PURE__*/ makeIcon( 'ArrowDownLeft', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownLeftCircle = /*#__PURE__*/ makeIcon( 'ArrowDownLeftCircle', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownLeftCircleFill = /*#__PURE__*/ makeIcon( 'ArrowDownLeftCircleFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownLeftSquare = /*#__PURE__*/ makeIcon( 'ArrowDownLeftSquare', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownLeftSquareFill = /*#__PURE__*/ makeIcon( 'ArrowDownLeftSquareFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownRight = /*#__PURE__*/ makeIcon( 'ArrowDownRight', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownRightCircle = /*#__PURE__*/ makeIcon( 'ArrowDownRightCircle', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownRightCircleFill = /*#__PURE__*/ makeIcon( 'ArrowDownRightCircleFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownRightSquare = /*#__PURE__*/ makeIcon( 'ArrowDownRightSquare', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownRightSquareFill = /*#__PURE__*/ makeIcon( 'ArrowDownRightSquareFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownShort = /*#__PURE__*/ makeIcon( 'ArrowDownShort', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownSquare = /*#__PURE__*/ makeIcon( 'ArrowDownSquare', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownSquareFill = /*#__PURE__*/ makeIcon( 'ArrowDownSquareFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowDownUp = /*#__PURE__*/ makeIcon( 'ArrowDownUp', - '' + '' ) // eslint-disable-next-line export const BIconArrowLeft = /*#__PURE__*/ makeIcon( 'ArrowLeft', - '' + '' ) // eslint-disable-next-line export const BIconArrowLeftCircle = /*#__PURE__*/ makeIcon( 'ArrowLeftCircle', - '' + '' ) // eslint-disable-next-line export const BIconArrowLeftCircleFill = /*#__PURE__*/ makeIcon( 'ArrowLeftCircleFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowLeftRight = /*#__PURE__*/ makeIcon( 'ArrowLeftRight', - '' + '' ) // eslint-disable-next-line export const BIconArrowLeftShort = /*#__PURE__*/ makeIcon( 'ArrowLeftShort', - '' + '' ) // eslint-disable-next-line export const BIconArrowLeftSquare = /*#__PURE__*/ makeIcon( 'ArrowLeftSquare', - '' + '' ) // eslint-disable-next-line export const BIconArrowLeftSquareFill = /*#__PURE__*/ makeIcon( 'ArrowLeftSquareFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowRepeat = /*#__PURE__*/ makeIcon( 'ArrowRepeat', - '' + '' ) // eslint-disable-next-line export const BIconArrowReturnLeft = /*#__PURE__*/ makeIcon( 'ArrowReturnLeft', - '' + '' ) // eslint-disable-next-line export const BIconArrowReturnRight = /*#__PURE__*/ makeIcon( 'ArrowReturnRight', - '' + '' ) // eslint-disable-next-line export const BIconArrowRight = /*#__PURE__*/ makeIcon( 'ArrowRight', - '' + '' ) // eslint-disable-next-line export const BIconArrowRightCircle = /*#__PURE__*/ makeIcon( 'ArrowRightCircle', - '' + '' ) // eslint-disable-next-line export const BIconArrowRightCircleFill = /*#__PURE__*/ makeIcon( 'ArrowRightCircleFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowRightShort = /*#__PURE__*/ makeIcon( 'ArrowRightShort', - '' + '' ) // eslint-disable-next-line export const BIconArrowRightSquare = /*#__PURE__*/ makeIcon( 'ArrowRightSquare', - '' + '' ) // eslint-disable-next-line export const BIconArrowRightSquareFill = /*#__PURE__*/ makeIcon( 'ArrowRightSquareFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowUp = /*#__PURE__*/ makeIcon( 'ArrowUp', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpCircle = /*#__PURE__*/ makeIcon( 'ArrowUpCircle', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpCircleFill = /*#__PURE__*/ makeIcon( 'ArrowUpCircleFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpLeft = /*#__PURE__*/ makeIcon( 'ArrowUpLeft', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpLeftCircle = /*#__PURE__*/ makeIcon( 'ArrowUpLeftCircle', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpLeftCircleFill = /*#__PURE__*/ makeIcon( 'ArrowUpLeftCircleFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpLeftSquare = /*#__PURE__*/ makeIcon( 'ArrowUpLeftSquare', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpLeftSquareFill = /*#__PURE__*/ makeIcon( 'ArrowUpLeftSquareFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpRight = /*#__PURE__*/ makeIcon( 'ArrowUpRight', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpRightCircle = /*#__PURE__*/ makeIcon( 'ArrowUpRightCircle', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpRightCircleFill = /*#__PURE__*/ makeIcon( 'ArrowUpRightCircleFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpRightSquare = /*#__PURE__*/ makeIcon( 'ArrowUpRightSquare', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpRightSquareFill = /*#__PURE__*/ makeIcon( 'ArrowUpRightSquareFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpShort = /*#__PURE__*/ makeIcon( 'ArrowUpShort', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpSquare = /*#__PURE__*/ makeIcon( 'ArrowUpSquare', - '' + '' ) // eslint-disable-next-line export const BIconArrowUpSquareFill = /*#__PURE__*/ makeIcon( 'ArrowUpSquareFill', - '' + '' ) // eslint-disable-next-line export const BIconArrowsAngleContract = /*#__PURE__*/ makeIcon( 'ArrowsAngleContract', - '' + '' ) // eslint-disable-next-line export const BIconArrowsAngleExpand = /*#__PURE__*/ makeIcon( 'ArrowsAngleExpand', - '' + '' ) // eslint-disable-next-line export const BIconArrowsCollapse = /*#__PURE__*/ makeIcon( 'ArrowsCollapse', - '' + '' ) // eslint-disable-next-line export const BIconArrowsExpand = /*#__PURE__*/ makeIcon( 'ArrowsExpand', - '' + '' ) // eslint-disable-next-line export const BIconArrowsFullscreen = /*#__PURE__*/ makeIcon( 'ArrowsFullscreen', - '' + '' ) // eslint-disable-next-line export const BIconArrowsMove = /*#__PURE__*/ makeIcon( 'ArrowsMove', - '' + '' ) // eslint-disable-next-line @@ -534,7 +534,7 @@ export const BIconBack = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconBackspace = /*#__PURE__*/ makeIcon( 'Backspace', - '' + '' ) // eslint-disable-next-line @@ -546,7 +546,7 @@ export const BIconBackspaceFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconBackspaceReverse = /*#__PURE__*/ makeIcon( 'BackspaceReverse', - '' + '' ) // eslint-disable-next-line @@ -579,6 +579,18 @@ export const BIconBadge8kFill = /*#__PURE__*/ makeIcon( '' ) +// eslint-disable-next-line +export const BIconBadgeAd = /*#__PURE__*/ makeIcon( + 'BadgeAd', + '' +) + +// eslint-disable-next-line +export const BIconBadgeAdFill = /*#__PURE__*/ makeIcon( + 'BadgeAdFill', + '' +) + // eslint-disable-next-line export const BIconBadgeCc = /*#__PURE__*/ makeIcon( 'BadgeCc', @@ -630,31 +642,61 @@ export const BIconBadgeVoFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconBag = /*#__PURE__*/ makeIcon( 'Bag', - '' + '' ) // eslint-disable-next-line export const BIconBagCheck = /*#__PURE__*/ makeIcon( 'BagCheck', - '' + '' +) + +// eslint-disable-next-line +export const BIconBagCheckFill = /*#__PURE__*/ makeIcon( + 'BagCheckFill', + '' ) // eslint-disable-next-line export const BIconBagDash = /*#__PURE__*/ makeIcon( 'BagDash', - '' + '' +) + +// eslint-disable-next-line +export const BIconBagDashFill = /*#__PURE__*/ makeIcon( + 'BagDashFill', + '' ) // eslint-disable-next-line export const BIconBagFill = /*#__PURE__*/ makeIcon( 'BagFill', - '' + '' ) // eslint-disable-next-line export const BIconBagPlus = /*#__PURE__*/ makeIcon( 'BagPlus', - '' + '' +) + +// eslint-disable-next-line +export const BIconBagPlusFill = /*#__PURE__*/ makeIcon( + 'BagPlusFill', + '' +) + +// eslint-disable-next-line +export const BIconBagX = /*#__PURE__*/ makeIcon( + 'BagX', + '' +) + +// eslint-disable-next-line +export const BIconBagXFill = /*#__PURE__*/ makeIcon( + 'BagXFill', + '' ) // eslint-disable-next-line @@ -672,13 +714,13 @@ export const BIconBarChartFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconBarChartLine = /*#__PURE__*/ makeIcon( 'BarChartLine', - '' + '' ) // eslint-disable-next-line export const BIconBarChartLineFill = /*#__PURE__*/ makeIcon( 'BarChartLineFill', - '' + '' ) // eslint-disable-next-line @@ -690,37 +732,37 @@ export const BIconBarChartSteps = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconBasket = /*#__PURE__*/ makeIcon( 'Basket', - '' + '' ) // eslint-disable-next-line export const BIconBasket2 = /*#__PURE__*/ makeIcon( 'Basket2', - '' + '' ) // eslint-disable-next-line export const BIconBasket2Fill = /*#__PURE__*/ makeIcon( 'Basket2Fill', - '' + '' ) // eslint-disable-next-line export const BIconBasket3 = /*#__PURE__*/ makeIcon( 'Basket3', - '' + '' ) // eslint-disable-next-line export const BIconBasket3Fill = /*#__PURE__*/ makeIcon( 'Basket3Fill', - '' + '' ) // eslint-disable-next-line export const BIconBasketFill = /*#__PURE__*/ makeIcon( 'BasketFill', - '' + '' ) // eslint-disable-next-line @@ -768,13 +810,13 @@ export const BIconBezier = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconBezier2 = /*#__PURE__*/ makeIcon( 'Bezier2', - '' + '' ) // eslint-disable-next-line export const BIconBicycle = /*#__PURE__*/ makeIcon( 'Bicycle', - '' + '' ) // eslint-disable-next-line @@ -804,61 +846,115 @@ export const BIconBlockquoteRight = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconBook = /*#__PURE__*/ makeIcon( 'Book', - '' + '' ) // eslint-disable-next-line export const BIconBookFill = /*#__PURE__*/ makeIcon( 'BookFill', - '' + '' ) // eslint-disable-next-line export const BIconBookHalf = /*#__PURE__*/ makeIcon( 'BookHalf', - '' + '' ) // eslint-disable-next-line export const BIconBookmark = /*#__PURE__*/ makeIcon( 'Bookmark', - '' + '' ) // eslint-disable-next-line export const BIconBookmarkCheck = /*#__PURE__*/ makeIcon( 'BookmarkCheck', - '' + '' +) + +// eslint-disable-next-line +export const BIconBookmarkCheckFill = /*#__PURE__*/ makeIcon( + 'BookmarkCheckFill', + '' ) // eslint-disable-next-line export const BIconBookmarkDash = /*#__PURE__*/ makeIcon( 'BookmarkDash', - '' + '' +) + +// eslint-disable-next-line +export const BIconBookmarkDashFill = /*#__PURE__*/ makeIcon( + 'BookmarkDashFill', + '' ) // eslint-disable-next-line export const BIconBookmarkFill = /*#__PURE__*/ makeIcon( 'BookmarkFill', - '' + '' +) + +// eslint-disable-next-line +export const BIconBookmarkHeart = /*#__PURE__*/ makeIcon( + 'BookmarkHeart', + '' +) + +// eslint-disable-next-line +export const BIconBookmarkHeartFill = /*#__PURE__*/ makeIcon( + 'BookmarkHeartFill', + '' ) // eslint-disable-next-line export const BIconBookmarkPlus = /*#__PURE__*/ makeIcon( 'BookmarkPlus', - '' + '' +) + +// eslint-disable-next-line +export const BIconBookmarkPlusFill = /*#__PURE__*/ makeIcon( + 'BookmarkPlusFill', + '' +) + +// eslint-disable-next-line +export const BIconBookmarkStar = /*#__PURE__*/ makeIcon( + 'BookmarkStar', + '' +) + +// eslint-disable-next-line +export const BIconBookmarkStarFill = /*#__PURE__*/ makeIcon( + 'BookmarkStarFill', + '' +) + +// eslint-disable-next-line +export const BIconBookmarkX = /*#__PURE__*/ makeIcon( + 'BookmarkX', + '' +) + +// eslint-disable-next-line +export const BIconBookmarkXFill = /*#__PURE__*/ makeIcon( + 'BookmarkXFill', + '' ) // eslint-disable-next-line export const BIconBookmarks = /*#__PURE__*/ makeIcon( 'Bookmarks', - '' + '' ) // eslint-disable-next-line export const BIconBookmarksFill = /*#__PURE__*/ makeIcon( 'BookmarksFill', - '' + '' ) // eslint-disable-next-line @@ -906,7 +1002,7 @@ export const BIconBoundingBox = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconBoundingBoxCircles = /*#__PURE__*/ makeIcon( 'BoundingBoxCircles', - '' + '' ) // eslint-disable-next-line @@ -918,97 +1014,97 @@ export const BIconBox = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconBoxArrowDown = /*#__PURE__*/ makeIcon( 'BoxArrowDown', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowDownLeft = /*#__PURE__*/ makeIcon( 'BoxArrowDownLeft', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowDownRight = /*#__PURE__*/ makeIcon( 'BoxArrowDownRight', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowInDown = /*#__PURE__*/ makeIcon( 'BoxArrowInDown', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowInDownLeft = /*#__PURE__*/ makeIcon( 'BoxArrowInDownLeft', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowInDownRight = /*#__PURE__*/ makeIcon( 'BoxArrowInDownRight', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowInLeft = /*#__PURE__*/ makeIcon( 'BoxArrowInLeft', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowInRight = /*#__PURE__*/ makeIcon( 'BoxArrowInRight', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowInUp = /*#__PURE__*/ makeIcon( 'BoxArrowInUp', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowInUpLeft = /*#__PURE__*/ makeIcon( 'BoxArrowInUpLeft', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowInUpRight = /*#__PURE__*/ makeIcon( 'BoxArrowInUpRight', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowLeft = /*#__PURE__*/ makeIcon( 'BoxArrowLeft', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowRight = /*#__PURE__*/ makeIcon( 'BoxArrowRight', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowUp = /*#__PURE__*/ makeIcon( 'BoxArrowUp', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowUpLeft = /*#__PURE__*/ makeIcon( 'BoxArrowUpLeft', - '' + '' ) // eslint-disable-next-line export const BIconBoxArrowUpRight = /*#__PURE__*/ makeIcon( 'BoxArrowUpRight', - '' + '' ) // eslint-disable-next-line @@ -1026,7 +1122,7 @@ export const BIconBraces = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconBricks = /*#__PURE__*/ makeIcon( 'Bricks', - '' + '' ) // eslint-disable-next-line @@ -1098,25 +1194,31 @@ export const BIconBroadcast = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconBroadcastPin = /*#__PURE__*/ makeIcon( 'BroadcastPin', - '' + '' ) // eslint-disable-next-line export const BIconBrush = /*#__PURE__*/ makeIcon( 'Brush', - '' + '' +) + +// eslint-disable-next-line +export const BIconBrushFill = /*#__PURE__*/ makeIcon( + 'BrushFill', + '' ) // eslint-disable-next-line export const BIconBucket = /*#__PURE__*/ makeIcon( 'Bucket', - '' + '' ) // eslint-disable-next-line export const BIconBucketFill = /*#__PURE__*/ makeIcon( 'BucketFill', - '' + '' ) // eslint-disable-next-line @@ -1146,139 +1248,151 @@ export const BIconBullseye = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconCalculator = /*#__PURE__*/ makeIcon( 'Calculator', - '' + '' ) // eslint-disable-next-line export const BIconCalculatorFill = /*#__PURE__*/ makeIcon( 'CalculatorFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendar = /*#__PURE__*/ makeIcon( 'Calendar', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2 = /*#__PURE__*/ makeIcon( 'Calendar2', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2Check = /*#__PURE__*/ makeIcon( 'Calendar2Check', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2CheckFill = /*#__PURE__*/ makeIcon( 'Calendar2CheckFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2Date = /*#__PURE__*/ makeIcon( 'Calendar2Date', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2DateFill = /*#__PURE__*/ makeIcon( 'Calendar2DateFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2Day = /*#__PURE__*/ makeIcon( 'Calendar2Day', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2DayFill = /*#__PURE__*/ makeIcon( 'Calendar2DayFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2Event = /*#__PURE__*/ makeIcon( 'Calendar2Event', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2EventFill = /*#__PURE__*/ makeIcon( 'Calendar2EventFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2Fill = /*#__PURE__*/ makeIcon( 'Calendar2Fill', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2Minus = /*#__PURE__*/ makeIcon( 'Calendar2Minus', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2MinusFill = /*#__PURE__*/ makeIcon( 'Calendar2MinusFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2Month = /*#__PURE__*/ makeIcon( 'Calendar2Month', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2MonthFill = /*#__PURE__*/ makeIcon( 'Calendar2MonthFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2Plus = /*#__PURE__*/ makeIcon( 'Calendar2Plus', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2PlusFill = /*#__PURE__*/ makeIcon( 'Calendar2PlusFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2Range = /*#__PURE__*/ makeIcon( 'Calendar2Range', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2RangeFill = /*#__PURE__*/ makeIcon( 'Calendar2RangeFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2Week = /*#__PURE__*/ makeIcon( 'Calendar2Week', - '' + '' ) // eslint-disable-next-line export const BIconCalendar2WeekFill = /*#__PURE__*/ makeIcon( 'Calendar2WeekFill', - '' + '' +) + +// eslint-disable-next-line +export const BIconCalendar2X = /*#__PURE__*/ makeIcon( + 'Calendar2X', + '' +) + +// eslint-disable-next-line +export const BIconCalendar2XFill = /*#__PURE__*/ makeIcon( + 'Calendar2XFill', + '' ) // eslint-disable-next-line @@ -1302,7 +1416,7 @@ export const BIconCalendar3EventFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconCalendar3Fill = /*#__PURE__*/ makeIcon( 'Calendar3Fill', - '' + '' ) // eslint-disable-next-line @@ -1314,7 +1428,7 @@ export const BIconCalendar3Range = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconCalendar3RangeFill = /*#__PURE__*/ makeIcon( 'Calendar3RangeFill', - '' + '' ) // eslint-disable-next-line @@ -1332,139 +1446,151 @@ export const BIconCalendar3WeekFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconCalendar4 = /*#__PURE__*/ makeIcon( 'Calendar4', - '' + '' ) // eslint-disable-next-line export const BIconCalendar4Event = /*#__PURE__*/ makeIcon( 'Calendar4Event', - '' + '' ) // eslint-disable-next-line export const BIconCalendar4Range = /*#__PURE__*/ makeIcon( 'Calendar4Range', - '' + '' ) // eslint-disable-next-line export const BIconCalendar4Week = /*#__PURE__*/ makeIcon( 'Calendar4Week', - '' + '' ) // eslint-disable-next-line export const BIconCalendarCheck = /*#__PURE__*/ makeIcon( 'CalendarCheck', - '' + '' ) // eslint-disable-next-line export const BIconCalendarCheckFill = /*#__PURE__*/ makeIcon( 'CalendarCheckFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendarDate = /*#__PURE__*/ makeIcon( 'CalendarDate', - '' + '' ) // eslint-disable-next-line export const BIconCalendarDateFill = /*#__PURE__*/ makeIcon( 'CalendarDateFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendarDay = /*#__PURE__*/ makeIcon( 'CalendarDay', - '' + '' ) // eslint-disable-next-line export const BIconCalendarDayFill = /*#__PURE__*/ makeIcon( 'CalendarDayFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendarEvent = /*#__PURE__*/ makeIcon( 'CalendarEvent', - '' + '' ) // eslint-disable-next-line export const BIconCalendarEventFill = /*#__PURE__*/ makeIcon( 'CalendarEventFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendarFill = /*#__PURE__*/ makeIcon( 'CalendarFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendarMinus = /*#__PURE__*/ makeIcon( 'CalendarMinus', - '' + '' ) // eslint-disable-next-line export const BIconCalendarMinusFill = /*#__PURE__*/ makeIcon( 'CalendarMinusFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendarMonth = /*#__PURE__*/ makeIcon( 'CalendarMonth', - '' + '' ) // eslint-disable-next-line export const BIconCalendarMonthFill = /*#__PURE__*/ makeIcon( 'CalendarMonthFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendarPlus = /*#__PURE__*/ makeIcon( 'CalendarPlus', - '' + '' ) // eslint-disable-next-line export const BIconCalendarPlusFill = /*#__PURE__*/ makeIcon( 'CalendarPlusFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendarRange = /*#__PURE__*/ makeIcon( 'CalendarRange', - '' + '' ) // eslint-disable-next-line export const BIconCalendarRangeFill = /*#__PURE__*/ makeIcon( 'CalendarRangeFill', - '' + '' ) // eslint-disable-next-line export const BIconCalendarWeek = /*#__PURE__*/ makeIcon( 'CalendarWeek', - '' + '' ) // eslint-disable-next-line export const BIconCalendarWeekFill = /*#__PURE__*/ makeIcon( 'CalendarWeekFill', - '' + '' +) + +// eslint-disable-next-line +export const BIconCalendarX = /*#__PURE__*/ makeIcon( + 'CalendarX', + '' +) + +// eslint-disable-next-line +export const BIconCalendarXFill = /*#__PURE__*/ makeIcon( + 'CalendarXFill', + '' ) // eslint-disable-next-line @@ -1488,37 +1614,37 @@ export const BIconCameraFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconCameraReels = /*#__PURE__*/ makeIcon( 'CameraReels', - '' + '' ) // eslint-disable-next-line export const BIconCameraReelsFill = /*#__PURE__*/ makeIcon( 'CameraReelsFill', - '' + '' ) // eslint-disable-next-line export const BIconCameraVideo = /*#__PURE__*/ makeIcon( 'CameraVideo', - '' + '' ) // eslint-disable-next-line export const BIconCameraVideoFill = /*#__PURE__*/ makeIcon( 'CameraVideoFill', - '' + '' ) // eslint-disable-next-line export const BIconCameraVideoOff = /*#__PURE__*/ makeIcon( 'CameraVideoOff', - '' + '' ) // eslint-disable-next-line export const BIconCameraVideoOffFill = /*#__PURE__*/ makeIcon( 'CameraVideoOffFill', - '' + '' ) // eslint-disable-next-line @@ -1548,7 +1674,7 @@ export const BIconCardHeading = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconCardImage = /*#__PURE__*/ makeIcon( 'CardImage', - '' + '' ) // eslint-disable-next-line @@ -1686,13 +1812,25 @@ export const BIconCart4 = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconCartCheck = /*#__PURE__*/ makeIcon( 'CartCheck', - '' + '' +) + +// eslint-disable-next-line +export const BIconCartCheckFill = /*#__PURE__*/ makeIcon( + 'CartCheckFill', + '' ) // eslint-disable-next-line export const BIconCartDash = /*#__PURE__*/ makeIcon( 'CartDash', - '' + '' +) + +// eslint-disable-next-line +export const BIconCartDashFill = /*#__PURE__*/ makeIcon( + 'CartDashFill', + '' ) // eslint-disable-next-line @@ -1704,7 +1842,25 @@ export const BIconCartFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconCartPlus = /*#__PURE__*/ makeIcon( 'CartPlus', - '' + '' +) + +// eslint-disable-next-line +export const BIconCartPlusFill = /*#__PURE__*/ makeIcon( + 'CartPlusFill', + '' +) + +// eslint-disable-next-line +export const BIconCartX = /*#__PURE__*/ makeIcon( + 'CartX', + '' +) + +// eslint-disable-next-line +export const BIconCartXFill = /*#__PURE__*/ makeIcon( + 'CartXFill', + '' ) // eslint-disable-next-line @@ -2151,6 +2307,12 @@ export const BIconClipboardPlus = /*#__PURE__*/ makeIcon( '' ) +// eslint-disable-next-line +export const BIconClipboardX = /*#__PURE__*/ makeIcon( + 'ClipboardX', + '' +) + // eslint-disable-next-line export const BIconClock = /*#__PURE__*/ makeIcon( 'Clock', @@ -2334,25 +2496,31 @@ export const BIconColumnsGap = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconCommand = /*#__PURE__*/ makeIcon( 'Command', - '' + '' ) // eslint-disable-next-line export const BIconCompass = /*#__PURE__*/ makeIcon( 'Compass', - '' + '' +) + +// eslint-disable-next-line +export const BIconCompassFill = /*#__PURE__*/ makeIcon( + 'CompassFill', + '' ) // eslint-disable-next-line export const BIconCone = /*#__PURE__*/ makeIcon( 'Cone', - '' + '' ) // eslint-disable-next-line export const BIconConeStriped = /*#__PURE__*/ makeIcon( 'ConeStriped', - '' + '' ) // eslint-disable-next-line @@ -2412,19 +2580,25 @@ export const BIconCreditCardFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconCrop = /*#__PURE__*/ makeIcon( 'Crop', - '' + '' ) // eslint-disable-next-line export const BIconCup = /*#__PURE__*/ makeIcon( 'Cup', - '' + '' +) + +// eslint-disable-next-line +export const BIconCupFill = /*#__PURE__*/ makeIcon( + 'CupFill', + '' ) // eslint-disable-next-line export const BIconCupStraw = /*#__PURE__*/ makeIcon( 'CupStraw', - '' + '' ) // eslint-disable-next-line @@ -2448,55 +2622,55 @@ export const BIconCursorText = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconDash = /*#__PURE__*/ makeIcon( 'Dash', - '' + '' ) // eslint-disable-next-line export const BIconDashCircle = /*#__PURE__*/ makeIcon( 'DashCircle', - '' + '' ) // eslint-disable-next-line export const BIconDashCircleFill = /*#__PURE__*/ makeIcon( 'DashCircleFill', - '' + '' ) // eslint-disable-next-line export const BIconDashSquare = /*#__PURE__*/ makeIcon( 'DashSquare', - '' + '' ) // eslint-disable-next-line export const BIconDashSquareFill = /*#__PURE__*/ makeIcon( 'DashSquareFill', - '' + '' ) // eslint-disable-next-line export const BIconDiagram2 = /*#__PURE__*/ makeIcon( 'Diagram2', - '' + '' ) // eslint-disable-next-line export const BIconDiagram2Fill = /*#__PURE__*/ makeIcon( 'Diagram2Fill', - '' + '' ) // eslint-disable-next-line export const BIconDiagram3 = /*#__PURE__*/ makeIcon( 'Diagram3', - '' + '' ) // eslint-disable-next-line export const BIconDiagram3Fill = /*#__PURE__*/ makeIcon( 'Diagram3Fill', - '' + '' ) // eslint-disable-next-line @@ -2616,7 +2790,7 @@ export const BIconDistributeVertical = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconDoorClosed = /*#__PURE__*/ makeIcon( 'DoorClosed', - '' + '' ) // eslint-disable-next-line @@ -2646,7 +2820,7 @@ export const BIconDot = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconDownload = /*#__PURE__*/ makeIcon( 'Download', - '' + '' ) // eslint-disable-next-line @@ -2892,421 +3066,667 @@ export const BIconEyeSlashFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconEyeglasses = /*#__PURE__*/ makeIcon( 'Eyeglasses', - '' + '' ) // eslint-disable-next-line export const BIconFile = /*#__PURE__*/ makeIcon( 'File', - '' + '' ) // eslint-disable-next-line export const BIconFileArrowDown = /*#__PURE__*/ makeIcon( 'FileArrowDown', - '' + '' ) // eslint-disable-next-line export const BIconFileArrowDownFill = /*#__PURE__*/ makeIcon( 'FileArrowDownFill', - '' + '' ) // eslint-disable-next-line export const BIconFileArrowUp = /*#__PURE__*/ makeIcon( 'FileArrowUp', - '' + '' ) // eslint-disable-next-line export const BIconFileArrowUpFill = /*#__PURE__*/ makeIcon( 'FileArrowUpFill', - '' + '' ) // eslint-disable-next-line export const BIconFileBinary = /*#__PURE__*/ makeIcon( 'FileBinary', - '' + '' ) // eslint-disable-next-line export const BIconFileBinaryFill = /*#__PURE__*/ makeIcon( 'FileBinaryFill', - '' + '' ) // eslint-disable-next-line export const BIconFileBreak = /*#__PURE__*/ makeIcon( 'FileBreak', - '' + '' ) // eslint-disable-next-line export const BIconFileBreakFill = /*#__PURE__*/ makeIcon( 'FileBreakFill', - '' + '' ) // eslint-disable-next-line export const BIconFileCheck = /*#__PURE__*/ makeIcon( 'FileCheck', - '' + '' ) // eslint-disable-next-line export const BIconFileCheckFill = /*#__PURE__*/ makeIcon( 'FileCheckFill', - '' + '' ) // eslint-disable-next-line export const BIconFileCode = /*#__PURE__*/ makeIcon( 'FileCode', - '' + '' ) // eslint-disable-next-line export const BIconFileCodeFill = /*#__PURE__*/ makeIcon( 'FileCodeFill', - '' + '' ) // eslint-disable-next-line export const BIconFileDiff = /*#__PURE__*/ makeIcon( 'FileDiff', - '' + '' ) // eslint-disable-next-line export const BIconFileDiffFill = /*#__PURE__*/ makeIcon( 'FileDiffFill', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmark = /*#__PURE__*/ makeIcon( 'FileEarmark', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkArrowDown = /*#__PURE__*/ makeIcon( 'FileEarmarkArrowDown', - '' + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkArrowDownFill = /*#__PURE__*/ makeIcon( + 'FileEarmarkArrowDownFill', + '' ) // eslint-disable-next-line export const BIconFileEarmarkArrowUp = /*#__PURE__*/ makeIcon( 'FileEarmarkArrowUp', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkArrowUpFill = /*#__PURE__*/ makeIcon( 'FileEarmarkArrowUpFill', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkBinary = /*#__PURE__*/ makeIcon( 'FileEarmarkBinary', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkBinaryFill = /*#__PURE__*/ makeIcon( 'FileEarmarkBinaryFill', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkBreak = /*#__PURE__*/ makeIcon( 'FileEarmarkBreak', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkBreakFill = /*#__PURE__*/ makeIcon( 'FileEarmarkBreakFill', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkCheck = /*#__PURE__*/ makeIcon( 'FileEarmarkCheck', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkCheckFill = /*#__PURE__*/ makeIcon( 'FileEarmarkCheckFill', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkCode = /*#__PURE__*/ makeIcon( 'FileEarmarkCode', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkCodeFill = /*#__PURE__*/ makeIcon( 'FileEarmarkCodeFill', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkDiff = /*#__PURE__*/ makeIcon( 'FileEarmarkDiff', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkDiffFill = /*#__PURE__*/ makeIcon( 'FileEarmarkDiffFill', - '' + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkEasel = /*#__PURE__*/ makeIcon( + 'FileEarmarkEasel', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkEaselFill = /*#__PURE__*/ makeIcon( + 'FileEarmarkEaselFill', + '' ) // eslint-disable-next-line export const BIconFileEarmarkFill = /*#__PURE__*/ makeIcon( 'FileEarmarkFill', - '' + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkFont = /*#__PURE__*/ makeIcon( + 'FileEarmarkFont', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkFontFill = /*#__PURE__*/ makeIcon( + 'FileEarmarkFontFill', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkImage = /*#__PURE__*/ makeIcon( + 'FileEarmarkImage', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkImageFill = /*#__PURE__*/ makeIcon( + 'FileEarmarkImageFill', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkLock = /*#__PURE__*/ makeIcon( + 'FileEarmarkLock', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkLock2 = /*#__PURE__*/ makeIcon( + 'FileEarmarkLock2', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkLock2Fill = /*#__PURE__*/ makeIcon( + 'FileEarmarkLock2Fill', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkLockFill = /*#__PURE__*/ makeIcon( + 'FileEarmarkLockFill', + '' ) // eslint-disable-next-line export const BIconFileEarmarkMedical = /*#__PURE__*/ makeIcon( 'FileEarmarkMedical', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkMedicalFill = /*#__PURE__*/ makeIcon( 'FileEarmarkMedicalFill', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkMinus = /*#__PURE__*/ makeIcon( 'FileEarmarkMinus', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkMinusFill = /*#__PURE__*/ makeIcon( 'FileEarmarkMinusFill', - '' + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkMusic = /*#__PURE__*/ makeIcon( + 'FileEarmarkMusic', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkMusicFill = /*#__PURE__*/ makeIcon( + 'FileEarmarkMusicFill', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkPerson = /*#__PURE__*/ makeIcon( + 'FileEarmarkPerson', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkPersonFill = /*#__PURE__*/ makeIcon( + 'FileEarmarkPersonFill', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkPlay = /*#__PURE__*/ makeIcon( + 'FileEarmarkPlay', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkPlayFill = /*#__PURE__*/ makeIcon( + 'FileEarmarkPlayFill', + '' ) // eslint-disable-next-line export const BIconFileEarmarkPlus = /*#__PURE__*/ makeIcon( 'FileEarmarkPlus', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkPlusFill = /*#__PURE__*/ makeIcon( 'FileEarmarkPlusFill', - '' + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkPost = /*#__PURE__*/ makeIcon( + 'FileEarmarkPost', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkPostFill = /*#__PURE__*/ makeIcon( + 'FileEarmarkPostFill', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkRichtext = /*#__PURE__*/ makeIcon( + 'FileEarmarkRichtext', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkRichtextFill = /*#__PURE__*/ makeIcon( + 'FileEarmarkRichtextFill', + '' ) // eslint-disable-next-line export const BIconFileEarmarkRuled = /*#__PURE__*/ makeIcon( 'FileEarmarkRuled', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkRuledFill = /*#__PURE__*/ makeIcon( 'FileEarmarkRuledFill', - '' + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkSlides = /*#__PURE__*/ makeIcon( + 'FileEarmarkSlides', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkSlidesFill = /*#__PURE__*/ makeIcon( + 'FileEarmarkSlidesFill', + '' ) // eslint-disable-next-line export const BIconFileEarmarkSpreadsheet = /*#__PURE__*/ makeIcon( 'FileEarmarkSpreadsheet', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkSpreadsheetFill = /*#__PURE__*/ makeIcon( 'FileEarmarkSpreadsheetFill', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkText = /*#__PURE__*/ makeIcon( 'FileEarmarkText', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkTextFill = /*#__PURE__*/ makeIcon( 'FileEarmarkTextFill', - '' + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkX = /*#__PURE__*/ makeIcon( + 'FileEarmarkX', + '' +) + +// eslint-disable-next-line +export const BIconFileEarmarkXFill = /*#__PURE__*/ makeIcon( + 'FileEarmarkXFill', + '' ) // eslint-disable-next-line export const BIconFileEarmarkZip = /*#__PURE__*/ makeIcon( 'FileEarmarkZip', - '' + '' ) // eslint-disable-next-line export const BIconFileEarmarkZipFill = /*#__PURE__*/ makeIcon( 'FileEarmarkZipFill', - '' + '' +) + +// eslint-disable-next-line +export const BIconFileEasel = /*#__PURE__*/ makeIcon( + 'FileEasel', + '' +) + +// eslint-disable-next-line +export const BIconFileEaselFill = /*#__PURE__*/ makeIcon( + 'FileEaselFill', + '' ) // eslint-disable-next-line export const BIconFileFill = /*#__PURE__*/ makeIcon( 'FileFill', - '' + '' +) + +// eslint-disable-next-line +export const BIconFileFont = /*#__PURE__*/ makeIcon( + 'FileFont', + '' +) + +// eslint-disable-next-line +export const BIconFileFontFill = /*#__PURE__*/ makeIcon( + 'FileFontFill', + '' +) + +// eslint-disable-next-line +export const BIconFileImage = /*#__PURE__*/ makeIcon( + 'FileImage', + '' +) + +// eslint-disable-next-line +export const BIconFileImageFill = /*#__PURE__*/ makeIcon( + 'FileImageFill', + '' +) + +// eslint-disable-next-line +export const BIconFileLock = /*#__PURE__*/ makeIcon( + 'FileLock', + '' +) + +// eslint-disable-next-line +export const BIconFileLock2 = /*#__PURE__*/ makeIcon( + 'FileLock2', + '' +) + +// eslint-disable-next-line +export const BIconFileLock2Fill = /*#__PURE__*/ makeIcon( + 'FileLock2Fill', + '' +) + +// eslint-disable-next-line +export const BIconFileLockFill = /*#__PURE__*/ makeIcon( + 'FileLockFill', + '' ) // eslint-disable-next-line export const BIconFileMedical = /*#__PURE__*/ makeIcon( 'FileMedical', - '' + '' ) // eslint-disable-next-line export const BIconFileMedicalFill = /*#__PURE__*/ makeIcon( 'FileMedicalFill', - '' + '' ) // eslint-disable-next-line export const BIconFileMinus = /*#__PURE__*/ makeIcon( 'FileMinus', - '' + '' ) // eslint-disable-next-line export const BIconFileMinusFill = /*#__PURE__*/ makeIcon( 'FileMinusFill', - '' + '' ) // eslint-disable-next-line export const BIconFileMusic = /*#__PURE__*/ makeIcon( 'FileMusic', - '' + '' ) // eslint-disable-next-line export const BIconFileMusicFill = /*#__PURE__*/ makeIcon( 'FileMusicFill', - '' + '' ) // eslint-disable-next-line export const BIconFilePerson = /*#__PURE__*/ makeIcon( 'FilePerson', - '' + '' ) // eslint-disable-next-line export const BIconFilePersonFill = /*#__PURE__*/ makeIcon( 'FilePersonFill', - '' + '' +) + +// eslint-disable-next-line +export const BIconFilePlay = /*#__PURE__*/ makeIcon( + 'FilePlay', + '' +) + +// eslint-disable-next-line +export const BIconFilePlayFill = /*#__PURE__*/ makeIcon( + 'FilePlayFill', + '' ) // eslint-disable-next-line export const BIconFilePlus = /*#__PURE__*/ makeIcon( 'FilePlus', - '' + '' ) // eslint-disable-next-line export const BIconFilePlusFill = /*#__PURE__*/ makeIcon( 'FilePlusFill', - '' + '' ) // eslint-disable-next-line export const BIconFilePost = /*#__PURE__*/ makeIcon( 'FilePost', - '' + '' ) // eslint-disable-next-line export const BIconFilePostFill = /*#__PURE__*/ makeIcon( 'FilePostFill', - '' + '' ) // eslint-disable-next-line export const BIconFileRichtext = /*#__PURE__*/ makeIcon( 'FileRichtext', - '' + '' ) // eslint-disable-next-line export const BIconFileRichtextFill = /*#__PURE__*/ makeIcon( 'FileRichtextFill', - '' + '' ) // eslint-disable-next-line export const BIconFileRuled = /*#__PURE__*/ makeIcon( 'FileRuled', - '' + '' ) // eslint-disable-next-line export const BIconFileRuledFill = /*#__PURE__*/ makeIcon( 'FileRuledFill', - '' + '' +) + +// eslint-disable-next-line +export const BIconFileSlides = /*#__PURE__*/ makeIcon( + 'FileSlides', + '' +) + +// eslint-disable-next-line +export const BIconFileSlidesFill = /*#__PURE__*/ makeIcon( + 'FileSlidesFill', + '' ) // eslint-disable-next-line export const BIconFileSpreadsheet = /*#__PURE__*/ makeIcon( 'FileSpreadsheet', - '' + '' ) // eslint-disable-next-line export const BIconFileSpreadsheetFill = /*#__PURE__*/ makeIcon( 'FileSpreadsheetFill', - '' + '' ) // eslint-disable-next-line export const BIconFileText = /*#__PURE__*/ makeIcon( 'FileText', - '' + '' ) // eslint-disable-next-line export const BIconFileTextFill = /*#__PURE__*/ makeIcon( 'FileTextFill', - '' + '' +) + +// eslint-disable-next-line +export const BIconFileX = /*#__PURE__*/ makeIcon( + 'FileX', + '' +) + +// eslint-disable-next-line +export const BIconFileXFill = /*#__PURE__*/ makeIcon( + 'FileXFill', + '' ) // eslint-disable-next-line export const BIconFileZip = /*#__PURE__*/ makeIcon( 'FileZip', - '' + '' ) // eslint-disable-next-line export const BIconFileZipFill = /*#__PURE__*/ makeIcon( 'FileZipFill', - '' + '' ) // eslint-disable-next-line export const BIconFiles = /*#__PURE__*/ makeIcon( 'Files', - '' + '' ) // eslint-disable-next-line export const BIconFilesAlt = /*#__PURE__*/ makeIcon( 'FilesAlt', - '' + '' ) // eslint-disable-next-line @@ -3360,13 +3780,13 @@ export const BIconFilterSquareFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconFlag = /*#__PURE__*/ makeIcon( 'Flag', - '' + '' ) // eslint-disable-next-line export const BIconFlagFill = /*#__PURE__*/ makeIcon( 'FlagFill', - '' + '' ) // eslint-disable-next-line @@ -3426,7 +3846,7 @@ export const BIconFolderMinus = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconFolderPlus = /*#__PURE__*/ makeIcon( 'FolderPlus', - '' + '' ) // eslint-disable-next-line @@ -3441,6 +3861,12 @@ export const BIconFolderSymlinkFill = /*#__PURE__*/ makeIcon( '' ) +// eslint-disable-next-line +export const BIconFolderX = /*#__PURE__*/ makeIcon( + 'FolderX', + '' +) + // eslint-disable-next-line export const BIconFonts = /*#__PURE__*/ makeIcon( 'Fonts', @@ -3522,15 +3948,27 @@ export const BIconGem = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconGeo = /*#__PURE__*/ makeIcon( 'Geo', - '' + '' ) // eslint-disable-next-line export const BIconGeoAlt = /*#__PURE__*/ makeIcon( 'GeoAlt', + '' +) + +// eslint-disable-next-line +export const BIconGeoAltFill = /*#__PURE__*/ makeIcon( + 'GeoAltFill', '' ) +// eslint-disable-next-line +export const BIconGeoFill = /*#__PURE__*/ makeIcon( + 'GeoFill', + '' +) + // eslint-disable-next-line export const BIconGift = /*#__PURE__*/ makeIcon( 'Gift', @@ -3546,25 +3984,25 @@ export const BIconGiftFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconGlobe = /*#__PURE__*/ makeIcon( 'Globe', - '' + '' ) // eslint-disable-next-line export const BIconGlobe2 = /*#__PURE__*/ makeIcon( 'Globe2', - '' + '' ) // eslint-disable-next-line export const BIconGraphDown = /*#__PURE__*/ makeIcon( 'GraphDown', - '' + '' ) // eslint-disable-next-line export const BIconGraphUp = /*#__PURE__*/ makeIcon( 'GraphUp', - '' + '' ) // eslint-disable-next-line @@ -3672,13 +4110,13 @@ export const BIconHandThumbsUp = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconHandbag = /*#__PURE__*/ makeIcon( 'Handbag', - '' + '' ) // eslint-disable-next-line export const BIconHandbagFill = /*#__PURE__*/ makeIcon( 'HandbagFill', - '' + '' ) // eslint-disable-next-line @@ -3858,7 +4296,7 @@ export const BIconHr = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconImage = /*#__PURE__*/ makeIcon( 'Image', - '' + '' ) // eslint-disable-next-line @@ -3876,31 +4314,31 @@ export const BIconImageFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconImages = /*#__PURE__*/ makeIcon( 'Images', - '' + '' ) // eslint-disable-next-line export const BIconInbox = /*#__PURE__*/ makeIcon( 'Inbox', - '' + '' ) // eslint-disable-next-line export const BIconInboxFill = /*#__PURE__*/ makeIcon( 'InboxFill', - '' + '' ) // eslint-disable-next-line export const BIconInboxes = /*#__PURE__*/ makeIcon( 'Inboxes', - '' + '' ) // eslint-disable-next-line export const BIconInboxesFill = /*#__PURE__*/ makeIcon( 'InboxesFill', - '' + '' ) // eslint-disable-next-line @@ -3924,7 +4362,7 @@ export const BIconInfoCircleFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconInfoSquare = /*#__PURE__*/ makeIcon( 'InfoSquare', - '' + '' ) // eslint-disable-next-line @@ -3942,7 +4380,7 @@ export const BIconInputCursor = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconInputCursorText = /*#__PURE__*/ makeIcon( 'InputCursorText', - '' + '' ) // eslint-disable-next-line @@ -3954,67 +4392,73 @@ export const BIconIntersect = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconJournal = /*#__PURE__*/ makeIcon( 'Journal', - '' + '' ) // eslint-disable-next-line export const BIconJournalAlbum = /*#__PURE__*/ makeIcon( 'JournalAlbum', - '' + '' ) // eslint-disable-next-line export const BIconJournalArrowDown = /*#__PURE__*/ makeIcon( 'JournalArrowDown', - '' + '' ) // eslint-disable-next-line export const BIconJournalArrowUp = /*#__PURE__*/ makeIcon( 'JournalArrowUp', - '' + '' ) // eslint-disable-next-line export const BIconJournalCheck = /*#__PURE__*/ makeIcon( 'JournalCheck', - '' + '' ) // eslint-disable-next-line export const BIconJournalCode = /*#__PURE__*/ makeIcon( 'JournalCode', - '' + '' ) // eslint-disable-next-line export const BIconJournalMedical = /*#__PURE__*/ makeIcon( 'JournalMedical', - '' + '' ) // eslint-disable-next-line export const BIconJournalMinus = /*#__PURE__*/ makeIcon( 'JournalMinus', - '' + '' ) // eslint-disable-next-line export const BIconJournalPlus = /*#__PURE__*/ makeIcon( 'JournalPlus', - '' + '' ) // eslint-disable-next-line export const BIconJournalRichtext = /*#__PURE__*/ makeIcon( 'JournalRichtext', - '' + '' ) // eslint-disable-next-line export const BIconJournalText = /*#__PURE__*/ makeIcon( 'JournalText', - '' + '' +) + +// eslint-disable-next-line +export const BIconJournalX = /*#__PURE__*/ makeIcon( + 'JournalX', + '' ) // eslint-disable-next-line @@ -4122,7 +4566,7 @@ export const BIconLayers = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconLayersFill = /*#__PURE__*/ makeIcon( 'LayersFill', - '' + '' ) // eslint-disable-next-line @@ -4200,7 +4644,7 @@ export const BIconLayoutWtf = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconLifePreserver = /*#__PURE__*/ makeIcon( 'LifePreserver', - '' + '' ) // eslint-disable-next-line @@ -4224,7 +4668,7 @@ export const BIconLink = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconLink45deg = /*#__PURE__*/ makeIcon( 'Link45deg', - '' + '' ) // eslint-disable-next-line @@ -4296,7 +4740,13 @@ export const BIconMailbox2 = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconMap = /*#__PURE__*/ makeIcon( 'Map', - '' + '' +) + +// eslint-disable-next-line +export const BIconMapFill = /*#__PURE__*/ makeIcon( + 'MapFill', + '' ) // eslint-disable-next-line @@ -4392,7 +4842,7 @@ export const BIconMinecart = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconMinecartLoaded = /*#__PURE__*/ makeIcon( 'MinecartLoaded', - '' + '' ) // eslint-disable-next-line @@ -4452,13 +4902,13 @@ export const BIconMusicPlayerFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconNewspaper = /*#__PURE__*/ makeIcon( 'Newspaper', - '' + '' ) // eslint-disable-next-line export const BIconNodeMinus = /*#__PURE__*/ makeIcon( 'NodeMinus', - '' + '' ) // eslint-disable-next-line @@ -4470,7 +4920,7 @@ export const BIconNodeMinusFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconNodePlus = /*#__PURE__*/ makeIcon( 'NodePlus', - '' + '' ) // eslint-disable-next-line @@ -4620,13 +5070,25 @@ export const BIconPeaceFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconPen = /*#__PURE__*/ makeIcon( 'Pen', - '' + '' +) + +// eslint-disable-next-line +export const BIconPenFill = /*#__PURE__*/ makeIcon( + 'PenFill', + '' ) // eslint-disable-next-line export const BIconPencil = /*#__PURE__*/ makeIcon( 'Pencil', - '' + '' +) + +// eslint-disable-next-line +export const BIconPencilFill = /*#__PURE__*/ makeIcon( + 'PencilFill', + '' ) // eslint-disable-next-line @@ -4656,7 +5118,7 @@ export const BIconPentagonHalf = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconPeople = /*#__PURE__*/ makeIcon( 'People', - '' + '' ) // eslint-disable-next-line @@ -4674,13 +5136,13 @@ export const BIconPercent = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconPerson = /*#__PURE__*/ makeIcon( 'Person', - '' + '' ) // eslint-disable-next-line export const BIconPersonBadge = /*#__PURE__*/ makeIcon( 'PersonBadge', - '' + '' ) // eslint-disable-next-line @@ -4698,7 +5160,7 @@ export const BIconPersonBoundingBox = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconPersonCheck = /*#__PURE__*/ makeIcon( 'PersonCheck', - '' + '' ) // eslint-disable-next-line @@ -4716,7 +5178,7 @@ export const BIconPersonCircle = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconPersonDash = /*#__PURE__*/ makeIcon( 'PersonDash', - '' + '' ) // eslint-disable-next-line @@ -4740,13 +5202,13 @@ export const BIconPersonLinesFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconPersonPlus = /*#__PURE__*/ makeIcon( 'PersonPlus', - '' + '' ) // eslint-disable-next-line export const BIconPersonPlusFill = /*#__PURE__*/ makeIcon( 'PersonPlusFill', - '' + '' ) // eslint-disable-next-line @@ -4755,6 +5217,18 @@ export const BIconPersonSquare = /*#__PURE__*/ makeIcon( '' ) +// eslint-disable-next-line +export const BIconPersonX = /*#__PURE__*/ makeIcon( + 'PersonX', + '' +) + +// eslint-disable-next-line +export const BIconPersonXFill = /*#__PURE__*/ makeIcon( + 'PersonXFill', + '' +) + // eslint-disable-next-line export const BIconPhone = /*#__PURE__*/ makeIcon( 'Phone', @@ -4779,6 +5253,12 @@ export const BIconPhoneLandscapeFill = /*#__PURE__*/ makeIcon( '' ) +// eslint-disable-next-line +export const BIconPhoneVibrate = /*#__PURE__*/ makeIcon( + 'PhoneVibrate', + '' +) + // eslint-disable-next-line export const BIconPieChart = /*#__PURE__*/ makeIcon( 'PieChart', @@ -4818,37 +5298,43 @@ export const BIconPlayFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconPlug = /*#__PURE__*/ makeIcon( 'Plug', - '' + '' +) + +// eslint-disable-next-line +export const BIconPlugFill = /*#__PURE__*/ makeIcon( + 'PlugFill', + '' ) // eslint-disable-next-line export const BIconPlus = /*#__PURE__*/ makeIcon( 'Plus', - '' + '' ) // eslint-disable-next-line export const BIconPlusCircle = /*#__PURE__*/ makeIcon( 'PlusCircle', - '' + '' ) // eslint-disable-next-line export const BIconPlusCircleFill = /*#__PURE__*/ makeIcon( 'PlusCircleFill', - '' + '' ) // eslint-disable-next-line export const BIconPlusSquare = /*#__PURE__*/ makeIcon( 'PlusSquare', - '' + '' ) // eslint-disable-next-line export const BIconPlusSquareFill = /*#__PURE__*/ makeIcon( 'PlusSquareFill', - '' + '' ) // eslint-disable-next-line @@ -4884,55 +5370,55 @@ export const BIconPuzzleFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconQuestion = /*#__PURE__*/ makeIcon( 'Question', - '' + '' ) // eslint-disable-next-line export const BIconQuestionCircle = /*#__PURE__*/ makeIcon( 'QuestionCircle', - '' + '' ) // eslint-disable-next-line export const BIconQuestionCircleFill = /*#__PURE__*/ makeIcon( 'QuestionCircleFill', - '' + '' ) // eslint-disable-next-line export const BIconQuestionDiamond = /*#__PURE__*/ makeIcon( 'QuestionDiamond', - '' + '' ) // eslint-disable-next-line export const BIconQuestionDiamondFill = /*#__PURE__*/ makeIcon( 'QuestionDiamondFill', - '' + '' ) // eslint-disable-next-line export const BIconQuestionOctagon = /*#__PURE__*/ makeIcon( 'QuestionOctagon', - '' + '' ) // eslint-disable-next-line export const BIconQuestionOctagonFill = /*#__PURE__*/ makeIcon( 'QuestionOctagonFill', - '' + '' ) // eslint-disable-next-line export const BIconQuestionSquare = /*#__PURE__*/ makeIcon( 'QuestionSquare', - '' + '' ) // eslint-disable-next-line export const BIconQuestionSquareFill = /*#__PURE__*/ makeIcon( 'QuestionSquareFill', - '' + '' ) // eslint-disable-next-line @@ -5013,6 +5499,12 @@ export const BIconRssFill = /*#__PURE__*/ makeIcon( '' ) +// eslint-disable-next-line +export const BIconScissors = /*#__PURE__*/ makeIcon( + 'Scissors', + '' +) + // eslint-disable-next-line export const BIconScrewdriver = /*#__PURE__*/ makeIcon( 'Screwdriver', @@ -5034,19 +5526,19 @@ export const BIconSegmentedNav = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconServer = /*#__PURE__*/ makeIcon( 'Server', - '' + '' ) // eslint-disable-next-line export const BIconShare = /*#__PURE__*/ makeIcon( 'Share', - '' + '' ) // eslint-disable-next-line export const BIconShareFill = /*#__PURE__*/ makeIcon( 'ShareFill', - '' + '' ) // eslint-disable-next-line @@ -5097,16 +5589,22 @@ export const BIconShieldFillPlus = /*#__PURE__*/ makeIcon( '' ) +// eslint-disable-next-line +export const BIconShieldFillX = /*#__PURE__*/ makeIcon( + 'ShieldFillX', + '' +) + // eslint-disable-next-line export const BIconShieldLock = /*#__PURE__*/ makeIcon( 'ShieldLock', - '' + '' ) // eslint-disable-next-line export const BIconShieldLockFill = /*#__PURE__*/ makeIcon( 'ShieldLockFill', - '' + '' ) // eslint-disable-next-line @@ -5118,7 +5616,7 @@ export const BIconShieldMinus = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconShieldPlus = /*#__PURE__*/ makeIcon( 'ShieldPlus', - '' + '' ) // eslint-disable-next-line @@ -5139,6 +5637,12 @@ export const BIconShieldSlashFill = /*#__PURE__*/ makeIcon( '' ) +// eslint-disable-next-line +export const BIconShieldX = /*#__PURE__*/ makeIcon( + 'ShieldX', + '' +) + // eslint-disable-next-line export const BIconShift = /*#__PURE__*/ makeIcon( 'Shift', @@ -5154,19 +5658,19 @@ export const BIconShiftFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconShop = /*#__PURE__*/ makeIcon( 'Shop', - '' + '' ) // eslint-disable-next-line export const BIconShopWindow = /*#__PURE__*/ makeIcon( 'ShopWindow', - '' + '' ) // eslint-disable-next-line export const BIconShuffle = /*#__PURE__*/ makeIcon( 'Shuffle', - '' + '' ) // eslint-disable-next-line @@ -5268,37 +5772,37 @@ export const BIconSkipStartFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconSlash = /*#__PURE__*/ makeIcon( 'Slash', - '' + '' ) // eslint-disable-next-line export const BIconSlashCircle = /*#__PURE__*/ makeIcon( 'SlashCircle', - '' + '' ) // eslint-disable-next-line export const BIconSlashCircleFill = /*#__PURE__*/ makeIcon( 'SlashCircleFill', - '' + '' ) // eslint-disable-next-line export const BIconSlashSquare = /*#__PURE__*/ makeIcon( 'SlashSquare', - '' + '' ) // eslint-disable-next-line export const BIconSlashSquareFill = /*#__PURE__*/ makeIcon( 'SlashSquareFill', - '' + '' ) // eslint-disable-next-line export const BIconSliders = /*#__PURE__*/ makeIcon( 'Sliders', - '' + '' ) // eslint-disable-next-line @@ -5388,6 +5892,12 @@ export const BIconSoundwave = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconSpeaker = /*#__PURE__*/ makeIcon( 'Speaker', + '' +) + +// eslint-disable-next-line +export const BIconSpeakerFill = /*#__PURE__*/ makeIcon( + 'SpeakerFill', '' ) @@ -5484,13 +5994,13 @@ export const BIconStoplightsFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconStopwatch = /*#__PURE__*/ makeIcon( 'Stopwatch', - '' + '' ) // eslint-disable-next-line export const BIconStopwatchFill = /*#__PURE__*/ makeIcon( 'StopwatchFill', - '' + '' ) // eslint-disable-next-line @@ -5556,7 +6066,7 @@ export const BIconSun = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconSunglasses = /*#__PURE__*/ makeIcon( 'Sunglasses', - '' + '' ) // eslint-disable-next-line @@ -5616,7 +6126,7 @@ export const BIconTagsFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconTelephone = /*#__PURE__*/ makeIcon( 'Telephone', - '' + '' ) // eslint-disable-next-line @@ -5628,73 +6138,73 @@ export const BIconTelephoneFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconTelephoneForward = /*#__PURE__*/ makeIcon( 'TelephoneForward', - '' + '' ) // eslint-disable-next-line export const BIconTelephoneForwardFill = /*#__PURE__*/ makeIcon( 'TelephoneForwardFill', - '' + '' ) // eslint-disable-next-line export const BIconTelephoneInbound = /*#__PURE__*/ makeIcon( 'TelephoneInbound', - '' + '' ) // eslint-disable-next-line export const BIconTelephoneInboundFill = /*#__PURE__*/ makeIcon( 'TelephoneInboundFill', - '' + '' ) // eslint-disable-next-line export const BIconTelephoneMinus = /*#__PURE__*/ makeIcon( 'TelephoneMinus', - '' + '' ) // eslint-disable-next-line export const BIconTelephoneMinusFill = /*#__PURE__*/ makeIcon( 'TelephoneMinusFill', - '' + '' ) // eslint-disable-next-line export const BIconTelephoneOutbound = /*#__PURE__*/ makeIcon( 'TelephoneOutbound', - '' + '' ) // eslint-disable-next-line export const BIconTelephoneOutboundFill = /*#__PURE__*/ makeIcon( 'TelephoneOutboundFill', - '' + '' ) // eslint-disable-next-line export const BIconTelephonePlus = /*#__PURE__*/ makeIcon( 'TelephonePlus', - '' + '' ) // eslint-disable-next-line export const BIconTelephonePlusFill = /*#__PURE__*/ makeIcon( 'TelephonePlusFill', - '' + '' ) // eslint-disable-next-line export const BIconTelephoneX = /*#__PURE__*/ makeIcon( 'TelephoneX', - '' + '' ) // eslint-disable-next-line export const BIconTelephoneXFill = /*#__PURE__*/ makeIcon( 'TelephoneXFill', - '' + '' ) // eslint-disable-next-line @@ -5733,6 +6243,12 @@ export const BIconTextLeft = /*#__PURE__*/ makeIcon( '' ) +// eslint-disable-next-line +export const BIconTextParagraph = /*#__PURE__*/ makeIcon( + 'TextParagraph', + '' +) + // eslint-disable-next-line export const BIconTextRight = /*#__PURE__*/ makeIcon( 'TextRight', @@ -5742,19 +6258,19 @@ export const BIconTextRight = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconTextarea = /*#__PURE__*/ makeIcon( 'Textarea', - '' + '' ) // eslint-disable-next-line export const BIconTextareaResize = /*#__PURE__*/ makeIcon( 'TextareaResize', - '' + '' ) // eslint-disable-next-line export const BIconTextareaT = /*#__PURE__*/ makeIcon( 'TextareaT', - '' + '' ) // eslint-disable-next-line @@ -5766,7 +6282,7 @@ export const BIconThermometer = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconThermometerHalf = /*#__PURE__*/ makeIcon( 'ThermometerHalf', - '' + '' ) // eslint-disable-next-line @@ -5850,13 +6366,13 @@ export const BIconTrashFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconTree = /*#__PURE__*/ makeIcon( 'Tree', - '' + '' ) // eslint-disable-next-line export const BIconTreeFill = /*#__PURE__*/ makeIcon( 'TreeFill', - '' + '' ) // eslint-disable-next-line @@ -5880,19 +6396,25 @@ export const BIconTriangleHalf = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconTrophy = /*#__PURE__*/ makeIcon( 'Trophy', - '' + '' +) + +// eslint-disable-next-line +export const BIconTrophyFill = /*#__PURE__*/ makeIcon( + 'TrophyFill', + '' ) // eslint-disable-next-line export const BIconTruck = /*#__PURE__*/ makeIcon( 'Truck', - '' + '' ) // eslint-disable-next-line export const BIconTruckFlatbed = /*#__PURE__*/ makeIcon( 'TruckFlatbed', - '' + '' ) // eslint-disable-next-line @@ -5961,12 +6483,24 @@ export const BIconUiChecks = /*#__PURE__*/ makeIcon( '' ) +// eslint-disable-next-line +export const BIconUiChecksGrid = /*#__PURE__*/ makeIcon( + 'UiChecksGrid', + '' +) + // eslint-disable-next-line export const BIconUiRadios = /*#__PURE__*/ makeIcon( 'UiRadios', '' ) +// eslint-disable-next-line +export const BIconUiRadiosGrid = /*#__PURE__*/ makeIcon( + 'UiRadiosGrid', + '' +) + // eslint-disable-next-line export const BIconUnion = /*#__PURE__*/ makeIcon( 'Union', @@ -6000,7 +6534,13 @@ export const BIconUpcScan = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconUpload = /*#__PURE__*/ makeIcon( 'Upload', - '' + '' +) + +// eslint-disable-next-line +export const BIconVectorPen = /*#__PURE__*/ makeIcon( + 'VectorPen', + '' ) // eslint-disable-next-line @@ -6018,7 +6558,7 @@ export const BIconViewStacked = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconVoicemail = /*#__PURE__*/ makeIcon( 'Voicemail', - '' + '' ) // eslint-disable-next-line @@ -6078,13 +6618,13 @@ export const BIconVr = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconWallet = /*#__PURE__*/ makeIcon( 'Wallet', - '' + '' ) // eslint-disable-next-line export const BIconWallet2 = /*#__PURE__*/ makeIcon( 'Wallet2', - '' + '' ) // eslint-disable-next-line @@ -6138,25 +6678,25 @@ export const BIconWrench = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconX = /*#__PURE__*/ makeIcon( 'X', - '' + '' ) // eslint-disable-next-line export const BIconXCircle = /*#__PURE__*/ makeIcon( 'XCircle', - '' + '' ) // eslint-disable-next-line export const BIconXCircleFill = /*#__PURE__*/ makeIcon( 'XCircleFill', - '' + '' ) // eslint-disable-next-line export const BIconXDiamond = /*#__PURE__*/ makeIcon( 'XDiamond', - '' + '' ) // eslint-disable-next-line @@ -6168,25 +6708,25 @@ export const BIconXDiamondFill = /*#__PURE__*/ makeIcon( // eslint-disable-next-line export const BIconXOctagon = /*#__PURE__*/ makeIcon( 'XOctagon', - '' + '' ) // eslint-disable-next-line export const BIconXOctagonFill = /*#__PURE__*/ makeIcon( 'XOctagonFill', - '' + '' ) // eslint-disable-next-line export const BIconXSquare = /*#__PURE__*/ makeIcon( 'XSquare', - '' + '' ) // eslint-disable-next-line export const BIconXSquareFill = /*#__PURE__*/ makeIcon( 'XSquareFill', - '' + '' ) // eslint-disable-next-line diff --git a/src/icons/package.json b/src/icons/package.json index ee519e44374..3dd017bde70 100644 --- a/src/icons/package.json +++ b/src/icons/package.json @@ -4,7 +4,7 @@ "meta": { "title": "Bootstrap Icons", "version": "2.2.0", - "bootstrap-icons-version": "1.0.0-alpha5", + "bootstrap-icons-version": "1.0.0", "slug": "", "description": "Bootstrap Icons are designed to work with Bootstrap components, from form controls to navigation. Bootstrap Icons are SVGs, so they scale quickly and easily and can be styled with CSS.", "REMARK": "Note all bootstrap-icons are added to this file during the build phase. Avoid editing this file directly.", @@ -154,7 +154,7 @@ }, { "component": "BIconAlarm", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -202,7 +202,7 @@ }, { "component": "BIconAlarmFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -250,7 +250,7 @@ }, { "component": "BIconAlignBottom", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -298,7 +298,7 @@ }, { "component": "BIconAlignCenter", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -346,7 +346,7 @@ }, { "component": "BIconAlignEnd", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -394,7 +394,7 @@ }, { "component": "BIconAlignMiddle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -442,7 +442,7 @@ }, { "component": "BIconAlignStart", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -490,7 +490,7 @@ }, { "component": "BIconAlignTop", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -538,7 +538,7 @@ }, { "component": "BIconAlt", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -586,7 +586,7 @@ }, { "component": "BIconApp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -634,7 +634,7 @@ }, { "component": "BIconAppIndicator", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -682,7 +682,7 @@ }, { "component": "BIconArchive", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -730,7 +730,7 @@ }, { "component": "BIconArchiveFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -778,7 +778,7 @@ }, { "component": "BIconArrow90degDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -826,7 +826,7 @@ }, { "component": "BIconArrow90degLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -874,7 +874,7 @@ }, { "component": "BIconArrow90degRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -922,7 +922,7 @@ }, { "component": "BIconArrow90degUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -970,7 +970,7 @@ }, { "component": "BIconArrowBarDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1018,7 +1018,7 @@ }, { "component": "BIconArrowBarLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1066,7 +1066,7 @@ }, { "component": "BIconArrowBarRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1114,7 +1114,7 @@ }, { "component": "BIconArrowBarUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1162,7 +1162,7 @@ }, { "component": "BIconArrowClockwise", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1210,7 +1210,7 @@ }, { "component": "BIconArrowCounterclockwise", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1258,7 +1258,7 @@ }, { "component": "BIconArrowDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1306,7 +1306,7 @@ }, { "component": "BIconArrowDownCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1354,7 +1354,7 @@ }, { "component": "BIconArrowDownCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1402,7 +1402,7 @@ }, { "component": "BIconArrowDownLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1450,7 +1450,7 @@ }, { "component": "BIconArrowDownLeftCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1498,7 +1498,7 @@ }, { "component": "BIconArrowDownLeftCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1546,7 +1546,7 @@ }, { "component": "BIconArrowDownLeftSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1594,7 +1594,7 @@ }, { "component": "BIconArrowDownLeftSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1642,7 +1642,7 @@ }, { "component": "BIconArrowDownRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1690,7 +1690,7 @@ }, { "component": "BIconArrowDownRightCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1738,7 +1738,7 @@ }, { "component": "BIconArrowDownRightCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1786,7 +1786,7 @@ }, { "component": "BIconArrowDownRightSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1834,7 +1834,7 @@ }, { "component": "BIconArrowDownRightSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1882,7 +1882,7 @@ }, { "component": "BIconArrowDownShort", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1930,7 +1930,7 @@ }, { "component": "BIconArrowDownSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -1978,7 +1978,7 @@ }, { "component": "BIconArrowDownSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2026,7 +2026,7 @@ }, { "component": "BIconArrowDownUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2074,7 +2074,7 @@ }, { "component": "BIconArrowLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2122,7 +2122,7 @@ }, { "component": "BIconArrowLeftCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2170,7 +2170,7 @@ }, { "component": "BIconArrowLeftCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2218,7 +2218,7 @@ }, { "component": "BIconArrowLeftRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2266,7 +2266,7 @@ }, { "component": "BIconArrowLeftShort", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2314,7 +2314,7 @@ }, { "component": "BIconArrowLeftSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2362,7 +2362,7 @@ }, { "component": "BIconArrowLeftSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2410,7 +2410,7 @@ }, { "component": "BIconArrowRepeat", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2458,7 +2458,7 @@ }, { "component": "BIconArrowReturnLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2506,7 +2506,7 @@ }, { "component": "BIconArrowReturnRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2554,7 +2554,7 @@ }, { "component": "BIconArrowRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2602,7 +2602,7 @@ }, { "component": "BIconArrowRightCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2650,7 +2650,7 @@ }, { "component": "BIconArrowRightCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2698,7 +2698,7 @@ }, { "component": "BIconArrowRightShort", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2746,7 +2746,7 @@ }, { "component": "BIconArrowRightSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2794,7 +2794,7 @@ }, { "component": "BIconArrowRightSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2842,7 +2842,7 @@ }, { "component": "BIconArrowUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2890,7 +2890,7 @@ }, { "component": "BIconArrowUpCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2938,7 +2938,7 @@ }, { "component": "BIconArrowUpCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -2986,7 +2986,7 @@ }, { "component": "BIconArrowUpLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3034,7 +3034,7 @@ }, { "component": "BIconArrowUpLeftCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3082,7 +3082,7 @@ }, { "component": "BIconArrowUpLeftCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3130,7 +3130,7 @@ }, { "component": "BIconArrowUpLeftSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3178,7 +3178,7 @@ }, { "component": "BIconArrowUpLeftSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3226,7 +3226,7 @@ }, { "component": "BIconArrowUpRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3274,7 +3274,7 @@ }, { "component": "BIconArrowUpRightCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3322,7 +3322,7 @@ }, { "component": "BIconArrowUpRightCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3370,7 +3370,7 @@ }, { "component": "BIconArrowUpRightSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3418,7 +3418,7 @@ }, { "component": "BIconArrowUpRightSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3466,7 +3466,7 @@ }, { "component": "BIconArrowUpShort", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3514,7 +3514,7 @@ }, { "component": "BIconArrowUpSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3562,7 +3562,7 @@ }, { "component": "BIconArrowUpSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3610,7 +3610,7 @@ }, { "component": "BIconArrowsAngleContract", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3658,7 +3658,7 @@ }, { "component": "BIconArrowsAngleExpand", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3706,7 +3706,7 @@ }, { "component": "BIconArrowsCollapse", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3754,7 +3754,7 @@ }, { "component": "BIconArrowsExpand", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3802,7 +3802,7 @@ }, { "component": "BIconArrowsFullscreen", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3850,7 +3850,7 @@ }, { "component": "BIconArrowsMove", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3898,7 +3898,7 @@ }, { "component": "BIconAspectRatio", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3946,7 +3946,7 @@ }, { "component": "BIconAspectRatioFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -3994,7 +3994,7 @@ }, { "component": "BIconAsterisk", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4042,7 +4042,7 @@ }, { "component": "BIconAt", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4090,7 +4090,7 @@ }, { "component": "BIconAward", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4138,7 +4138,7 @@ }, { "component": "BIconAwardFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4186,7 +4186,7 @@ }, { "component": "BIconBack", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4234,7 +4234,7 @@ }, { "component": "BIconBackspace", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4282,7 +4282,7 @@ }, { "component": "BIconBackspaceFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4330,7 +4330,7 @@ }, { "component": "BIconBackspaceReverse", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4378,7 +4378,7 @@ }, { "component": "BIconBackspaceReverseFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4426,7 +4426,7 @@ }, { "component": "BIconBadge4k", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4474,7 +4474,7 @@ }, { "component": "BIconBadge4kFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4522,7 +4522,7 @@ }, { "component": "BIconBadge8k", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4570,7 +4570,7 @@ }, { "component": "BIconBadge8kFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4617,8 +4617,8 @@ ] }, { - "component": "BIconBadgeCc", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBadgeAd", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4665,8 +4665,8 @@ ] }, { - "component": "BIconBadgeCcFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBadgeAdFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4713,8 +4713,8 @@ ] }, { - "component": "BIconBadgeHd", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBadgeCc", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4761,8 +4761,8 @@ ] }, { - "component": "BIconBadgeHdFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBadgeCcFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4809,8 +4809,8 @@ ] }, { - "component": "BIconBadgeTm", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBadgeHd", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4857,8 +4857,8 @@ ] }, { - "component": "BIconBadgeTmFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBadgeHdFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4905,8 +4905,8 @@ ] }, { - "component": "BIconBadgeVo", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBadgeTm", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -4953,8 +4953,8 @@ ] }, { - "component": "BIconBadgeVoFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBadgeTmFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5001,8 +5001,8 @@ ] }, { - "component": "BIconBag", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBadgeVo", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5049,8 +5049,8 @@ ] }, { - "component": "BIconBagCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBadgeVoFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5097,8 +5097,8 @@ ] }, { - "component": "BIconBagDash", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBag", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5145,8 +5145,8 @@ ] }, { - "component": "BIconBagFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBagCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5193,8 +5193,8 @@ ] }, { - "component": "BIconBagPlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBagCheckFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5241,8 +5241,8 @@ ] }, { - "component": "BIconBarChart", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBagDash", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5289,8 +5289,8 @@ ] }, { - "component": "BIconBarChartFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBagDashFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5337,8 +5337,8 @@ ] }, { - "component": "BIconBarChartLine", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBagFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5385,8 +5385,8 @@ ] }, { - "component": "BIconBarChartLineFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBagPlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5433,8 +5433,8 @@ ] }, { - "component": "BIconBarChartSteps", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBagPlusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5481,8 +5481,8 @@ ] }, { - "component": "BIconBasket", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBagX", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5529,8 +5529,8 @@ ] }, { - "component": "BIconBasket2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBagXFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5577,8 +5577,8 @@ ] }, { - "component": "BIconBasket2Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBarChart", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5625,8 +5625,8 @@ ] }, { - "component": "BIconBasket3", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBarChartFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5673,8 +5673,8 @@ ] }, { - "component": "BIconBasket3Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBarChartLine", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5721,8 +5721,8 @@ ] }, { - "component": "BIconBasketFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBarChartLineFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5769,8 +5769,8 @@ ] }, { - "component": "BIconBattery", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBarChartSteps", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5817,8 +5817,8 @@ ] }, { - "component": "BIconBatteryCharging", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBasket", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5865,8 +5865,8 @@ ] }, { - "component": "BIconBatteryFull", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBasket2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5913,8 +5913,8 @@ ] }, { - "component": "BIconBatteryHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBasket2Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -5961,8 +5961,8 @@ ] }, { - "component": "BIconBell", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBasket3", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6009,8 +6009,8 @@ ] }, { - "component": "BIconBellFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBasket3Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6057,8 +6057,8 @@ ] }, { - "component": "BIconBezier", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBasketFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6105,8 +6105,8 @@ ] }, { - "component": "BIconBezier2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBattery", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6153,8 +6153,8 @@ ] }, { - "component": "BIconBicycle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBatteryCharging", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6201,8 +6201,8 @@ ] }, { - "component": "BIconBinoculars", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBatteryFull", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6249,8 +6249,8 @@ ] }, { - "component": "BIconBinocularsFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBatteryHalf", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6297,8 +6297,8 @@ ] }, { - "component": "BIconBlockquoteLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBell", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6345,8 +6345,8 @@ ] }, { - "component": "BIconBlockquoteRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBellFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6393,8 +6393,8 @@ ] }, { - "component": "BIconBook", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBezier", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6441,8 +6441,8 @@ ] }, { - "component": "BIconBookFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBezier2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6489,8 +6489,8 @@ ] }, { - "component": "BIconBookHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBicycle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6537,8 +6537,8 @@ ] }, { - "component": "BIconBookmark", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBinoculars", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6585,8 +6585,8 @@ ] }, { - "component": "BIconBookmarkCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBinocularsFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6633,8 +6633,8 @@ ] }, { - "component": "BIconBookmarkDash", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBlockquoteLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6681,8 +6681,8 @@ ] }, { - "component": "BIconBookmarkFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBlockquoteRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6729,8 +6729,8 @@ ] }, { - "component": "BIconBookmarkPlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBook", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6777,8 +6777,8 @@ ] }, { - "component": "BIconBookmarks", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6825,8 +6825,8 @@ ] }, { - "component": "BIconBookmarksFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookHalf", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6873,8 +6873,8 @@ ] }, { - "component": "BIconBookshelf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmark", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6921,8 +6921,8 @@ ] }, { - "component": "BIconBootstrap", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarkCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -6969,8 +6969,8 @@ ] }, { - "component": "BIconBootstrapFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarkCheckFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7017,8 +7017,8 @@ ] }, { - "component": "BIconBootstrapReboot", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarkDash", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7065,8 +7065,8 @@ ] }, { - "component": "BIconBorderStyle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarkDashFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7113,8 +7113,8 @@ ] }, { - "component": "BIconBorderWidth", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarkFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7161,8 +7161,8 @@ ] }, { - "component": "BIconBoundingBox", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarkHeart", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7209,8 +7209,8 @@ ] }, { - "component": "BIconBoundingBoxCircles", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarkHeartFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7257,8 +7257,8 @@ ] }, { - "component": "BIconBox", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarkPlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7305,8 +7305,8 @@ ] }, { - "component": "BIconBoxArrowDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarkPlusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7353,8 +7353,8 @@ ] }, { - "component": "BIconBoxArrowDownLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarkStar", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7401,8 +7401,8 @@ ] }, { - "component": "BIconBoxArrowDownRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarkStarFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7449,8 +7449,8 @@ ] }, { - "component": "BIconBoxArrowInDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarkX", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7497,8 +7497,8 @@ ] }, { - "component": "BIconBoxArrowInDownLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarkXFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7545,8 +7545,8 @@ ] }, { - "component": "BIconBoxArrowInDownRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarks", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7593,8 +7593,8 @@ ] }, { - "component": "BIconBoxArrowInLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookmarksFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7641,8 +7641,8 @@ ] }, { - "component": "BIconBoxArrowInRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBookshelf", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7689,8 +7689,8 @@ ] }, { - "component": "BIconBoxArrowInUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBootstrap", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7737,8 +7737,8 @@ ] }, { - "component": "BIconBoxArrowInUpLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBootstrapFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7785,8 +7785,8 @@ ] }, { - "component": "BIconBoxArrowInUpRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBootstrapReboot", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7833,8 +7833,8 @@ ] }, { - "component": "BIconBoxArrowLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBorderStyle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7881,8 +7881,8 @@ ] }, { - "component": "BIconBoxArrowRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBorderWidth", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7929,8 +7929,8 @@ ] }, { - "component": "BIconBoxArrowUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoundingBox", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -7977,8 +7977,8 @@ ] }, { - "component": "BIconBoxArrowUpLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoundingBoxCircles", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8025,8 +8025,8 @@ ] }, { - "component": "BIconBoxArrowUpRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBox", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8073,8 +8073,8 @@ ] }, { - "component": "BIconBoxSeam", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8121,8 +8121,8 @@ ] }, { - "component": "BIconBraces", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowDownLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8169,8 +8169,8 @@ ] }, { - "component": "BIconBricks", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowDownRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8217,8 +8217,8 @@ ] }, { - "component": "BIconBriefcase", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowInDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8265,8 +8265,8 @@ ] }, { - "component": "BIconBriefcaseFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowInDownLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8313,8 +8313,8 @@ ] }, { - "component": "BIconBrightnessAltHigh", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowInDownRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8361,8 +8361,8 @@ ] }, { - "component": "BIconBrightnessAltHighFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowInLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8409,8 +8409,8 @@ ] }, { - "component": "BIconBrightnessAltLow", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowInRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8457,8 +8457,8 @@ ] }, { - "component": "BIconBrightnessAltLowFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowInUp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8505,8 +8505,8 @@ ] }, { - "component": "BIconBrightnessHigh", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowInUpLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8553,8 +8553,8 @@ ] }, { - "component": "BIconBrightnessHighFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowInUpRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8601,8 +8601,8 @@ ] }, { - "component": "BIconBrightnessLow", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8649,8 +8649,8 @@ ] }, { - "component": "BIconBrightnessLowFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8697,8 +8697,8 @@ ] }, { - "component": "BIconBroadcast", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowUp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8745,8 +8745,8 @@ ] }, { - "component": "BIconBroadcastPin", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowUpLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8793,8 +8793,8 @@ ] }, { - "component": "BIconBrush", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxArrowUpRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8841,8 +8841,8 @@ ] }, { - "component": "BIconBucket", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBoxSeam", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8889,8 +8889,8 @@ ] }, { - "component": "BIconBucketFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBraces", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8937,8 +8937,8 @@ ] }, { - "component": "BIconBug", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBricks", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -8985,8 +8985,8 @@ ] }, { - "component": "BIconBugFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBriefcase", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9033,8 +9033,8 @@ ] }, { - "component": "BIconBuilding", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBriefcaseFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9081,8 +9081,8 @@ ] }, { - "component": "BIconBullseye", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBrightnessAltHigh", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9129,8 +9129,8 @@ ] }, { - "component": "BIconCalculator", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBrightnessAltHighFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9177,8 +9177,8 @@ ] }, { - "component": "BIconCalculatorFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBrightnessAltLow", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9225,8 +9225,8 @@ ] }, { - "component": "BIconCalendar", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBrightnessAltLowFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9273,8 +9273,8 @@ ] }, { - "component": "BIconCalendar2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBrightnessHigh", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9321,8 +9321,8 @@ ] }, { - "component": "BIconCalendar2Check", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBrightnessHighFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9369,8 +9369,8 @@ ] }, { - "component": "BIconCalendar2CheckFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBrightnessLow", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9417,8 +9417,8 @@ ] }, { - "component": "BIconCalendar2Date", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBrightnessLowFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9465,8 +9465,8 @@ ] }, { - "component": "BIconCalendar2DateFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBroadcast", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9513,8 +9513,8 @@ ] }, { - "component": "BIconCalendar2Day", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBroadcastPin", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9561,8 +9561,8 @@ ] }, { - "component": "BIconCalendar2DayFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBrush", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9609,8 +9609,8 @@ ] }, { - "component": "BIconCalendar2Event", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBrushFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9657,8 +9657,8 @@ ] }, { - "component": "BIconCalendar2EventFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBucket", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9705,8 +9705,8 @@ ] }, { - "component": "BIconCalendar2Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBucketFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9753,8 +9753,8 @@ ] }, { - "component": "BIconCalendar2Minus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBug", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9801,8 +9801,8 @@ ] }, { - "component": "BIconCalendar2MinusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBugFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9849,8 +9849,8 @@ ] }, { - "component": "BIconCalendar2Month", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBuilding", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9897,8 +9897,8 @@ ] }, { - "component": "BIconCalendar2MonthFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconBullseye", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9945,8 +9945,8 @@ ] }, { - "component": "BIconCalendar2Plus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalculator", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -9993,8 +9993,8 @@ ] }, { - "component": "BIconCalendar2PlusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalculatorFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10041,8 +10041,8 @@ ] }, { - "component": "BIconCalendar2Range", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10089,8 +10089,8 @@ ] }, { - "component": "BIconCalendar2RangeFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10137,8 +10137,8 @@ ] }, { - "component": "BIconCalendar2Week", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2Check", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10185,8 +10185,8 @@ ] }, { - "component": "BIconCalendar2WeekFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2CheckFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10233,8 +10233,8 @@ ] }, { - "component": "BIconCalendar3", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2Date", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10281,8 +10281,8 @@ ] }, { - "component": "BIconCalendar3Event", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2DateFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10329,8 +10329,8 @@ ] }, { - "component": "BIconCalendar3EventFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2Day", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10377,8 +10377,8 @@ ] }, { - "component": "BIconCalendar3Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2DayFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10425,8 +10425,8 @@ ] }, { - "component": "BIconCalendar3Range", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2Event", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10473,8 +10473,8 @@ ] }, { - "component": "BIconCalendar3RangeFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2EventFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10521,8 +10521,8 @@ ] }, { - "component": "BIconCalendar3Week", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10569,8 +10569,8 @@ ] }, { - "component": "BIconCalendar3WeekFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2Minus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10617,8 +10617,8 @@ ] }, { - "component": "BIconCalendar4", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2MinusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10665,8 +10665,8 @@ ] }, { - "component": "BIconCalendar4Event", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2Month", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10713,8 +10713,8 @@ ] }, { - "component": "BIconCalendar4Range", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2MonthFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10761,8 +10761,8 @@ ] }, { - "component": "BIconCalendar4Week", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2Plus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10809,8 +10809,8 @@ ] }, { - "component": "BIconCalendarCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2PlusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10857,8 +10857,8 @@ ] }, { - "component": "BIconCalendarCheckFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2Range", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10905,8 +10905,8 @@ ] }, { - "component": "BIconCalendarDate", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2RangeFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -10953,8 +10953,8 @@ ] }, { - "component": "BIconCalendarDateFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2Week", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11001,8 +11001,8 @@ ] }, { - "component": "BIconCalendarDay", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2WeekFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11049,8 +11049,8 @@ ] }, { - "component": "BIconCalendarDayFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2X", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11097,8 +11097,8 @@ ] }, { - "component": "BIconCalendarEvent", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar2XFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11145,8 +11145,8 @@ ] }, { - "component": "BIconCalendarEventFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar3", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11193,8 +11193,8 @@ ] }, { - "component": "BIconCalendarFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar3Event", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11241,8 +11241,8 @@ ] }, { - "component": "BIconCalendarMinus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar3EventFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11289,8 +11289,8 @@ ] }, { - "component": "BIconCalendarMinusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar3Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11337,8 +11337,8 @@ ] }, { - "component": "BIconCalendarMonth", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar3Range", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11385,8 +11385,8 @@ ] }, { - "component": "BIconCalendarMonthFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar3RangeFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11433,8 +11433,8 @@ ] }, { - "component": "BIconCalendarPlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar3Week", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11481,8 +11481,8 @@ ] }, { - "component": "BIconCalendarPlusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar3WeekFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11529,8 +11529,8 @@ ] }, { - "component": "BIconCalendarRange", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar4", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11577,8 +11577,8 @@ ] }, { - "component": "BIconCalendarRangeFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar4Event", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11625,8 +11625,8 @@ ] }, { - "component": "BIconCalendarWeek", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar4Range", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11673,8 +11673,8 @@ ] }, { - "component": "BIconCalendarWeekFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendar4Week", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11721,8 +11721,8 @@ ] }, { - "component": "BIconCamera", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11769,8 +11769,8 @@ ] }, { - "component": "BIconCamera2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarCheckFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11817,8 +11817,8 @@ ] }, { - "component": "BIconCameraFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarDate", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11865,8 +11865,8 @@ ] }, { - "component": "BIconCameraReels", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarDateFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11913,8 +11913,8 @@ ] }, { - "component": "BIconCameraReelsFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarDay", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -11961,8 +11961,8 @@ ] }, { - "component": "BIconCameraVideo", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarDayFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12009,8 +12009,8 @@ ] }, { - "component": "BIconCameraVideoFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarEvent", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12057,8 +12057,8 @@ ] }, { - "component": "BIconCameraVideoOff", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarEventFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12105,8 +12105,8 @@ ] }, { - "component": "BIconCameraVideoOffFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12153,8 +12153,8 @@ ] }, { - "component": "BIconCapslock", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarMinus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12201,8 +12201,8 @@ ] }, { - "component": "BIconCapslockFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarMinusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12249,8 +12249,8 @@ ] }, { - "component": "BIconCardChecklist", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarMonth", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12297,8 +12297,8 @@ ] }, { - "component": "BIconCardHeading", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarMonthFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12345,8 +12345,8 @@ ] }, { - "component": "BIconCardImage", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarPlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12393,8 +12393,8 @@ ] }, { - "component": "BIconCardList", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarPlusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12441,8 +12441,8 @@ ] }, { - "component": "BIconCardText", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarRange", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12489,8 +12489,8 @@ ] }, { - "component": "BIconCaretDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarRangeFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12537,8 +12537,8 @@ ] }, { - "component": "BIconCaretDownFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarWeek", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12585,8 +12585,8 @@ ] }, { - "component": "BIconCaretDownSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarWeekFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12633,8 +12633,8 @@ ] }, { - "component": "BIconCaretDownSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarX", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12681,8 +12681,8 @@ ] }, { - "component": "BIconCaretLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCalendarXFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12729,8 +12729,8 @@ ] }, { - "component": "BIconCaretLeftFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCamera", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12777,8 +12777,8 @@ ] }, { - "component": "BIconCaretLeftSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCamera2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12825,8 +12825,8 @@ ] }, { - "component": "BIconCaretLeftSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCameraFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12873,8 +12873,8 @@ ] }, { - "component": "BIconCaretRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCameraReels", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12921,8 +12921,8 @@ ] }, { - "component": "BIconCaretRightFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCameraReelsFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -12969,8 +12969,8 @@ ] }, { - "component": "BIconCaretRightSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCameraVideo", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13017,8 +13017,8 @@ ] }, { - "component": "BIconCaretRightSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCameraVideoFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13065,8 +13065,8 @@ ] }, { - "component": "BIconCaretUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCameraVideoOff", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13113,8 +13113,8 @@ ] }, { - "component": "BIconCaretUpFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCameraVideoOffFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13161,8 +13161,8 @@ ] }, { - "component": "BIconCaretUpSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCapslock", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13209,8 +13209,8 @@ ] }, { - "component": "BIconCaretUpSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCapslockFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13257,8 +13257,8 @@ ] }, { - "component": "BIconCart", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCardChecklist", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13305,8 +13305,8 @@ ] }, { - "component": "BIconCart2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCardHeading", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13353,8 +13353,8 @@ ] }, { - "component": "BIconCart3", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCardImage", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13401,8 +13401,8 @@ ] }, { - "component": "BIconCart4", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCardList", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13449,8 +13449,8 @@ ] }, { - "component": "BIconCartCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCardText", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13497,8 +13497,8 @@ ] }, { - "component": "BIconCartDash", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13545,8 +13545,8 @@ ] }, { - "component": "BIconCartFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretDownFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13593,8 +13593,8 @@ ] }, { - "component": "BIconCartPlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretDownSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13641,8 +13641,8 @@ ] }, { - "component": "BIconCash", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretDownSquareFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13689,8 +13689,8 @@ ] }, { - "component": "BIconCashStack", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13737,8 +13737,8 @@ ] }, { - "component": "BIconCast", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretLeftFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13785,8 +13785,8 @@ ] }, { - "component": "BIconChat", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretLeftSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13833,8 +13833,8 @@ ] }, { - "component": "BIconChatDots", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretLeftSquareFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13881,8 +13881,8 @@ ] }, { - "component": "BIconChatDotsFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13929,8 +13929,8 @@ ] }, { - "component": "BIconChatFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretRightFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -13977,8 +13977,8 @@ ] }, { - "component": "BIconChatLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretRightSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14025,8 +14025,8 @@ ] }, { - "component": "BIconChatLeftDots", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretRightSquareFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14073,8 +14073,8 @@ ] }, { - "component": "BIconChatLeftDotsFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretUp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14121,8 +14121,8 @@ ] }, { - "component": "BIconChatLeftFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretUpFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14169,8 +14169,8 @@ ] }, { - "component": "BIconChatLeftQuote", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretUpSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14217,8 +14217,8 @@ ] }, { - "component": "BIconChatLeftQuoteFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCaretUpSquareFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14265,8 +14265,8 @@ ] }, { - "component": "BIconChatLeftText", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCart", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14313,8 +14313,8 @@ ] }, { - "component": "BIconChatLeftTextFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCart2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14361,8 +14361,8 @@ ] }, { - "component": "BIconChatQuote", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCart3", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14409,8 +14409,8 @@ ] }, { - "component": "BIconChatQuoteFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCart4", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14457,8 +14457,8 @@ ] }, { - "component": "BIconChatRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCartCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14505,8 +14505,8 @@ ] }, { - "component": "BIconChatRightDots", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCartCheckFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14553,8 +14553,8 @@ ] }, { - "component": "BIconChatRightDotsFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCartDash", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14601,8 +14601,8 @@ ] }, { - "component": "BIconChatRightFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCartDashFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14649,8 +14649,8 @@ ] }, { - "component": "BIconChatRightQuote", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCartFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14697,8 +14697,8 @@ ] }, { - "component": "BIconChatRightQuoteFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCartPlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14745,8 +14745,8 @@ ] }, { - "component": "BIconChatRightText", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCartPlusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14793,8 +14793,8 @@ ] }, { - "component": "BIconChatRightTextFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCartX", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14841,8 +14841,8 @@ ] }, { - "component": "BIconChatSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCartXFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14889,8 +14889,8 @@ ] }, { - "component": "BIconChatSquareDots", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCash", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14937,8 +14937,8 @@ ] }, { - "component": "BIconChatSquareDotsFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCashStack", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -14985,8 +14985,8 @@ ] }, { - "component": "BIconChatSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCast", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15033,8 +15033,8 @@ ] }, { - "component": "BIconChatSquareQuote", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChat", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15081,8 +15081,8 @@ ] }, { - "component": "BIconChatSquareQuoteFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatDots", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15129,8 +15129,8 @@ ] }, { - "component": "BIconChatSquareText", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatDotsFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15177,8 +15177,8 @@ ] }, { - "component": "BIconChatSquareTextFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15225,8 +15225,8 @@ ] }, { - "component": "BIconChatText", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15273,8 +15273,8 @@ ] }, { - "component": "BIconChatTextFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatLeftDots", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15321,8 +15321,8 @@ ] }, { - "component": "BIconCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatLeftDotsFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15369,8 +15369,8 @@ ] }, { - "component": "BIconCheck2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatLeftFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15417,8 +15417,8 @@ ] }, { - "component": "BIconCheck2All", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatLeftQuote", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15465,8 +15465,8 @@ ] }, { - "component": "BIconCheck2Circle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatLeftQuoteFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15513,8 +15513,8 @@ ] }, { - "component": "BIconCheck2Square", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatLeftText", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15561,8 +15561,8 @@ ] }, { - "component": "BIconCheckAll", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatLeftTextFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15609,8 +15609,8 @@ ] }, { - "component": "BIconCheckCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatQuote", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15657,8 +15657,8 @@ ] }, { - "component": "BIconCheckCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatQuoteFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15705,8 +15705,8 @@ ] }, { - "component": "BIconCheckSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15753,8 +15753,8 @@ ] }, { - "component": "BIconCheckSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatRightDots", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15801,8 +15801,8 @@ ] }, { - "component": "BIconChevronBarContract", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatRightDotsFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15849,8 +15849,8 @@ ] }, { - "component": "BIconChevronBarDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatRightFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15897,8 +15897,8 @@ ] }, { - "component": "BIconChevronBarExpand", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatRightQuote", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15945,8 +15945,8 @@ ] }, { - "component": "BIconChevronBarLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatRightQuoteFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -15993,8 +15993,8 @@ ] }, { - "component": "BIconChevronBarRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatRightText", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16041,8 +16041,8 @@ ] }, { - "component": "BIconChevronBarUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatRightTextFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16089,8 +16089,8 @@ ] }, { - "component": "BIconChevronCompactDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16137,8 +16137,8 @@ ] }, { - "component": "BIconChevronCompactLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatSquareDots", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16185,8 +16185,8 @@ ] }, { - "component": "BIconChevronCompactRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatSquareDotsFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16233,8 +16233,8 @@ ] }, { - "component": "BIconChevronCompactUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatSquareFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16281,8 +16281,8 @@ ] }, { - "component": "BIconChevronContract", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatSquareQuote", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16329,8 +16329,8 @@ ] }, { - "component": "BIconChevronDoubleDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatSquareQuoteFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16377,8 +16377,8 @@ ] }, { - "component": "BIconChevronDoubleLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatSquareText", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16425,8 +16425,8 @@ ] }, { - "component": "BIconChevronDoubleRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatSquareTextFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16473,8 +16473,8 @@ ] }, { - "component": "BIconChevronDoubleUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatText", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16521,8 +16521,8 @@ ] }, { - "component": "BIconChevronDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChatTextFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16569,8 +16569,8 @@ ] }, { - "component": "BIconChevronExpand", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16617,8 +16617,8 @@ ] }, { - "component": "BIconChevronLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCheck2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16665,8 +16665,8 @@ ] }, { - "component": "BIconChevronRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCheck2All", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16713,8 +16713,8 @@ ] }, { - "component": "BIconChevronUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCheck2Circle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16761,8 +16761,8 @@ ] }, { - "component": "BIconCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCheck2Square", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16809,8 +16809,8 @@ ] }, { - "component": "BIconCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCheckAll", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16857,8 +16857,8 @@ ] }, { - "component": "BIconCircleHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCheckCircle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16905,8 +16905,8 @@ ] }, { - "component": "BIconCircleSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCheckCircleFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -16953,8 +16953,8 @@ ] }, { - "component": "BIconClipboard", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCheckSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17001,8 +17001,8 @@ ] }, { - "component": "BIconClipboardCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCheckSquareFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17049,8 +17049,8 @@ ] }, { - "component": "BIconClipboardData", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronBarContract", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17097,8 +17097,8 @@ ] }, { - "component": "BIconClipboardMinus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronBarDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17145,8 +17145,8 @@ ] }, { - "component": "BIconClipboardPlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronBarExpand", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17193,8 +17193,8 @@ ] }, { - "component": "BIconClock", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronBarLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17241,8 +17241,8 @@ ] }, { - "component": "BIconClockFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronBarRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17289,8 +17289,8 @@ ] }, { - "component": "BIconClockHistory", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronBarUp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17337,8 +17337,8 @@ ] }, { - "component": "BIconCloud", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronCompactDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17385,8 +17385,8 @@ ] }, { - "component": "BIconCloudArrowDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronCompactLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17433,8 +17433,8 @@ ] }, { - "component": "BIconCloudArrowDownFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronCompactRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17481,8 +17481,8 @@ ] }, { - "component": "BIconCloudArrowUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronCompactUp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17529,8 +17529,8 @@ ] }, { - "component": "BIconCloudArrowUpFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronContract", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17577,8 +17577,8 @@ ] }, { - "component": "BIconCloudCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronDoubleDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17625,8 +17625,8 @@ ] }, { - "component": "BIconCloudCheckFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronDoubleLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17673,8 +17673,8 @@ ] }, { - "component": "BIconCloudDownload", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronDoubleRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17721,8 +17721,8 @@ ] }, { - "component": "BIconCloudDownloadFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronDoubleUp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17769,8 +17769,8 @@ ] }, { - "component": "BIconCloudFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17817,8 +17817,8 @@ ] }, { - "component": "BIconCloudMinus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronExpand", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17865,8 +17865,8 @@ ] }, { - "component": "BIconCloudMinusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17913,8 +17913,8 @@ ] }, { - "component": "BIconCloudPlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -17961,8 +17961,8 @@ ] }, { - "component": "BIconCloudPlusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconChevronUp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18009,8 +18009,8 @@ ] }, { - "component": "BIconCloudSlash", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCircle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18057,8 +18057,8 @@ ] }, { - "component": "BIconCloudSlashFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCircleFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18105,8 +18105,8 @@ ] }, { - "component": "BIconCloudUpload", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCircleHalf", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18153,8 +18153,8 @@ ] }, { - "component": "BIconCloudUploadFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCircleSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18201,8 +18201,8 @@ ] }, { - "component": "BIconCode", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconClipboard", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18249,8 +18249,8 @@ ] }, { - "component": "BIconCodeSlash", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconClipboardCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18297,8 +18297,8 @@ ] }, { - "component": "BIconCodeSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconClipboardData", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18345,8 +18345,8 @@ ] }, { - "component": "BIconCollection", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconClipboardMinus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18393,8 +18393,8 @@ ] }, { - "component": "BIconCollectionFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconClipboardPlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18441,8 +18441,8 @@ ] }, { - "component": "BIconCollectionPlay", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconClipboardX", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18489,8 +18489,8 @@ ] }, { - "component": "BIconCollectionPlayFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconClock", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18537,8 +18537,8 @@ ] }, { - "component": "BIconColumns", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconClockFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18585,8 +18585,8 @@ ] }, { - "component": "BIconColumnsGap", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconClockHistory", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18633,8 +18633,8 @@ ] }, { - "component": "BIconCommand", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloud", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18681,8 +18681,8 @@ ] }, { - "component": "BIconCompass", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudArrowDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18729,8 +18729,8 @@ ] }, { - "component": "BIconCone", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudArrowDownFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18777,8 +18777,8 @@ ] }, { - "component": "BIconConeStriped", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudArrowUp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18825,8 +18825,8 @@ ] }, { - "component": "BIconController", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudArrowUpFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18873,8 +18873,8 @@ ] }, { - "component": "BIconCpu", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18921,8 +18921,8 @@ ] }, { - "component": "BIconCpuFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudCheckFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -18969,8 +18969,8 @@ ] }, { - "component": "BIconCreditCard", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudDownload", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19017,8 +19017,8 @@ ] }, { - "component": "BIconCreditCard2Back", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudDownloadFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19065,8 +19065,8 @@ ] }, { - "component": "BIconCreditCard2BackFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19113,8 +19113,8 @@ ] }, { - "component": "BIconCreditCard2Front", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudMinus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19161,8 +19161,8 @@ ] }, { - "component": "BIconCreditCard2FrontFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudMinusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19209,8 +19209,8 @@ ] }, { - "component": "BIconCreditCardFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudPlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19257,8 +19257,8 @@ ] }, { - "component": "BIconCrop", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudPlusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19305,8 +19305,8 @@ ] }, { - "component": "BIconCup", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudSlash", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19353,8 +19353,8 @@ ] }, { - "component": "BIconCupStraw", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudSlashFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19401,8 +19401,8 @@ ] }, { - "component": "BIconCursor", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudUpload", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19449,8 +19449,8 @@ ] }, { - "component": "BIconCursorFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCloudUploadFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19497,8 +19497,8 @@ ] }, { - "component": "BIconCursorText", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCode", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19545,8 +19545,8 @@ ] }, { - "component": "BIconDash", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCodeSlash", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19593,8 +19593,8 @@ ] }, { - "component": "BIconDashCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCodeSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19641,8 +19641,8 @@ ] }, { - "component": "BIconDashCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCollection", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19689,8 +19689,8 @@ ] }, { - "component": "BIconDashSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCollectionFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19737,8 +19737,8 @@ ] }, { - "component": "BIconDashSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCollectionPlay", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19785,8 +19785,8 @@ ] }, { - "component": "BIconDiagram2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCollectionPlayFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19833,8 +19833,8 @@ ] }, { - "component": "BIconDiagram2Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconColumns", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19881,8 +19881,8 @@ ] }, { - "component": "BIconDiagram3", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconColumnsGap", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19929,8 +19929,8 @@ ] }, { - "component": "BIconDiagram3Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCommand", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -19977,8 +19977,8 @@ ] }, { - "component": "BIconDiamond", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCompass", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20025,8 +20025,8 @@ ] }, { - "component": "BIconDiamondFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCompassFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20073,8 +20073,8 @@ ] }, { - "component": "BIconDiamondHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCone", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20121,8 +20121,8 @@ ] }, { - "component": "BIconDice1", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconConeStriped", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20169,8 +20169,8 @@ ] }, { - "component": "BIconDice1Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconController", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20217,8 +20217,8 @@ ] }, { - "component": "BIconDice2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCpu", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20265,8 +20265,8 @@ ] }, { - "component": "BIconDice2Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCpuFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20313,8 +20313,8 @@ ] }, { - "component": "BIconDice3", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCreditCard", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20361,8 +20361,8 @@ ] }, { - "component": "BIconDice3Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCreditCard2Back", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20409,8 +20409,8 @@ ] }, { - "component": "BIconDice4", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCreditCard2BackFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20457,8 +20457,8 @@ ] }, { - "component": "BIconDice4Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCreditCard2Front", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20505,8 +20505,8 @@ ] }, { - "component": "BIconDice5", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCreditCard2FrontFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20553,8 +20553,8 @@ ] }, { - "component": "BIconDice5Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCreditCardFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20601,8 +20601,8 @@ ] }, { - "component": "BIconDice6", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCrop", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20649,8 +20649,8 @@ ] }, { - "component": "BIconDice6Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCup", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20697,8 +20697,8 @@ ] }, { - "component": "BIconDisplay", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCupFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20745,8 +20745,8 @@ ] }, { - "component": "BIconDisplayFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCupStraw", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20793,8 +20793,8 @@ ] }, { - "component": "BIconDistributeHorizontal", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCursor", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20841,8 +20841,8 @@ ] }, { - "component": "BIconDistributeVertical", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCursorFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20889,8 +20889,8 @@ ] }, { - "component": "BIconDoorClosed", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconCursorText", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20937,8 +20937,8 @@ ] }, { - "component": "BIconDoorClosedFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDash", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -20985,8 +20985,8 @@ ] }, { - "component": "BIconDoorOpen", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDashCircle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21033,8 +21033,8 @@ ] }, { - "component": "BIconDoorOpenFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDashCircleFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21081,8 +21081,8 @@ ] }, { - "component": "BIconDot", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDashSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21129,8 +21129,8 @@ ] }, { - "component": "BIconDownload", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDashSquareFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21177,8 +21177,8 @@ ] }, { - "component": "BIconDroplet", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDiagram2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21225,8 +21225,8 @@ ] }, { - "component": "BIconDropletFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDiagram2Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21273,8 +21273,8 @@ ] }, { - "component": "BIconDropletHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDiagram3", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21321,8 +21321,8 @@ ] }, { - "component": "BIconEarbuds", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDiagram3Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21369,8 +21369,8 @@ ] }, { - "component": "BIconEasel", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDiamond", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21417,8 +21417,8 @@ ] }, { - "component": "BIconEaselFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDiamondFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21465,8 +21465,8 @@ ] }, { - "component": "BIconEgg", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDiamondHalf", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21513,8 +21513,8 @@ ] }, { - "component": "BIconEggFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDice1", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21561,8 +21561,8 @@ ] }, { - "component": "BIconEggFried", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDice1Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21609,8 +21609,8 @@ ] }, { - "component": "BIconEject", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDice2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21657,8 +21657,8 @@ ] }, { - "component": "BIconEjectFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDice2Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21705,8 +21705,8 @@ ] }, { - "component": "BIconEmojiAngry", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDice3", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21753,8 +21753,8 @@ ] }, { - "component": "BIconEmojiDizzy", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDice3Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21801,8 +21801,8 @@ ] }, { - "component": "BIconEmojiExpressionless", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDice4", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21849,8 +21849,8 @@ ] }, { - "component": "BIconEmojiFrown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDice4Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21897,8 +21897,8 @@ ] }, { - "component": "BIconEmojiLaughing", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDice5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21945,8 +21945,8 @@ ] }, { - "component": "BIconEmojiNeutral", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDice5Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -21993,8 +21993,8 @@ ] }, { - "component": "BIconEmojiSmile", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDice6", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22041,8 +22041,8 @@ ] }, { - "component": "BIconEmojiSmileUpsideDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDice6Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22089,8 +22089,8 @@ ] }, { - "component": "BIconEmojiSunglasses", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDisplay", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22137,8 +22137,8 @@ ] }, { - "component": "BIconEnvelope", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDisplayFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22185,8 +22185,8 @@ ] }, { - "component": "BIconEnvelopeFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDistributeHorizontal", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22233,8 +22233,8 @@ ] }, { - "component": "BIconEnvelopeOpen", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDistributeVertical", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22281,8 +22281,8 @@ ] }, { - "component": "BIconEnvelopeOpenFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDoorClosed", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22329,8 +22329,8 @@ ] }, { - "component": "BIconExclamation", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDoorClosedFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22377,8 +22377,8 @@ ] }, { - "component": "BIconExclamationCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDoorOpen", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22425,8 +22425,8 @@ ] }, { - "component": "BIconExclamationCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDoorOpenFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22473,8 +22473,8 @@ ] }, { - "component": "BIconExclamationDiamond", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDot", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22521,8 +22521,8 @@ ] }, { - "component": "BIconExclamationDiamondFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDownload", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22569,8 +22569,8 @@ ] }, { - "component": "BIconExclamationOctagon", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDroplet", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22617,8 +22617,8 @@ ] }, { - "component": "BIconExclamationOctagonFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDropletFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22665,8 +22665,8 @@ ] }, { - "component": "BIconExclamationSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconDropletHalf", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22713,8 +22713,8 @@ ] }, { - "component": "BIconExclamationSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEarbuds", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22761,8 +22761,8 @@ ] }, { - "component": "BIconExclamationTriangle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEasel", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22809,8 +22809,8 @@ ] }, { - "component": "BIconExclamationTriangleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEaselFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22857,8 +22857,8 @@ ] }, { - "component": "BIconExclude", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEgg", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22905,8 +22905,8 @@ ] }, { - "component": "BIconEye", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEggFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -22953,8 +22953,8 @@ ] }, { - "component": "BIconEyeFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEggFried", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23001,8 +23001,8 @@ ] }, { - "component": "BIconEyeSlash", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEject", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23049,8 +23049,8 @@ ] }, { - "component": "BIconEyeSlashFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEjectFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23097,8 +23097,8 @@ ] }, { - "component": "BIconEyeglasses", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEmojiAngry", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23145,8 +23145,8 @@ ] }, { - "component": "BIconFile", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEmojiDizzy", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23193,8 +23193,8 @@ ] }, { - "component": "BIconFileArrowDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEmojiExpressionless", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23241,8 +23241,8 @@ ] }, { - "component": "BIconFileArrowDownFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEmojiFrown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23289,8 +23289,8 @@ ] }, { - "component": "BIconFileArrowUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEmojiLaughing", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23337,8 +23337,8 @@ ] }, { - "component": "BIconFileArrowUpFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEmojiNeutral", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23385,8 +23385,8 @@ ] }, { - "component": "BIconFileBinary", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEmojiSmile", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23433,8 +23433,8 @@ ] }, { - "component": "BIconFileBinaryFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEmojiSmileUpsideDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23481,8 +23481,8 @@ ] }, { - "component": "BIconFileBreak", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEmojiSunglasses", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23529,8 +23529,8 @@ ] }, { - "component": "BIconFileBreakFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEnvelope", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23577,8 +23577,8 @@ ] }, { - "component": "BIconFileCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEnvelopeFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23625,8 +23625,8 @@ ] }, { - "component": "BIconFileCheckFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEnvelopeOpen", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23673,8 +23673,8 @@ ] }, { - "component": "BIconFileCode", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEnvelopeOpenFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23721,8 +23721,8 @@ ] }, { - "component": "BIconFileCodeFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconExclamation", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23769,8 +23769,8 @@ ] }, { - "component": "BIconFileDiff", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconExclamationCircle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23817,8 +23817,8 @@ ] }, { - "component": "BIconFileDiffFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconExclamationCircleFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23865,8 +23865,8 @@ ] }, { - "component": "BIconFileEarmark", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconExclamationDiamond", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23913,8 +23913,8 @@ ] }, { - "component": "BIconFileEarmarkArrowDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconExclamationDiamondFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -23961,8 +23961,8 @@ ] }, { - "component": "BIconFileEarmarkArrowUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconExclamationOctagon", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24009,8 +24009,8 @@ ] }, { - "component": "BIconFileEarmarkArrowUpFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconExclamationOctagonFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24057,8 +24057,8 @@ ] }, { - "component": "BIconFileEarmarkBinary", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconExclamationSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24105,8 +24105,8 @@ ] }, { - "component": "BIconFileEarmarkBinaryFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconExclamationSquareFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24153,8 +24153,8 @@ ] }, { - "component": "BIconFileEarmarkBreak", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconExclamationTriangle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24201,8 +24201,8 @@ ] }, { - "component": "BIconFileEarmarkBreakFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconExclamationTriangleFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24249,8 +24249,8 @@ ] }, { - "component": "BIconFileEarmarkCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconExclude", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24297,8 +24297,8 @@ ] }, { - "component": "BIconFileEarmarkCheckFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEye", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24345,8 +24345,8 @@ ] }, { - "component": "BIconFileEarmarkCode", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEyeFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24393,8 +24393,8 @@ ] }, { - "component": "BIconFileEarmarkCodeFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEyeSlash", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24441,8 +24441,8 @@ ] }, { - "component": "BIconFileEarmarkDiff", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEyeSlashFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24489,8 +24489,8 @@ ] }, { - "component": "BIconFileEarmarkDiffFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconEyeglasses", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24537,8 +24537,8 @@ ] }, { - "component": "BIconFileEarmarkFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFile", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24585,8 +24585,8 @@ ] }, { - "component": "BIconFileEarmarkMedical", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileArrowDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24633,8 +24633,8 @@ ] }, { - "component": "BIconFileEarmarkMedicalFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileArrowDownFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24681,8 +24681,8 @@ ] }, { - "component": "BIconFileEarmarkMinus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileArrowUp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24729,8 +24729,8 @@ ] }, { - "component": "BIconFileEarmarkMinusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileArrowUpFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24777,8 +24777,8 @@ ] }, { - "component": "BIconFileEarmarkPlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileBinary", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24825,8 +24825,8 @@ ] }, { - "component": "BIconFileEarmarkPlusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileBinaryFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24873,8 +24873,8 @@ ] }, { - "component": "BIconFileEarmarkRuled", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileBreak", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24921,8 +24921,8 @@ ] }, { - "component": "BIconFileEarmarkRuledFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileBreakFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -24969,8 +24969,8 @@ ] }, { - "component": "BIconFileEarmarkSpreadsheet", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25017,8 +25017,8 @@ ] }, { - "component": "BIconFileEarmarkSpreadsheetFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileCheckFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25065,8 +25065,8 @@ ] }, { - "component": "BIconFileEarmarkText", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileCode", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25113,8 +25113,8 @@ ] }, { - "component": "BIconFileEarmarkTextFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileCodeFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25161,8 +25161,8 @@ ] }, { - "component": "BIconFileEarmarkZip", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileDiff", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25209,8 +25209,8 @@ ] }, { - "component": "BIconFileEarmarkZipFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileDiffFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25257,8 +25257,8 @@ ] }, { - "component": "BIconFileFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmark", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25305,8 +25305,8 @@ ] }, { - "component": "BIconFileMedical", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkArrowDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25353,8 +25353,8 @@ ] }, { - "component": "BIconFileMedicalFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkArrowDownFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25401,8 +25401,8 @@ ] }, { - "component": "BIconFileMinus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkArrowUp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25449,8 +25449,8 @@ ] }, { - "component": "BIconFileMinusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkArrowUpFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25497,8 +25497,8 @@ ] }, { - "component": "BIconFileMusic", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkBinary", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25545,8 +25545,8 @@ ] }, { - "component": "BIconFileMusicFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkBinaryFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25593,8 +25593,8 @@ ] }, { - "component": "BIconFilePerson", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkBreak", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25641,8 +25641,8 @@ ] }, { - "component": "BIconFilePersonFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkBreakFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25689,8 +25689,8 @@ ] }, { - "component": "BIconFilePlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25737,8 +25737,8 @@ ] }, { - "component": "BIconFilePlusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkCheckFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25785,8 +25785,8 @@ ] }, { - "component": "BIconFilePost", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkCode", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25833,8 +25833,8 @@ ] }, { - "component": "BIconFilePostFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkCodeFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25881,8 +25881,8 @@ ] }, { - "component": "BIconFileRichtext", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkDiff", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25929,8 +25929,8 @@ ] }, { - "component": "BIconFileRichtextFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkDiffFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -25977,8 +25977,8 @@ ] }, { - "component": "BIconFileRuled", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkEasel", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26025,8 +26025,8 @@ ] }, { - "component": "BIconFileRuledFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkEaselFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26073,8 +26073,8 @@ ] }, { - "component": "BIconFileSpreadsheet", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26121,8 +26121,8 @@ ] }, { - "component": "BIconFileSpreadsheetFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkFont", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26169,8 +26169,8 @@ ] }, { - "component": "BIconFileText", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkFontFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26217,8 +26217,8 @@ ] }, { - "component": "BIconFileTextFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkImage", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26265,8 +26265,8 @@ ] }, { - "component": "BIconFileZip", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkImageFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26313,8 +26313,8 @@ ] }, { - "component": "BIconFileZipFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkLock", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26361,8 +26361,8 @@ ] }, { - "component": "BIconFiles", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkLock2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26409,8 +26409,8 @@ ] }, { - "component": "BIconFilesAlt", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkLock2Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26457,8 +26457,8 @@ ] }, { - "component": "BIconFilm", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkLockFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26505,8 +26505,8 @@ ] }, { - "component": "BIconFilter", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkMedical", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26553,8 +26553,8 @@ ] }, { - "component": "BIconFilterCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkMedicalFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26601,8 +26601,8 @@ ] }, { - "component": "BIconFilterCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkMinus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26649,8 +26649,8 @@ ] }, { - "component": "BIconFilterLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkMinusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26697,8 +26697,8 @@ ] }, { - "component": "BIconFilterRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkMusic", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26745,8 +26745,8 @@ ] }, { - "component": "BIconFilterSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkMusicFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26793,8 +26793,8 @@ ] }, { - "component": "BIconFilterSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkPerson", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26841,8 +26841,8 @@ ] }, { - "component": "BIconFlag", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkPersonFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26889,8 +26889,8 @@ ] }, { - "component": "BIconFlagFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkPlay", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26937,8 +26937,8 @@ ] }, { - "component": "BIconFlower1", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkPlayFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -26985,8 +26985,8 @@ ] }, { - "component": "BIconFlower2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkPlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27033,8 +27033,8 @@ ] }, { - "component": "BIconFlower3", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkPlusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27081,8 +27081,8 @@ ] }, { - "component": "BIconFolder", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkPost", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27129,8 +27129,8 @@ ] }, { - "component": "BIconFolder2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkPostFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27177,8 +27177,8 @@ ] }, { - "component": "BIconFolder2Open", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkRichtext", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27225,8 +27225,8 @@ ] }, { - "component": "BIconFolderCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkRichtextFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27273,8 +27273,8 @@ ] }, { - "component": "BIconFolderFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkRuled", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27321,8 +27321,8 @@ ] }, { - "component": "BIconFolderMinus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkRuledFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27369,8 +27369,8 @@ ] }, { - "component": "BIconFolderPlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkSlides", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27417,8 +27417,8 @@ ] }, { - "component": "BIconFolderSymlink", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkSlidesFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27465,8 +27465,8 @@ ] }, { - "component": "BIconFolderSymlinkFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkSpreadsheet", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27513,8 +27513,8 @@ ] }, { - "component": "BIconFonts", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkSpreadsheetFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27561,8 +27561,8 @@ ] }, { - "component": "BIconForward", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkText", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27609,8 +27609,8 @@ ] }, { - "component": "BIconForwardFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkTextFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27657,8 +27657,8 @@ ] }, { - "component": "BIconFront", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkX", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27705,8 +27705,8 @@ ] }, { - "component": "BIconFullscreen", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkXFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27753,8 +27753,8 @@ ] }, { - "component": "BIconFullscreenExit", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkZip", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27801,8 +27801,8 @@ ] }, { - "component": "BIconFunnel", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEarmarkZipFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27849,8 +27849,8 @@ ] }, { - "component": "BIconFunnelFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEasel", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27897,8 +27897,8 @@ ] }, { - "component": "BIconGear", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileEaselFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27945,8 +27945,8 @@ ] }, { - "component": "BIconGearFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -27993,8 +27993,8 @@ ] }, { - "component": "BIconGearWide", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileFont", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28041,8 +28041,8 @@ ] }, { - "component": "BIconGearWideConnected", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileFontFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28089,8 +28089,8 @@ ] }, { - "component": "BIconGem", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileImage", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28137,8 +28137,8 @@ ] }, { - "component": "BIconGeo", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileImageFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28185,8 +28185,8 @@ ] }, { - "component": "BIconGeoAlt", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileLock", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28233,8 +28233,8 @@ ] }, { - "component": "BIconGift", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileLock2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28281,8 +28281,8 @@ ] }, { - "component": "BIconGiftFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileLock2Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28329,8 +28329,8 @@ ] }, { - "component": "BIconGlobe", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileLockFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28377,8 +28377,8 @@ ] }, { - "component": "BIconGlobe2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileMedical", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28425,8 +28425,8 @@ ] }, { - "component": "BIconGraphDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileMedicalFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28473,8 +28473,8 @@ ] }, { - "component": "BIconGraphUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileMinus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28521,8 +28521,104 @@ ] }, { - "component": "BIconGrid", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileMinusFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconFileMusic", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconFileMusicFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28569,8 +28665,8 @@ ] }, { - "component": "BIconGrid1x2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilePerson", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28617,8 +28713,8 @@ ] }, { - "component": "BIconGrid1x2Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilePersonFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28665,8 +28761,8 @@ ] }, { - "component": "BIconGrid3x2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilePlay", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28713,8 +28809,8 @@ ] }, { - "component": "BIconGrid3x2Gap", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilePlayFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28761,8 +28857,8 @@ ] }, { - "component": "BIconGrid3x2GapFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilePlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28809,8 +28905,8 @@ ] }, { - "component": "BIconGrid3x3", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilePlusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28857,8 +28953,8 @@ ] }, { - "component": "BIconGrid3x3Gap", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilePost", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28905,8 +29001,8 @@ ] }, { - "component": "BIconGrid3x3GapFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilePostFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -28953,8 +29049,8 @@ ] }, { - "component": "BIconGridFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileRichtext", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29001,8 +29097,8 @@ ] }, { - "component": "BIconGripHorizontal", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileRichtextFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29049,8 +29145,8 @@ ] }, { - "component": "BIconGripVertical", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileRuled", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29097,8 +29193,8 @@ ] }, { - "component": "BIconHammer", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileRuledFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29145,8 +29241,8 @@ ] }, { - "component": "BIconHandIndex", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileSlides", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29193,8 +29289,8 @@ ] }, { - "component": "BIconHandIndexThumb", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileSlidesFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29241,8 +29337,8 @@ ] }, { - "component": "BIconHandThumbsDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileSpreadsheet", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29289,8 +29385,8 @@ ] }, { - "component": "BIconHandThumbsUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileSpreadsheetFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29337,8 +29433,8 @@ ] }, { - "component": "BIconHandbag", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileText", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29385,8 +29481,8 @@ ] }, { - "component": "BIconHandbagFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileTextFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29433,8 +29529,8 @@ ] }, { - "component": "BIconHash", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileX", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29481,8 +29577,8 @@ ] }, { - "component": "BIconHdd", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileXFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29529,8 +29625,8 @@ ] }, { - "component": "BIconHddFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileZip", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29577,8 +29673,8 @@ ] }, { - "component": "BIconHddNetwork", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFileZipFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29625,8 +29721,8 @@ ] }, { - "component": "BIconHddNetworkFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFiles", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29673,8 +29769,8 @@ ] }, { - "component": "BIconHddRack", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilesAlt", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29721,8 +29817,8 @@ ] }, { - "component": "BIconHddRackFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilm", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29769,8 +29865,8 @@ ] }, { - "component": "BIconHddStack", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilter", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29817,8 +29913,8 @@ ] }, { - "component": "BIconHddStackFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilterCircle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29865,8 +29961,8 @@ ] }, { - "component": "BIconHeadphones", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilterCircleFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29913,8 +30009,8 @@ ] }, { - "component": "BIconHeadset", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilterLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -29961,8 +30057,8 @@ ] }, { - "component": "BIconHeart", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilterRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30009,8 +30105,8 @@ ] }, { - "component": "BIconHeartFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilterSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30057,8 +30153,8 @@ ] }, { - "component": "BIconHeartHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFilterSquareFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30105,8 +30201,8 @@ ] }, { - "component": "BIconHeptagon", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFlag", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30153,8 +30249,8 @@ ] }, { - "component": "BIconHeptagonFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFlagFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30201,8 +30297,8 @@ ] }, { - "component": "BIconHeptagonHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFlower1", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30249,8 +30345,8 @@ ] }, { - "component": "BIconHexagon", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFlower2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30297,8 +30393,8 @@ ] }, { - "component": "BIconHexagonFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFlower3", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30345,8 +30441,8 @@ ] }, { - "component": "BIconHexagonHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFolder", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30393,8 +30489,8 @@ ] }, { - "component": "BIconHourglass", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFolder2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30441,8 +30537,8 @@ ] }, { - "component": "BIconHourglassBottom", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFolder2Open", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30489,8 +30585,8 @@ ] }, { - "component": "BIconHourglassSplit", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFolderCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30537,8 +30633,8 @@ ] }, { - "component": "BIconHourglassTop", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFolderFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30585,8 +30681,8 @@ ] }, { - "component": "BIconHouse", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFolderMinus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30633,8 +30729,8 @@ ] }, { - "component": "BIconHouseDoor", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFolderPlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30681,8 +30777,8 @@ ] }, { - "component": "BIconHouseDoorFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFolderSymlink", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30729,8 +30825,8 @@ ] }, { - "component": "BIconHouseFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFolderSymlinkFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30777,8 +30873,8 @@ ] }, { - "component": "BIconHr", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFolderX", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30825,8 +30921,8 @@ ] }, { - "component": "BIconImage", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFonts", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30873,8 +30969,8 @@ ] }, { - "component": "BIconImageAlt", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconForward", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30921,8 +31017,8 @@ ] }, { - "component": "BIconImageFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconForwardFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -30969,8 +31065,8 @@ ] }, { - "component": "BIconImages", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFront", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31017,8 +31113,8 @@ ] }, { - "component": "BIconInbox", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFullscreen", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31065,8 +31161,8 @@ ] }, { - "component": "BIconInboxFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFullscreenExit", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31113,8 +31209,8 @@ ] }, { - "component": "BIconInboxes", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFunnel", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31161,8 +31257,8 @@ ] }, { - "component": "BIconInboxesFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconFunnelFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31209,8 +31305,8 @@ ] }, { - "component": "BIconInfo", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGear", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31257,8 +31353,8 @@ ] }, { - "component": "BIconInfoCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGearFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31305,8 +31401,8 @@ ] }, { - "component": "BIconInfoCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGearWide", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31353,8 +31449,8 @@ ] }, { - "component": "BIconInfoSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGearWideConnected", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31401,8 +31497,8 @@ ] }, { - "component": "BIconInfoSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGem", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31449,8 +31545,8 @@ ] }, { - "component": "BIconInputCursor", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGeo", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31497,8 +31593,8 @@ ] }, { - "component": "BIconInputCursorText", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGeoAlt", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31545,8 +31641,8 @@ ] }, { - "component": "BIconIntersect", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGeoAltFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31593,8 +31689,8 @@ ] }, { - "component": "BIconJournal", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGeoFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31641,8 +31737,8 @@ ] }, { - "component": "BIconJournalAlbum", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGift", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31689,8 +31785,8 @@ ] }, { - "component": "BIconJournalArrowDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGiftFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31737,8 +31833,8 @@ ] }, { - "component": "BIconJournalArrowUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGlobe", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31785,8 +31881,8 @@ ] }, { - "component": "BIconJournalCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGlobe2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31833,8 +31929,8 @@ ] }, { - "component": "BIconJournalCode", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGraphDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31881,8 +31977,8 @@ ] }, { - "component": "BIconJournalMedical", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGraphUp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31929,8 +32025,8 @@ ] }, { - "component": "BIconJournalMinus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGrid", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -31977,8 +32073,8 @@ ] }, { - "component": "BIconJournalPlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGrid1x2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32025,8 +32121,8 @@ ] }, { - "component": "BIconJournalRichtext", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGrid1x2Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32073,8 +32169,8 @@ ] }, { - "component": "BIconJournalText", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGrid3x2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32121,8 +32217,8 @@ ] }, { - "component": "BIconJournals", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGrid3x2Gap", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32169,8 +32265,8 @@ ] }, { - "component": "BIconJoystick", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGrid3x2GapFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32217,8 +32313,8 @@ ] }, { - "component": "BIconJustify", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGrid3x3", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32265,8 +32361,8 @@ ] }, { - "component": "BIconJustifyLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGrid3x3Gap", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32313,8 +32409,8 @@ ] }, { - "component": "BIconJustifyRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGrid3x3GapFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32361,8 +32457,8 @@ ] }, { - "component": "BIconKanban", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGridFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32409,8 +32505,8 @@ ] }, { - "component": "BIconKanbanFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGripHorizontal", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32457,8 +32553,8 @@ ] }, { - "component": "BIconKey", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconGripVertical", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32505,8 +32601,8 @@ ] }, { - "component": "BIconKeyFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHammer", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32553,8 +32649,8 @@ ] }, { - "component": "BIconKeyboard", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHandIndex", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32601,8 +32697,8 @@ ] }, { - "component": "BIconKeyboardFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHandIndexThumb", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32649,8 +32745,8 @@ ] }, { - "component": "BIconLadder", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHandThumbsDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32697,8 +32793,8 @@ ] }, { - "component": "BIconLamp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHandThumbsUp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32745,8 +32841,8 @@ ] }, { - "component": "BIconLampFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHandbag", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32793,8 +32889,8 @@ ] }, { - "component": "BIconLaptop", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHandbagFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32841,8 +32937,8 @@ ] }, { - "component": "BIconLaptopFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHash", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32889,8 +32985,8 @@ ] }, { - "component": "BIconLayers", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHdd", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32937,8 +33033,8 @@ ] }, { - "component": "BIconLayersFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHddFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -32985,8 +33081,8 @@ ] }, { - "component": "BIconLayersHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHddNetwork", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33033,8 +33129,8 @@ ] }, { - "component": "BIconLayoutSidebar", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHddNetworkFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33081,8 +33177,8 @@ ] }, { - "component": "BIconLayoutSidebarInset", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHddRack", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33129,8 +33225,8 @@ ] }, { - "component": "BIconLayoutSidebarInsetReverse", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHddRackFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33177,8 +33273,8 @@ ] }, { - "component": "BIconLayoutSidebarReverse", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHddStack", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33225,8 +33321,8 @@ ] }, { - "component": "BIconLayoutSplit", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHddStackFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33273,8 +33369,8 @@ ] }, { - "component": "BIconLayoutTextSidebar", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHeadphones", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33321,8 +33417,8 @@ ] }, { - "component": "BIconLayoutTextSidebarReverse", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHeadset", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33369,8 +33465,8 @@ ] }, { - "component": "BIconLayoutTextWindow", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHeart", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33417,8 +33513,8 @@ ] }, { - "component": "BIconLayoutTextWindowReverse", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHeartFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33465,8 +33561,8 @@ ] }, { - "component": "BIconLayoutThreeColumns", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHeartHalf", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33513,8 +33609,8 @@ ] }, { - "component": "BIconLayoutWtf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHeptagon", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33561,8 +33657,8 @@ ] }, { - "component": "BIconLifePreserver", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHeptagonFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33609,8 +33705,8 @@ ] }, { - "component": "BIconLightning", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHeptagonHalf", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33657,8 +33753,8 @@ ] }, { - "component": "BIconLightningFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHexagon", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33705,8 +33801,8 @@ ] }, { - "component": "BIconLink", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHexagonFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33753,8 +33849,8 @@ ] }, { - "component": "BIconLink45deg", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHexagonHalf", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33801,8 +33897,8 @@ ] }, { - "component": "BIconList", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHourglass", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33849,8 +33945,8 @@ ] }, { - "component": "BIconListCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHourglassBottom", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33897,8 +33993,8 @@ ] }, { - "component": "BIconListNested", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHourglassSplit", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33945,8 +34041,8 @@ ] }, { - "component": "BIconListOl", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHourglassTop", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -33993,8 +34089,8 @@ ] }, { - "component": "BIconListStars", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHouse", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34041,8 +34137,8 @@ ] }, { - "component": "BIconListTask", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHouseDoor", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34089,8 +34185,8 @@ ] }, { - "component": "BIconListUl", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHouseDoorFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34137,8 +34233,8 @@ ] }, { - "component": "BIconLock", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHouseFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34185,8 +34281,8 @@ ] }, { - "component": "BIconLockFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconHr", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34233,8 +34329,8 @@ ] }, { - "component": "BIconMailbox", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconImage", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34281,8 +34377,8 @@ ] }, { - "component": "BIconMailbox2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconImageAlt", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34329,8 +34425,8 @@ ] }, { - "component": "BIconMap", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconImageFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34377,8 +34473,8 @@ ] }, { - "component": "BIconMarkdown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconImages", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34425,8 +34521,8 @@ ] }, { - "component": "BIconMarkdownFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconInbox", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34473,8 +34569,8 @@ ] }, { - "component": "BIconMenuApp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconInboxFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34521,8 +34617,8 @@ ] }, { - "component": "BIconMenuAppFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconInboxes", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34569,8 +34665,8 @@ ] }, { - "component": "BIconMenuButton", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconInboxesFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34617,8 +34713,8 @@ ] }, { - "component": "BIconMenuButtonFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconInfo", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34665,8 +34761,8 @@ ] }, { - "component": "BIconMenuButtonWide", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconInfoCircle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34713,8 +34809,8 @@ ] }, { - "component": "BIconMenuButtonWideFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconInfoCircleFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34761,8 +34857,8 @@ ] }, { - "component": "BIconMenuDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconInfoSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34809,8 +34905,8 @@ ] }, { - "component": "BIconMenuUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconInfoSquareFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34857,8 +34953,8 @@ ] }, { - "component": "BIconMic", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconInputCursor", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34905,8 +35001,8 @@ ] }, { - "component": "BIconMicFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconInputCursorText", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -34953,8 +35049,8 @@ ] }, { - "component": "BIconMicMute", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconIntersect", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35001,8 +35097,8 @@ ] }, { - "component": "BIconMicMuteFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJournal", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35049,8 +35145,8 @@ ] }, { - "component": "BIconMinecart", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJournalAlbum", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35097,8 +35193,8 @@ ] }, { - "component": "BIconMinecartLoaded", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJournalArrowDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35145,8 +35241,8 @@ ] }, { - "component": "BIconMoon", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJournalArrowUp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35193,8 +35289,8 @@ ] }, { - "component": "BIconMouse", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJournalCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35241,8 +35337,8 @@ ] }, { - "component": "BIconMouse2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJournalCode", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35289,8 +35385,8 @@ ] }, { - "component": "BIconMouse3", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJournalMedical", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35337,8 +35433,8 @@ ] }, { - "component": "BIconMusicNote", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJournalMinus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35385,8 +35481,8 @@ ] }, { - "component": "BIconMusicNoteBeamed", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJournalPlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35433,8 +35529,8 @@ ] }, { - "component": "BIconMusicNoteList", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJournalRichtext", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35481,8 +35577,8 @@ ] }, { - "component": "BIconMusicPlayer", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJournalText", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35529,8 +35625,8 @@ ] }, { - "component": "BIconMusicPlayerFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJournalX", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35577,8 +35673,8 @@ ] }, { - "component": "BIconNewspaper", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJournals", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35625,8 +35721,8 @@ ] }, { - "component": "BIconNodeMinus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJoystick", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35673,8 +35769,8 @@ ] }, { - "component": "BIconNodeMinusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJustify", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35721,8 +35817,8 @@ ] }, { - "component": "BIconNodePlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJustifyLeft", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35769,8 +35865,8 @@ ] }, { - "component": "BIconNodePlusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconJustifyRight", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35817,8 +35913,8 @@ ] }, { - "component": "BIconNut", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconKanban", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35865,8 +35961,8 @@ ] }, { - "component": "BIconNutFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconKanbanFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35913,8 +36009,8 @@ ] }, { - "component": "BIconOctagon", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconKey", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -35961,8 +36057,8 @@ ] }, { - "component": "BIconOctagonFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconKeyFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36009,8 +36105,8 @@ ] }, { - "component": "BIconOctagonHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconKeyboard", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36057,8 +36153,8 @@ ] }, { - "component": "BIconOption", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconKeyboardFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36105,8 +36201,8 @@ ] }, { - "component": "BIconOutlet", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLadder", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36153,8 +36249,8 @@ ] }, { - "component": "BIconPaperclip", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLamp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36201,8 +36297,8 @@ ] }, { - "component": "BIconParagraph", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLampFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36249,8 +36345,8 @@ ] }, { - "component": "BIconPatchCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLaptop", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36297,8 +36393,8 @@ ] }, { - "component": "BIconPatchCheckFll", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLaptopFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36345,8 +36441,8 @@ ] }, { - "component": "BIconPatchExclamation", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLayers", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36393,8 +36489,8 @@ ] }, { - "component": "BIconPatchExclamationFll", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLayersFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36441,8 +36537,8 @@ ] }, { - "component": "BIconPatchMinus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLayersHalf", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36489,8 +36585,8 @@ ] }, { - "component": "BIconPatchMinusFll", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLayoutSidebar", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36537,8 +36633,8 @@ ] }, { - "component": "BIconPatchPlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLayoutSidebarInset", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36585,8 +36681,8 @@ ] }, { - "component": "BIconPatchPlusFll", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLayoutSidebarInsetReverse", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36633,8 +36729,8 @@ ] }, { - "component": "BIconPatchQuestion", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLayoutSidebarReverse", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36681,8 +36777,8 @@ ] }, { - "component": "BIconPatchQuestionFll", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLayoutSplit", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36729,8 +36825,8 @@ ] }, { - "component": "BIconPause", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLayoutTextSidebar", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36777,8 +36873,8 @@ ] }, { - "component": "BIconPauseFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLayoutTextSidebarReverse", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36825,8 +36921,8 @@ ] }, { - "component": "BIconPeace", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLayoutTextWindow", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36873,8 +36969,8 @@ ] }, { - "component": "BIconPeaceFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLayoutTextWindowReverse", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36921,8 +37017,8 @@ ] }, { - "component": "BIconPen", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLayoutThreeColumns", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -36969,8 +37065,8 @@ ] }, { - "component": "BIconPencil", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLayoutWtf", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37017,8 +37113,8 @@ ] }, { - "component": "BIconPencilSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLifePreserver", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37065,8 +37161,8 @@ ] }, { - "component": "BIconPentagon", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLightning", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37113,8 +37209,8 @@ ] }, { - "component": "BIconPentagonFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLightningFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37161,8 +37257,8 @@ ] }, { - "component": "BIconPentagonHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLink", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37209,8 +37305,8 @@ ] }, { - "component": "BIconPeople", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLink45deg", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37257,8 +37353,8 @@ ] }, { - "component": "BIconPeopleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconList", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37305,8 +37401,8 @@ ] }, { - "component": "BIconPercent", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconListCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37353,8 +37449,8 @@ ] }, { - "component": "BIconPerson", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconListNested", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37401,8 +37497,8 @@ ] }, { - "component": "BIconPersonBadge", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconListOl", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37449,8 +37545,8 @@ ] }, { - "component": "BIconPersonBadgeFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconListStars", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37497,8 +37593,8 @@ ] }, { - "component": "BIconPersonBoundingBox", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconListTask", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37545,8 +37641,8 @@ ] }, { - "component": "BIconPersonCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconListUl", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37593,8 +37689,8 @@ ] }, { - "component": "BIconPersonCheckFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLock", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37641,8 +37737,8 @@ ] }, { - "component": "BIconPersonCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconLockFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37689,8 +37785,8 @@ ] }, { - "component": "BIconPersonDash", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMailbox", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37737,8 +37833,8 @@ ] }, { - "component": "BIconPersonDashFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMailbox2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37785,8 +37881,8 @@ ] }, { - "component": "BIconPersonFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMap", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37833,8 +37929,8 @@ ] }, { - "component": "BIconPersonLinesFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMapFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37881,8 +37977,8 @@ ] }, { - "component": "BIconPersonPlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMarkdown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37929,8 +38025,8 @@ ] }, { - "component": "BIconPersonPlusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMarkdownFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -37977,8 +38073,8 @@ ] }, { - "component": "BIconPersonSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMenuApp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38025,8 +38121,8 @@ ] }, { - "component": "BIconPhone", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMenuAppFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38073,8 +38169,8 @@ ] }, { - "component": "BIconPhoneFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMenuButton", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38121,8 +38217,8 @@ ] }, { - "component": "BIconPhoneLandscape", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMenuButtonFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38169,8 +38265,8 @@ ] }, { - "component": "BIconPhoneLandscapeFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMenuButtonWide", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38217,8 +38313,8 @@ ] }, { - "component": "BIconPieChart", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMenuButtonWideFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38265,8 +38361,8 @@ ] }, { - "component": "BIconPieChartFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMenuDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38313,8 +38409,8 @@ ] }, { - "component": "BIconPip", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMenuUp", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38361,8 +38457,8 @@ ] }, { - "component": "BIconPipFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMic", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38409,8 +38505,8 @@ ] }, { - "component": "BIconPlay", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMicFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38457,8 +38553,8 @@ ] }, { - "component": "BIconPlayFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMicMute", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38505,8 +38601,8 @@ ] }, { - "component": "BIconPlug", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMicMuteFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38553,8 +38649,8 @@ ] }, { - "component": "BIconPlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMinecart", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38601,8 +38697,8 @@ ] }, { - "component": "BIconPlusCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMinecartLoaded", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38649,8 +38745,8 @@ ] }, { - "component": "BIconPlusCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMoon", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38697,8 +38793,8 @@ ] }, { - "component": "BIconPlusSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMouse", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38745,8 +38841,8 @@ ] }, { - "component": "BIconPlusSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMouse2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38793,8 +38889,8 @@ ] }, { - "component": "BIconPower", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMouse3", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38841,8 +38937,8 @@ ] }, { - "component": "BIconPrinter", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMusicNote", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38889,8 +38985,8 @@ ] }, { - "component": "BIconPrinterFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMusicNoteBeamed", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38937,8 +39033,8 @@ ] }, { - "component": "BIconPuzzle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMusicNoteList", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -38985,8 +39081,8 @@ ] }, { - "component": "BIconPuzzleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMusicPlayer", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39033,8 +39129,8 @@ ] }, { - "component": "BIconQuestion", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconMusicPlayerFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39081,8 +39177,8 @@ ] }, { - "component": "BIconQuestionCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconNewspaper", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39129,8 +39225,8 @@ ] }, { - "component": "BIconQuestionCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconNodeMinus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39177,8 +39273,8 @@ ] }, { - "component": "BIconQuestionDiamond", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconNodeMinusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39225,8 +39321,8 @@ ] }, { - "component": "BIconQuestionDiamondFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconNodePlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39273,8 +39369,8 @@ ] }, { - "component": "BIconQuestionOctagon", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconNodePlusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39321,8 +39417,8 @@ ] }, { - "component": "BIconQuestionOctagonFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconNut", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39369,8 +39465,8 @@ ] }, { - "component": "BIconQuestionSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconNutFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39417,8 +39513,8 @@ ] }, { - "component": "BIconQuestionSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconOctagon", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39465,8 +39561,8 @@ ] }, { - "component": "BIconReceipt", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconOctagonFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39513,8 +39609,8 @@ ] }, { - "component": "BIconReceiptCutoff", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconOctagonHalf", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39561,8 +39657,8 @@ ] }, { - "component": "BIconReception0", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconOption", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39609,8 +39705,8 @@ ] }, { - "component": "BIconReception1", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconOutlet", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39657,8 +39753,8 @@ ] }, { - "component": "BIconReception2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPaperclip", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39705,8 +39801,8 @@ ] }, { - "component": "BIconReception3", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconParagraph", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39753,8 +39849,8 @@ ] }, { - "component": "BIconReception4", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPatchCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39801,8 +39897,8 @@ ] }, { - "component": "BIconReply", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPatchCheckFll", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39849,8 +39945,8 @@ ] }, { - "component": "BIconReplyAll", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPatchExclamation", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39897,8 +39993,8 @@ ] }, { - "component": "BIconReplyAllFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPatchExclamationFll", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39945,8 +40041,8 @@ ] }, { - "component": "BIconReplyFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPatchMinus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -39993,8 +40089,56 @@ ] }, { - "component": "BIconRss", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPatchMinusFll", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconPatchPlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40041,8 +40185,8 @@ ] }, { - "component": "BIconRssFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPatchPlusFll", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40089,8 +40233,8 @@ ] }, { - "component": "BIconScrewdriver", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPatchQuestion", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40137,8 +40281,8 @@ ] }, { - "component": "BIconSearch", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPatchQuestionFll", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40185,8 +40329,8 @@ ] }, { - "component": "BIconSegmentedNav", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPause", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40233,8 +40377,8 @@ ] }, { - "component": "BIconServer", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPauseFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40281,8 +40425,8 @@ ] }, { - "component": "BIconShare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPeace", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40329,8 +40473,8 @@ ] }, { - "component": "BIconShareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPeaceFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40377,8 +40521,8 @@ ] }, { - "component": "BIconShield", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPen", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40425,8 +40569,8 @@ ] }, { - "component": "BIconShieldCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPenFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40473,8 +40617,8 @@ ] }, { - "component": "BIconShieldExclamation", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPencil", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40521,8 +40665,8 @@ ] }, { - "component": "BIconShieldFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPencilFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40569,8 +40713,8 @@ ] }, { - "component": "BIconShieldFillCheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPencilSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40617,8 +40761,8 @@ ] }, { - "component": "BIconShieldFillExclamation", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPentagon", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40665,8 +40809,8 @@ ] }, { - "component": "BIconShieldFillMinus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPentagonFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40713,8 +40857,8 @@ ] }, { - "component": "BIconShieldFillPlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPentagonHalf", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40761,8 +40905,8 @@ ] }, { - "component": "BIconShieldLock", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPeople", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40809,8 +40953,8 @@ ] }, { - "component": "BIconShieldLockFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPeopleFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40857,8 +41001,8 @@ ] }, { - "component": "BIconShieldMinus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPercent", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40905,8 +41049,8 @@ ] }, { - "component": "BIconShieldPlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPerson", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -40953,8 +41097,8 @@ ] }, { - "component": "BIconShieldShaded", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonBadge", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41001,8 +41145,8 @@ ] }, { - "component": "BIconShieldSlash", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonBadgeFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41049,8 +41193,8 @@ ] }, { - "component": "BIconShieldSlashFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonBoundingBox", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41097,8 +41241,8 @@ ] }, { - "component": "BIconShift", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41145,8 +41289,8 @@ ] }, { - "component": "BIconShiftFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonCheckFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41193,8 +41337,8 @@ ] }, { - "component": "BIconShop", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonCircle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41241,8 +41385,8 @@ ] }, { - "component": "BIconShopWindow", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonDash", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41289,8 +41433,8 @@ ] }, { - "component": "BIconShuffle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonDashFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41337,8 +41481,8 @@ ] }, { - "component": "BIconSignpost", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41385,8 +41529,8 @@ ] }, { - "component": "BIconSignpost2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonLinesFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41433,8 +41577,8 @@ ] }, { - "component": "BIconSignpost2Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonPlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41481,8 +41625,8 @@ ] }, { - "component": "BIconSignpostFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonPlusFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41529,8 +41673,8 @@ ] }, { - "component": "BIconSignpostSplit", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41577,8 +41721,8 @@ ] }, { - "component": "BIconSignpostSplitFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonX", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41625,8 +41769,8 @@ ] }, { - "component": "BIconSim", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPersonXFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41673,8 +41817,8 @@ ] }, { - "component": "BIconSimFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPhone", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41721,8 +41865,8 @@ ] }, { - "component": "BIconSkipBackward", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPhoneFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41769,8 +41913,8 @@ ] }, { - "component": "BIconSkipBackwardFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPhoneLandscape", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41817,8 +41961,8 @@ ] }, { - "component": "BIconSkipEnd", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPhoneLandscapeFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41865,8 +42009,8 @@ ] }, { - "component": "BIconSkipEndFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPhoneVibrate", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41913,8 +42057,8 @@ ] }, { - "component": "BIconSkipForward", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPieChart", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -41961,8 +42105,8 @@ ] }, { - "component": "BIconSkipForwardFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPieChartFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42009,8 +42153,8 @@ ] }, { - "component": "BIconSkipStart", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPip", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42057,8 +42201,8 @@ ] }, { - "component": "BIconSkipStartFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPipFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42105,8 +42249,8 @@ ] }, { - "component": "BIconSlash", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPlay", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42153,8 +42297,8 @@ ] }, { - "component": "BIconSlashCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPlayFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42201,8 +42345,8 @@ ] }, { - "component": "BIconSlashCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPlug", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42249,8 +42393,8 @@ ] }, { - "component": "BIconSlashSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPlugFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42297,8 +42441,8 @@ ] }, { - "component": "BIconSlashSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42345,8 +42489,8 @@ ] }, { - "component": "BIconSliders", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPlusCircle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42393,8 +42537,8 @@ ] }, { - "component": "BIconSmartwatch", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPlusCircleFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42441,8 +42585,8 @@ ] }, { - "component": "BIconSortAlphaDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPlusSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42489,8 +42633,8 @@ ] }, { - "component": "BIconSortAlphaDownAlt", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPlusSquareFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42537,8 +42681,8 @@ ] }, { - "component": "BIconSortAlphaUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPower", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42585,8 +42729,8 @@ ] }, { - "component": "BIconSortAlphaUpAlt", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPrinter", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42633,8 +42777,8 @@ ] }, { - "component": "BIconSortDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPrinterFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42681,8 +42825,8 @@ ] }, { - "component": "BIconSortDownAlt", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPuzzle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42729,8 +42873,8 @@ ] }, { - "component": "BIconSortNumericDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconPuzzleFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42777,8 +42921,8 @@ ] }, { - "component": "BIconSortNumericDownAlt", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconQuestion", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42825,8 +42969,8 @@ ] }, { - "component": "BIconSortNumericUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconQuestionCircle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42873,8 +43017,8 @@ ] }, { - "component": "BIconSortNumericUpAlt", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconQuestionCircleFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42921,8 +43065,8 @@ ] }, { - "component": "BIconSortUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconQuestionDiamond", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -42969,8 +43113,8 @@ ] }, { - "component": "BIconSortUpAlt", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconQuestionDiamondFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43017,8 +43161,8 @@ ] }, { - "component": "BIconSoundwave", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconQuestionOctagon", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43065,8 +43209,8 @@ ] }, { - "component": "BIconSpeaker", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconQuestionOctagonFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43113,8 +43257,8 @@ ] }, { - "component": "BIconSpellcheck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconQuestionSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43161,8 +43305,8 @@ ] }, { - "component": "BIconSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconQuestionSquareFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43209,8 +43353,8 @@ ] }, { - "component": "BIconSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconReceipt", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43257,8 +43401,8 @@ ] }, { - "component": "BIconSquareHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconReceiptCutoff", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43305,8 +43449,8 @@ ] }, { - "component": "BIconStar", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconReception0", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43353,8 +43497,8 @@ ] }, { - "component": "BIconStarFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconReception1", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43401,8 +43545,8 @@ ] }, { - "component": "BIconStarHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconReception2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43449,8 +43593,8 @@ ] }, { - "component": "BIconStickies", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconReception3", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43497,8 +43641,8 @@ ] }, { - "component": "BIconStickiesFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconReception4", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43545,8 +43689,8 @@ ] }, { - "component": "BIconSticky", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconReply", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43593,8 +43737,8 @@ ] }, { - "component": "BIconStickyFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconReplyAll", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43641,8 +43785,8 @@ ] }, { - "component": "BIconStop", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconReplyAllFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43689,8 +43833,8 @@ ] }, { - "component": "BIconStopFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconReplyFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43737,8 +43881,8 @@ ] }, { - "component": "BIconStoplights", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconRss", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43785,8 +43929,8 @@ ] }, { - "component": "BIconStoplightsFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconRssFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43833,8 +43977,8 @@ ] }, { - "component": "BIconStopwatch", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconScissors", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43881,8 +44025,8 @@ ] }, { - "component": "BIconStopwatchFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconScrewdriver", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43929,8 +44073,8 @@ ] }, { - "component": "BIconSubtract", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSearch", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -43977,8 +44121,8 @@ ] }, { - "component": "BIconSuitClub", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSegmentedNav", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44025,8 +44169,8 @@ ] }, { - "component": "BIconSuitClubFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconServer", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44073,8 +44217,8 @@ ] }, { - "component": "BIconSuitDiamond", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44121,8 +44265,8 @@ ] }, { - "component": "BIconSuitDiamondFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShareFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44169,8 +44313,8 @@ ] }, { - "component": "BIconSuitHeart", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShield", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44217,8 +44361,8 @@ ] }, { - "component": "BIconSuitHeartFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44265,8 +44409,8 @@ ] }, { - "component": "BIconSuitSpade", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldExclamation", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44313,8 +44457,8 @@ ] }, { - "component": "BIconSuitSpadeFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44361,8 +44505,8 @@ ] }, { - "component": "BIconSun", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldFillCheck", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44409,8 +44553,8 @@ ] }, { - "component": "BIconSunglasses", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldFillExclamation", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44457,8 +44601,8 @@ ] }, { - "component": "BIconTable", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldFillMinus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44505,8 +44649,8 @@ ] }, { - "component": "BIconTablet", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldFillPlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44553,8 +44697,8 @@ ] }, { - "component": "BIconTabletFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldFillX", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44601,8 +44745,8 @@ ] }, { - "component": "BIconTabletLandscape", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldLock", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44649,8 +44793,8 @@ ] }, { - "component": "BIconTabletLandscapeFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldLockFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44697,8 +44841,8 @@ ] }, { - "component": "BIconTag", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldMinus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44745,8 +44889,8 @@ ] }, { - "component": "BIconTagFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldPlus", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44793,8 +44937,8 @@ ] }, { - "component": "BIconTags", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldShaded", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44841,8 +44985,8 @@ ] }, { - "component": "BIconTagsFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldSlash", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44889,8 +45033,8 @@ ] }, { - "component": "BIconTelephone", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldSlashFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44937,8 +45081,8 @@ ] }, { - "component": "BIconTelephoneFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShieldX", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -44985,8 +45129,8 @@ ] }, { - "component": "BIconTelephoneForward", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShift", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45033,8 +45177,8 @@ ] }, { - "component": "BIconTelephoneForwardFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShiftFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45081,8 +45225,8 @@ ] }, { - "component": "BIconTelephoneInbound", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShop", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45129,8 +45273,8 @@ ] }, { - "component": "BIconTelephoneInboundFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShopWindow", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45177,8 +45321,8 @@ ] }, { - "component": "BIconTelephoneMinus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconShuffle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45225,8 +45369,8 @@ ] }, { - "component": "BIconTelephoneMinusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSignpost", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45273,8 +45417,8 @@ ] }, { - "component": "BIconTelephoneOutbound", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSignpost2", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45321,8 +45465,8 @@ ] }, { - "component": "BIconTelephoneOutboundFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSignpost2Fill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45369,8 +45513,8 @@ ] }, { - "component": "BIconTelephonePlus", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSignpostFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45417,8 +45561,8 @@ ] }, { - "component": "BIconTelephonePlusFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSignpostSplit", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45465,8 +45609,8 @@ ] }, { - "component": "BIconTelephoneX", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSignpostSplitFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45513,8 +45657,8 @@ ] }, { - "component": "BIconTelephoneXFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSim", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45561,8 +45705,8 @@ ] }, { - "component": "BIconTerminal", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSimFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45609,8 +45753,8 @@ ] }, { - "component": "BIconTerminalFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSkipBackward", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45657,8 +45801,8 @@ ] }, { - "component": "BIconTextCenter", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSkipBackwardFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45705,8 +45849,8 @@ ] }, { - "component": "BIconTextIndentLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSkipEnd", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45753,8 +45897,8 @@ ] }, { - "component": "BIconTextIndentRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSkipEndFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45801,8 +45945,8 @@ ] }, { - "component": "BIconTextLeft", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSkipForward", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45849,8 +45993,8 @@ ] }, { - "component": "BIconTextRight", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSkipForwardFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45897,8 +46041,8 @@ ] }, { - "component": "BIconTextarea", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSkipStart", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45945,8 +46089,8 @@ ] }, { - "component": "BIconTextareaResize", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSkipStartFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -45993,8 +46137,8 @@ ] }, { - "component": "BIconTextareaT", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSlash", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46041,8 +46185,8 @@ ] }, { - "component": "BIconThermometer", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSlashCircle", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46089,8 +46233,8 @@ ] }, { - "component": "BIconThermometerHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSlashCircleFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46137,8 +46281,8 @@ ] }, { - "component": "BIconThreeDots", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSlashSquare", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46185,8 +46329,8 @@ ] }, { - "component": "BIconThreeDotsVertical", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSlashSquareFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46233,8 +46377,8 @@ ] }, { - "component": "BIconToggle2Off", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSliders", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46281,8 +46425,8 @@ ] }, { - "component": "BIconToggle2On", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSmartwatch", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46329,8 +46473,8 @@ ] }, { - "component": "BIconToggleOff", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSortAlphaDown", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46377,8 +46521,3992 @@ ] }, { - "component": "BIconToggleOn", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "component": "BIconSortAlphaDownAlt", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSortAlphaUp", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSortAlphaUpAlt", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSortDown", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSortDownAlt", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSortNumericDown", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSortNumericDownAlt", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSortNumericUp", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSortNumericUpAlt", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSortUp", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSortUpAlt", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSoundwave", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSpeaker", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSpeakerFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSpellcheck", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSquare", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSquareFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSquareHalf", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconStar", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconStarFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconStarHalf", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconStickies", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconStickiesFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSticky", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconStickyFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconStop", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconStopFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconStoplights", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconStoplightsFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconStopwatch", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconStopwatchFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSubtract", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSuitClub", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSuitClubFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSuitDiamond", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSuitDiamondFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSuitHeart", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSuitHeartFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSuitSpade", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSuitSpadeFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSun", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconSunglasses", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTable", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTablet", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTabletFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTabletLandscape", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTabletLandscapeFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTag", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTagFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTags", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTagsFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTelephone", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTelephoneFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTelephoneForward", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTelephoneForwardFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTelephoneInbound", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTelephoneInboundFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTelephoneMinus", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTelephoneMinusFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTelephoneOutbound", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTelephoneOutboundFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTelephonePlus", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTelephonePlusFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTelephoneX", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTelephoneXFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTerminal", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTerminalFill", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTextCenter", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTextIndentLeft", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTextIndentRight", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTextLeft", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTextParagraph", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTextRight", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTextarea", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTextareaResize", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTextareaT", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconThermometer", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconThermometerHalf", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconThreeDots", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconThreeDotsVertical", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconToggle2Off", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconToggle2On", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconToggleOff", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconToggleOn", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46426,7 +50554,7 @@ }, { "component": "BIconToggles", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46474,7 +50602,7 @@ }, { "component": "BIconToggles2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46522,7 +50650,7 @@ }, { "component": "BIconTools", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46570,7 +50698,7 @@ }, { "component": "BIconTrash", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46618,7 +50746,7 @@ }, { "component": "BIconTrash2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46666,7 +50794,7 @@ }, { "component": "BIconTrash2Fill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46714,7 +50842,7 @@ }, { "component": "BIconTrashFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46762,7 +50890,7 @@ }, { "component": "BIconTree", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46810,7 +50938,7 @@ }, { "component": "BIconTreeFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46858,7 +50986,7 @@ }, { "component": "BIconTriangle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46906,7 +51034,7 @@ }, { "component": "BIconTriangleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -46954,7 +51082,7 @@ }, { "component": "BIconTriangleHalf", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47002,7 +51130,55 @@ }, { "component": "BIconTrophy", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconTrophyFill", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47050,7 +51226,7 @@ }, { "component": "BIconTruck", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47098,7 +51274,7 @@ }, { "component": "BIconTruckFlatbed", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47146,7 +51322,7 @@ }, { "component": "BIconTv", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47194,7 +51370,7 @@ }, { "component": "BIconTvFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47242,7 +51418,7 @@ }, { "component": "BIconType", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47290,7 +51466,7 @@ }, { "component": "BIconTypeBold", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47338,7 +51514,7 @@ }, { "component": "BIconTypeH1", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47386,7 +51562,7 @@ }, { "component": "BIconTypeH2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47434,7 +51610,7 @@ }, { "component": "BIconTypeH3", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47482,7 +51658,7 @@ }, { "component": "BIconTypeItalic", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47530,7 +51706,7 @@ }, { "component": "BIconTypeStrikethrough", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47578,7 +51754,7 @@ }, { "component": "BIconTypeUnderline", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47626,7 +51802,55 @@ }, { "component": "BIconUiChecks", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconUiChecksGrid", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47674,7 +51898,55 @@ }, { "component": "BIconUiRadios", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconUiRadiosGrid", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47722,7 +51994,7 @@ }, { "component": "BIconUnion", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47770,7 +52042,7 @@ }, { "component": "BIconUnlock", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47818,7 +52090,7 @@ }, { "component": "BIconUnlockFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47866,7 +52138,7 @@ }, { "component": "BIconUpc", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47914,7 +52186,7 @@ }, { "component": "BIconUpcScan", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -47962,7 +52234,55 @@ }, { "component": "BIconUpload", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", + "props": [ + { + "prop": "variant", + "description": "Contextual color variant. By default the icon inherits the current text color" + }, + { + "prop": "fontScale", + "description": "Scale the icons current font size" + }, + { + "prop": "scale", + "description": "Scales the icon's SVG, without increasing the font size" + }, + { + "prop": "rotate", + "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise" + }, + { + "prop": "flipH", + "description": "Flips the icon horizontally" + }, + { + "prop": "flipV", + "description": "Flips the icon vertically" + }, + { + "prop": "shiftH", + "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units" + }, + { + "prop": "shiftV", + "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units" + }, + { + "prop": "stacked", + "version": "2.3.0", + "description": "Set this prop to true when placing inside a BIconstack component" + }, + { + "prop": "animation", + "version": "2.7.0", + "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'" + } + ] + }, + { + "component": "BIconVectorPen", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48010,7 +52330,7 @@ }, { "component": "BIconViewList", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48058,7 +52378,7 @@ }, { "component": "BIconViewStacked", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48106,7 +52426,7 @@ }, { "component": "BIconVoicemail", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48154,7 +52474,7 @@ }, { "component": "BIconVolumeDown", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48202,7 +52522,7 @@ }, { "component": "BIconVolumeDownFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48250,7 +52570,7 @@ }, { "component": "BIconVolumeMute", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48298,7 +52618,7 @@ }, { "component": "BIconVolumeMuteFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48346,7 +52666,7 @@ }, { "component": "BIconVolumeOff", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48394,7 +52714,7 @@ }, { "component": "BIconVolumeOffFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48442,7 +52762,7 @@ }, { "component": "BIconVolumeUp", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48490,7 +52810,7 @@ }, { "component": "BIconVolumeUpFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48538,7 +52858,7 @@ }, { "component": "BIconVr", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48586,7 +52906,7 @@ }, { "component": "BIconWallet", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48634,7 +52954,7 @@ }, { "component": "BIconWallet2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48682,7 +53002,7 @@ }, { "component": "BIconWalletFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48730,7 +53050,7 @@ }, { "component": "BIconWatch", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48778,7 +53098,7 @@ }, { "component": "BIconWifi", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48826,7 +53146,7 @@ }, { "component": "BIconWifi1", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48874,7 +53194,7 @@ }, { "component": "BIconWifi2", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48922,7 +53242,7 @@ }, { "component": "BIconWifiOff", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -48970,7 +53290,7 @@ }, { "component": "BIconWindow", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -49018,7 +53338,7 @@ }, { "component": "BIconWrench", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -49066,7 +53386,7 @@ }, { "component": "BIconX", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -49114,7 +53434,7 @@ }, { "component": "BIconXCircle", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -49162,7 +53482,7 @@ }, { "component": "BIconXCircleFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -49210,7 +53530,7 @@ }, { "component": "BIconXDiamond", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -49258,7 +53578,7 @@ }, { "component": "BIconXDiamondFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -49306,7 +53626,7 @@ }, { "component": "BIconXOctagon", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -49354,7 +53674,7 @@ }, { "component": "BIconXOctagonFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -49402,7 +53722,7 @@ }, { "component": "BIconXSquare", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -49450,7 +53770,7 @@ }, { "component": "BIconXSquareFill", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -49498,7 +53818,7 @@ }, { "component": "BIconZoomIn", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", @@ -49546,7 +53866,7 @@ }, { "component": "BIconZoomOut", - "auto-gen": "bootstrap-icons 1.0.0-alpha5", + "auto-gen": "bootstrap-icons 1.0.0", "props": [ { "prop": "variant", diff --git a/src/icons/plugin.js b/src/icons/plugin.js index 936b0e59185..610f59dfa12 100644 --- a/src/icons/plugin.js +++ b/src/icons/plugin.js @@ -1,7 +1,7 @@ // --- BEGIN AUTO-GENERATED FILE --- // -// @IconsVersion: 1.0.0-alpha5 -// @Generated: 2020-07-15T16:57:43.043Z +// @IconsVersion: 1.0.0 +// @Generated: 2020-09-01T12:06:08.751Z // // This file is generated on each build. Do not edit this file! @@ -110,6 +110,8 @@ import { BIconBadge4kFill, BIconBadge8k, BIconBadge8kFill, + BIconBadgeAd, + BIconBadgeAdFill, BIconBadgeCc, BIconBadgeCcFill, BIconBadgeHd, @@ -120,9 +122,14 @@ import { BIconBadgeVoFill, BIconBag, BIconBagCheck, + BIconBagCheckFill, BIconBagDash, + BIconBagDashFill, BIconBagFill, BIconBagPlus, + BIconBagPlusFill, + BIconBagX, + BIconBagXFill, BIconBarChart, BIconBarChartFill, BIconBarChartLine, @@ -152,9 +159,18 @@ import { BIconBookHalf, BIconBookmark, BIconBookmarkCheck, + BIconBookmarkCheckFill, BIconBookmarkDash, + BIconBookmarkDashFill, BIconBookmarkFill, + BIconBookmarkHeart, + BIconBookmarkHeartFill, BIconBookmarkPlus, + BIconBookmarkPlusFill, + BIconBookmarkStar, + BIconBookmarkStarFill, + BIconBookmarkX, + BIconBookmarkXFill, BIconBookmarks, BIconBookmarksFill, BIconBookshelf, @@ -198,6 +214,7 @@ import { BIconBroadcast, BIconBroadcastPin, BIconBrush, + BIconBrushFill, BIconBucket, BIconBucketFill, BIconBug, @@ -227,6 +244,8 @@ import { BIconCalendar2RangeFill, BIconCalendar2Week, BIconCalendar2WeekFill, + BIconCalendar2X, + BIconCalendar2XFill, BIconCalendar3, BIconCalendar3Event, BIconCalendar3EventFill, @@ -258,6 +277,8 @@ import { BIconCalendarRangeFill, BIconCalendarWeek, BIconCalendarWeekFill, + BIconCalendarX, + BIconCalendarXFill, BIconCamera, BIconCamera2, BIconCameraFill, @@ -295,9 +316,14 @@ import { BIconCart3, BIconCart4, BIconCartCheck, + BIconCartCheckFill, BIconCartDash, + BIconCartDashFill, BIconCartFill, BIconCartPlus, + BIconCartPlusFill, + BIconCartX, + BIconCartXFill, BIconCash, BIconCashStack, BIconCast, @@ -372,6 +398,7 @@ import { BIconClipboardData, BIconClipboardMinus, BIconClipboardPlus, + BIconClipboardX, BIconClock, BIconClockFill, BIconClockHistory, @@ -404,6 +431,7 @@ import { BIconColumnsGap, BIconCommand, BIconCompass, + BIconCompassFill, BIconCone, BIconConeStriped, BIconController, @@ -417,6 +445,7 @@ import { BIconCreditCardFill, BIconCrop, BIconCup, + BIconCupFill, BIconCupStraw, BIconCursor, BIconCursorFill, @@ -513,6 +542,7 @@ import { BIconFileDiffFill, BIconFileEarmark, BIconFileEarmarkArrowDown, + BIconFileEarmarkArrowDownFill, BIconFileEarmarkArrowUp, BIconFileEarmarkArrowUpFill, BIconFileEarmarkBinary, @@ -525,22 +555,56 @@ import { BIconFileEarmarkCodeFill, BIconFileEarmarkDiff, BIconFileEarmarkDiffFill, + BIconFileEarmarkEasel, + BIconFileEarmarkEaselFill, BIconFileEarmarkFill, + BIconFileEarmarkFont, + BIconFileEarmarkFontFill, + BIconFileEarmarkImage, + BIconFileEarmarkImageFill, + BIconFileEarmarkLock, + BIconFileEarmarkLock2, + BIconFileEarmarkLock2Fill, + BIconFileEarmarkLockFill, BIconFileEarmarkMedical, BIconFileEarmarkMedicalFill, BIconFileEarmarkMinus, BIconFileEarmarkMinusFill, + BIconFileEarmarkMusic, + BIconFileEarmarkMusicFill, + BIconFileEarmarkPerson, + BIconFileEarmarkPersonFill, + BIconFileEarmarkPlay, + BIconFileEarmarkPlayFill, BIconFileEarmarkPlus, BIconFileEarmarkPlusFill, + BIconFileEarmarkPost, + BIconFileEarmarkPostFill, + BIconFileEarmarkRichtext, + BIconFileEarmarkRichtextFill, BIconFileEarmarkRuled, BIconFileEarmarkRuledFill, + BIconFileEarmarkSlides, + BIconFileEarmarkSlidesFill, BIconFileEarmarkSpreadsheet, BIconFileEarmarkSpreadsheetFill, BIconFileEarmarkText, BIconFileEarmarkTextFill, + BIconFileEarmarkX, + BIconFileEarmarkXFill, BIconFileEarmarkZip, BIconFileEarmarkZipFill, + BIconFileEasel, + BIconFileEaselFill, BIconFileFill, + BIconFileFont, + BIconFileFontFill, + BIconFileImage, + BIconFileImageFill, + BIconFileLock, + BIconFileLock2, + BIconFileLock2Fill, + BIconFileLockFill, BIconFileMedical, BIconFileMedicalFill, BIconFileMinus, @@ -549,6 +613,8 @@ import { BIconFileMusicFill, BIconFilePerson, BIconFilePersonFill, + BIconFilePlay, + BIconFilePlayFill, BIconFilePlus, BIconFilePlusFill, BIconFilePost, @@ -557,10 +623,14 @@ import { BIconFileRichtextFill, BIconFileRuled, BIconFileRuledFill, + BIconFileSlides, + BIconFileSlidesFill, BIconFileSpreadsheet, BIconFileSpreadsheetFill, BIconFileText, BIconFileTextFill, + BIconFileX, + BIconFileXFill, BIconFileZip, BIconFileZipFill, BIconFiles, @@ -587,6 +657,7 @@ import { BIconFolderPlus, BIconFolderSymlink, BIconFolderSymlinkFill, + BIconFolderX, BIconFonts, BIconForward, BIconForwardFill, @@ -602,6 +673,8 @@ import { BIconGem, BIconGeo, BIconGeoAlt, + BIconGeoAltFill, + BIconGeoFill, BIconGift, BIconGiftFill, BIconGlobe, @@ -683,6 +756,7 @@ import { BIconJournalPlus, BIconJournalRichtext, BIconJournalText, + BIconJournalX, BIconJournals, BIconJoystick, BIconJustify, @@ -730,6 +804,7 @@ import { BIconMailbox, BIconMailbox2, BIconMap, + BIconMapFill, BIconMarkdown, BIconMarkdownFill, BIconMenuApp, @@ -784,7 +859,9 @@ import { BIconPeace, BIconPeaceFill, BIconPen, + BIconPenFill, BIconPencil, + BIconPencilFill, BIconPencilSquare, BIconPentagon, BIconPentagonFill, @@ -806,10 +883,13 @@ import { BIconPersonPlus, BIconPersonPlusFill, BIconPersonSquare, + BIconPersonX, + BIconPersonXFill, BIconPhone, BIconPhoneFill, BIconPhoneLandscape, BIconPhoneLandscapeFill, + BIconPhoneVibrate, BIconPieChart, BIconPieChartFill, BIconPip, @@ -817,6 +897,7 @@ import { BIconPlay, BIconPlayFill, BIconPlug, + BIconPlugFill, BIconPlus, BIconPlusCircle, BIconPlusCircleFill, @@ -849,6 +930,7 @@ import { BIconReplyFill, BIconRss, BIconRssFill, + BIconScissors, BIconScrewdriver, BIconSearch, BIconSegmentedNav, @@ -863,6 +945,7 @@ import { BIconShieldFillExclamation, BIconShieldFillMinus, BIconShieldFillPlus, + BIconShieldFillX, BIconShieldLock, BIconShieldLockFill, BIconShieldMinus, @@ -870,6 +953,7 @@ import { BIconShieldShaded, BIconShieldSlash, BIconShieldSlashFill, + BIconShieldX, BIconShift, BIconShiftFill, BIconShop, @@ -912,6 +996,7 @@ import { BIconSortUpAlt, BIconSoundwave, BIconSpeaker, + BIconSpeakerFill, BIconSpellcheck, BIconSquare, BIconSquareFill, @@ -969,6 +1054,7 @@ import { BIconTextIndentLeft, BIconTextIndentRight, BIconTextLeft, + BIconTextParagraph, BIconTextRight, BIconTextarea, BIconTextareaResize, @@ -994,6 +1080,7 @@ import { BIconTriangleFill, BIconTriangleHalf, BIconTrophy, + BIconTrophyFill, BIconTruck, BIconTruckFlatbed, BIconTv, @@ -1007,13 +1094,16 @@ import { BIconTypeStrikethrough, BIconTypeUnderline, BIconUiChecks, + BIconUiChecksGrid, BIconUiRadios, + BIconUiRadiosGrid, BIconUnion, BIconUnlock, BIconUnlockFill, BIconUpc, BIconUpcScan, BIconUpload, + BIconVectorPen, BIconViewList, BIconViewStacked, BIconVoicemail, @@ -1147,6 +1237,8 @@ export const iconNames = [ 'BIconBadge4kFill', 'BIconBadge8k', 'BIconBadge8kFill', + 'BIconBadgeAd', + 'BIconBadgeAdFill', 'BIconBadgeCc', 'BIconBadgeCcFill', 'BIconBadgeHd', @@ -1157,9 +1249,14 @@ export const iconNames = [ 'BIconBadgeVoFill', 'BIconBag', 'BIconBagCheck', + 'BIconBagCheckFill', 'BIconBagDash', + 'BIconBagDashFill', 'BIconBagFill', 'BIconBagPlus', + 'BIconBagPlusFill', + 'BIconBagX', + 'BIconBagXFill', 'BIconBarChart', 'BIconBarChartFill', 'BIconBarChartLine', @@ -1189,9 +1286,18 @@ export const iconNames = [ 'BIconBookHalf', 'BIconBookmark', 'BIconBookmarkCheck', + 'BIconBookmarkCheckFill', 'BIconBookmarkDash', + 'BIconBookmarkDashFill', 'BIconBookmarkFill', + 'BIconBookmarkHeart', + 'BIconBookmarkHeartFill', 'BIconBookmarkPlus', + 'BIconBookmarkPlusFill', + 'BIconBookmarkStar', + 'BIconBookmarkStarFill', + 'BIconBookmarkX', + 'BIconBookmarkXFill', 'BIconBookmarks', 'BIconBookmarksFill', 'BIconBookshelf', @@ -1235,6 +1341,7 @@ export const iconNames = [ 'BIconBroadcast', 'BIconBroadcastPin', 'BIconBrush', + 'BIconBrushFill', 'BIconBucket', 'BIconBucketFill', 'BIconBug', @@ -1264,6 +1371,8 @@ export const iconNames = [ 'BIconCalendar2RangeFill', 'BIconCalendar2Week', 'BIconCalendar2WeekFill', + 'BIconCalendar2X', + 'BIconCalendar2XFill', 'BIconCalendar3', 'BIconCalendar3Event', 'BIconCalendar3EventFill', @@ -1295,6 +1404,8 @@ export const iconNames = [ 'BIconCalendarRangeFill', 'BIconCalendarWeek', 'BIconCalendarWeekFill', + 'BIconCalendarX', + 'BIconCalendarXFill', 'BIconCamera', 'BIconCamera2', 'BIconCameraFill', @@ -1332,9 +1443,14 @@ export const iconNames = [ 'BIconCart3', 'BIconCart4', 'BIconCartCheck', + 'BIconCartCheckFill', 'BIconCartDash', + 'BIconCartDashFill', 'BIconCartFill', 'BIconCartPlus', + 'BIconCartPlusFill', + 'BIconCartX', + 'BIconCartXFill', 'BIconCash', 'BIconCashStack', 'BIconCast', @@ -1409,6 +1525,7 @@ export const iconNames = [ 'BIconClipboardData', 'BIconClipboardMinus', 'BIconClipboardPlus', + 'BIconClipboardX', 'BIconClock', 'BIconClockFill', 'BIconClockHistory', @@ -1441,6 +1558,7 @@ export const iconNames = [ 'BIconColumnsGap', 'BIconCommand', 'BIconCompass', + 'BIconCompassFill', 'BIconCone', 'BIconConeStriped', 'BIconController', @@ -1454,6 +1572,7 @@ export const iconNames = [ 'BIconCreditCardFill', 'BIconCrop', 'BIconCup', + 'BIconCupFill', 'BIconCupStraw', 'BIconCursor', 'BIconCursorFill', @@ -1550,6 +1669,7 @@ export const iconNames = [ 'BIconFileDiffFill', 'BIconFileEarmark', 'BIconFileEarmarkArrowDown', + 'BIconFileEarmarkArrowDownFill', 'BIconFileEarmarkArrowUp', 'BIconFileEarmarkArrowUpFill', 'BIconFileEarmarkBinary', @@ -1562,22 +1682,56 @@ export const iconNames = [ 'BIconFileEarmarkCodeFill', 'BIconFileEarmarkDiff', 'BIconFileEarmarkDiffFill', + 'BIconFileEarmarkEasel', + 'BIconFileEarmarkEaselFill', 'BIconFileEarmarkFill', + 'BIconFileEarmarkFont', + 'BIconFileEarmarkFontFill', + 'BIconFileEarmarkImage', + 'BIconFileEarmarkImageFill', + 'BIconFileEarmarkLock', + 'BIconFileEarmarkLock2', + 'BIconFileEarmarkLock2Fill', + 'BIconFileEarmarkLockFill', 'BIconFileEarmarkMedical', 'BIconFileEarmarkMedicalFill', 'BIconFileEarmarkMinus', 'BIconFileEarmarkMinusFill', + 'BIconFileEarmarkMusic', + 'BIconFileEarmarkMusicFill', + 'BIconFileEarmarkPerson', + 'BIconFileEarmarkPersonFill', + 'BIconFileEarmarkPlay', + 'BIconFileEarmarkPlayFill', 'BIconFileEarmarkPlus', 'BIconFileEarmarkPlusFill', + 'BIconFileEarmarkPost', + 'BIconFileEarmarkPostFill', + 'BIconFileEarmarkRichtext', + 'BIconFileEarmarkRichtextFill', 'BIconFileEarmarkRuled', 'BIconFileEarmarkRuledFill', + 'BIconFileEarmarkSlides', + 'BIconFileEarmarkSlidesFill', 'BIconFileEarmarkSpreadsheet', 'BIconFileEarmarkSpreadsheetFill', 'BIconFileEarmarkText', 'BIconFileEarmarkTextFill', + 'BIconFileEarmarkX', + 'BIconFileEarmarkXFill', 'BIconFileEarmarkZip', 'BIconFileEarmarkZipFill', + 'BIconFileEasel', + 'BIconFileEaselFill', 'BIconFileFill', + 'BIconFileFont', + 'BIconFileFontFill', + 'BIconFileImage', + 'BIconFileImageFill', + 'BIconFileLock', + 'BIconFileLock2', + 'BIconFileLock2Fill', + 'BIconFileLockFill', 'BIconFileMedical', 'BIconFileMedicalFill', 'BIconFileMinus', @@ -1586,6 +1740,8 @@ export const iconNames = [ 'BIconFileMusicFill', 'BIconFilePerson', 'BIconFilePersonFill', + 'BIconFilePlay', + 'BIconFilePlayFill', 'BIconFilePlus', 'BIconFilePlusFill', 'BIconFilePost', @@ -1594,10 +1750,14 @@ export const iconNames = [ 'BIconFileRichtextFill', 'BIconFileRuled', 'BIconFileRuledFill', + 'BIconFileSlides', + 'BIconFileSlidesFill', 'BIconFileSpreadsheet', 'BIconFileSpreadsheetFill', 'BIconFileText', 'BIconFileTextFill', + 'BIconFileX', + 'BIconFileXFill', 'BIconFileZip', 'BIconFileZipFill', 'BIconFiles', @@ -1624,6 +1784,7 @@ export const iconNames = [ 'BIconFolderPlus', 'BIconFolderSymlink', 'BIconFolderSymlinkFill', + 'BIconFolderX', 'BIconFonts', 'BIconForward', 'BIconForwardFill', @@ -1639,6 +1800,8 @@ export const iconNames = [ 'BIconGem', 'BIconGeo', 'BIconGeoAlt', + 'BIconGeoAltFill', + 'BIconGeoFill', 'BIconGift', 'BIconGiftFill', 'BIconGlobe', @@ -1720,6 +1883,7 @@ export const iconNames = [ 'BIconJournalPlus', 'BIconJournalRichtext', 'BIconJournalText', + 'BIconJournalX', 'BIconJournals', 'BIconJoystick', 'BIconJustify', @@ -1767,6 +1931,7 @@ export const iconNames = [ 'BIconMailbox', 'BIconMailbox2', 'BIconMap', + 'BIconMapFill', 'BIconMarkdown', 'BIconMarkdownFill', 'BIconMenuApp', @@ -1821,7 +1986,9 @@ export const iconNames = [ 'BIconPeace', 'BIconPeaceFill', 'BIconPen', + 'BIconPenFill', 'BIconPencil', + 'BIconPencilFill', 'BIconPencilSquare', 'BIconPentagon', 'BIconPentagonFill', @@ -1843,10 +2010,13 @@ export const iconNames = [ 'BIconPersonPlus', 'BIconPersonPlusFill', 'BIconPersonSquare', + 'BIconPersonX', + 'BIconPersonXFill', 'BIconPhone', 'BIconPhoneFill', 'BIconPhoneLandscape', 'BIconPhoneLandscapeFill', + 'BIconPhoneVibrate', 'BIconPieChart', 'BIconPieChartFill', 'BIconPip', @@ -1854,6 +2024,7 @@ export const iconNames = [ 'BIconPlay', 'BIconPlayFill', 'BIconPlug', + 'BIconPlugFill', 'BIconPlus', 'BIconPlusCircle', 'BIconPlusCircleFill', @@ -1886,6 +2057,7 @@ export const iconNames = [ 'BIconReplyFill', 'BIconRss', 'BIconRssFill', + 'BIconScissors', 'BIconScrewdriver', 'BIconSearch', 'BIconSegmentedNav', @@ -1900,6 +2072,7 @@ export const iconNames = [ 'BIconShieldFillExclamation', 'BIconShieldFillMinus', 'BIconShieldFillPlus', + 'BIconShieldFillX', 'BIconShieldLock', 'BIconShieldLockFill', 'BIconShieldMinus', @@ -1907,6 +2080,7 @@ export const iconNames = [ 'BIconShieldShaded', 'BIconShieldSlash', 'BIconShieldSlashFill', + 'BIconShieldX', 'BIconShift', 'BIconShiftFill', 'BIconShop', @@ -1949,6 +2123,7 @@ export const iconNames = [ 'BIconSortUpAlt', 'BIconSoundwave', 'BIconSpeaker', + 'BIconSpeakerFill', 'BIconSpellcheck', 'BIconSquare', 'BIconSquareFill', @@ -2006,6 +2181,7 @@ export const iconNames = [ 'BIconTextIndentLeft', 'BIconTextIndentRight', 'BIconTextLeft', + 'BIconTextParagraph', 'BIconTextRight', 'BIconTextarea', 'BIconTextareaResize', @@ -2031,6 +2207,7 @@ export const iconNames = [ 'BIconTriangleFill', 'BIconTriangleHalf', 'BIconTrophy', + 'BIconTrophyFill', 'BIconTruck', 'BIconTruckFlatbed', 'BIconTv', @@ -2044,13 +2221,16 @@ export const iconNames = [ 'BIconTypeStrikethrough', 'BIconTypeUnderline', 'BIconUiChecks', + 'BIconUiChecksGrid', 'BIconUiRadios', + 'BIconUiRadiosGrid', 'BIconUnion', 'BIconUnlock', 'BIconUnlockFill', 'BIconUpc', 'BIconUpcScan', 'BIconUpload', + 'BIconVectorPen', 'BIconViewList', 'BIconViewStacked', 'BIconVoicemail', @@ -2189,6 +2369,8 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconBadge4kFill, BIconBadge8k, BIconBadge8kFill, + BIconBadgeAd, + BIconBadgeAdFill, BIconBadgeCc, BIconBadgeCcFill, BIconBadgeHd, @@ -2199,9 +2381,14 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconBadgeVoFill, BIconBag, BIconBagCheck, + BIconBagCheckFill, BIconBagDash, + BIconBagDashFill, BIconBagFill, BIconBagPlus, + BIconBagPlusFill, + BIconBagX, + BIconBagXFill, BIconBarChart, BIconBarChartFill, BIconBarChartLine, @@ -2231,9 +2418,18 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconBookHalf, BIconBookmark, BIconBookmarkCheck, + BIconBookmarkCheckFill, BIconBookmarkDash, + BIconBookmarkDashFill, BIconBookmarkFill, + BIconBookmarkHeart, + BIconBookmarkHeartFill, BIconBookmarkPlus, + BIconBookmarkPlusFill, + BIconBookmarkStar, + BIconBookmarkStarFill, + BIconBookmarkX, + BIconBookmarkXFill, BIconBookmarks, BIconBookmarksFill, BIconBookshelf, @@ -2277,6 +2473,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconBroadcast, BIconBroadcastPin, BIconBrush, + BIconBrushFill, BIconBucket, BIconBucketFill, BIconBug, @@ -2306,6 +2503,8 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconCalendar2RangeFill, BIconCalendar2Week, BIconCalendar2WeekFill, + BIconCalendar2X, + BIconCalendar2XFill, BIconCalendar3, BIconCalendar3Event, BIconCalendar3EventFill, @@ -2337,6 +2536,8 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconCalendarRangeFill, BIconCalendarWeek, BIconCalendarWeekFill, + BIconCalendarX, + BIconCalendarXFill, BIconCamera, BIconCamera2, BIconCameraFill, @@ -2374,9 +2575,14 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconCart3, BIconCart4, BIconCartCheck, + BIconCartCheckFill, BIconCartDash, + BIconCartDashFill, BIconCartFill, BIconCartPlus, + BIconCartPlusFill, + BIconCartX, + BIconCartXFill, BIconCash, BIconCashStack, BIconCast, @@ -2451,6 +2657,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconClipboardData, BIconClipboardMinus, BIconClipboardPlus, + BIconClipboardX, BIconClock, BIconClockFill, BIconClockHistory, @@ -2483,6 +2690,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconColumnsGap, BIconCommand, BIconCompass, + BIconCompassFill, BIconCone, BIconConeStriped, BIconController, @@ -2496,6 +2704,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconCreditCardFill, BIconCrop, BIconCup, + BIconCupFill, BIconCupStraw, BIconCursor, BIconCursorFill, @@ -2592,6 +2801,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconFileDiffFill, BIconFileEarmark, BIconFileEarmarkArrowDown, + BIconFileEarmarkArrowDownFill, BIconFileEarmarkArrowUp, BIconFileEarmarkArrowUpFill, BIconFileEarmarkBinary, @@ -2604,22 +2814,56 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconFileEarmarkCodeFill, BIconFileEarmarkDiff, BIconFileEarmarkDiffFill, + BIconFileEarmarkEasel, + BIconFileEarmarkEaselFill, BIconFileEarmarkFill, + BIconFileEarmarkFont, + BIconFileEarmarkFontFill, + BIconFileEarmarkImage, + BIconFileEarmarkImageFill, + BIconFileEarmarkLock, + BIconFileEarmarkLock2, + BIconFileEarmarkLock2Fill, + BIconFileEarmarkLockFill, BIconFileEarmarkMedical, BIconFileEarmarkMedicalFill, BIconFileEarmarkMinus, BIconFileEarmarkMinusFill, + BIconFileEarmarkMusic, + BIconFileEarmarkMusicFill, + BIconFileEarmarkPerson, + BIconFileEarmarkPersonFill, + BIconFileEarmarkPlay, + BIconFileEarmarkPlayFill, BIconFileEarmarkPlus, BIconFileEarmarkPlusFill, + BIconFileEarmarkPost, + BIconFileEarmarkPostFill, + BIconFileEarmarkRichtext, + BIconFileEarmarkRichtextFill, BIconFileEarmarkRuled, BIconFileEarmarkRuledFill, + BIconFileEarmarkSlides, + BIconFileEarmarkSlidesFill, BIconFileEarmarkSpreadsheet, BIconFileEarmarkSpreadsheetFill, BIconFileEarmarkText, BIconFileEarmarkTextFill, + BIconFileEarmarkX, + BIconFileEarmarkXFill, BIconFileEarmarkZip, BIconFileEarmarkZipFill, + BIconFileEasel, + BIconFileEaselFill, BIconFileFill, + BIconFileFont, + BIconFileFontFill, + BIconFileImage, + BIconFileImageFill, + BIconFileLock, + BIconFileLock2, + BIconFileLock2Fill, + BIconFileLockFill, BIconFileMedical, BIconFileMedicalFill, BIconFileMinus, @@ -2628,6 +2872,8 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconFileMusicFill, BIconFilePerson, BIconFilePersonFill, + BIconFilePlay, + BIconFilePlayFill, BIconFilePlus, BIconFilePlusFill, BIconFilePost, @@ -2636,10 +2882,14 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconFileRichtextFill, BIconFileRuled, BIconFileRuledFill, + BIconFileSlides, + BIconFileSlidesFill, BIconFileSpreadsheet, BIconFileSpreadsheetFill, BIconFileText, BIconFileTextFill, + BIconFileX, + BIconFileXFill, BIconFileZip, BIconFileZipFill, BIconFiles, @@ -2666,6 +2916,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconFolderPlus, BIconFolderSymlink, BIconFolderSymlinkFill, + BIconFolderX, BIconFonts, BIconForward, BIconForwardFill, @@ -2681,6 +2932,8 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconGem, BIconGeo, BIconGeoAlt, + BIconGeoAltFill, + BIconGeoFill, BIconGift, BIconGiftFill, BIconGlobe, @@ -2762,6 +3015,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconJournalPlus, BIconJournalRichtext, BIconJournalText, + BIconJournalX, BIconJournals, BIconJoystick, BIconJustify, @@ -2809,6 +3063,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconMailbox, BIconMailbox2, BIconMap, + BIconMapFill, BIconMarkdown, BIconMarkdownFill, BIconMenuApp, @@ -2863,7 +3118,9 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconPeace, BIconPeaceFill, BIconPen, + BIconPenFill, BIconPencil, + BIconPencilFill, BIconPencilSquare, BIconPentagon, BIconPentagonFill, @@ -2885,10 +3142,13 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconPersonPlus, BIconPersonPlusFill, BIconPersonSquare, + BIconPersonX, + BIconPersonXFill, BIconPhone, BIconPhoneFill, BIconPhoneLandscape, BIconPhoneLandscapeFill, + BIconPhoneVibrate, BIconPieChart, BIconPieChartFill, BIconPip, @@ -2896,6 +3156,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconPlay, BIconPlayFill, BIconPlug, + BIconPlugFill, BIconPlus, BIconPlusCircle, BIconPlusCircleFill, @@ -2928,6 +3189,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconReplyFill, BIconRss, BIconRssFill, + BIconScissors, BIconScrewdriver, BIconSearch, BIconSegmentedNav, @@ -2942,6 +3204,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconShieldFillExclamation, BIconShieldFillMinus, BIconShieldFillPlus, + BIconShieldFillX, BIconShieldLock, BIconShieldLockFill, BIconShieldMinus, @@ -2949,6 +3212,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconShieldShaded, BIconShieldSlash, BIconShieldSlashFill, + BIconShieldX, BIconShift, BIconShiftFill, BIconShop, @@ -2991,6 +3255,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconSortUpAlt, BIconSoundwave, BIconSpeaker, + BIconSpeakerFill, BIconSpellcheck, BIconSquare, BIconSquareFill, @@ -3048,6 +3313,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconTextIndentLeft, BIconTextIndentRight, BIconTextLeft, + BIconTextParagraph, BIconTextRight, BIconTextarea, BIconTextareaResize, @@ -3073,6 +3339,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconTriangleFill, BIconTriangleHalf, BIconTrophy, + BIconTrophyFill, BIconTruck, BIconTruckFlatbed, BIconTv, @@ -3086,13 +3353,16 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({ BIconTypeStrikethrough, BIconTypeUnderline, BIconUiChecks, + BIconUiChecksGrid, BIconUiRadios, + BIconUiRadiosGrid, BIconUnion, BIconUnlock, BIconUnlockFill, BIconUpc, BIconUpcScan, BIconUpload, + BIconVectorPen, BIconViewList, BIconViewStacked, BIconVoicemail, diff --git a/yarn.lock b/yarn.lock index 36b6a5ae91d..84af02832eb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,10 +2,10 @@ # yarn lockfile v1 -"@babel/cli@^7.10.5": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.10.5.tgz#57df2987c8cf89d0fc7d4b157ec59d7619f1b77a" - integrity sha512-j9H9qSf3kLdM0Ao3aGPbGZ73mEA9XazuupcS6cDGWuiyAcANoguhP0r2Lx32H5JGw4sSSoHG3x/mxVnHgvOoyA== +"@babel/cli@^7.11.5": + version "7.11.5" + resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.11.5.tgz#4f51663f393d950b41f4c7ba41f3f7c2a595a295" + integrity sha512-0umMDxxdEZ98EMZtS9Wgnaf4NdgqBcQHaGYaMfAmP+ZicVglZ2+QZwoHNacfnUq4hCmC1V7Ap5Phq7FInpWrWg== dependencies: commander "^4.0.1" convert-source-map "^1.1.0" @@ -14,7 +14,7 @@ lodash "^4.17.19" make-dir "^2.1.0" slash "^2.0.0" - source-map "^0.5.0" + source-map "^0.6.1" optionalDependencies: chokidar "^2.1.8" @@ -34,19 +34,19 @@ invariant "^2.2.4" semver "^5.5.0" -"@babel/core@^7.1.0", "@babel/core@^7.11.4", "@babel/core@^7.7.5": - version "7.11.4" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.4.tgz#4301dfdfafa01eeb97f1896c5501a3f0655d4229" - integrity sha512-5deljj5HlqRXN+5oJTY7Zs37iH3z3b++KjiKtIsJy1NrjOOVSEaJHEetLBhyu0aQOSNNZ/0IuEAan9GzRuDXHg== +"@babel/core@^7.1.0", "@babel/core@^7.11.4", "@babel/core@^7.11.5", "@babel/core@^7.7.5": + version "7.11.5" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.5.tgz#6ad96e2f71899ea3f9b651f0a911e85205d1ff6d" + integrity sha512-fsEANVOcZHzrsV6dMVWqpSeXClq3lNbYrfFGme6DE25FQWe7pyeYpXyx9guqUnpy466JLzZ8z4uwSr2iv60V5Q== dependencies: "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.11.4" + "@babel/generator" "^7.11.5" "@babel/helper-module-transforms" "^7.11.0" "@babel/helpers" "^7.10.4" - "@babel/parser" "^7.11.4" + "@babel/parser" "^7.11.5" "@babel/template" "^7.10.4" - "@babel/traverse" "^7.11.0" - "@babel/types" "^7.11.0" + "@babel/traverse" "^7.11.5" + "@babel/types" "^7.11.5" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.1" @@ -54,16 +54,16 @@ lodash "^4.17.19" resolve "^1.3.2" semver "^5.4.1" - source-map "^0.5.0" + source-map "^0.6.1" -"@babel/generator@^7.11.0", "@babel/generator@^7.11.4": - version "7.11.4" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.4.tgz#1ec7eec00defba5d6f83e50e3ee72ae2fee482be" - integrity sha512-Rn26vueFx0eOoz7iifCN2UHT6rGtnkSGWSoDRIy8jZN3B91PzeSULbswfLoOWuTuAcNwpG/mxy+uCTDnZ9Mp1g== +"@babel/generator@^7.11.5": + version "7.11.5" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.5.tgz#a5582773425a468e4ba269d9a1f701fbca6a7a82" + integrity sha512-9UqHWJ4IwRTy4l0o8gq2ef8ws8UPzvtMkVKjTLAiRmza9p9V6Z+OfuNd9fB1j5Q67F+dVJtPC2sZXI8NM9br4g== dependencies: - "@babel/types" "^7.11.0" + "@babel/types" "^7.11.5" jsesc "^2.5.1" - source-map "^0.5.0" + source-map "^0.6.1" "@babel/helper-annotate-as-pure@^7.10.4": version "7.10.4" @@ -272,10 +272,10 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.11.0", "@babel/parser@^7.11.4", "@babel/parser@^7.7.0": - version "7.11.4" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.4.tgz#6fa1a118b8b0d80d0267b719213dc947e88cc0ca" - integrity sha512-MggwidiH+E9j5Sh8pbrX5sJvMcsqS5o+7iB42M9/k0CD63MjYbdP4nhSh7uB5wnv2/RVzTZFTxzF/kIa5mrCqA== +"@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.11.5", "@babel/parser@^7.7.0": + version "7.11.5" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.5.tgz#c7ff6303df71080ec7a4f5b8c003c58f1cf51037" + integrity sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q== "@babel/plugin-proposal-async-generator-functions@^7.10.4": version "7.10.5" @@ -703,10 +703,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-runtime@^7.11.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.11.0.tgz#e27f78eb36f19448636e05c33c90fd9ad9b8bccf" - integrity sha512-LFEsP+t3wkYBlis8w6/kmnd6Kb1dxTd+wGJ8MlxTGzQo//ehtqlVL4S9DNUa53+dtPSQobN2CXx4d81FqC58cw== +"@babel/plugin-transform-runtime@^7.11.0", "@babel/plugin-transform-runtime@^7.11.5": + version "7.11.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.11.5.tgz#f108bc8e0cf33c37da031c097d1df470b3a293fc" + integrity sha512-9aIoee+EhjySZ6vY5hnLjigHzunBlscx9ANKutkeWTJTx6m5Rbq6Ic01tLvO54lSusR+BxV7u4UDdCmXv5aagg== dependencies: "@babel/helper-module-imports" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4" @@ -766,10 +766,10 @@ "@babel/helper-create-regexp-features-plugin" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4" -"@babel/preset-env@^7.11.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.11.0.tgz#860ee38f2ce17ad60480c2021ba9689393efb796" - integrity sha512-2u1/k7rG/gTh02dylX2kL3S0IJNF+J6bfDSp4DI2Ma8QN6Y9x9pmAax59fsCk6QUQG0yqH47yJWA+u1I1LccAg== +"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.11.5": + version "7.11.5" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.11.5.tgz#18cb4b9379e3e92ffea92c07471a99a2914e4272" + integrity sha512-kXqmW1jVcnB2cdueV+fyBM8estd5mlNfaQi6lwLgRwCby4edpavgbFhiBNjmWA3JpB/yZGSISa7Srf+TwxDQoA== dependencies: "@babel/compat-data" "^7.11.0" "@babel/helper-compilation-targets" "^7.10.4" @@ -833,7 +833,7 @@ "@babel/plugin-transform-unicode-escapes" "^7.10.4" "@babel/plugin-transform-unicode-regex" "^7.10.4" "@babel/preset-modules" "^0.1.3" - "@babel/types" "^7.11.0" + "@babel/types" "^7.11.5" browserslist "^4.12.0" core-js-compat "^3.6.2" invariant "^2.2.2" @@ -841,9 +841,9 @@ semver "^5.5.0" "@babel/preset-modules@^0.1.3": - version "0.1.3" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72" - integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== + version "0.1.4" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" + integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" @@ -866,10 +866,10 @@ dependencies: regenerator-runtime "^0.13.4" -"@babel/standalone@^7.11.4": - version "7.11.4" - resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.11.4.tgz#e25a0fa05e9373545a1a38ad4462acfbec7d8a87" - integrity sha512-OHOugVBx/LrhbCxaRVUviICe0SlC7zLYueYiMLsJk6qoCAC8RXpOxpwOxeps5YXWWmGmbombDkOFq6iDK1xQSA== +"@babel/standalone@^7.11.5": + version "7.11.5" + resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.11.5.tgz#566e1ef7d9c93ffc49b5efa4785225d259dabc19" + integrity sha512-WKBvIOPySPIF6BPPv5JAyFqGeRX2FBsdBViQxzXSpSvYuy17L2Pf9ga4NNq4YuVmFVeVYvjI7NHXD1oVJatl2Q== "@babel/template@^7.10.4", "@babel/template@^7.3.3": version "7.10.4" @@ -880,25 +880,25 @@ "@babel/parser" "^7.10.4" "@babel/types" "^7.10.4" -"@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.11.0", "@babel/traverse@^7.7.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.0.tgz#9b996ce1b98f53f7c3e4175115605d56ed07dd24" - integrity sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg== +"@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.11.5", "@babel/traverse@^7.7.0": + version "7.11.5" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.5.tgz#be777b93b518eb6d76ee2e1ea1d143daa11e61c3" + integrity sha512-EjiPXt+r7LiCZXEfRpSJd+jUMnBd4/9OUv7Nx3+0u9+eimMwJmG0Q98lw4/289JCoxSE8OolDMNZaaF/JZ69WQ== dependencies: "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.11.0" + "@babel/generator" "^7.11.5" "@babel/helper-function-name" "^7.10.4" "@babel/helper-split-export-declaration" "^7.11.0" - "@babel/parser" "^7.11.0" - "@babel/types" "^7.11.0" + "@babel/parser" "^7.11.5" + "@babel/types" "^7.11.5" debug "^4.1.0" globals "^11.1.0" lodash "^4.17.19" -"@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.0.tgz#2ae6bf1ba9ae8c3c43824e5861269871b206e90d" - integrity sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA== +"@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.11.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": + version "7.11.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d" + integrity sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q== dependencies: "@babel/helper-validator-identifier" "^7.10.4" lodash "^4.17.19" @@ -922,6 +922,16 @@ resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7" integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw== +"@eslint/eslintrc@^0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.1.0.tgz#3d1f19fb797d42fb1c85458c1c73541eeb1d9e76" + integrity sha512-bfL5365QSCmH6cPeFT7Ywclj8C7LiF7sO6mUGzZhtAMV7iID1Euq6740u/SRi4C80NOnVz/CEfK8/HO+nCAPJg== + dependencies: + ajv "^6.12.4" + debug "^4.1.1" + import-fresh "^3.2.1" + strip-json-comments "^3.1.1" + "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" @@ -1246,14 +1256,14 @@ rc9 "^1.0.0" std-env "^2.2.1" -"@nuxt/content@^1.7.0": - version "1.7.0" - resolved "https://registry.yarnpkg.com/@nuxt/content/-/content-1.7.0.tgz#36ff9a6505026b0f1ed75ae998164bd99bc5e0cd" - integrity sha512-yMRcxI5fv5VAYcLq46JS61GVkxjqP71i2RytaM4tXoW1YVFtBNoTc2jVCDGIwHQ1HAUKlXHRZtjczCsL8gmiXA== +"@nuxt/content@^1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@nuxt/content/-/content-1.7.1.tgz#888c34c208f2c9dfddc54b0fd77e737c5908dc79" + integrity sha512-Dv0ZSqx6ZBf7L3JTAy3SHik0sdsRu1to/2R77WpiWCBI2BqLgTsfMYVRG/VEdUAU00QX0PDZtlzXDCf9hQBDkQ== dependencies: "@lokidb/full-text-search" "^2.1.0" "@lokidb/loki" "^2.1.0" - "@nuxt/types" "^2.14.3" + "@nuxt/types" "^2.14.4" "@types/js-yaml" "^3.12.5" "@types/xml2js" "^0.4.5" change-case "^4.1.1" @@ -1264,6 +1274,7 @@ escape-html "^1.0.3" graceful-fs "^4.2.4" gray-matter "^4.0.2" + hasha "^5.2.0" hookable "^4.1.2" html-tags "^3.1.0" js-yaml "3.14.0" @@ -1411,10 +1422,10 @@ rc9 "^1.0.0" std-env "^2.2.1" -"@nuxt/types@^2.14.3": - version "2.14.3" - resolved "https://registry.yarnpkg.com/@nuxt/types/-/types-2.14.3.tgz#471c15fafa019e65256d9b034ef761edafc1297c" - integrity sha512-Ac+3OvztOndN9e8kp8XOMuZjwg/rdg7Czo81zsh8NhffgYRnoHBBqD5L7ued6Gdp4MyK7Y6BOPGb0RuyKl+NJg== +"@nuxt/types@^2.14.4": + version "2.14.4" + resolved "https://registry.yarnpkg.com/@nuxt/types/-/types-2.14.4.tgz#1c000849fdc3124f8544b251a811cc4094c1d085" + integrity sha512-hqqVY9rXBqYrkCStzZmoIWi7keJudOYZ1nBhbHs1pXN/AYwyJUAfYoPG4UE81kEG5CqIQrMXj47+xvOjbZuGbQ== dependencies: "@types/autoprefixer" "^9.7.2" "@types/babel__core" "^7.1.9" @@ -1432,7 +1443,7 @@ "@types/terser-webpack-plugin" "^2.2.0" "@types/webpack" "^4.41.21" "@types/webpack-bundle-analyzer" "^3.8.0" - "@types/webpack-dev-middleware" "^3.7.1" + "@types/webpack-dev-middleware" "^3.7.2" "@types/webpack-hot-middleware" "^2.25.3" "@nuxt/utils@2.14.4": @@ -1700,9 +1711,9 @@ "@types/node" "*" "@types/express-serve-static-core@*": - version "4.17.9" - resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.9.tgz#2d7b34dcfd25ec663c25c85d76608f8b249667f1" - integrity sha512-DG0BYg6yO+ePW+XoDENYz8zhNGC3jDDEpComMYn7WJc4mY1Us8Rw9ax2YhJXxpyk2SF47PQAoQ0YyVT1a0bEkA== + version "4.17.10" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.10.tgz#2b6a49f28f7aaa3c875338c65c41ef55cd8ae62a" + integrity sha512-hkM+0ydGOwKRuxcDSjFas/zpC6htqcIcYG5gdPOP1bAhszBi+eB2PlMfUUXkI0EQSG1Xbgn7IZ+yD6GVYsqB2Q== dependencies: "@types/node" "*" "@types/qs" "*" @@ -1774,9 +1785,9 @@ "@types/istanbul-lib-report" "*" "@types/jest@*": - version "26.0.10" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.10.tgz#8faf7e9756c033c39014ae76a7329efea00ea607" - integrity sha512-i2m0oyh8w/Lum7wWK/YOZJakYF8Mx08UaKA1CtbmFeDquVhAEdA7znacsVSf2hJ1OQ/OfVMGN90pw/AtzF8s/Q== + version "26.0.12" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.12.tgz#0f20fef9e74f55a312530284e6178f3b3254f501" + integrity sha512-vZOFjm562IPb1EmaKxMjdcouxVb1l3NqoUH4XC4tDQ2R/AWde+0HXBUhyfc6L+7vc3mJ393U+5vr3nH2CLSVVg== dependencies: jest-diff "^25.2.1" pretty-format "^25.2.1" @@ -1786,10 +1797,10 @@ resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-3.12.5.tgz#136d5e6a57a931e1cce6f9d8126aa98a9c92a6bb" integrity sha512-JCcp6J0GV66Y4ZMDAQCXot4xprYB+Zfd3meK9+INSJeVZwJmHAW30BBEEkPzXswMXuiyReUGOP3GxrADc9wPww== -"@types/json-schema@^7.0.3", "@types/json-schema@^7.0.4": - version "7.0.5" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd" - integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ== +"@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5": + version "7.0.6" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0" + integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw== "@types/json5@^0.0.29": version "0.0.29" @@ -1833,9 +1844,9 @@ "@types/node" "*" "@types/node@*": - version "14.6.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.6.0.tgz#7d4411bf5157339337d7cff864d9ff45f177b499" - integrity sha512-mikldZQitV94akrc4sCcSjtJfsTKt4p+e/s0AGscVA6XArQ9kFclP+ZiYUMnq987rc6QlYxXv/EivqlfSLxpKA== + version "14.6.2" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.6.2.tgz#264b44c5a28dfa80198fc2f7b6d3c8a054b9491f" + integrity sha512-onlIwbaeqvZyniGPfdw/TEhKIh79pz66L1q06WUQqJLnAb6wbjvOtepLYTGHTqzdXgBYIE3ZdmqHDGsRsbBz7A== "@types/node@^12.0.2", "@types/node@^12.12.54": version "12.12.54" @@ -1860,9 +1871,9 @@ integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== "@types/prettier@^2.0.0": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.0.2.tgz#5bb52ee68d0f8efa9cc0099920e56be6cc4e37f3" - integrity sha512-IkVfat549ggtkZUthUzEX49562eGikhSYeVGX97SkMFn+sTZrgRewXjQ4tPKFPCykZHkX1Zfd9OoELGqKU2jJA== + version "2.1.0" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.1.0.tgz#5f96562c1075ee715a5b138f0b7f591c1f40f6b8" + integrity sha512-hiYA88aHiEIgDmeKlsyVsuQdcFn3Z2VuFd/Xm/HCnGnPD8UFU5BM128uzzRVVGEzKDKYUrRsRH9S2o+NUy/3IA== "@types/pug@^2.0.4": version "2.0.4" @@ -1970,7 +1981,7 @@ dependencies: "@types/webpack" "*" -"@types/webpack-dev-middleware@^3.7.1": +"@types/webpack-dev-middleware@^3.7.2": version "3.7.2" resolved "https://registry.yarnpkg.com/@types/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz#31030c7cca7f98d56debfd859bb57f9040f0d3c5" integrity sha512-PvETiS//pjVZBK48aJfbxzT7+9LIxanbnk9eXXYUfefGyPdsCkNrMDxRlOVrBvxukXUhD5B6N/pkPMdWrtuFkA== @@ -2131,10 +2142,10 @@ optionalDependencies: prettier "^1.18.2" -"@vue/test-utils@^1.0.4": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-1.0.4.tgz#6341caccdf72da5914a5168e680ea12550fba98a" - integrity sha512-uIdDqFauzNJWlhltLSZU+P3uHEgUQczklSv2b1EKC7JzxBg9OY/5sx8UyuJwBD+zuxidhFZ4SjTuPgr8cdf63w== +"@vue/test-utils@^1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-1.0.5.tgz#676e1f986bb93ddc869d9c6cf1c820183d64d92f" + integrity sha512-P2x8kXwqfTXesAdfJQN146V1S3QD3Xv9wYZ1B09Oecmg7I3Fpqqo1CwfIn5ivwuXyBPQWFDH4vyBHynnYjIkRg== dependencies: dom-event-types "^1.0.0" lodash "^4.17.15" @@ -2344,7 +2355,7 @@ acorn@^6.4.1: resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== -acorn@^7.1.1, acorn@^7.3.1: +acorn@^7.1.1, acorn@^7.4.0: version "7.4.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c" integrity sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w== @@ -2369,9 +2380,9 @@ agentkeepalive@^3.3.0: humanize-ms "^1.2.1" aggregate-error@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" - integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== dependencies: clean-stack "^2.0.0" indent-string "^4.0.0" @@ -2381,12 +2392,12 @@ ajv-errors@^1.0.0: resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== -ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: +ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: version "3.5.2" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== -ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.12.3: +ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4: version "6.12.4" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.4.tgz#0614facc4522127fa713445c6bfd3ebd376e2234" integrity sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ== @@ -3041,10 +3052,10 @@ boolbase@^1.0.0, boolbase@~1.0.0: resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= -bootstrap-icons@^1.0.0-alpha5: - version "1.0.0-alpha5" - resolved "https://registry.yarnpkg.com/bootstrap-icons/-/bootstrap-icons-1.0.0-alpha5.tgz#24aec53f4097e23a7e05c964a55033ed12dab23c" - integrity sha512-sQp4UESHOpN7UlkEUJmY4G8gmU4beTCv24azmOtN1vMSWTOuUZttB0269RD93JIjd4KmWb93MJaXjC6cAV5jiQ== +bootstrap-icons@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/bootstrap-icons/-/bootstrap-icons-1.0.0.tgz#90ed08c9503cef95184972420fbea7b09780bd83" + integrity sha512-PaQm3VtSqbUnWuyqGmFJG5iF9UMieDuk8raPOmKOtKeyWyiVshgLoKa+9EWGolGU/nvyBLEBWhZoQqhu9ccNBg== "bootstrap@>=4.5.2 <5.0.0": version "4.5.2" @@ -3494,15 +3505,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001111: - version "1.0.30001117" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001117.tgz#69a9fae5d480eaa9589f7641a83842ad396d17c4" - integrity sha512-4tY0Fatzdx59kYjQs+bNxUwZB03ZEBgVmJ1UkFPz/Q8OLiUUbjct2EdpnXj0fvFTPej2EkbPIG0w8BWsjAyk1Q== - -caniuse-lite@^1.0.30001118: - version "1.0.30001118" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001118.tgz#116a9a670e5264aec895207f5e918129174c6f62" - integrity sha512-RNKPLojZo74a0cP7jFMidQI7nvLER40HgNfgKQEJ2PFm225L0ectUungNQoK3Xk3StQcFbpBPNEvoWD59436Hg== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001111, caniuse-lite@^1.0.30001118: + version "1.0.30001122" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001122.tgz#2c8ff631330d986a07a7ba7125cce77a1373b475" + integrity sha512-pxjw28CThdrqfz06nJkpAc5SXM404TXB/h5f4UJX+rrXJKE/1bu/KAILc2AY+O6cQIFtRjV9qOR2vaEp9LDGUA== capital-case@^1.0.3: version "1.0.3" @@ -3725,9 +3731,9 @@ cli-boxes@^1.0.0: integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= cli-boxes@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.0.tgz#538ecae8f9c6ca508e3c3c95b453fe93cb4c168d" - integrity sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w== + version "2.2.1" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" + integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== cli-cursor@^2.1.0: version "2.1.0" @@ -3954,9 +3960,9 @@ commander@^5.0.0: integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== commander@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-6.0.0.tgz#2b270da94f8fb9014455312f829a1129dbf8887e" - integrity sha512-s7EA+hDtTYNhuXkTlhqew4txMZVdszBmKWSPEMxGr8ru8JXR7bLUFIAtPhcSuFdJQ0ILMxnJi8GkQL0yvDy/YA== + version "6.1.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-6.1.0.tgz#f8d722b78103141006b66f4c7ba1e97315ba75bc" + integrity sha512-wl7PNrYWd2y5mp1OK/LhTlv8Ff4kQJQRXXAvF+uU/TPNiVJUxZLRYGj/B0y/lPGAVcSbJqH2Za/cvHmrPMC8mA== commondir@^1.0.1: version "1.0.1" @@ -5223,9 +5229,9 @@ ejs@^2.6.1: integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== electron-to-chromium@^1.3.523: - version "1.3.540" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.540.tgz#4e4c08d8c12bbd32cf090e143c0d546f017f9d43" - integrity sha512-IoGiZb8SMqTtkDYJtP8EtCdvv3VMtd1QoTlypO2RUBxRq/Wk0rU5IzhzhMckPaC9XxDqUvWsL0XKOBhTiYVN3w== + version "1.3.556" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.556.tgz#d2a8fed6b93051c5c27d182c43c7bc4d88b77afb" + integrity sha512-g5cGpg6rOCXxyfaLCQIWz9Fx+raFfbZ6sc4QLfvvaiCERBzY6YD6rh5d12QN++bEF1Tm9osYnxP37lbN/92j4A== elliptic@^6.5.3: version "6.5.3" @@ -5558,12 +5564,13 @@ eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3 resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== -eslint@^7.7.0: - version "7.7.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.7.0.tgz#18beba51411927c4b64da0a8ceadefe4030d6073" - integrity sha512-1KUxLzos0ZVsyL81PnRN335nDtQ8/vZUD6uMtWbF+5zDtjKcsklIi78XoE0MVL93QvWTu+E5y44VyyCsOMBrIg== +eslint@^7.8.0: + version "7.8.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.8.0.tgz#9a3e2e6e4d0a3f8c42686073c25ebf2e91443e8a" + integrity sha512-qgtVyLZqKd2ZXWnLQA4NtVbOyH56zivOAdBFWE54RFkSZjokzNrcP4Z0eVWsZ+84ByXv+jL9k/wE1ENYe8xRFw== dependencies: "@babel/code-frame" "^7.0.0" + "@eslint/eslintrc" "^0.1.0" ajv "^6.10.0" chalk "^4.0.0" cross-spawn "^7.0.2" @@ -5573,7 +5580,7 @@ eslint@^7.7.0: eslint-scope "^5.1.0" eslint-utils "^2.1.0" eslint-visitor-keys "^1.3.0" - espree "^7.2.0" + espree "^7.3.0" esquery "^1.2.0" esutils "^2.0.2" file-entry-cache "^5.0.1" @@ -5614,12 +5621,12 @@ espree@^6.2.1: acorn-jsx "^5.2.0" eslint-visitor-keys "^1.1.0" -espree@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/espree/-/espree-7.2.0.tgz#1c263d5b513dbad0ac30c4991b93ac354e948d69" - integrity sha512-H+cQ3+3JYRMEIOl87e7QdHX70ocly5iW4+dttuR8iYSPr/hXKFb+7dBsZ7+u1adC4VrnPlTkv0+OwuPnDop19g== +espree@^7.3.0: + version "7.3.0" + resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.0.tgz#dc30437cf67947cf576121ebd780f15eeac72348" + integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw== dependencies: - acorn "^7.3.1" + acorn "^7.4.0" acorn-jsx "^5.2.0" eslint-visitor-keys "^1.3.0" @@ -5636,18 +5643,18 @@ esquery@^1.0.1, esquery@^1.2.0: estraverse "^5.1.0" esrecurse@^4.1.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" - integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== dependencies: - estraverse "^4.1.0" + estraverse "^5.2.0" -estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: +estraverse@^4.1.1, estraverse@^4.2.0: version "4.3.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== -estraverse@^5.1.0: +estraverse@^5.1.0, estraverse@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== @@ -5668,9 +5675,9 @@ etag@^1.8.1, etag@~1.8.1: integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= eventemitter3@^4.0.4: - version "4.0.4" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.4.tgz#b5463ace635a083d018bdc7c917b4c5f10a85384" - integrity sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ== + version "4.0.7" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== events@^3.0.0: version "3.2.0" @@ -6371,10 +6378,10 @@ get-stdin@^6.0.0: resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== -get-stdin@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-7.0.0.tgz#8d5de98f15171a125c5e516643c7a6d0ea8a96f6" - integrity sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ== +get-stdin@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" + integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== get-stream@^3.0.0: version "3.0.0" @@ -6819,9 +6826,9 @@ hast-util-from-parse5@^5.0.0: xtend "^4.0.1" hast-util-is-element@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-1.0.4.tgz#059090a05cc02e275df1ad02caf8cb422fcd2e02" - integrity sha512-NFR6ljJRvDcyPP5SbV7MyPBgF47X3BsskLnmw1U34yL+X6YC0MoBx9EyMg8Jtx4FzGH95jw8+c1VPLHaRA0wDQ== + version "1.1.0" + resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-1.1.0.tgz#3b3ed5159a2707c6137b48637fbfe068e175a425" + integrity sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ== hast-util-parse-selector@^2.0.0: version "2.2.4" @@ -7006,9 +7013,9 @@ html-void-elements@^1.0.0: integrity sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w== html-webpack-plugin@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.3.0.tgz#53bf8f6d696c4637d5b656d3d9863d89ce8174fd" - integrity sha512-C0fzKN8yQoVLTelcJxZfJCE+aAvQiY2VUf3UuKrR4a9k5UMWYOtpDLsaXwATbcVCnI05hUS7L9ULQHWLZhyi3w== + version "4.4.1" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.4.1.tgz#61ab85aa1a84ba181443345ebaead51abbb84149" + integrity sha512-nEtdEIsIGXdXGG7MjTTZlmhqhpHU9pJFc1OYxcP36c5/ZKP6b0BJMww2QTvJGQYA9aMxUnjDujpZdYcVOXiBCQ== dependencies: "@types/html-minifier-terser" "^5.0.0" "@types/tapable" "^1.0.5" @@ -8374,6 +8381,11 @@ json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1, json-parse-bet resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== +json-parse-even-better-errors@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.0.tgz#371873c5ffa44304a6ba12419bcfa95f404ae081" + integrity sha512-o3aP+RsWDJZayj1SbHNQAI8x0v3T3SKiGoZlNYfbUP1S3omJQ6i9CnqADqkSPaOAxwua4/1YWx5CM7oiChJt2Q== + json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" @@ -8580,9 +8592,9 @@ lint-staged@^10.2.13: stringify-object "^3.3.0" listr2@^2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/listr2/-/listr2-2.6.0.tgz#788a3d202978a1b8582062952cbc49272c8e206a" - integrity sha512-nwmqTJYQQ+AsKb4fCXH/6/UmLCEDL1jkRAdSn9M6cEUzoRGrs33YD/3N86gAZQnGZ6hxV18XSdlBcJ1GTmetJA== + version "2.6.2" + resolved "https://registry.yarnpkg.com/listr2/-/listr2-2.6.2.tgz#4912eb01e1e2dd72ec37f3895a56bf2622d6f36a" + integrity sha512-6x6pKEMs8DSIpA/tixiYY2m/GcbgMplMVmhQAaLFxEtNSKLeWTGjtmU57xvv6QCm2XcqzyNXL/cTSVf4IChCRA== dependencies: chalk "^4.1.0" cli-truncate "^2.1.0" @@ -8760,9 +8772,9 @@ log-update@^4.0.0: wrap-ansi "^6.2.0" loglevel@^1.6.2: - version "1.6.8" - resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.8.tgz#8a25fb75d092230ecd4457270d80b54e28011171" - integrity sha512-bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA== + version "1.7.0" + resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.0.tgz#728166855a740d59d38db01cf46f042caa041bb0" + integrity sha512-i2sY04nal5jDcagM3FMfG++T69GEEM8CYuOfeOIvmXzOIcwE9a/CJPR0MFM97pYMj/u10lzz7/zd7+qwhrBTqQ== loose-envify@^1.0.0: version "1.4.0" @@ -8979,9 +8991,9 @@ media-typer@0.3.0: integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= mem@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/mem/-/mem-6.1.0.tgz#846eca0bd4708a8f04b9c3f3cd769e194ae63c5c" - integrity sha512-RlbnLQgRHk5lwqTtpEkBTQ2ll/CG/iB+J4Hy2Wh97PjgZgXgWJWrFF+XXujh3UUVLvR4OOTgZzcWMMwnehlEUg== + version "6.1.1" + resolved "https://registry.yarnpkg.com/mem/-/mem-6.1.1.tgz#ea110c2ebc079eca3022e6b08c85a795e77f6318" + integrity sha512-Ci6bIfq/UgcxPTYa8dQQ5FY3BzKkT894bwXWXxC/zqs0XgMO2cT20CGkOqda7gZNkmK5VP4x89IGZ6K7hfbn3Q== dependencies: map-age-cleaner "^0.1.3" mimic-fn "^3.0.0" @@ -9034,9 +9046,9 @@ meow@^4.0.0: trim-newlines "^2.0.0" meow@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/meow/-/meow-7.1.0.tgz#50ecbcdafa16f8b58fb7eb9675b933f6473b3a59" - integrity sha512-kq5F0KVteskZ3JdfyQFivJEj2RaA8NFsS4+r9DaMKLcUHpk5OcHS3Q0XkCXONB1mZRPsu/Y/qImKri0nwSEZog== + version "7.1.1" + resolved "https://registry.yarnpkg.com/meow/-/meow-7.1.1.tgz#7c01595e3d337fcb0ec4e8eed1666ea95903d306" + integrity sha512-GWHvA5QOcS412WCo8vwKDlTelGLsCGBVevQB5Kva961rmNfun0PCbv5+xta2kUMFJyR8/oWnn7ddeKdosbAPbA== dependencies: "@types/minimist" "^1.2.0" camelcase-keys "^6.2.2" @@ -9839,15 +9851,20 @@ opencollective-postinstall@^2.0.2: resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259" integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q== -opener@1.5.1, opener@^1.5.1: +opener@1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.1.tgz#6d2f0e77f1a0af0032aca716c2c1fbb8e7e8abed" integrity sha512-goYSy5c2UXE4Ra1xixabeVh1guIX/ZV/YokJksb6q2lubWu6UbvPQ20p542/sFIll1nl8JnCyK9oBaOcCWXwvA== +opener@^1.5.1: + version "1.5.2" + resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" + integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== + optimize-css-assets-webpack-plugin@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.3.tgz#e2f1d4d94ad8c0af8967ebd7cf138dcb1ef14572" - integrity sha512-q9fbvCRS6EYtUKKSwI87qm2IxlyJK5b4dygW1rKUBT6mMDhdG5e5bZT63v6tnJR9F9FB/H5a0HTmtw+laUBxKA== + version "5.0.4" + resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz#85883c6528aaa02e30bbad9908c92926bb52dc90" + integrity sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A== dependencies: cssnano "^4.1.10" last-call-webpack-plugin "^3.0.0" @@ -10157,13 +10174,13 @@ parse-json@^4.0.0: json-parse-better-errors "^1.0.1" parse-json@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.1.tgz#7cfe35c1ccd641bce3981467e6c2ece61b3b3878" - integrity sha512-ztoZ4/DYeXQq4E21v169sC8qWINGpcosGv9XhTDvg9/hWvx/zrFkc9BiWxR58OJLHGk28j5BL0SDLeV2WmFZlQ== + version "5.1.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" + integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== dependencies: "@babel/code-frame" "^7.0.0" error-ex "^1.3.1" - json-parse-better-errors "^1.0.1" + json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" parse-passwd@^1.0.0: @@ -10419,24 +10436,24 @@ postcss-attribute-case-insensitive@^4.0.1: postcss-selector-parser "^6.0.2" postcss-calc@^7.0.1: - version "7.0.3" - resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.3.tgz#d65cca92a3c52bf27ad37a5f732e0587b74f1623" - integrity sha512-IB/EAEmZhIMEIhG7Ov4x+l47UaXOS1n2f4FBUk/aKllQhtSCxWhTzn0nJgkqN7fo/jcWySvWTSB6Syk9L+31bA== + version "7.0.4" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.4.tgz#5e177ddb417341e6d4a193c5d9fd8ada79094f8b" + integrity sha512-0I79VRAd1UTkaHzY9w83P39YGO/M3bG7/tNLrHGEunBolfoGM0hSjrGvjoeaj0JE/zIw5GsI2KZ0UwDJqv5hjw== dependencies: postcss "^7.0.27" postcss-selector-parser "^6.0.2" postcss-value-parser "^4.0.2" -postcss-cli@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/postcss-cli/-/postcss-cli-7.1.1.tgz#260f9546be260b2149bf32e28d785a0d79c9aab8" - integrity sha512-bYQy5ydAQJKCMSpvaMg0ThPBeGYqhQXumjbFOmWnL4u65CYXQ16RfS6afGQpit0dGv/fNzxbdDtx8dkqOhhIbg== +postcss-cli@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/postcss-cli/-/postcss-cli-7.1.2.tgz#ba8d5d918b644bd18e80ad2c698064d4c0da51cd" + integrity sha512-3mlEmN1v2NVuosMWZM2tP8bgZn7rO5PYxRRrXtdSyL5KipcgBDjJ9ct8/LKxImMCJJi3x5nYhCGFJOkGyEqXBQ== dependencies: chalk "^4.0.0" chokidar "^3.3.0" dependency-graph "^0.9.0" fs-extra "^9.0.0" - get-stdin "^7.0.0" + get-stdin "^8.0.0" globby "^11.0.0" postcss "^7.0.0" postcss-load-config "^2.0.0" @@ -11119,9 +11136,9 @@ prettier@^1.18.2: integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== pretty-bytes@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.3.0.tgz#f2849e27db79fb4d6cfe24764fc4134f165989f2" - integrity sha512-hjGrh+P926p4R4WbaB6OckyRtO0F0/lQBiT+0gnxjV+5kjPBrfVBFCsCLbMqVQeydvIoouYTCmmEURiH3R1Bdg== + version "5.4.1" + resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.4.1.tgz#cd89f79bbcef21e3d21eb0da68ffe93f803e884b" + integrity sha512-s1Iam6Gwz3JI5Hweaz4GoCD1WUNUIyzePFy5+Js2hjwGVt2Z79wNN+ZKOZ2vB6C+Xs6njyB84Z1IthQg8d9LxA== pretty-error@^2.1.1: version "2.1.1" @@ -12046,10 +12063,10 @@ rollup-pluginutils@^2.8.1: dependencies: estree-walker "^0.6.1" -rollup@^2.26.6: - version "2.26.6" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.26.6.tgz#0b460c1da224c6af12a1e948a28c513aa11f2b93" - integrity sha512-iSB7eE3k/VNQHnI7ckS++4yIqTamoUCB1xo7MswhJ/fg22oFYR5+xCrUZVviBj97jvc5A31MPbVMw1Wc3jWxmw== +rollup@^2.26.9: + version "2.26.9" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.26.9.tgz#4b6ce4e9044dd257d7314d8ed9b4d4d8a7d166c9" + integrity sha512-XIiWYLayLqV+oY4S2Lub/shJq4uk/QQLwWToYCL4LjZbYHbFK3czea4UDVRUJu+zNmKmxq5Zb/OG7c5HSvH2TQ== optionalDependencies: fsevents "~2.1.2" @@ -12162,13 +12179,13 @@ schema-utils@^1.0.0: ajv-keywords "^3.1.0" schema-utils@^2.0.0, schema-utils@^2.5.0, schema-utils@^2.6.1, schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0: - version "2.7.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7" - integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== + version "2.7.1" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" + integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== dependencies: - "@types/json-schema" "^7.0.4" - ajv "^6.12.2" - ajv-keywords "^3.4.1" + "@types/json-schema" "^7.0.5" + ajv "^6.12.4" + ajv-keywords "^3.5.2" scss-tokenizer@^0.2.3: version "0.2.3" @@ -12572,7 +12589,7 @@ source-map@^0.4.2: dependencies: amdefine ">=0.0.4" -source-map@^0.5.0, source-map@^0.5.6: +source-map@^0.5.6: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= @@ -12986,7 +13003,7 @@ strip-json-comments@^2.0.0, strip-json-comments@~2.0.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= -strip-json-comments@^3.1.0: +strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== @@ -13037,9 +13054,9 @@ supports-color@^6.1.0: has-flag "^3.0.0" supports-color@^7.0.0, supports-color@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" - integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" @@ -13540,9 +13557,9 @@ ua-parser-js@^0.7.21: integrity sha512-+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ== uglify-js@^3.1.4, uglify-js@^3.5.1: - version "3.10.1" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.10.1.tgz#dd14767eb7150de97f2573a5ff210db14fffe4ad" - integrity sha512-RjxApKkrPJB6kjJxQS3iZlf///REXWYxYJxO/MpmlQzVkDWVI3PSnCBWezMecmTU/TRkNxrl8bmsfFQCp+LO+Q== + version "3.10.3" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.10.3.tgz#f0d2f99736c14de46d2d24649ba328be3e71c3bf" + integrity sha512-Lh00i69Uf6G74mvYpHCI9KVVXLcHW/xu79YTvH7Mkc9zyKUeSPz0owW0dguj0Scavns3ZOh3wY63J0Zb97Za2g== unfetch@^4.1.0: version "4.1.0" @@ -13808,9 +13825,9 @@ upper-case@^2.0.1: tslib "^1.10.0" uri-js@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" - integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== + version "4.4.0" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602" + integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g== dependencies: punycode "^2.1.0" @@ -13971,9 +13988,9 @@ vfile-location@^2.0.0: integrity sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA== vfile-location@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-3.0.1.tgz#d78677c3546de0f7cd977544c367266764d31bb3" - integrity sha512-yYBO06eeN/Ki6Kh1QAkgzYpWT1d3Qln+ZCtSbJqFExPl1S3y2qqotJQXoh6qEvl/jDlgpUJolBn3PItVnnZRqQ== + version "3.1.0" + resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-3.1.0.tgz#81cd8a04b0ac935185f4fce16f270503fc2f692f" + integrity sha512-FCZ4AN9xMcjFIG1oGmZKo61PjwJHRVA+0/tPUP2ul4uIwjGGndIxavEMRpWn5p4xwm/ZsdXp9YNygf1ZyE4x8g== vfile-message@^1.0.0: version "1.1.1" @@ -14322,13 +14339,13 @@ whatwg-mimetype@^2.3.0: integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== whatwg-url@^8.0.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.1.0.tgz#c628acdcf45b82274ce7281ee31dd3c839791771" - integrity sha512-vEIkwNi9Hqt4TV9RdnaBPNt+E2Sgmo3gePebCRgZ1R7g6d23+53zCTnuB0amKI4AXq6VM8jj2DUAa0S1vjJxkw== + version "8.2.1" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.2.1.tgz#ed73417230784b281fb2a32c3c501738b46167c3" + integrity sha512-ZmVCr6nfBeaMxEHALLEGy0LszYjpJqf6PVNQUQ1qd9Et+q7Jpygd4rGGDXgHjD8e99yLFseD69msHDM4YwPZ4A== dependencies: lodash.sortby "^4.7.0" tr46 "^2.0.2" - webidl-conversions "^5.0.0" + webidl-conversions "^6.1.0" which-module@^2.0.0: version "2.0.0"