- With more than 85 components, over 45 available plugins, several directives, and 300+ icons,
+ With more than 85 components, over 45 available plugins, several directives, and 500+ icons,
BootstrapVue provides one of the most
comprehensive implementations of the
Bootstrap v{{ bootstrapVersionMinor }} component and grid system
@@ -208,7 +208,7 @@
-
+
Modular
diff --git a/package.json b/package.json
index 10c20bd31c7..d3140b7e2c8 100644
--- a/package.json
+++ b/package.json
@@ -110,7 +110,7 @@
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"babel-plugin-istanbul": "^6.0.0",
- "bootstrap-icons": "^1.0.0-alpha2",
+ "bootstrap-icons": "^1.0.0-alpha3",
"clean-css-cli": "^4.3.0",
"codecov": "^3.6.5",
"codemirror": "^5.52.0",
diff --git a/scripts/create-icons.js b/scripts/create-icons.js
index 7fbff4e5f4c..7eecb398b60 100644
--- a/scripts/create-icons.js
+++ b/scripts/create-icons.js
@@ -63,6 +63,7 @@ export const BIconBlank = /*#__PURE__*/ makeIcon('Blank', '')
// --- Bootstrap Icons ---
<% componentNames.forEach(component => { %>
+// eslint-disable-next-line
export const <%= component %> = /*#__PURE__*/ makeIcon(
'<%= icons[component].name %>',
'<%= icons[component].content %>'
diff --git a/src/components/overlay/README.md b/src/components/overlay/README.md
index 779fb171596..bb6c735729b 100644
--- a/src/components/overlay/README.md
+++ b/src/components/overlay/README.md
@@ -277,7 +277,7 @@ Place custom content in the overlay (replacing the default spinner) via the opti
-
+
Please wait...
@@ -24,7 +25,7 @@ Icon components were added in BootstrapVue release `v2.2.0`.
## Icons
-The library includes over 300 icons. Use the explorer below to search and browse the available
+The library includes over 500 icons. Use the explorer below to search and browse the available
icons.
@@ -166,7 +167,7 @@ of the icon names listed in the [Icons](#icons) section above.
-
+
@@ -179,7 +180,7 @@ of the icon names listed in the [Icons](#icons) section above.
-
+
@@ -197,13 +198,13 @@ provide a `variant` prop to apply one of the Bootstrap contextual text variant c
```html
-
-
-
-
-
-
-
+
+
+
+
+
+
+
@@ -234,11 +235,11 @@ current font size:
```html
-
Icon
-
Icon
-
Icon
-
Icon
-
Icon
+
Icon
+
Icon
+
Icon
+
Icon
+
Icon
@@ -251,7 +252,7 @@ classes:
```html
-
+
@@ -281,15 +282,15 @@ Also see the [scaling transforms](#scale) section below for additional sizing op
## Styling
-With the use of Bootstrap's border and background
+With the use of Bootstrap's border, background and padding
[utility classes](/docs/reference/utility-classes), you can create various styling effects:
```html
-
-
-
+
+
+
@@ -351,16 +352,16 @@ but not its physical font size. To illustrate this we have added a background co
-
+
-
+
-
+
-
+
@@ -388,29 +389,29 @@ For clarity in the example, we’ve added a background color on the icon so you
-
+
-
+
-
+
-
+
-
+
-
+
-
+
` or ``) to create complex icons:
-
-
+
+
-
+
-
+
@@ -536,10 +537,10 @@ individual icons (`` or ``) to create complex icons:
-
-
-
-
+
+
+
+
@@ -549,12 +550,12 @@ individual icons (`` or ``) to create complex icons:
-
-
-
-
-
-
+
+
+
+
+
+
@@ -581,7 +582,7 @@ The `` component supports the same animations as individual icons:
-
+
@@ -604,7 +605,7 @@ Individual icons within the icon stack can also be animated (except on IE 11):
>
@@ -651,7 +652,7 @@ font scaled by 125%).
-
+
Help
@@ -698,7 +699,7 @@ font scaled by 125%).
-
+
@@ -783,11 +784,11 @@ font scaled by 125%).
Cras justo odio
-
+
Dapibus ac facilisis in
-
+
Morbi leo risus
diff --git a/src/icons/_icons.scss b/src/icons/_icons.scss
index c09afe5d618..16a4662ba12 100644
--- a/src/icons/_icons.scss
+++ b/src/icons/_icons.scss
@@ -5,7 +5,6 @@
overflow: visible;
// The following is required to compensate for alignment
// issues with the Bootstrap Icons alpha implementation
- // TODO: Is this "hack" still required?
vertical-align: $b-icon-vertical-offset;
}
diff --git a/src/icons/helpers/icon-base.js b/src/icons/helpers/icon-base.js
index bf0e02a71d0..c46859e5a05 100644
--- a/src/icons/helpers/icon-base.js
+++ b/src/icons/helpers/icon-base.js
@@ -46,14 +46,23 @@ export const commonIconProps = {
// Base attributes needed on all icons
const baseAttrs = {
+ viewBox: '0 0 16 16',
width: '1em',
height: '1em',
- viewBox: '0 0 20 20',
focusable: 'false',
role: 'img',
alt: 'icon'
}
+// Attributes that are nulled out when stacked
+const stackedAttrs = {
+ width: null,
+ height: null,
+ focusable: null,
+ role: null,
+ alt: null
+}
+
// Shared private base component to reduce bundle/runtime size
// @vue/component
export const BVIconBase = /*#__PURE__*/ Vue.extend({
@@ -82,15 +91,15 @@ export const BVIconBase = /*#__PURE__*/ Vue.extend({
// Note that order is important as SVG transforms are applied in order from
// left to right and we want flipping/scale to occur before rotation
// Note shifting is applied separately
- // Assumes that the viewbox is `0 0 20 20` (`10 10` is the center)
+ // Assumes that the viewbox is `0 0 16 16` (`8 8` is the center)
const hasScale = flipH || flipV || scale !== 1
const hasTransforms = hasScale || rotate
const hasShift = shiftH || shiftV
const transforms = [
- hasTransforms ? 'translate(10 10)' : null,
+ hasTransforms ? 'translate(8 8)' : null,
hasScale ? `scale(${(flipH ? -1 : 1) * scale} ${(flipV ? -1 : 1) * scale})` : null,
rotate ? `rotate(${rotate})` : null,
- hasTransforms ? 'translate(-10 -10)' : null
+ hasTransforms ? 'translate(-8 -8)' : null
].filter(identity)
// Handling stacked icons
@@ -111,7 +120,7 @@ export const BVIconBase = /*#__PURE__*/ Vue.extend({
if (hasShift) {
$inner = h(
'g',
- { attrs: { transform: `translate(${(20 * shiftH) / 16} ${(-20 * shiftV) / 16})` } },
+ { attrs: { transform: `translate(${(16 * shiftH) / 16} ${(-16 * shiftV) / 16})` } },
[$inner]
)
}
@@ -137,7 +146,7 @@ export const BVIconBase = /*#__PURE__*/ Vue.extend({
// Merge in user supplied data
data,
// If icon is stacked, null out some attrs
- isStacked ? { attrs: { width: null, height: null, role: null, alt: null } } : {},
+ isStacked ? { attrs: stackedAttrs } : {},
// These cannot be overridden by users
{
attrs: {
diff --git a/src/icons/icons.d.ts b/src/icons/icons.d.ts
index 2caaf358c06..91c93444c72 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-alpha2
-// @Generated: 2020-03-12T09:18:47.956Z
+// @IconsVersion: 1.0.0-alpha3
+// @Generated: 2020-03-19T18:55:36.736Z
//
// This file is generated on each build. Do not edit this file!
@@ -18,27 +18,25 @@ export declare class BIconAlarm extends BvComponent {}
export declare class BIconAlarmFill extends BvComponent {}
-export declare class BIconAlertCircle extends BvComponent {}
+export declare class BIconAlt extends BvComponent {}
-export declare class BIconAlertCircleFill extends BvComponent {}
+export declare class BIconApp extends BvComponent {}
-export declare class BIconAlertOctagon extends BvComponent {}
+export declare class BIconAppIndicator extends BvComponent {}
-export declare class BIconAlertOctagonFill extends BvComponent {}
-
-export declare class BIconAlertSquare extends BvComponent {}
+export declare class BIconArchive extends BvComponent {}
-export declare class BIconAlertSquareFill extends BvComponent {}
+export declare class BIconArchiveFill extends BvComponent {}
-export declare class BIconAlertTriangle extends BvComponent {}
+export declare class BIconArrow90degDown extends BvComponent {}
-export declare class BIconAlertTriangleFill extends BvComponent {}
+export declare class BIconArrow90degLeft extends BvComponent {}
-export declare class BIconArchive extends BvComponent {}
+export declare class BIconArrow90degRight extends BvComponent {}
-export declare class BIconArchiveFill extends BvComponent {}
+export declare class BIconArrow90degUp extends BvComponent {}
-export declare class BIconArrowBarBottom extends BvComponent {}
+export declare class BIconArrowBarDown extends BvComponent {}
export declare class BIconArrowBarLeft extends BvComponent {}
@@ -66,6 +64,10 @@ export declare class BIconArrowLeftShort extends BvComponent {}
export declare class BIconArrowRepeat extends BvComponent {}
+export declare class BIconArrowReturnLeft extends BvComponent {}
+
+export declare class BIconArrowReturnRight extends BvComponent {}
+
export declare class BIconArrowRight extends BvComponent {}
export declare class BIconArrowRightShort extends BvComponent {}
@@ -90,10 +92,18 @@ export declare class BIconArrowsExpand extends BvComponent {}
export declare class BIconArrowsFullscreen extends BvComponent {}
+export declare class BIconArrowsMove extends BvComponent {}
+
+export declare class BIconAspectRatio extends BvComponent {}
+
+export declare class BIconAspectRatioFill extends BvComponent {}
+
export declare class BIconAt extends BvComponent {}
export declare class BIconAward extends BvComponent {}
+export declare class BIconAwardFill extends BvComponent {}
+
export declare class BIconBackspace extends BvComponent {}
export declare class BIconBackspaceFill extends BvComponent {}
@@ -102,6 +112,10 @@ export declare class BIconBackspaceReverse extends BvComponent {}
export declare class BIconBackspaceReverseFill extends BvComponent {}
+export declare class BIconBag extends BvComponent {}
+
+export declare class BIconBagFill extends BvComponent {}
+
export declare class BIconBarChart extends BvComponent {}
export declare class BIconBarChartFill extends BvComponent {}
@@ -112,6 +126,8 @@ export declare class BIconBatteryCharging extends BvComponent {}
export declare class BIconBatteryFull extends BvComponent {}
+export declare class BIconBatteryHalf extends BvComponent {}
+
export declare class BIconBell extends BvComponent {}
export declare class BIconBellFill extends BvComponent {}
@@ -122,24 +138,54 @@ export declare class BIconBlockquoteRight extends BvComponent {}
export declare class BIconBook extends BvComponent {}
-export declare class BIconBookHalfFill extends BvComponent {}
+export declare class BIconBookHalf extends BvComponent {}
export declare class BIconBookmark extends BvComponent {}
+export declare class BIconBookmarkCheck extends BvComponent {}
+
+export declare class BIconBookmarkDash extends BvComponent {}
+
export declare class BIconBookmarkFill extends BvComponent {}
+export declare class BIconBookmarkPlus extends BvComponent {}
+
+export declare class BIconBookmarks extends BvComponent {}
+
+export declare class BIconBookmarksFill extends BvComponent {}
+
export declare class BIconBootstrap extends BvComponent {}
export declare class BIconBootstrapFill extends BvComponent {}
export declare class BIconBootstrapReboot extends BvComponent {}
-export declare class BIconBoxArrowBottomLeft extends BvComponent {}
+export declare class BIconBoundingBox extends BvComponent {}
-export declare class BIconBoxArrowBottomRight extends BvComponent {}
+export declare class BIconBoundingBoxCircles extends BvComponent {}
export declare class BIconBoxArrowDown extends BvComponent {}
+export declare class BIconBoxArrowDownLeft extends BvComponent {}
+
+export declare class BIconBoxArrowDownRight extends BvComponent {}
+
+export declare class BIconBoxArrowInDown extends BvComponent {}
+
+export declare class BIconBoxArrowInDownLeft extends BvComponent {}
+
+export declare class BIconBoxArrowInDownRight extends BvComponent {}
+
+export declare class BIconBoxArrowInLeft extends BvComponent {}
+
+export declare class BIconBoxArrowInRight extends BvComponent {}
+
+export declare class BIconBoxArrowInUp extends BvComponent {}
+
+export declare class BIconBoxArrowInUpLeft extends BvComponent {}
+
+export declare class BIconBoxArrowInUpRight extends BvComponent {}
+
export declare class BIconBoxArrowLeft extends BvComponent {}
export declare class BIconBoxArrowRight extends BvComponent {}
@@ -152,14 +198,26 @@ export declare class BIconBoxArrowUpRight extends BvComponent {}
export declare class BIconBraces extends BvComponent {}
-export declare class BIconBrightnessFillHigh extends BvComponent {}
+export declare class BIconBriefcase extends BvComponent {}
+
+export declare class BIconBriefcaseFill extends BvComponent {}
-export declare class BIconBrightnessFillLow extends BvComponent {}
+export declare class BIconBrightnessAltHigh extends BvComponent {}
+
+export declare class BIconBrightnessAltHighFill extends BvComponent {}
+
+export declare class BIconBrightnessAltLow extends BvComponent {}
+
+export declare class BIconBrightnessAltLowFill extends BvComponent {}
export declare class BIconBrightnessHigh extends BvComponent {}
+export declare class BIconBrightnessHighFill extends BvComponent {}
+
export declare class BIconBrightnessLow extends BvComponent {}
+export declare class BIconBrightnessLowFill extends BvComponent {}
+
export declare class BIconBrush extends BvComponent {}
export declare class BIconBucket extends BvComponent {}
@@ -184,16 +242,76 @@ export declare class BIconCapslock extends BvComponent {}
export declare class BIconCapslockFill extends BvComponent {}
+export declare class BIconCardChecklist extends BvComponent {}
+
+export declare class BIconCardHeading extends BvComponent {}
+
+export declare class BIconCardImage extends BvComponent {}
+
+export declare class BIconCardList extends BvComponent {}
+
+export declare class BIconCardText extends BvComponent {}
+
+export declare class BIconCaretDown extends BvComponent {}
+
+export declare class BIconCaretDownFill extends BvComponent {}
+
+export declare class BIconCaretLeft extends BvComponent {}
+
+export declare class BIconCaretLeftFill extends BvComponent {}
+
+export declare class BIconCaretRight extends BvComponent {}
+
+export declare class BIconCaretRightFill extends BvComponent {}
+
+export declare class BIconCaretUp extends BvComponent {}
+
+export declare class BIconCaretUpFill extends BvComponent {}
+
export declare class BIconChat extends BvComponent {}
+export declare class BIconChatDots extends BvComponent {}
+
+export declare class BIconChatDotsFill extends BvComponent {}
+
export declare class BIconChatFill extends BvComponent {}
+export declare class BIconChatQuote extends BvComponent {}
+
+export declare class BIconChatQuoteFill extends BvComponent {}
+
+export declare class BIconChatSquare extends BvComponent {}
+
+export declare class BIconChatSquareDots extends BvComponent {}
+
+export declare class BIconChatSquareDotsFill extends BvComponent {}
+
+export declare class BIconChatSquareFill extends BvComponent {}
+
+export declare class BIconChatSquareQuote extends BvComponent {}
+
+export declare class BIconChatSquareQuoteFill extends BvComponent {}
+
export declare class BIconCheck extends BvComponent {}
+export declare class BIconCheckAll extends BvComponent {}
+
export declare class BIconCheckBox extends BvComponent {}
export declare class BIconCheckCircle extends BvComponent {}
+export declare class BIconChevronBarContract extends BvComponent {}
+
+export declare class BIconChevronBarDown extends BvComponent {}
+
+export declare class BIconChevronBarExpand extends BvComponent {}
+
+export declare class BIconChevronBarLeft extends BvComponent {}
+
+export declare class BIconChevronBarRight extends BvComponent {}
+
+export declare class BIconChevronBarUp extends BvComponent {}
+
export declare class BIconChevronCompactDown extends BvComponent {}
export declare class BIconChevronCompactLeft extends BvComponent {}
@@ -202,8 +320,20 @@ export declare class BIconChevronCompactRight extends BvComponent {}
export declare class BIconChevronCompactUp extends BvComponent {}
+export declare class BIconChevronContract extends BvComponent {}
+
+export declare class BIconChevronDoubleDown extends BvComponent {}
+
+export declare class BIconChevronDoubleLeft extends BvComponent {}
+
+export declare class BIconChevronDoubleRight extends BvComponent {}
+
+export declare class BIconChevronDoubleUp extends BvComponent {}
+
export declare class BIconChevronDown extends BvComponent {}
+export declare class BIconChevronExpand extends BvComponent {}
+
export declare class BIconChevronLeft extends BvComponent {}
export declare class BIconChevronRight extends BvComponent {}
@@ -216,12 +346,18 @@ export declare class BIconCircleFill extends BvComponent {}
export declare class BIconCircleHalf extends BvComponent {}
-export declare class BIconCircleSlash extends BvComponent {}
+export declare class BIconCircleSquare extends BvComponent {}
+
+export declare class BIconClipboard extends BvComponent {}
+
+export declare class BIconClipboardData extends BvComponent {}
export declare class BIconClock extends BvComponent {}
export declare class BIconClockFill extends BvComponent {}
+export declare class BIconClockHistory extends BvComponent {}
+
export declare class BIconCloud extends BvComponent {}
export declare class BIconCloudDownload extends BvComponent {}
@@ -234,9 +370,17 @@ export declare class BIconCode extends BvComponent {}
export declare class BIconCodeSlash extends BvComponent {}
+export declare class BIconCollection extends BvComponent {}
+
+export declare class BIconCollectionFill extends BvComponent {}
+
+export declare class BIconCollectionPlay extends BvComponent {}
+
+export declare class BIconCollectionPlayFill extends BvComponent {}
+
export declare class BIconColumns extends BvComponent {}
-export declare class BIconColumnsGutters extends BvComponent {}
+export declare class BIconColumnsGap extends BvComponent {}
export declare class BIconCommand extends BvComponent {}
@@ -250,39 +394,47 @@ export declare class BIconController extends BvComponent {}
export declare class BIconCreditCard extends BvComponent {}
+export declare class BIconCrop extends BvComponent {}
+
export declare class BIconCursor extends BvComponent {}
export declare class BIconCursorFill extends BvComponent {}
+export declare class BIconCursorText extends BvComponent {}
+
export declare class BIconDash extends BvComponent {}
+export declare class BIconDashCircle extends BvComponent {}
+
+export declare class BIconDashCircleFill extends BvComponent {}
+
+export declare class BIconDashSquare extends BvComponent {}
+
+export declare class BIconDashSquareFill extends BvComponent {}
+
export declare class BIconDiamond extends BvComponent {}
+export declare class BIconDiamondFill extends BvComponent {}
+
export declare class BIconDiamondHalf extends BvComponent {}
export declare class BIconDisplay extends BvComponent {}
export declare class BIconDisplayFill extends BvComponent {}
-export declare class BIconDocument extends BvComponent {}
-
-export declare class BIconDocumentCode extends BvComponent {}
-
-export declare class BIconDocumentDiff extends BvComponent {}
+export declare class BIconDot extends BvComponent {}
-export declare class BIconDocumentRichtext extends BvComponent {}
+export declare class BIconDownload extends BvComponent {}
-export declare class BIconDocumentSpreadsheet extends BvComponent {}
+export declare class BIconDroplet extends BvComponent {}
-export declare class BIconDocumentText extends BvComponent {}
+export declare class BIconDropletFill extends BvComponent {}
-export declare class BIconDocuments extends BvComponent {}
+export declare class BIconDropletHalf extends BvComponent {}
-export declare class BIconDocumentsAlt extends BvComponent {}
+export declare class BIconEgg extends BvComponent {}
-export declare class BIconDot extends BvComponent {}
-
-export declare class BIconDownload extends BvComponent {}
+export declare class BIconEggFill extends BvComponent {}
export declare class BIconEggFried extends BvComponent {}
@@ -298,6 +450,30 @@ export declare class BIconEnvelopeOpen extends BvComponent {}
export declare class BIconEnvelopeOpenFill extends BvComponent {}
+export declare class BIconExclamation extends BvComponent {}
+
+export declare class BIconExclamationCircle extends BvComponent {}
+
+export declare class BIconExclamationCircleFill extends BvComponent {}
+
+export declare class BIconExclamationDiamond extends BvComponent {}
+
+export declare class BIconExclamationDiamondFill extends BvComponent {}
+
+export declare class BIconExclamationOctagon extends BvComponent {}
+
+export declare class BIconExclamationOctagonFill extends BvComponent {}
+
+export declare class BIconExclamationSquare extends BvComponent {}
+
+export declare class BIconExclamationSquareFill extends BvComponent {}
+
+export declare class BIconExclamationTriangle extends BvComponent {}
+
+export declare class BIconExclamationTriangleFill extends BvComponent {}
+
+export declare class BIconExclude extends BvComponent {}
+
export declare class BIconEye extends BvComponent {}
export declare class BIconEyeFill extends BvComponent {}
@@ -306,16 +482,88 @@ export declare class BIconEyeSlash extends BvComponent {}
export declare class BIconEyeSlashFill extends BvComponent {}
+export declare class BIconFile extends BvComponent {}
+
+export declare class BIconFileArrowDown extends BvComponent {}
+
+export declare class BIconFileArrowUp extends BvComponent {}
+
+export declare class BIconFileBreak extends BvComponent {}
+
+export declare class BIconFileCheck extends BvComponent {}
+
+export declare class BIconFileCode extends BvComponent {}
+
+export declare class BIconFileDiff extends BvComponent {}
+
+export declare class BIconFileEarmark extends BvComponent {}
+
+export declare class BIconFileEarmarkArrowDown extends BvComponent {}
+
+export declare class BIconFileEarmarkArrowUp extends BvComponent {}
+
+export declare class BIconFileEarmarkBreak extends BvComponent {}
+
+export declare class BIconFileEarmarkCheck extends BvComponent {}
+
+export declare class BIconFileEarmarkCode extends BvComponent {}
+
+export declare class BIconFileEarmarkDiff extends BvComponent {}
+
+export declare class BIconFileEarmarkMinus extends BvComponent {}
+
+export declare class BIconFileEarmarkPlus extends BvComponent {}
+
+export declare class BIconFileEarmarkRuled extends BvComponent {}
+
+export declare class BIconFileEarmarkSpreadsheet extends BvComponent {}
+
+export declare class BIconFileEarmarkText extends BvComponent {}
+
+export declare class BIconFileEarmarkZip extends BvComponent {}
+
+export declare class BIconFileMinus extends BvComponent {}
+
+export declare class BIconFilePlus extends BvComponent {}
+
+export declare class BIconFilePost extends BvComponent {}
+
+export declare class BIconFileRichtext extends BvComponent {}
+
+export declare class BIconFileRuled extends BvComponent {}
+
+export declare class BIconFileSpreadsheet extends BvComponent {}
+
+export declare class BIconFileText extends BvComponent {}
+
+export declare class BIconFileZip extends BvComponent {}
+
+export declare class BIconFiles extends BvComponent {}
+
+export declare class BIconFilesAlt extends BvComponent {}
+
+export declare class BIconFilm extends BvComponent {}
+
export declare class BIconFilter extends BvComponent {}
+export declare class BIconFilterLeft extends BvComponent {}
+
+export declare class BIconFilterRight extends BvComponent {}
+
export declare class BIconFlag extends BvComponent {}
export declare class BIconFlagFill extends BvComponent {}
export declare class BIconFolder extends BvComponent {}
+export declare class BIconFolderCheck extends BvComponent {}
+
export declare class BIconFolderFill extends BvComponent {}
+export declare class BIconFolderMinus extends BvComponent {}
+
+export declare class BIconFolderPlus extends BvComponent {}
+
export declare class BIconFolderSymlink extends BvComponent {}
export declare class BIconFolderSymlinkFill extends BvComponent {}
@@ -326,6 +574,14 @@ export declare class BIconForward extends BvComponent {}
export declare class BIconForwardFill extends BvComponent {}
+export declare class BIconFullscreen extends BvComponent {}
+
+export declare class BIconFullscreenExit extends BvComponent {}
+
+export declare class BIconFunnel extends BvComponent {}
+
+export declare class BIconFunnelFill extends BvComponent {}
+
export declare class BIconGear extends BvComponent {}
export declare class BIconGearFill extends BvComponent {}
@@ -334,14 +590,38 @@ export declare class BIconGearWide extends BvComponent {}
export declare class BIconGearWideConnected extends BvComponent {}
+export declare class BIconGem extends BvComponent {}
+
export declare class BIconGeo extends BvComponent {}
+export declare class BIconGeoAlt extends BvComponent {}
+
+export declare class BIconGift extends BvComponent {}
+
+export declare class BIconGiftFill extends BvComponent {}
+
export declare class BIconGraphDown extends BvComponent {}
export declare class BIconGraphUp extends BvComponent {}
export declare class BIconGrid extends BvComponent {}
+export declare class BIconGrid1x2 extends BvComponent {}
+
+export declare class BIconGrid1x2Fill extends BvComponent {}
+
+export declare class BIconGrid3x2 extends BvComponent {}
+
+export declare class BIconGrid3x2Gap extends BvComponent {}
+
+export declare class BIconGrid3x2GapFill extends BvComponent {}
+
+export declare class BIconGrid3x3 extends BvComponent {}
+
+export declare class BIconGrid3x3Gap extends BvComponent {}
+
+export declare class BIconGrid3x3GapFill extends BvComponent {}
+
export declare class BIconGridFill extends BvComponent {}
export declare class BIconHammer extends BvComponent {}
@@ -352,10 +632,18 @@ export declare class BIconHeart extends BvComponent {}
export declare class BIconHeartFill extends BvComponent {}
+export declare class BIconHeartHalf extends BvComponent {}
+
export declare class BIconHouse extends BvComponent {}
+export declare class BIconHouseDoor extends BvComponent {}
+
+export declare class BIconHouseDoorFill extends BvComponent {}
+
export declare class BIconHouseFill extends BvComponent {}
+export declare class BIconHr extends BvComponent {}
+
export declare class BIconImage extends BvComponent {}
export declare class BIconImageAlt extends BvComponent {}
@@ -374,12 +662,16 @@ export declare class BIconInboxesFill extends BvComponent {}
export declare class BIconInfo extends BvComponent {}
-export declare class BIconInfoFill extends BvComponent {}
+export declare class BIconInfoCircle extends BvComponent {}
+
+export declare class BIconInfoCircleFill extends BvComponent {}
export declare class BIconInfoSquare extends BvComponent {}
export declare class BIconInfoSquareFill extends BvComponent {}
+export declare class BIconIntersect extends BvComponent {}
+
export declare class BIconJustify extends BvComponent {}
export declare class BIconJustifyLeft extends BvComponent {}
@@ -392,16 +684,50 @@ export declare class BIconKanbanFill extends BvComponent {}
export declare class BIconLaptop extends BvComponent {}
+export declare class BIconLayers extends BvComponent {}
+
+export declare class BIconLayersFill extends BvComponent {}
+
+export declare class BIconLayersHalf extends BvComponent {}
+
export declare class BIconLayoutSidebar extends BvComponent {}
+export declare class BIconLayoutSidebarInset extends BvComponent {}
+
+export declare class BIconLayoutSidebarInsetReverse extends BvComponent {}
+
export declare class BIconLayoutSidebarReverse extends BvComponent {}
export declare class BIconLayoutSplit extends BvComponent {}
+export declare class BIconLayoutTextSidebar extends BvComponent {}
+
+export declare class BIconLayoutTextSidebarReverse extends BvComponent {}
+
+export declare class BIconLayoutTextWindow extends BvComponent {}
+
+export declare class BIconLayoutTextWindowReverse extends BvComponent {}
+
+export declare class BIconLayoutThreeColumns extends BvComponent {}
+
+export declare class BIconLayoutWtf extends BvComponent {}
+
+export declare class BIconLifePreserver extends BvComponent {}
+
+export declare class BIconLightning extends BvComponent {}
+
+export declare class BIconLightningFill extends BvComponent {}
+
+export declare class BIconLink extends BvComponent {}
+
+export declare class BIconLink45deg extends BvComponent {}
+
export declare class BIconList extends BvComponent {}
export declare class BIconListCheck extends BvComponent {}
+export declare class BIconListNested extends BvComponent {}
+
export declare class BIconListOl extends BvComponent {}
export declare class BIconListTask extends BvComponent {}
@@ -416,16 +742,38 @@ export declare class BIconMap extends BvComponent {}
export declare class BIconMic extends BvComponent {}
+export declare class BIconMicFill extends BvComponent {}
+
+export declare class BIconMicMute extends BvComponent {}
+
+export declare class BIconMicMuteFill extends BvComponent {}
+
export declare class BIconMoon extends BvComponent {}
+export declare class BIconMusicNote extends BvComponent {}
+
+export declare class BIconMusicNoteBeamed extends BvComponent {}
+
+export declare class BIconMusicNoteList extends BvComponent {}
+
export declare class BIconMusicPlayer extends BvComponent {}
export declare class BIconMusicPlayerFill extends BvComponent {}
+export declare class BIconNewspaper extends BvComponent {}
+
+export declare class BIconOctagon extends BvComponent {}
+
+export declare class BIconOctagonFill extends BvComponent {}
+
+export declare class BIconOctagonHalf extends BvComponent {}
+
export declare class BIconOption extends BvComponent {}
export declare class BIconOutlet extends BvComponent {}
+export declare class BIconPaperclip extends BvComponent {}
+
export declare class BIconPause extends BvComponent {}
export declare class BIconPauseFill extends BvComponent {}
@@ -434,14 +782,42 @@ export declare class BIconPen extends BvComponent {}
export declare class BIconPencil extends BvComponent {}
+export declare class BIconPencilSquare extends BvComponent {}
+
+export declare class BIconPentagon extends BvComponent {}
+
+export declare class BIconPentagonFill extends BvComponent {}
+
+export declare class BIconPentagonHalf extends BvComponent {}
+
export declare class BIconPeople extends BvComponent {}
+export declare class BIconPeopleCircle extends BvComponent {}
+
export declare class BIconPeopleFill extends BvComponent {}
export declare class BIconPerson extends BvComponent {}
+export declare class BIconPersonBoundingBox extends BvComponent {}
+
+export declare class BIconPersonCheck extends BvComponent {}
+
+export declare class BIconPersonCheckFill extends BvComponent {}
+
+export declare class BIconPersonDash extends BvComponent {}
+
+export declare class BIconPersonDashFill extends BvComponent {}
+
export declare class BIconPersonFill extends BvComponent {}
+export declare class BIconPersonLinesFill extends BvComponent {}
+
+export declare class BIconPersonPlus extends BvComponent {}
+
+export declare class BIconPersonPlusFill extends BvComponent {}
+
+export declare class BIconPersonSquare extends BvComponent {}
+
export declare class BIconPhone extends BvComponent {}
export declare class BIconPhoneLandscape extends BvComponent {}
@@ -450,6 +826,10 @@ export declare class BIconPieChart extends BvComponent {}
export declare class BIconPieChartFill extends BvComponent {}
+export declare class BIconPip extends BvComponent {}
+
+export declare class BIconPipFill extends BvComponent {}
+
export declare class BIconPlay extends BvComponent {}
export declare class BIconPlayFill extends BvComponent {}
@@ -458,11 +838,33 @@ export declare class BIconPlug extends BvComponent {}
export declare class BIconPlus extends BvComponent {}
+export declare class BIconPlusCircle extends BvComponent {}
+
+export declare class BIconPlusCircleFill extends BvComponent {}
+
+export declare class BIconPlusSquare extends BvComponent {}
+
+export declare class BIconPlusSquareFill extends BvComponent {}
+
export declare class BIconPower extends BvComponent {}
+export declare class BIconPuzzle extends BvComponent {}
+
+export declare class BIconPuzzleFill extends BvComponent {}
+
export declare class BIconQuestion extends BvComponent {}
-export declare class BIconQuestionFill extends BvComponent {}
+export declare class BIconQuestionCircle extends BvComponent {}
+
+export declare class BIconQuestionCircleFill extends BvComponent {}
+
+export declare class BIconQuestionDiamond extends BvComponent {}
+
+export declare class BIconQuestionDiamondFill extends BvComponent {}
+
+export declare class BIconQuestionOctagon extends BvComponent {}
+
+export declare class BIconQuestionOctagonFill extends BvComponent {}
export declare class BIconQuestionSquare extends BvComponent {}
@@ -480,6 +882,8 @@ export declare class BIconScrewdriver extends BvComponent {}
export declare class BIconSearch extends BvComponent {}
+export declare class BIconServer extends BvComponent {}
+
export declare class BIconShield extends BvComponent {}
export declare class BIconShieldFill extends BvComponent {}
@@ -494,6 +898,8 @@ export declare class BIconShift extends BvComponent {}
export declare class BIconShiftFill extends BvComponent {}
+export declare class BIconShuffle extends BvComponent {}
+
export declare class BIconSkipBackward extends BvComponent {}
export declare class BIconSkipBackwardFill extends BvComponent {}
@@ -510,6 +916,20 @@ export declare class BIconSkipStart extends BvComponent {}
export declare class BIconSkipStartFill extends BvComponent {}
+export declare class BIconSlash extends BvComponent {}
+
+export declare class BIconSlashCircle extends BvComponent {}
+
+export declare class BIconSlashCircleFill extends BvComponent {}
+
+export declare class BIconSlashSquare extends BvComponent {}
+
+export declare class BIconSlashSquareFill extends BvComponent {}
+
+export declare class BIconSliders extends BvComponent {}
+
+export declare class BIconSoundwave extends BvComponent {}
+
export declare class BIconSpeaker extends BvComponent {}
export declare class BIconSquare extends BvComponent {}
@@ -532,6 +952,8 @@ export declare class BIconStopwatch extends BvComponent {}
export declare class BIconStopwatchFill extends BvComponent {}
+export declare class BIconSubtract extends BvComponent {}
+
export declare class BIconSun extends BvComponent {}
export declare class BIconTable extends BvComponent {}
@@ -558,6 +980,10 @@ export declare class BIconTextLeft extends BvComponent {}
export declare class BIconTextRight extends BvComponent {}
+export declare class BIconTextarea extends BvComponent {}
+
+export declare class BIconTextareaT extends BvComponent {}
+
export declare class BIconThreeDots extends BvComponent {}
export declare class BIconThreeDotsVertical extends BvComponent {}
@@ -572,6 +998,10 @@ export declare class BIconTools extends BvComponent {}
export declare class BIconTrash extends BvComponent {}
+export declare class BIconTrash2 extends BvComponent {}
+
+export declare class BIconTrash2Fill extends BvComponent {}
+
export declare class BIconTrashFill extends BvComponent {}
export declare class BIconTriangle extends BvComponent {}
@@ -602,12 +1032,18 @@ export declare class BIconTypeStrikethrough extends BvComponent {}
export declare class BIconTypeUnderline extends BvComponent {}
+export declare class BIconUnion extends BvComponent {}
+
export declare class BIconUnlock extends BvComponent {}
export declare class BIconUnlockFill extends BvComponent {}
export declare class BIconUpload extends BvComponent {}
+export declare class BIconViewList extends BvComponent {}
+
+export declare class BIconViewStacked extends BvComponent {}
+
export declare class BIconVolumeDown extends BvComponent {}
export declare class BIconVolumeDownFill extends BvComponent {}
@@ -620,6 +1056,8 @@ export declare class BIconVolumeUp extends BvComponent {}
export declare class BIconVolumeUpFill extends BvComponent {}
+export declare class BIconVr extends BvComponent {}
+
export declare class BIconWallet extends BvComponent {}
export declare class BIconWatch extends BvComponent {}
@@ -636,6 +1074,10 @@ export declare class BIconXCircle extends BvComponent {}
export declare class BIconXCircleFill extends BvComponent {}
+export declare class BIconXDiamond extends BvComponent {}
+
+export declare class BIconXDiamondFill extends BvComponent {}
+
export declare class BIconXOctagon extends BvComponent {}
export declare class BIconXOctagonFill extends BvComponent {}
diff --git a/src/icons/icons.js b/src/icons/icons.js
index 631724e475c..86e87447f9c 100644
--- a/src/icons/icons.js
+++ b/src/icons/icons.js
@@ -1,12 +1,12 @@
// --- BEGIN AUTO-GENERATED FILE ---
//
-// @IconsVersion: 1.0.0-alpha2
-// @Generated: 2020-03-12T09:18:47.956Z
+// @IconsVersion: 1.0.0-alpha3
+// @Generated: 2020-03-19T18:55:36.736Z
//
// This file is generated on each build. Do not edit this file!
/*!
- * BootstrapVue Icons, generated from Bootstrap Icons 1.0.0-alpha2
+ * BootstrapVue Icons, generated from Bootstrap Icons 1.0.0-alpha3
*
* @link https://icons.getbootstrap.com/
* @license MIT
@@ -21,1579 +21,3220 @@ export const BIconBlank = /*#__PURE__*/ makeIcon('Blank', '')
// --- Bootstrap Icons ---
+// eslint-disable-next-line
export const BIconAlarm = /*#__PURE__*/ makeIcon(
'Alarm',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconAlarmFill = /*#__PURE__*/ makeIcon(
'AlarmFill',
- ''
+ ''
)
-export const BIconAlertCircle = /*#__PURE__*/ makeIcon(
- 'AlertCircle',
- ''
+// eslint-disable-next-line
+export const BIconAlt = /*#__PURE__*/ makeIcon(
+ 'Alt',
+ ''
)
-export const BIconAlertCircleFill = /*#__PURE__*/ makeIcon(
- 'AlertCircleFill',
- ''
+// eslint-disable-next-line
+export const BIconApp = /*#__PURE__*/ makeIcon(
+ 'App',
+ ''
)
-export const BIconAlertOctagon = /*#__PURE__*/ makeIcon(
- 'AlertOctagon',
- ''
+// eslint-disable-next-line
+export const BIconAppIndicator = /*#__PURE__*/ makeIcon(
+ 'AppIndicator',
+ ''
)
-export const BIconAlertOctagonFill = /*#__PURE__*/ makeIcon(
- 'AlertOctagonFill',
- ''
+// eslint-disable-next-line
+export const BIconArchive = /*#__PURE__*/ makeIcon(
+ 'Archive',
+ ''
)
-export const BIconAlertSquare = /*#__PURE__*/ makeIcon(
- 'AlertSquare',
- ''
+// eslint-disable-next-line
+export const BIconArchiveFill = /*#__PURE__*/ makeIcon(
+ 'ArchiveFill',
+ ''
)
-export const BIconAlertSquareFill = /*#__PURE__*/ makeIcon(
- 'AlertSquareFill',
- ''
+// eslint-disable-next-line
+export const BIconArrow90degDown = /*#__PURE__*/ makeIcon(
+ 'Arrow90degDown',
+ ''
)
-export const BIconAlertTriangle = /*#__PURE__*/ makeIcon(
- 'AlertTriangle',
- ''
+// eslint-disable-next-line
+export const BIconArrow90degLeft = /*#__PURE__*/ makeIcon(
+ 'Arrow90degLeft',
+ ''
)
-export const BIconAlertTriangleFill = /*#__PURE__*/ makeIcon(
- 'AlertTriangleFill',
- ''
+// eslint-disable-next-line
+export const BIconArrow90degRight = /*#__PURE__*/ makeIcon(
+ 'Arrow90degRight',
+ ''
)
-export const BIconArchive = /*#__PURE__*/ makeIcon(
- 'Archive',
- ''
+// eslint-disable-next-line
+export const BIconArrow90degUp = /*#__PURE__*/ makeIcon(
+ 'Arrow90degUp',
+ ''
)
-export const BIconArchiveFill = /*#__PURE__*/ makeIcon(
- 'ArchiveFill',
- ''
-)
-
-export const BIconArrowBarBottom = /*#__PURE__*/ makeIcon(
- 'ArrowBarBottom',
- ''
+// 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 BIconArrowDownLeft = /*#__PURE__*/ makeIcon(
'ArrowDownLeft',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconArrowDownRight = /*#__PURE__*/ makeIcon(
'ArrowDownRight',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconArrowDownShort = /*#__PURE__*/ makeIcon(
'ArrowDownShort',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconArrowLeft = /*#__PURE__*/ makeIcon(
'ArrowLeft',
- ''
+ ''
)
+// 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 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 BIconArrowRightShort = /*#__PURE__*/ makeIcon(
'ArrowRightShort',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconArrowUp = /*#__PURE__*/ makeIcon(
'ArrowUp',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconArrowUpDown = /*#__PURE__*/ makeIcon(
'ArrowUpDown',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconArrowUpLeft = /*#__PURE__*/ makeIcon(
'ArrowUpLeft',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconArrowUpRight = /*#__PURE__*/ makeIcon(
'ArrowUpRight',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconArrowUpShort = /*#__PURE__*/ makeIcon(
'ArrowUpShort',
- ''
+ ''
)
+// 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
+export const BIconAspectRatio = /*#__PURE__*/ makeIcon(
+ 'AspectRatio',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconAspectRatioFill = /*#__PURE__*/ makeIcon(
+ 'AspectRatioFill',
+ ''
)
+// eslint-disable-next-line
export const BIconAt = /*#__PURE__*/ makeIcon(
'At',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconAward = /*#__PURE__*/ makeIcon(
'Award',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconAwardFill = /*#__PURE__*/ makeIcon(
+ 'AwardFill',
+ ''
)
+// eslint-disable-next-line
export const BIconBackspace = /*#__PURE__*/ makeIcon(
'Backspace',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBackspaceFill = /*#__PURE__*/ makeIcon(
'BackspaceFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBackspaceReverse = /*#__PURE__*/ makeIcon(
'BackspaceReverse',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBackspaceReverseFill = /*#__PURE__*/ makeIcon(
'BackspaceReverseFill',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconBag = /*#__PURE__*/ makeIcon(
+ 'Bag',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconBagFill = /*#__PURE__*/ makeIcon(
+ 'BagFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconBarChart = /*#__PURE__*/ makeIcon(
'BarChart',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBarChartFill = /*#__PURE__*/ makeIcon(
'BarChartFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBattery = /*#__PURE__*/ makeIcon(
'Battery',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBatteryCharging = /*#__PURE__*/ makeIcon(
'BatteryCharging',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBatteryFull = /*#__PURE__*/ makeIcon(
'BatteryFull',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconBatteryHalf = /*#__PURE__*/ makeIcon(
+ 'BatteryHalf',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconBell = /*#__PURE__*/ makeIcon(
'Bell',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBellFill = /*#__PURE__*/ makeIcon(
'BellFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBlockquoteLeft = /*#__PURE__*/ makeIcon(
'BlockquoteLeft',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBlockquoteRight = /*#__PURE__*/ makeIcon(
'BlockquoteRight',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBook = /*#__PURE__*/ makeIcon(
'Book',
- ''
+ ''
)
-export const BIconBookHalfFill = /*#__PURE__*/ makeIcon(
- 'BookHalfFill',
- ''
+// 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 BIconBookmarkDash = /*#__PURE__*/ makeIcon(
+ 'BookmarkDash',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconBookmarkFill = /*#__PURE__*/ makeIcon(
'BookmarkFill',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconBookmarkPlus = /*#__PURE__*/ makeIcon(
+ 'BookmarkPlus',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconBookmarks = /*#__PURE__*/ makeIcon(
+ 'Bookmarks',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconBookmarksFill = /*#__PURE__*/ makeIcon(
+ 'BookmarksFill',
+ ''
)
+// eslint-disable-next-line
export const BIconBootstrap = /*#__PURE__*/ makeIcon(
'Bootstrap',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBootstrapFill = /*#__PURE__*/ makeIcon(
'BootstrapFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBootstrapReboot = /*#__PURE__*/ makeIcon(
'BootstrapReboot',
- ''
+ ''
)
-export const BIconBoxArrowBottomLeft = /*#__PURE__*/ makeIcon(
- 'BoxArrowBottomLeft',
- ''
+// eslint-disable-next-line
+export const BIconBoundingBox = /*#__PURE__*/ makeIcon(
+ 'BoundingBox',
+ ''
)
-export const BIconBoxArrowBottomRight = /*#__PURE__*/ makeIcon(
- 'BoxArrowBottomRight',
- ''
+// eslint-disable-next-line
+export const BIconBoundingBoxCircles = /*#__PURE__*/ makeIcon(
+ 'BoundingBoxCircles',
+ ''
)
+// 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
export const BIconBraces = /*#__PURE__*/ makeIcon(
'Braces',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconBriefcase = /*#__PURE__*/ makeIcon(
+ 'Briefcase',
+ ''
)
-export const BIconBrightnessFillHigh = /*#__PURE__*/ makeIcon(
- 'BrightnessFillHigh',
- ''
+// eslint-disable-next-line
+export const BIconBriefcaseFill = /*#__PURE__*/ makeIcon(
+ 'BriefcaseFill',
+ ''
)
-export const BIconBrightnessFillLow = /*#__PURE__*/ makeIcon(
- 'BrightnessFillLow',
- ''
+// eslint-disable-next-line
+export const BIconBrightnessAltHigh = /*#__PURE__*/ makeIcon(
+ 'BrightnessAltHigh',
+ ''
)
+// eslint-disable-next-line
+export const BIconBrightnessAltHighFill = /*#__PURE__*/ makeIcon(
+ 'BrightnessAltHighFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconBrightnessAltLow = /*#__PURE__*/ makeIcon(
+ 'BrightnessAltLow',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconBrightnessAltLowFill = /*#__PURE__*/ makeIcon(
+ 'BrightnessAltLowFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconBrightnessHigh = /*#__PURE__*/ makeIcon(
'BrightnessHigh',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconBrightnessHighFill = /*#__PURE__*/ makeIcon(
+ 'BrightnessHighFill',
+ ''
)
+// eslint-disable-next-line
export const BIconBrightnessLow = /*#__PURE__*/ makeIcon(
'BrightnessLow',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconBrightnessLowFill = /*#__PURE__*/ makeIcon(
+ 'BrightnessLowFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconBrush = /*#__PURE__*/ makeIcon(
'Brush',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBucket = /*#__PURE__*/ makeIcon(
'Bucket',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBucketFill = /*#__PURE__*/ makeIcon(
'BucketFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBuilding = /*#__PURE__*/ makeIcon(
'Building',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconBullseye = /*#__PURE__*/ makeIcon(
'Bullseye',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCalendar = /*#__PURE__*/ makeIcon(
'Calendar',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCalendarFill = /*#__PURE__*/ makeIcon(
'CalendarFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCamera = /*#__PURE__*/ makeIcon(
'Camera',
- ''
+ ''
)
+// 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 BIconCapslock = /*#__PURE__*/ makeIcon(
'Capslock',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCapslockFill = /*#__PURE__*/ makeIcon(
'CapslockFill',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCardChecklist = /*#__PURE__*/ makeIcon(
+ 'CardChecklist',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCardHeading = /*#__PURE__*/ makeIcon(
+ 'CardHeading',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCardImage = /*#__PURE__*/ makeIcon(
+ 'CardImage',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCardList = /*#__PURE__*/ makeIcon(
+ 'CardList',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCardText = /*#__PURE__*/ makeIcon(
+ 'CardText',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCaretDown = /*#__PURE__*/ makeIcon(
+ 'CaretDown',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCaretDownFill = /*#__PURE__*/ makeIcon(
+ 'CaretDownFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCaretLeft = /*#__PURE__*/ makeIcon(
+ 'CaretLeft',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCaretLeftFill = /*#__PURE__*/ makeIcon(
+ 'CaretLeftFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCaretRight = /*#__PURE__*/ makeIcon(
+ 'CaretRight',
+ ''
)
+// eslint-disable-next-line
+export const BIconCaretRightFill = /*#__PURE__*/ makeIcon(
+ 'CaretRightFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCaretUp = /*#__PURE__*/ makeIcon(
+ 'CaretUp',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCaretUpFill = /*#__PURE__*/ makeIcon(
+ 'CaretUpFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconChat = /*#__PURE__*/ makeIcon(
'Chat',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChatDots = /*#__PURE__*/ makeIcon(
+ 'ChatDots',
+ ''
)
+// eslint-disable-next-line
+export const BIconChatDotsFill = /*#__PURE__*/ makeIcon(
+ 'ChatDotsFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconChatFill = /*#__PURE__*/ makeIcon(
'ChatFill',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChatQuote = /*#__PURE__*/ makeIcon(
+ 'ChatQuote',
+ ''
)
+// eslint-disable-next-line
+export const BIconChatQuoteFill = /*#__PURE__*/ makeIcon(
+ 'ChatQuoteFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChatSquare = /*#__PURE__*/ makeIcon(
+ 'ChatSquare',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChatSquareDots = /*#__PURE__*/ makeIcon(
+ 'ChatSquareDots',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChatSquareDotsFill = /*#__PURE__*/ makeIcon(
+ 'ChatSquareDotsFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChatSquareFill = /*#__PURE__*/ makeIcon(
+ 'ChatSquareFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChatSquareQuote = /*#__PURE__*/ makeIcon(
+ 'ChatSquareQuote',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChatSquareQuoteFill = /*#__PURE__*/ makeIcon(
+ 'ChatSquareQuoteFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconCheck = /*#__PURE__*/ makeIcon(
'Check',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconCheckAll = /*#__PURE__*/ makeIcon(
+ 'CheckAll',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconCheckBox = /*#__PURE__*/ makeIcon(
'CheckBox',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCheckCircle = /*#__PURE__*/ makeIcon(
'CheckCircle',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconChevronBarContract = /*#__PURE__*/ makeIcon(
+ 'ChevronBarContract',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChevronBarDown = /*#__PURE__*/ makeIcon(
+ 'ChevronBarDown',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChevronBarExpand = /*#__PURE__*/ makeIcon(
+ 'ChevronBarExpand',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChevronBarLeft = /*#__PURE__*/ makeIcon(
+ 'ChevronBarLeft',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChevronBarRight = /*#__PURE__*/ makeIcon(
+ 'ChevronBarRight',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChevronBarUp = /*#__PURE__*/ makeIcon(
+ 'ChevronBarUp',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconChevronCompactDown = /*#__PURE__*/ makeIcon(
'ChevronCompactDown',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconChevronCompactLeft = /*#__PURE__*/ makeIcon(
'ChevronCompactLeft',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconChevronCompactRight = /*#__PURE__*/ makeIcon(
'ChevronCompactRight',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconChevronCompactUp = /*#__PURE__*/ makeIcon(
'ChevronCompactUp',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChevronContract = /*#__PURE__*/ makeIcon(
+ 'ChevronContract',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChevronDoubleDown = /*#__PURE__*/ makeIcon(
+ 'ChevronDoubleDown',
+ ''
)
+// eslint-disable-next-line
+export const BIconChevronDoubleLeft = /*#__PURE__*/ makeIcon(
+ 'ChevronDoubleLeft',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChevronDoubleRight = /*#__PURE__*/ makeIcon(
+ 'ChevronDoubleRight',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChevronDoubleUp = /*#__PURE__*/ makeIcon(
+ 'ChevronDoubleUp',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconChevronDown = /*#__PURE__*/ makeIcon(
'ChevronDown',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconChevronExpand = /*#__PURE__*/ makeIcon(
+ 'ChevronExpand',
+ ''
)
+// eslint-disable-next-line
export const BIconChevronLeft = /*#__PURE__*/ makeIcon(
'ChevronLeft',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconChevronRight = /*#__PURE__*/ makeIcon(
'ChevronRight',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconChevronUp = /*#__PURE__*/ makeIcon(
'ChevronUp',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCircle = /*#__PURE__*/ makeIcon(
'Circle',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCircleFill = /*#__PURE__*/ makeIcon(
'CircleFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCircleHalf = /*#__PURE__*/ makeIcon(
'CircleHalf',
- ''
+ ''
)
-export const BIconCircleSlash = /*#__PURE__*/ makeIcon(
- 'CircleSlash',
- ''
+// eslint-disable-next-line
+export const BIconCircleSquare = /*#__PURE__*/ makeIcon(
+ 'CircleSquare',
+ ''
)
+// eslint-disable-next-line
+export const BIconClipboard = /*#__PURE__*/ makeIcon(
+ 'Clipboard',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconClipboardData = /*#__PURE__*/ makeIcon(
+ 'ClipboardData',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconClock = /*#__PURE__*/ makeIcon(
'Clock',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconClockFill = /*#__PURE__*/ makeIcon(
'ClockFill',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconClockHistory = /*#__PURE__*/ makeIcon(
+ 'ClockHistory',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconCloud = /*#__PURE__*/ makeIcon(
'Cloud',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCloudDownload = /*#__PURE__*/ makeIcon(
'CloudDownload',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCloudFill = /*#__PURE__*/ makeIcon(
'CloudFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCloudUpload = /*#__PURE__*/ makeIcon(
'CloudUpload',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCode = /*#__PURE__*/ makeIcon(
'Code',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCodeSlash = /*#__PURE__*/ makeIcon(
'CodeSlash',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconCollection = /*#__PURE__*/ makeIcon(
+ 'Collection',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCollectionFill = /*#__PURE__*/ makeIcon(
+ 'CollectionFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCollectionPlay = /*#__PURE__*/ makeIcon(
+ 'CollectionPlay',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCollectionPlayFill = /*#__PURE__*/ makeIcon(
+ 'CollectionPlayFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconColumns = /*#__PURE__*/ makeIcon(
'Columns',
- ''
+ ''
)
-export const BIconColumnsGutters = /*#__PURE__*/ makeIcon(
- 'ColumnsGutters',
- ''
+// eslint-disable-next-line
+export const BIconColumnsGap = /*#__PURE__*/ makeIcon(
+ 'ColumnsGap',
+ ''
)
+// 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 BIconCone = /*#__PURE__*/ makeIcon(
'Cone',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconConeStriped = /*#__PURE__*/ makeIcon(
'ConeStriped',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconController = /*#__PURE__*/ makeIcon(
'Controller',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCreditCard = /*#__PURE__*/ makeIcon(
'CreditCard',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconCrop = /*#__PURE__*/ makeIcon(
+ 'Crop',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconCursor = /*#__PURE__*/ makeIcon(
'Cursor',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconCursorFill = /*#__PURE__*/ makeIcon(
'CursorFill',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconCursorText = /*#__PURE__*/ makeIcon(
+ 'CursorText',
+ ''
)
+// 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 BIconDiamond = /*#__PURE__*/ makeIcon(
'Diamond',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconDiamondFill = /*#__PURE__*/ makeIcon(
+ 'DiamondFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconDiamondHalf = /*#__PURE__*/ makeIcon(
'DiamondHalf',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconDisplay = /*#__PURE__*/ makeIcon(
'Display',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconDisplayFill = /*#__PURE__*/ makeIcon(
'DisplayFill',
- ''
-)
-
-export const BIconDocument = /*#__PURE__*/ makeIcon(
- 'Document',
- ''
-)
-
-export const BIconDocumentCode = /*#__PURE__*/ makeIcon(
- 'DocumentCode',
- ''
+ ''
)
-export const BIconDocumentDiff = /*#__PURE__*/ makeIcon(
- 'DocumentDiff',
- ''
-)
-
-export const BIconDocumentRichtext = /*#__PURE__*/ makeIcon(
- 'DocumentRichtext',
- ''
+// eslint-disable-next-line
+export const BIconDot = /*#__PURE__*/ makeIcon(
+ 'Dot',
+ ''
)
-export const BIconDocumentSpreadsheet = /*#__PURE__*/ makeIcon(
- 'DocumentSpreadsheet',
- ''
+// eslint-disable-next-line
+export const BIconDownload = /*#__PURE__*/ makeIcon(
+ 'Download',
+ ''
)
-export const BIconDocumentText = /*#__PURE__*/ makeIcon(
- 'DocumentText',
- ''
+// eslint-disable-next-line
+export const BIconDroplet = /*#__PURE__*/ makeIcon(
+ 'Droplet',
+ ''
)
-export const BIconDocuments = /*#__PURE__*/ makeIcon(
- 'Documents',
- ''
+// eslint-disable-next-line
+export const BIconDropletFill = /*#__PURE__*/ makeIcon(
+ 'DropletFill',
+ ''
)
-export const BIconDocumentsAlt = /*#__PURE__*/ makeIcon(
- 'DocumentsAlt',
- ''
+// eslint-disable-next-line
+export const BIconDropletHalf = /*#__PURE__*/ makeIcon(
+ 'DropletHalf',
+ ''
)
-export const BIconDot = /*#__PURE__*/ makeIcon(
- 'Dot',
- ''
+// eslint-disable-next-line
+export const BIconEgg = /*#__PURE__*/ makeIcon(
+ 'Egg',
+ ''
)
-export const BIconDownload = /*#__PURE__*/ makeIcon(
- 'Download',
- ''
+// eslint-disable-next-line
+export const BIconEggFill = /*#__PURE__*/ makeIcon(
+ 'EggFill',
+ ''
)
+// eslint-disable-next-line
export const BIconEggFried = /*#__PURE__*/ makeIcon(
'EggFried',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconEject = /*#__PURE__*/ makeIcon(
'Eject',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconEjectFill = /*#__PURE__*/ makeIcon(
'EjectFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconEnvelope = /*#__PURE__*/ makeIcon(
'Envelope',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconEnvelopeFill = /*#__PURE__*/ makeIcon(
'EnvelopeFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconEnvelopeOpen = /*#__PURE__*/ makeIcon(
'EnvelopeOpen',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconEnvelopeOpenFill = /*#__PURE__*/ makeIcon(
'EnvelopeOpenFill',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconExclamation = /*#__PURE__*/ makeIcon(
+ 'Exclamation',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconExclamationCircle = /*#__PURE__*/ makeIcon(
+ 'ExclamationCircle',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconExclamationCircleFill = /*#__PURE__*/ makeIcon(
+ 'ExclamationCircleFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconExclamationDiamond = /*#__PURE__*/ makeIcon(
+ 'ExclamationDiamond',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconExclamationDiamondFill = /*#__PURE__*/ makeIcon(
+ 'ExclamationDiamondFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconExclamationOctagon = /*#__PURE__*/ makeIcon(
+ 'ExclamationOctagon',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconExclamationOctagonFill = /*#__PURE__*/ makeIcon(
+ 'ExclamationOctagonFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconExclamationSquare = /*#__PURE__*/ makeIcon(
+ 'ExclamationSquare',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconExclamationSquareFill = /*#__PURE__*/ makeIcon(
+ 'ExclamationSquareFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconExclamationTriangle = /*#__PURE__*/ makeIcon(
+ 'ExclamationTriangle',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconExclamationTriangleFill = /*#__PURE__*/ makeIcon(
+ 'ExclamationTriangleFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconExclude = /*#__PURE__*/ makeIcon(
+ 'Exclude',
+ ''
)
+// eslint-disable-next-line
export const BIconEye = /*#__PURE__*/ makeIcon(
'Eye',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconEyeFill = /*#__PURE__*/ makeIcon(
'EyeFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconEyeSlash = /*#__PURE__*/ makeIcon(
'EyeSlash',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconEyeSlashFill = /*#__PURE__*/ makeIcon(
'EyeSlashFill',
- ''
+ ''
+)
+
+// 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 BIconFileArrowUp = /*#__PURE__*/ makeIcon(
+ 'FileArrowUp',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileBreak = /*#__PURE__*/ makeIcon(
+ 'FileBreak',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileCheck = /*#__PURE__*/ makeIcon(
+ 'FileCheck',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileCode = /*#__PURE__*/ makeIcon(
+ 'FileCode',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileDiff = /*#__PURE__*/ makeIcon(
+ 'FileDiff',
+ ''
+)
+
+// 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 BIconFileEarmarkArrowUp = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkArrowUp',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkBreak = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkBreak',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkCheck = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkCheck',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkCode = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkCode',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkDiff = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkDiff',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkMinus = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkMinus',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkPlus = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkPlus',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkRuled = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkRuled',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkSpreadsheet = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkSpreadsheet',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkText = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkText',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkZip = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkZip',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileMinus = /*#__PURE__*/ makeIcon(
+ 'FileMinus',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFilePlus = /*#__PURE__*/ makeIcon(
+ 'FilePlus',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFilePost = /*#__PURE__*/ makeIcon(
+ 'FilePost',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileRichtext = /*#__PURE__*/ makeIcon(
+ 'FileRichtext',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileRuled = /*#__PURE__*/ makeIcon(
+ 'FileRuled',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileSpreadsheet = /*#__PURE__*/ makeIcon(
+ 'FileSpreadsheet',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileText = /*#__PURE__*/ makeIcon(
+ 'FileText',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFileZip = /*#__PURE__*/ makeIcon(
+ 'FileZip',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFiles = /*#__PURE__*/ makeIcon(
+ 'Files',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFilesAlt = /*#__PURE__*/ makeIcon(
+ 'FilesAlt',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFilm = /*#__PURE__*/ makeIcon(
+ 'Film',
+ ''
)
+// eslint-disable-next-line
export const BIconFilter = /*#__PURE__*/ makeIcon(
'Filter',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFilterLeft = /*#__PURE__*/ makeIcon(
+ 'FilterLeft',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFilterRight = /*#__PURE__*/ makeIcon(
+ 'FilterRight',
+ ''
)
+// eslint-disable-next-line
export const BIconFlag = /*#__PURE__*/ makeIcon(
'Flag',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconFlagFill = /*#__PURE__*/ makeIcon(
'FlagFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconFolder = /*#__PURE__*/ makeIcon(
'Folder',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconFolderCheck = /*#__PURE__*/ makeIcon(
+ 'FolderCheck',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconFolderFill = /*#__PURE__*/ makeIcon(
'FolderFill',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFolderMinus = /*#__PURE__*/ makeIcon(
+ 'FolderMinus',
+ ''
)
+// eslint-disable-next-line
+export const BIconFolderPlus = /*#__PURE__*/ makeIcon(
+ 'FolderPlus',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconFolderSymlink = /*#__PURE__*/ makeIcon(
'FolderSymlink',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconFolderSymlinkFill = /*#__PURE__*/ makeIcon(
'FolderSymlinkFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconFonts = /*#__PURE__*/ makeIcon(
'Fonts',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconForward = /*#__PURE__*/ makeIcon(
'Forward',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconForwardFill = /*#__PURE__*/ makeIcon(
'ForwardFill',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFullscreen = /*#__PURE__*/ makeIcon(
+ 'Fullscreen',
+ ''
)
+// eslint-disable-next-line
+export const BIconFullscreenExit = /*#__PURE__*/ makeIcon(
+ 'FullscreenExit',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFunnel = /*#__PURE__*/ makeIcon(
+ 'Funnel',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconFunnelFill = /*#__PURE__*/ makeIcon(
+ 'FunnelFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconGear = /*#__PURE__*/ makeIcon(
'Gear',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconGearFill = /*#__PURE__*/ makeIcon(
'GearFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconGearWide = /*#__PURE__*/ makeIcon(
'GearWide',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconGearWideConnected = /*#__PURE__*/ makeIcon(
'GearWideConnected',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconGem = /*#__PURE__*/ makeIcon(
+ 'Gem',
+ ''
)
+// 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 BIconGift = /*#__PURE__*/ makeIcon(
+ 'Gift',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconGiftFill = /*#__PURE__*/ makeIcon(
+ 'GiftFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconGraphDown = /*#__PURE__*/ makeIcon(
'GraphDown',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconGraphUp = /*#__PURE__*/ makeIcon(
'GraphUp',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconGrid = /*#__PURE__*/ makeIcon(
'Grid',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconGrid1x2 = /*#__PURE__*/ makeIcon(
+ 'Grid1x2',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconGrid1x2Fill = /*#__PURE__*/ makeIcon(
+ 'Grid1x2Fill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconGrid3x2 = /*#__PURE__*/ makeIcon(
+ 'Grid3x2',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconGrid3x2Gap = /*#__PURE__*/ makeIcon(
+ 'Grid3x2Gap',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconGrid3x2GapFill = /*#__PURE__*/ makeIcon(
+ 'Grid3x2GapFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconGrid3x3 = /*#__PURE__*/ makeIcon(
+ 'Grid3x3',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconGrid3x3Gap = /*#__PURE__*/ makeIcon(
+ 'Grid3x3Gap',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconGrid3x3GapFill = /*#__PURE__*/ makeIcon(
+ 'Grid3x3GapFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconGridFill = /*#__PURE__*/ makeIcon(
'GridFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconHammer = /*#__PURE__*/ makeIcon(
'Hammer',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconHash = /*#__PURE__*/ makeIcon(
'Hash',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconHeart = /*#__PURE__*/ makeIcon(
'Heart',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconHeartFill = /*#__PURE__*/ makeIcon(
'HeartFill',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconHeartHalf = /*#__PURE__*/ makeIcon(
+ 'HeartHalf',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconHouse = /*#__PURE__*/ makeIcon(
'House',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconHouseDoor = /*#__PURE__*/ makeIcon(
+ 'HouseDoor',
+ ''
)
+// eslint-disable-next-line
+export const BIconHouseDoorFill = /*#__PURE__*/ makeIcon(
+ 'HouseDoorFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconHouseFill = /*#__PURE__*/ makeIcon(
'HouseFill',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconHr = /*#__PURE__*/ makeIcon(
+ 'Hr',
+ ''
)
+// eslint-disable-next-line
export const BIconImage = /*#__PURE__*/ makeIcon(
'Image',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconImageAlt = /*#__PURE__*/ makeIcon(
'ImageAlt',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconImageFill = /*#__PURE__*/ makeIcon(
'ImageFill',
- ''
+ ''
)
+// 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
export const BIconInfo = /*#__PURE__*/ makeIcon(
'Info',
- ''
+ ''
)
-export const BIconInfoFill = /*#__PURE__*/ makeIcon(
- 'InfoFill',
- ''
+// eslint-disable-next-line
+export const BIconInfoCircle = /*#__PURE__*/ makeIcon(
+ 'InfoCircle',
+ ''
)
+// eslint-disable-next-line
+export const BIconInfoCircleFill = /*#__PURE__*/ makeIcon(
+ 'InfoCircleFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconInfoSquare = /*#__PURE__*/ makeIcon(
'InfoSquare',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconInfoSquareFill = /*#__PURE__*/ makeIcon(
'InfoSquareFill',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconIntersect = /*#__PURE__*/ makeIcon(
+ 'Intersect',
+ ''
)
+// eslint-disable-next-line
export const BIconJustify = /*#__PURE__*/ makeIcon(
'Justify',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconJustifyLeft = /*#__PURE__*/ makeIcon(
'JustifyLeft',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconJustifyRight = /*#__PURE__*/ makeIcon(
'JustifyRight',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconKanban = /*#__PURE__*/ makeIcon(
'Kanban',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconKanbanFill = /*#__PURE__*/ makeIcon(
'KanbanFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconLaptop = /*#__PURE__*/ makeIcon(
'Laptop',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconLayers = /*#__PURE__*/ makeIcon(
+ 'Layers',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLayersFill = /*#__PURE__*/ makeIcon(
+ 'LayersFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLayersHalf = /*#__PURE__*/ makeIcon(
+ 'LayersHalf',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconLayoutSidebar = /*#__PURE__*/ makeIcon(
'LayoutSidebar',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLayoutSidebarInset = /*#__PURE__*/ makeIcon(
+ 'LayoutSidebarInset',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLayoutSidebarInsetReverse = /*#__PURE__*/ makeIcon(
+ 'LayoutSidebarInsetReverse',
+ ''
)
+// eslint-disable-next-line
export const BIconLayoutSidebarReverse = /*#__PURE__*/ makeIcon(
'LayoutSidebarReverse',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconLayoutSplit = /*#__PURE__*/ makeIcon(
'LayoutSplit',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLayoutTextSidebar = /*#__PURE__*/ makeIcon(
+ 'LayoutTextSidebar',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLayoutTextSidebarReverse = /*#__PURE__*/ makeIcon(
+ 'LayoutTextSidebarReverse',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLayoutTextWindow = /*#__PURE__*/ makeIcon(
+ 'LayoutTextWindow',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLayoutTextWindowReverse = /*#__PURE__*/ makeIcon(
+ 'LayoutTextWindowReverse',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLayoutThreeColumns = /*#__PURE__*/ makeIcon(
+ 'LayoutThreeColumns',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLayoutWtf = /*#__PURE__*/ makeIcon(
+ 'LayoutWtf',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLifePreserver = /*#__PURE__*/ makeIcon(
+ 'LifePreserver',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLightning = /*#__PURE__*/ makeIcon(
+ 'Lightning',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLightningFill = /*#__PURE__*/ makeIcon(
+ 'LightningFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLink = /*#__PURE__*/ makeIcon(
+ 'Link',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconLink45deg = /*#__PURE__*/ makeIcon(
+ 'Link45deg',
+ ''
)
+// eslint-disable-next-line
export const BIconList = /*#__PURE__*/ makeIcon(
'List',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconListCheck = /*#__PURE__*/ makeIcon(
'ListCheck',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconListNested = /*#__PURE__*/ makeIcon(
+ 'ListNested',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconListOl = /*#__PURE__*/ makeIcon(
'ListOl',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconListTask = /*#__PURE__*/ makeIcon(
'ListTask',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconListUl = /*#__PURE__*/ makeIcon(
'ListUl',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconLock = /*#__PURE__*/ makeIcon(
'Lock',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconLockFill = /*#__PURE__*/ makeIcon(
'LockFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconMap = /*#__PURE__*/ makeIcon(
'Map',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconMic = /*#__PURE__*/ makeIcon(
'Mic',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconMicFill = /*#__PURE__*/ makeIcon(
+ 'MicFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconMicMute = /*#__PURE__*/ makeIcon(
+ 'MicMute',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconMicMuteFill = /*#__PURE__*/ makeIcon(
+ 'MicMuteFill',
+ ''
)
+// eslint-disable-next-line
export const BIconMoon = /*#__PURE__*/ makeIcon(
'Moon',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconMusicNote = /*#__PURE__*/ makeIcon(
+ 'MusicNote',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconMusicNoteBeamed = /*#__PURE__*/ makeIcon(
+ 'MusicNoteBeamed',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconMusicNoteList = /*#__PURE__*/ makeIcon(
+ 'MusicNoteList',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconMusicPlayer = /*#__PURE__*/ makeIcon(
'MusicPlayer',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconMusicPlayerFill = /*#__PURE__*/ makeIcon(
'MusicPlayerFill',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconNewspaper = /*#__PURE__*/ makeIcon(
+ 'Newspaper',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconOctagon = /*#__PURE__*/ makeIcon(
+ 'Octagon',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconOctagonFill = /*#__PURE__*/ makeIcon(
+ 'OctagonFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconOctagonHalf = /*#__PURE__*/ makeIcon(
+ 'OctagonHalf',
+ ''
)
+// eslint-disable-next-line
export const BIconOption = /*#__PURE__*/ makeIcon(
'Option',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconOutlet = /*#__PURE__*/ makeIcon(
'Outlet',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconPaperclip = /*#__PURE__*/ makeIcon(
+ 'Paperclip',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconPause = /*#__PURE__*/ makeIcon(
'Pause',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconPauseFill = /*#__PURE__*/ makeIcon(
'PauseFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconPen = /*#__PURE__*/ makeIcon(
'Pen',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconPencil = /*#__PURE__*/ makeIcon(
'Pencil',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconPencilSquare = /*#__PURE__*/ makeIcon(
+ 'PencilSquare',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconPentagon = /*#__PURE__*/ makeIcon(
+ 'Pentagon',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconPentagonFill = /*#__PURE__*/ makeIcon(
+ 'PentagonFill',
+ ''
)
+// eslint-disable-next-line
+export const BIconPentagonHalf = /*#__PURE__*/ makeIcon(
+ 'PentagonHalf',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconPeople = /*#__PURE__*/ makeIcon(
'People',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconPeopleCircle = /*#__PURE__*/ makeIcon(
+ 'PeopleCircle',
+ ''
)
+// eslint-disable-next-line
export const BIconPeopleFill = /*#__PURE__*/ makeIcon(
'PeopleFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconPerson = /*#__PURE__*/ makeIcon(
'Person',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconPersonBoundingBox = /*#__PURE__*/ makeIcon(
+ 'PersonBoundingBox',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconPersonCheck = /*#__PURE__*/ makeIcon(
+ 'PersonCheck',
+ ''
)
+// eslint-disable-next-line
+export const BIconPersonCheckFill = /*#__PURE__*/ makeIcon(
+ 'PersonCheckFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconPersonDash = /*#__PURE__*/ makeIcon(
+ 'PersonDash',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconPersonDashFill = /*#__PURE__*/ makeIcon(
+ 'PersonDashFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconPersonFill = /*#__PURE__*/ makeIcon(
'PersonFill',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconPersonLinesFill = /*#__PURE__*/ makeIcon(
+ 'PersonLinesFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconPersonPlus = /*#__PURE__*/ makeIcon(
+ 'PersonPlus',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconPersonPlusFill = /*#__PURE__*/ makeIcon(
+ 'PersonPlusFill',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconPersonSquare = /*#__PURE__*/ makeIcon(
+ 'PersonSquare',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconPhone = /*#__PURE__*/ makeIcon(
'Phone',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconPhoneLandscape = /*#__PURE__*/ makeIcon(
'PhoneLandscape',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconPieChart = /*#__PURE__*/ makeIcon(
'PieChart',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconPieChartFill = /*#__PURE__*/ makeIcon(
'PieChartFill',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconPip = /*#__PURE__*/ makeIcon(
+ 'Pip',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconPipFill = /*#__PURE__*/ makeIcon(
+ 'PipFill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconPlay = /*#__PURE__*/ makeIcon(
'Play',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconPlayFill = /*#__PURE__*/ makeIcon(
'PlayFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconPlug = /*#__PURE__*/ makeIcon(
'Plug',
- ''
+ ''
)
+// 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
export const BIconPower = /*#__PURE__*/ makeIcon(
'Power',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconPuzzle = /*#__PURE__*/ makeIcon(
+ 'Puzzle',
+ ''
)
+// eslint-disable-next-line
+export const BIconPuzzleFill = /*#__PURE__*/ makeIcon(
+ 'PuzzleFill',
+ ''
+)
+
+// 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',
+ ''
)
-export const BIconQuestionFill = /*#__PURE__*/ makeIcon(
- 'QuestionFill',
- ''
+// 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
export const BIconReply = /*#__PURE__*/ makeIcon(
'Reply',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconReplyAll = /*#__PURE__*/ makeIcon(
'ReplyAll',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconReplyAllFill = /*#__PURE__*/ makeIcon(
'ReplyAllFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconReplyFill = /*#__PURE__*/ makeIcon(
'ReplyFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconScrewdriver = /*#__PURE__*/ makeIcon(
'Screwdriver',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconSearch = /*#__PURE__*/ makeIcon(
'Search',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconServer = /*#__PURE__*/ makeIcon(
+ 'Server',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconShield = /*#__PURE__*/ makeIcon(
'Shield',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconShieldFill = /*#__PURE__*/ makeIcon(
'ShieldFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconShieldLock = /*#__PURE__*/ makeIcon(
'ShieldLock',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconShieldLockFill = /*#__PURE__*/ makeIcon(
'ShieldLockFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconShieldShaded = /*#__PURE__*/ makeIcon(
'ShieldShaded',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconShift = /*#__PURE__*/ makeIcon(
'Shift',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconShiftFill = /*#__PURE__*/ makeIcon(
'ShiftFill',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconShuffle = /*#__PURE__*/ makeIcon(
+ 'Shuffle',
+ ''
)
+// eslint-disable-next-line
export const BIconSkipBackward = /*#__PURE__*/ makeIcon(
'SkipBackward',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconSkipBackwardFill = /*#__PURE__*/ makeIcon(
'SkipBackwardFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconSkipEnd = /*#__PURE__*/ makeIcon(
'SkipEnd',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconSkipEndFill = /*#__PURE__*/ makeIcon(
'SkipEndFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconSkipForward = /*#__PURE__*/ makeIcon(
'SkipForward',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconSkipForwardFill = /*#__PURE__*/ makeIcon(
'SkipForwardFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconSkipStart = /*#__PURE__*/ makeIcon(
'SkipStart',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconSkipStartFill = /*#__PURE__*/ makeIcon(
'SkipStartFill',
- ''
+ ''
)
+// 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
+export const BIconSoundwave = /*#__PURE__*/ makeIcon(
+ 'Soundwave',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconSpeaker = /*#__PURE__*/ makeIcon(
'Speaker',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconSquare = /*#__PURE__*/ makeIcon(
'Square',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconSquareFill = /*#__PURE__*/ makeIcon(
'SquareFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconSquareHalf = /*#__PURE__*/ makeIcon(
'SquareHalf',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconStar = /*#__PURE__*/ makeIcon(
'Star',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconStarFill = /*#__PURE__*/ makeIcon(
'StarFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconStarHalf = /*#__PURE__*/ makeIcon(
'StarHalf',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconStop = /*#__PURE__*/ makeIcon(
'Stop',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconStopFill = /*#__PURE__*/ makeIcon(
'StopFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconStopwatch = /*#__PURE__*/ makeIcon(
'Stopwatch',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconStopwatchFill = /*#__PURE__*/ makeIcon(
'StopwatchFill',
- ''
+ ''
)
+// eslint-disable-next-line
+export const BIconSubtract = /*#__PURE__*/ makeIcon(
+ 'Subtract',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconSun = /*#__PURE__*/ makeIcon(
'Sun',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTable = /*#__PURE__*/ makeIcon(
'Table',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTablet = /*#__PURE__*/ makeIcon(
'Tablet',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTabletLandscape = /*#__PURE__*/ makeIcon(
'TabletLandscape',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTag = /*#__PURE__*/ makeIcon(
'Tag',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTagFill = /*#__PURE__*/ makeIcon(
'TagFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTerminal = /*#__PURE__*/ makeIcon(
'Terminal',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTerminalFill = /*#__PURE__*/ makeIcon(
'TerminalFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTextCenter = /*#__PURE__*/ makeIcon(
'TextCenter',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTextIndentLeft = /*#__PURE__*/ makeIcon(
'TextIndentLeft',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTextIndentRight = /*#__PURE__*/ makeIcon(
'TextIndentRight',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTextLeft = /*#__PURE__*/ makeIcon(
'TextLeft',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTextRight = /*#__PURE__*/ makeIcon(
'TextRight',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconTextarea = /*#__PURE__*/ makeIcon(
+ 'Textarea',
+ ''
)
+// eslint-disable-next-line
+export const BIconTextareaT = /*#__PURE__*/ makeIcon(
+ 'TextareaT',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconThreeDots = /*#__PURE__*/ makeIcon(
'ThreeDots',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconThreeDotsVertical = /*#__PURE__*/ makeIcon(
'ThreeDotsVertical',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconToggleOff = /*#__PURE__*/ makeIcon(
'ToggleOff',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconToggleOn = /*#__PURE__*/ makeIcon(
'ToggleOn',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconToggles = /*#__PURE__*/ makeIcon(
'Toggles',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTools = /*#__PURE__*/ makeIcon(
'Tools',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTrash = /*#__PURE__*/ makeIcon(
'Trash',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconTrash2 = /*#__PURE__*/ makeIcon(
+ 'Trash2',
+ ''
)
+// eslint-disable-next-line
+export const BIconTrash2Fill = /*#__PURE__*/ makeIcon(
+ 'Trash2Fill',
+ ''
+)
+
+// eslint-disable-next-line
export const BIconTrashFill = /*#__PURE__*/ makeIcon(
'TrashFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTriangle = /*#__PURE__*/ makeIcon(
'Triangle',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTriangleFill = /*#__PURE__*/ makeIcon(
'TriangleFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTriangleHalf = /*#__PURE__*/ makeIcon(
'TriangleHalf',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTrophy = /*#__PURE__*/ makeIcon(
'Trophy',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTv = /*#__PURE__*/ makeIcon(
'Tv',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTvFill = /*#__PURE__*/ makeIcon(
'TvFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconType = /*#__PURE__*/ makeIcon(
'Type',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTypeBold = /*#__PURE__*/ makeIcon(
'TypeBold',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTypeH1 = /*#__PURE__*/ makeIcon(
'TypeH1',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTypeH2 = /*#__PURE__*/ makeIcon(
'TypeH2',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTypeH3 = /*#__PURE__*/ makeIcon(
'TypeH3',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTypeItalic = /*#__PURE__*/ makeIcon(
'TypeItalic',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTypeStrikethrough = /*#__PURE__*/ makeIcon(
'TypeStrikethrough',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconTypeUnderline = /*#__PURE__*/ makeIcon(
'TypeUnderline',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconUnion = /*#__PURE__*/ makeIcon(
+ 'Union',
+ ''
)
+// eslint-disable-next-line
export const BIconUnlock = /*#__PURE__*/ makeIcon(
'Unlock',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconUnlockFill = /*#__PURE__*/ makeIcon(
'UnlockFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconUpload = /*#__PURE__*/ makeIcon(
'Upload',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconViewList = /*#__PURE__*/ makeIcon(
+ 'ViewList',
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconViewStacked = /*#__PURE__*/ makeIcon(
+ 'ViewStacked',
+ ''
)
+// eslint-disable-next-line
export const BIconVolumeDown = /*#__PURE__*/ makeIcon(
'VolumeDown',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconVolumeDownFill = /*#__PURE__*/ makeIcon(
'VolumeDownFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconVolumeMute = /*#__PURE__*/ makeIcon(
'VolumeMute',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconVolumeMuteFill = /*#__PURE__*/ makeIcon(
'VolumeMuteFill',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconVolumeUp = /*#__PURE__*/ makeIcon(
'VolumeUp',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconVolumeUpFill = /*#__PURE__*/ makeIcon(
'VolumeUpFill',
- ''
+ ''
+)
+
+// eslint-disable-next-line
+export const BIconVr = /*#__PURE__*/ makeIcon(
+ 'Vr',
+ ''
)
+// eslint-disable-next-line
export const BIconWallet = /*#__PURE__*/ makeIcon(
'Wallet',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconWatch = /*#__PURE__*/ makeIcon(
'Watch',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconWifi = /*#__PURE__*/ makeIcon(
'Wifi',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconWindow = /*#__PURE__*/ makeIcon(
'Window',
- ''
+ ''
)
+// eslint-disable-next-line
export const BIconWrench = /*#__PURE__*/ makeIcon(
'Wrench',
- ''
+ ''
)
+// 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
+export const BIconXDiamondFill = /*#__PURE__*/ makeIcon(
+ 'XDiamondFill',
+ ''
)
+// 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',
- ''
+ ''
)
// --- END AUTO-GENERATED FILE ---
diff --git a/src/icons/icons.spec.js b/src/icons/icons.spec.js
index 2e5f28c9aaf..fd0f7e8ea7a 100644
--- a/src/icons/icons.spec.js
+++ b/src/icons/icons.spec.js
@@ -27,7 +27,7 @@ describe('icons', () => {
localVue: localVue,
parentComponent: parentComponent,
propsData: {
- icon: 'alert-circle-fill'
+ icon: 'alarm-fill'
}
})
@@ -35,7 +35,7 @@ describe('icons', () => {
expect(wrapper.is('svg')).toBe(true)
expect(wrapper.classes()).toContain('b-icon')
expect(wrapper.classes()).toContain('bi')
- expect(wrapper.classes()).toContain('bi-alert-circle-fill')
+ expect(wrapper.classes()).toContain('bi-alarm-fill')
expect(wrapper.classes().length).toBe(3)
expect(wrapper.attributes('role')).toBe('img')
expect(wrapper.attributes('alt')).toBe('icon')
@@ -43,7 +43,7 @@ describe('icons', () => {
expect(wrapper.attributes('xmlns')).toBe('http://www.w3.org/2000/svg')
expect(wrapper.attributes('width')).toBe('1em')
expect(wrapper.attributes('height')).toBe('1em')
- expect(wrapper.attributes('viewBox')).toBe('0 0 20 20')
+ expect(wrapper.attributes('viewBox')).toBe('0 0 16 16')
expect(wrapper.attributes('fill')).toBe('currentColor')
expect(wrapper.attributes('style')).not.toBeDefined()
expect(wrapper.element.style.fontSize).toEqual('')
@@ -57,7 +57,7 @@ describe('icons', () => {
localVue: localVue,
parentComponent: parentComponent,
propsData: {
- icon: 'alert-circle-fill',
+ icon: 'alarm-fill',
stacked: true
}
})
@@ -66,15 +66,16 @@ describe('icons', () => {
expect(wrapper.is('svg')).toBe(true)
expect(wrapper.classes()).toContain('b-icon')
expect(wrapper.classes()).toContain('bi')
- expect(wrapper.classes()).toContain('bi-alert-circle-fill')
+ expect(wrapper.classes()).toContain('bi-alarm-fill')
expect(wrapper.classes().length).toBe(3)
expect(wrapper.attributes('role')).not.toBe('img')
expect(wrapper.attributes('alt')).not.toBe('icon')
- expect(wrapper.attributes('focusable')).toBe('false')
+ expect(wrapper.attributes('focusable')).not.toBe('false')
+ expect(wrapper.attributes('focusable')).not.toBe('true')
expect(wrapper.attributes('xmlns')).not.toBe('http://www.w3.org/2000/svg')
expect(wrapper.attributes('width')).not.toBe('1em')
expect(wrapper.attributes('height')).not.toBe('1em')
- expect(wrapper.attributes('viewBox')).toBe('0 0 20 20')
+ expect(wrapper.attributes('viewBox')).toBe('0 0 16 16')
expect(wrapper.attributes('fill')).toBe('currentColor')
expect(wrapper.attributes('style')).not.toBeDefined()
expect(wrapper.element.style.fontSize).toEqual('')
@@ -146,7 +147,7 @@ describe('icons', () => {
localVue: localVue,
parentComponent: parentComponent,
propsData: {
- icon: 'alert-circle-fill',
+ icon: 'alarm-fill',
variant: 'danger'
}
})
@@ -155,7 +156,7 @@ describe('icons', () => {
expect(wrapper.is('svg')).toBe(true)
expect(wrapper.classes()).toContain('b-icon')
expect(wrapper.classes()).toContain('bi')
- expect(wrapper.classes()).toContain('bi-alert-circle-fill')
+ expect(wrapper.classes()).toContain('bi-alarm-fill')
expect(wrapper.classes()).toContain('text-danger')
expect(wrapper.classes().length).toBe(4)
expect(wrapper.attributes('role')).toBe('img')
@@ -171,7 +172,7 @@ describe('icons', () => {
localVue: localVue,
parentComponent: parentComponent,
propsData: {
- icon: 'alert-circle-fill',
+ icon: 'alarm-fill',
fontScale: '1.25'
}
})
@@ -180,7 +181,7 @@ describe('icons', () => {
expect(wrapper.is('svg')).toBe(true)
expect(wrapper.classes()).toContain('b-icon')
expect(wrapper.classes()).toContain('bi')
- expect(wrapper.classes()).toContain('bi-alert-circle-fill')
+ expect(wrapper.classes()).toContain('bi-alarm-fill')
expect(wrapper.classes().length).toBe(3)
expect(wrapper.attributes('role')).toBe('img')
expect(wrapper.attributes('alt')).toBe('icon')
@@ -217,7 +218,7 @@ describe('icons', () => {
localVue: localVue,
parentComponent: parentComponent,
propsData: {
- icon: 'alert-circle-fill',
+ icon: 'alarm-fill',
rotate: '45'
}
})
@@ -226,12 +227,12 @@ describe('icons', () => {
expect(wrapper.is('svg')).toBe(true)
expect(wrapper.classes()).toContain('b-icon')
expect(wrapper.classes()).toContain('bi')
- expect(wrapper.classes()).toContain('bi-alert-circle-fill')
+ expect(wrapper.classes()).toContain('bi-alarm-fill')
expect(wrapper.classes().length).toBe(3)
expect(wrapper.find('svg > g').exists()).toBe(true)
expect(wrapper.find('svg > g').attributes('transform')).toBeDefined()
expect(wrapper.find('svg > g').attributes('transform')).toEqual(
- 'translate(10 10) rotate(45) translate(-10 -10)'
+ 'translate(8 8) rotate(45) translate(-8 -8)'
)
expect(wrapper.find('svg > g > path').exists()).toBe(true)
})
@@ -241,7 +242,7 @@ describe('icons', () => {
localVue: localVue,
parentComponent: parentComponent,
propsData: {
- icon: 'alert-circle-fill',
+ icon: 'alarm-fill',
scale: '1.5'
}
})
@@ -250,12 +251,12 @@ describe('icons', () => {
expect(wrapper.is('svg')).toBe(true)
expect(wrapper.classes()).toContain('b-icon')
expect(wrapper.classes()).toContain('bi')
- expect(wrapper.classes()).toContain('bi-alert-circle-fill')
+ expect(wrapper.classes()).toContain('bi-alarm-fill')
expect(wrapper.classes().length).toBe(3)
expect(wrapper.find('svg > g').exists()).toBe(true)
expect(wrapper.find('svg > g').attributes('transform')).toBeDefined()
expect(wrapper.find('svg > g').attributes('transform')).toEqual(
- 'translate(10 10) scale(1.5 1.5) translate(-10 -10)'
+ 'translate(8 8) scale(1.5 1.5) translate(-8 -8)'
)
expect(wrapper.find('svg > g > path').exists()).toBe(true)
})
@@ -265,7 +266,7 @@ describe('icons', () => {
localVue: localVue,
parentComponent: parentComponent,
propsData: {
- icon: 'alert-circle-fill',
+ icon: 'alarm-fill',
flipH: true
}
})
@@ -274,12 +275,12 @@ describe('icons', () => {
expect(wrapper.is('svg')).toBe(true)
expect(wrapper.classes()).toContain('b-icon')
expect(wrapper.classes()).toContain('bi')
- expect(wrapper.classes()).toContain('bi-alert-circle-fill')
+ expect(wrapper.classes()).toContain('bi-alarm-fill')
expect(wrapper.classes().length).toBe(3)
expect(wrapper.find('svg > g').exists()).toBe(true)
expect(wrapper.find('svg > g').attributes('transform')).toBeDefined()
expect(wrapper.find('svg > g').attributes('transform')).toEqual(
- 'translate(10 10) scale(-1 1) translate(-10 -10)'
+ 'translate(8 8) scale(-1 1) translate(-8 -8)'
)
expect(wrapper.find('svg > g > path').exists()).toBe(true)
})
@@ -289,7 +290,7 @@ describe('icons', () => {
localVue: localVue,
parentComponent: parentComponent,
propsData: {
- icon: 'alert-circle-fill',
+ icon: 'alarm-fill',
flipV: true
}
})
@@ -298,12 +299,12 @@ describe('icons', () => {
expect(wrapper.is('svg')).toBe(true)
expect(wrapper.classes()).toContain('b-icon')
expect(wrapper.classes()).toContain('bi')
- expect(wrapper.classes()).toContain('bi-alert-circle-fill')
+ expect(wrapper.classes()).toContain('bi-alarm-fill')
expect(wrapper.classes().length).toBe(3)
expect(wrapper.find('svg > g').exists()).toBe(true)
expect(wrapper.find('svg > g').attributes('transform')).toBeDefined()
expect(wrapper.find('svg > g').attributes('transform')).toEqual(
- 'translate(10 10) scale(1 -1) translate(-10 -10)'
+ 'translate(8 8) scale(1 -1) translate(-8 -8)'
)
expect(wrapper.find('svg > g > path').exists()).toBe(true)
})
@@ -313,7 +314,7 @@ describe('icons', () => {
localVue: localVue,
parentComponent: parentComponent,
propsData: {
- icon: 'alert-circle-fill',
+ icon: 'alarm-fill',
flipH: true,
flipV: true
}
@@ -323,12 +324,12 @@ describe('icons', () => {
expect(wrapper.is('svg')).toBe(true)
expect(wrapper.classes()).toContain('b-icon')
expect(wrapper.classes()).toContain('bi')
- expect(wrapper.classes()).toContain('bi-alert-circle-fill')
+ expect(wrapper.classes()).toContain('bi-alarm-fill')
expect(wrapper.classes().length).toBe(3)
expect(wrapper.find('svg > g').exists()).toBe(true)
expect(wrapper.find('svg > g').attributes('transform')).toBeDefined()
expect(wrapper.find('svg > g').attributes('transform')).toEqual(
- 'translate(10 10) scale(-1 -1) translate(-10 -10)'
+ 'translate(8 8) scale(-1 -1) translate(-8 -8)'
)
expect(wrapper.find('svg > g > path').exists()).toBe(true)
})
@@ -338,7 +339,7 @@ describe('icons', () => {
localVue: localVue,
parentComponent: parentComponent,
propsData: {
- icon: 'alert-circle-fill',
+ icon: 'alarm-fill',
scale: '1.5',
flipH: true
}
@@ -348,12 +349,12 @@ describe('icons', () => {
expect(wrapper.is('svg')).toBe(true)
expect(wrapper.classes()).toContain('b-icon')
expect(wrapper.classes()).toContain('bi')
- expect(wrapper.classes()).toContain('bi-alert-circle-fill')
+ expect(wrapper.classes()).toContain('bi-alarm-fill')
expect(wrapper.classes().length).toBe(3)
expect(wrapper.find('svg > g').exists()).toBe(true)
expect(wrapper.find('svg > g').attributes('transform')).toBeDefined()
expect(wrapper.find('svg > g').attributes('transform')).toEqual(
- 'translate(10 10) scale(-1.5 1.5) translate(-10 -10)'
+ 'translate(8 8) scale(-1.5 1.5) translate(-8 -8)'
)
expect(wrapper.find('svg > g > path').exists()).toBe(true)
})
@@ -363,7 +364,7 @@ describe('icons', () => {
localVue: localVue,
parentComponent: parentComponent,
propsData: {
- icon: 'alert-circle-fill',
+ icon: 'alarm-fill',
scale: '1.5',
flipV: true
}
@@ -373,12 +374,12 @@ describe('icons', () => {
expect(wrapper.is('svg')).toBe(true)
expect(wrapper.classes()).toContain('b-icon')
expect(wrapper.classes()).toContain('bi')
- expect(wrapper.classes()).toContain('bi-alert-circle-fill')
+ expect(wrapper.classes()).toContain('bi-alarm-fill')
expect(wrapper.classes().length).toBe(3)
expect(wrapper.find('svg > g').exists()).toBe(true)
expect(wrapper.find('svg > g').attributes('transform')).toBeDefined()
expect(wrapper.find('svg > g').attributes('transform')).toEqual(
- 'translate(10 10) scale(1.5 -1.5) translate(-10 -10)'
+ 'translate(8 8) scale(1.5 -1.5) translate(-8 -8)'
)
expect(wrapper.find('svg > g > path').exists()).toBe(true)
})
@@ -388,7 +389,7 @@ describe('icons', () => {
localVue: localVue,
parentComponent: parentComponent,
propsData: {
- icon: 'alert-circle-fill',
+ icon: 'alarm-fill',
scale: '1.5',
flipH: true,
flipV: true
@@ -399,12 +400,12 @@ describe('icons', () => {
expect(wrapper.is('svg')).toBe(true)
expect(wrapper.classes()).toContain('b-icon')
expect(wrapper.classes()).toContain('bi')
- expect(wrapper.classes()).toContain('bi-alert-circle-fill')
+ expect(wrapper.classes()).toContain('bi-alarm-fill')
expect(wrapper.classes().length).toBe(3)
expect(wrapper.find('svg > g').exists()).toBe(true)
expect(wrapper.find('svg > g').attributes('transform')).toBeDefined()
expect(wrapper.find('svg > g').attributes('transform')).toEqual(
- 'translate(10 10) scale(-1.5 -1.5) translate(-10 -10)'
+ 'translate(8 8) scale(-1.5 -1.5) translate(-8 -8)'
)
expect(wrapper.find('svg > g > path').exists()).toBe(true)
})
@@ -414,7 +415,7 @@ describe('icons', () => {
localVue: localVue,
parentComponent: parentComponent,
propsData: {
- icon: 'alert-circle-fill',
+ icon: 'alarm-fill',
shiftH: 8,
shiftV: 16
}
@@ -424,11 +425,11 @@ describe('icons', () => {
expect(wrapper.is('svg')).toBe(true)
expect(wrapper.classes()).toContain('b-icon')
expect(wrapper.classes()).toContain('bi')
- expect(wrapper.classes()).toContain('bi-alert-circle-fill')
+ expect(wrapper.classes()).toContain('bi-alarm-fill')
expect(wrapper.classes().length).toBe(3)
expect(wrapper.find('svg > g').exists()).toBe(true)
expect(wrapper.find('svg > g').attributes('transform')).toBeDefined()
- expect(wrapper.find('svg > g').attributes('transform')).toEqual('translate(10 -20)')
+ expect(wrapper.find('svg > g').attributes('transform')).toEqual('translate(8 -16)')
expect(wrapper.find('svg > g > g').exists()).toBe(true)
expect(wrapper.find('svg > g > g').attributes('transform')).not.toBeDefined()
expect(wrapper.find('svg > g > g > path').exists()).toBe(true)
@@ -439,7 +440,7 @@ describe('icons', () => {
localVue: localVue,
parentComponent: parentComponent,
propsData: {
- icon: 'alert-circle-fill',
+ icon: 'alarm-fill',
rotate: 45,
shiftH: 8,
shiftV: 16
@@ -450,15 +451,15 @@ describe('icons', () => {
expect(wrapper.is('svg')).toBe(true)
expect(wrapper.classes()).toContain('b-icon')
expect(wrapper.classes()).toContain('bi')
- expect(wrapper.classes()).toContain('bi-alert-circle-fill')
+ expect(wrapper.classes()).toContain('bi-alarm-fill')
expect(wrapper.classes().length).toBe(3)
expect(wrapper.find('svg > g').exists()).toBe(true)
expect(wrapper.find('svg > g').attributes('transform')).toBeDefined()
- expect(wrapper.find('svg > g').attributes('transform')).toEqual('translate(10 -20)')
+ expect(wrapper.find('svg > g').attributes('transform')).toEqual('translate(8 -16)')
expect(wrapper.find('svg > g > g').exists()).toBe(true)
expect(wrapper.find('svg > g > g').attributes('transform')).toBeDefined()
expect(wrapper.find('svg > g > g').attributes('transform')).toEqual(
- 'translate(10 10) rotate(45) translate(-10 -10)'
+ 'translate(8 8) rotate(45) translate(-8 -8)'
)
expect(wrapper.find('svg > g > g > path').exists()).toBe(true)
})
diff --git a/src/icons/iconstack.spec.js b/src/icons/iconstack.spec.js
index 5e761d29375..1d573811b2b 100644
--- a/src/icons/iconstack.spec.js
+++ b/src/icons/iconstack.spec.js
@@ -17,7 +17,7 @@ describe('icons > b-iconstack', () => {
expect(wrapper.attributes('xmlns')).toBe('http://www.w3.org/2000/svg')
expect(wrapper.attributes('width')).toBe('1em')
expect(wrapper.attributes('height')).toBe('1em')
- expect(wrapper.attributes('viewBox')).toBe('0 0 20 20')
+ expect(wrapper.attributes('viewBox')).toBe('0 0 16 16')
expect(wrapper.attributes('fill')).toBe('currentColor')
expect(wrapper.attributes('style')).not.toBeDefined()
expect(wrapper.element.style.fontSize).toEqual('')
@@ -85,7 +85,7 @@ describe('icons > b-iconstack', () => {
expect(wrapper.find('svg > g').exists()).toBe(true)
expect(wrapper.find('svg > g').attributes('transform')).toBeDefined()
expect(wrapper.find('svg > g').attributes('transform')).toEqual(
- 'translate(10 10) rotate(45) translate(-10 -10)'
+ 'translate(8 8) rotate(45) translate(-8 -8)'
)
})
@@ -105,7 +105,7 @@ describe('icons > b-iconstack', () => {
expect(wrapper.find('svg > g').exists()).toBe(true)
expect(wrapper.find('svg > g').attributes('transform')).toBeDefined()
expect(wrapper.find('svg > g').attributes('transform')).toEqual(
- 'translate(10 10) scale(1.5 1.5) translate(-10 -10)'
+ 'translate(8 8) scale(1.5 1.5) translate(-8 -8)'
)
})
})
diff --git a/src/icons/package.json b/src/icons/package.json
index f0450eeba4d..51b55b87a4d 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-alpha2",
+ "bootstrap-icons-version": "1.0.0-alpha3",
"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-alpha2",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -202,7 +202,7 @@
},
{
"component": "BIconAlarmFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -249,8 +249,8 @@
]
},
{
- "component": "BIconAlertCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconAlt",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -297,8 +297,8 @@
]
},
{
- "component": "BIconAlertCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconApp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -345,8 +345,8 @@
]
},
{
- "component": "BIconAlertOctagon",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconAppIndicator",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -393,8 +393,8 @@
]
},
{
- "component": "BIconAlertOctagonFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArchive",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -441,8 +441,8 @@
]
},
{
- "component": "BIconAlertSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArchiveFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -489,8 +489,8 @@
]
},
{
- "component": "BIconAlertSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrow90degDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -537,8 +537,8 @@
]
},
{
- "component": "BIconAlertTriangle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrow90degLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -585,8 +585,8 @@
]
},
{
- "component": "BIconAlertTriangleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrow90degRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -633,8 +633,8 @@
]
},
{
- "component": "BIconArchive",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrow90degUp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -681,8 +681,8 @@
]
},
{
- "component": "BIconArchiveFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowBarDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -729,8 +729,8 @@
]
},
{
- "component": "BIconArrowBarBottom",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowBarLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -777,8 +777,8 @@
]
},
{
- "component": "BIconArrowBarLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowBarRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -825,8 +825,8 @@
]
},
{
- "component": "BIconArrowBarRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowBarUp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -873,8 +873,8 @@
]
},
{
- "component": "BIconArrowBarUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowClockwise",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -921,8 +921,8 @@
]
},
{
- "component": "BIconArrowClockwise",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowCounterclockwise",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -969,8 +969,8 @@
]
},
{
- "component": "BIconArrowCounterclockwise",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1017,8 +1017,8 @@
]
},
{
- "component": "BIconArrowDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowDownLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1065,8 +1065,8 @@
]
},
{
- "component": "BIconArrowDownLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowDownRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1113,8 +1113,8 @@
]
},
{
- "component": "BIconArrowDownRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowDownShort",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1161,8 +1161,8 @@
]
},
{
- "component": "BIconArrowDownShort",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1209,8 +1209,8 @@
]
},
{
- "component": "BIconArrowLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowLeftRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1257,8 +1257,8 @@
]
},
{
- "component": "BIconArrowLeftRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowLeftShort",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1305,8 +1305,8 @@
]
},
{
- "component": "BIconArrowLeftShort",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowRepeat",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1353,8 +1353,8 @@
]
},
{
- "component": "BIconArrowRepeat",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowReturnLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1401,8 +1401,8 @@
]
},
{
- "component": "BIconArrowRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowReturnRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1449,8 +1449,8 @@
]
},
{
- "component": "BIconArrowRightShort",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1497,8 +1497,8 @@
]
},
{
- "component": "BIconArrowUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowRightShort",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1545,8 +1545,8 @@
]
},
{
- "component": "BIconArrowUpDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowUp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1593,8 +1593,8 @@
]
},
{
- "component": "BIconArrowUpLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowUpDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1641,8 +1641,8 @@
]
},
{
- "component": "BIconArrowUpRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowUpLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1689,8 +1689,8 @@
]
},
{
- "component": "BIconArrowUpShort",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowUpRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1737,8 +1737,8 @@
]
},
{
- "component": "BIconArrowsAngleContract",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowUpShort",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1785,8 +1785,8 @@
]
},
{
- "component": "BIconArrowsAngleExpand",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowsAngleContract",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1833,8 +1833,8 @@
]
},
{
- "component": "BIconArrowsCollapse",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowsAngleExpand",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1881,8 +1881,8 @@
]
},
{
- "component": "BIconArrowsExpand",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowsCollapse",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1929,8 +1929,8 @@
]
},
{
- "component": "BIconArrowsFullscreen",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowsExpand",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -1977,8 +1977,8 @@
]
},
{
- "component": "BIconAt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowsFullscreen",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2025,8 +2025,8 @@
]
},
{
- "component": "BIconAward",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconArrowsMove",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2073,8 +2073,8 @@
]
},
{
- "component": "BIconBackspace",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconAspectRatio",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2121,8 +2121,8 @@
]
},
{
- "component": "BIconBackspaceFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconAspectRatioFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2169,8 +2169,8 @@
]
},
{
- "component": "BIconBackspaceReverse",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconAt",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2217,8 +2217,8 @@
]
},
{
- "component": "BIconBackspaceReverseFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconAward",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2265,8 +2265,8 @@
]
},
{
- "component": "BIconBarChart",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconAwardFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2313,8 +2313,8 @@
]
},
{
- "component": "BIconBarChartFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBackspace",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2361,8 +2361,8 @@
]
},
{
- "component": "BIconBattery",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBackspaceFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2409,8 +2409,8 @@
]
},
{
- "component": "BIconBatteryCharging",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBackspaceReverse",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2457,8 +2457,8 @@
]
},
{
- "component": "BIconBatteryFull",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBackspaceReverseFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2505,8 +2505,8 @@
]
},
{
- "component": "BIconBell",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBag",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2553,8 +2553,8 @@
]
},
{
- "component": "BIconBellFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBagFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2601,8 +2601,8 @@
]
},
{
- "component": "BIconBlockquoteLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBarChart",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2649,8 +2649,8 @@
]
},
{
- "component": "BIconBlockquoteRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBarChartFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2697,8 +2697,8 @@
]
},
{
- "component": "BIconBook",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBattery",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2745,8 +2745,8 @@
]
},
{
- "component": "BIconBookHalfFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBatteryCharging",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2793,8 +2793,8 @@
]
},
{
- "component": "BIconBookmark",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBatteryFull",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2841,8 +2841,8 @@
]
},
{
- "component": "BIconBookmarkFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBatteryHalf",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2889,8 +2889,8 @@
]
},
{
- "component": "BIconBootstrap",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBell",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2937,8 +2937,8 @@
]
},
{
- "component": "BIconBootstrapFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBellFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -2985,8 +2985,8 @@
]
},
{
- "component": "BIconBootstrapReboot",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBlockquoteLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3033,8 +3033,8 @@
]
},
{
- "component": "BIconBoxArrowBottomLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBlockquoteRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3081,8 +3081,8 @@
]
},
{
- "component": "BIconBoxArrowBottomRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBook",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3129,8 +3129,8 @@
]
},
{
- "component": "BIconBoxArrowDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBookHalf",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3177,8 +3177,8 @@
]
},
{
- "component": "BIconBoxArrowLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBookmark",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3225,8 +3225,8 @@
]
},
{
- "component": "BIconBoxArrowRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBookmarkCheck",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3273,8 +3273,8 @@
]
},
{
- "component": "BIconBoxArrowUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBookmarkDash",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3321,8 +3321,8 @@
]
},
{
- "component": "BIconBoxArrowUpLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBookmarkFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3369,8 +3369,8 @@
]
},
{
- "component": "BIconBoxArrowUpRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBookmarkPlus",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3417,8 +3417,8 @@
]
},
{
- "component": "BIconBraces",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBookmarks",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3465,8 +3465,8 @@
]
},
{
- "component": "BIconBrightnessFillHigh",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBookmarksFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3513,8 +3513,8 @@
]
},
{
- "component": "BIconBrightnessFillLow",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBootstrap",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3561,8 +3561,8 @@
]
},
{
- "component": "BIconBrightnessHigh",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBootstrapFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3609,8 +3609,8 @@
]
},
{
- "component": "BIconBrightnessLow",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBootstrapReboot",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3657,8 +3657,8 @@
]
},
{
- "component": "BIconBrush",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoundingBox",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3705,8 +3705,8 @@
]
},
{
- "component": "BIconBucket",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoundingBoxCircles",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3753,8 +3753,8 @@
]
},
{
- "component": "BIconBucketFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3801,8 +3801,8 @@
]
},
{
- "component": "BIconBuilding",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowDownLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3849,8 +3849,8 @@
]
},
{
- "component": "BIconBullseye",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowDownRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3897,8 +3897,8 @@
]
},
{
- "component": "BIconCalendar",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowInDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3945,8 +3945,8 @@
]
},
{
- "component": "BIconCalendarFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowInDownLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -3993,8 +3993,8 @@
]
},
{
- "component": "BIconCamera",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowInDownRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4041,8 +4041,8 @@
]
},
{
- "component": "BIconCameraVideo",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowInLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4089,8 +4089,8 @@
]
},
{
- "component": "BIconCameraVideoFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowInRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4137,8 +4137,8 @@
]
},
{
- "component": "BIconCapslock",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowInUp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4185,8 +4185,8 @@
]
},
{
- "component": "BIconCapslockFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowInUpLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4233,8 +4233,8 @@
]
},
{
- "component": "BIconChat",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowInUpRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4281,8 +4281,8 @@
]
},
{
- "component": "BIconChatFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4329,8 +4329,8 @@
]
},
{
- "component": "BIconCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4377,8 +4377,8 @@
]
},
{
- "component": "BIconCheckBox",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowUp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4425,8 +4425,8 @@
]
},
{
- "component": "BIconCheckCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowUpLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4473,8 +4473,8 @@
]
},
{
- "component": "BIconChevronCompactDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBoxArrowUpRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4521,8 +4521,8 @@
]
},
{
- "component": "BIconChevronCompactLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBraces",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4569,8 +4569,8 @@
]
},
{
- "component": "BIconChevronCompactRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBriefcase",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4617,8 +4617,8 @@
]
},
{
- "component": "BIconChevronCompactUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBriefcaseFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4665,8 +4665,8 @@
]
},
{
- "component": "BIconChevronDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBrightnessAltHigh",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4713,8 +4713,8 @@
]
},
{
- "component": "BIconChevronLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBrightnessAltHighFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4761,8 +4761,8 @@
]
},
{
- "component": "BIconChevronRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBrightnessAltLow",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4809,8 +4809,8 @@
]
},
{
- "component": "BIconChevronUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBrightnessAltLowFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4857,8 +4857,8 @@
]
},
{
- "component": "BIconCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBrightnessHigh",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4905,8 +4905,8 @@
]
},
{
- "component": "BIconCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBrightnessHighFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -4953,8 +4953,8 @@
]
},
{
- "component": "BIconCircleHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBrightnessLow",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5001,8 +5001,8 @@
]
},
{
- "component": "BIconCircleSlash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBrightnessLowFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5049,8 +5049,8 @@
]
},
{
- "component": "BIconClock",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBrush",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5097,8 +5097,8 @@
]
},
{
- "component": "BIconClockFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBucket",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5145,8 +5145,8 @@
]
},
{
- "component": "BIconCloud",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBucketFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5193,8 +5193,8 @@
]
},
{
- "component": "BIconCloudDownload",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBuilding",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5241,8 +5241,8 @@
]
},
{
- "component": "BIconCloudFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconBullseye",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5289,8 +5289,8 @@
]
},
{
- "component": "BIconCloudUpload",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCalendar",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5337,8 +5337,8 @@
]
},
{
- "component": "BIconCode",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCalendarFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5385,8 +5385,8 @@
]
},
{
- "component": "BIconCodeSlash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCamera",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5433,8 +5433,8 @@
]
},
{
- "component": "BIconColumns",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCameraVideo",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5481,8 +5481,8 @@
]
},
{
- "component": "BIconColumnsGutters",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCameraVideoFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5529,8 +5529,8 @@
]
},
{
- "component": "BIconCommand",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCapslock",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5577,8 +5577,8 @@
]
},
{
- "component": "BIconCompass",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCapslockFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5625,8 +5625,8 @@
]
},
{
- "component": "BIconCone",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCardChecklist",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5673,8 +5673,8 @@
]
},
{
- "component": "BIconConeStriped",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCardHeading",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5721,8 +5721,8 @@
]
},
{
- "component": "BIconController",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCardImage",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5769,8 +5769,8 @@
]
},
{
- "component": "BIconCreditCard",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCardList",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5817,8 +5817,8 @@
]
},
{
- "component": "BIconCursor",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCardText",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5865,8 +5865,8 @@
]
},
{
- "component": "BIconCursorFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCaretDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5913,8 +5913,8 @@
]
},
{
- "component": "BIconDash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCaretDownFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -5961,8 +5961,8 @@
]
},
{
- "component": "BIconDiamond",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCaretLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6009,8 +6009,8 @@
]
},
{
- "component": "BIconDiamondHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCaretLeftFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6057,8 +6057,8 @@
]
},
{
- "component": "BIconDisplay",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCaretRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6105,8 +6105,8 @@
]
},
{
- "component": "BIconDisplayFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCaretRightFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6153,8 +6153,8 @@
]
},
{
- "component": "BIconDocument",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCaretUp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6201,8 +6201,8 @@
]
},
{
- "component": "BIconDocumentCode",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCaretUpFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6249,8 +6249,8 @@
]
},
{
- "component": "BIconDocumentDiff",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChat",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6297,8 +6297,8 @@
]
},
{
- "component": "BIconDocumentRichtext",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChatDots",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6345,8 +6345,8 @@
]
},
{
- "component": "BIconDocumentSpreadsheet",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChatDotsFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6393,8 +6393,8 @@
]
},
{
- "component": "BIconDocumentText",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChatFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6441,8 +6441,8 @@
]
},
{
- "component": "BIconDocuments",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChatQuote",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6489,8 +6489,8 @@
]
},
{
- "component": "BIconDocumentsAlt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChatQuoteFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6537,8 +6537,8 @@
]
},
{
- "component": "BIconDot",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChatSquare",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6585,8 +6585,8 @@
]
},
{
- "component": "BIconDownload",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChatSquareDots",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6633,8 +6633,8 @@
]
},
{
- "component": "BIconEggFried",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChatSquareDotsFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6681,8 +6681,8 @@
]
},
{
- "component": "BIconEject",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChatSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6729,8 +6729,8 @@
]
},
{
- "component": "BIconEjectFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChatSquareQuote",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6777,8 +6777,8 @@
]
},
{
- "component": "BIconEnvelope",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChatSquareQuoteFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6825,8 +6825,8 @@
]
},
{
- "component": "BIconEnvelopeFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCheck",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6873,8 +6873,8 @@
]
},
{
- "component": "BIconEnvelopeOpen",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCheckAll",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6921,8 +6921,8 @@
]
},
{
- "component": "BIconEnvelopeOpenFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCheckBox",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -6969,8 +6969,8 @@
]
},
{
- "component": "BIconEye",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCheckCircle",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7017,8 +7017,8 @@
]
},
{
- "component": "BIconEyeFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronBarContract",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7065,8 +7065,8 @@
]
},
{
- "component": "BIconEyeSlash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronBarDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7113,8 +7113,8 @@
]
},
{
- "component": "BIconEyeSlashFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronBarExpand",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7161,8 +7161,8 @@
]
},
{
- "component": "BIconFilter",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronBarLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7209,8 +7209,8 @@
]
},
{
- "component": "BIconFlag",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronBarRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7257,8 +7257,8 @@
]
},
{
- "component": "BIconFlagFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronBarUp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7305,8 +7305,8 @@
]
},
{
- "component": "BIconFolder",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronCompactDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7353,8 +7353,8 @@
]
},
{
- "component": "BIconFolderFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronCompactLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7401,8 +7401,8 @@
]
},
{
- "component": "BIconFolderSymlink",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronCompactRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7449,8 +7449,8 @@
]
},
{
- "component": "BIconFolderSymlinkFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronCompactUp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7497,8 +7497,8 @@
]
},
{
- "component": "BIconFonts",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronContract",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7545,8 +7545,8 @@
]
},
{
- "component": "BIconForward",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronDoubleDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7593,8 +7593,8 @@
]
},
{
- "component": "BIconForwardFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronDoubleLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7641,8 +7641,8 @@
]
},
{
- "component": "BIconGear",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronDoubleRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7689,8 +7689,8 @@
]
},
{
- "component": "BIconGearFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronDoubleUp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7737,8 +7737,8 @@
]
},
{
- "component": "BIconGearWide",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7785,8 +7785,8 @@
]
},
{
- "component": "BIconGearWideConnected",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronExpand",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7833,8 +7833,8 @@
]
},
{
- "component": "BIconGeo",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7881,8 +7881,8 @@
]
},
{
- "component": "BIconGraphDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7929,8 +7929,8 @@
]
},
{
- "component": "BIconGraphUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconChevronUp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -7977,8 +7977,8 @@
]
},
{
- "component": "BIconGrid",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCircle",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8025,8 +8025,8 @@
]
},
{
- "component": "BIconGridFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8073,8 +8073,8 @@
]
},
{
- "component": "BIconHammer",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCircleHalf",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8121,8 +8121,8 @@
]
},
{
- "component": "BIconHash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCircleSquare",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8169,8 +8169,8 @@
]
},
{
- "component": "BIconHeart",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconClipboard",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8217,8 +8217,8 @@
]
},
{
- "component": "BIconHeartFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconClipboardData",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8265,8 +8265,8 @@
]
},
{
- "component": "BIconHouse",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconClock",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8313,8 +8313,8 @@
]
},
{
- "component": "BIconHouseFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconClockFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8361,8 +8361,8 @@
]
},
{
- "component": "BIconImage",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconClockHistory",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8409,8 +8409,8 @@
]
},
{
- "component": "BIconImageAlt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCloud",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8457,8 +8457,8 @@
]
},
{
- "component": "BIconImageFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCloudDownload",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8505,8 +8505,8 @@
]
},
{
- "component": "BIconImages",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCloudFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8553,8 +8553,8 @@
]
},
{
- "component": "BIconInbox",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCloudUpload",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8601,8 +8601,8 @@
]
},
{
- "component": "BIconInboxFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCode",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8649,8 +8649,8 @@
]
},
{
- "component": "BIconInboxes",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCodeSlash",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8697,8 +8697,8 @@
]
},
{
- "component": "BIconInboxesFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCollection",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8745,8 +8745,8 @@
]
},
{
- "component": "BIconInfo",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCollectionFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8793,8 +8793,8 @@
]
},
{
- "component": "BIconInfoFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCollectionPlay",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8841,8 +8841,8 @@
]
},
{
- "component": "BIconInfoSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCollectionPlayFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8889,8 +8889,8 @@
]
},
{
- "component": "BIconInfoSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconColumns",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8937,8 +8937,8 @@
]
},
{
- "component": "BIconJustify",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconColumnsGap",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -8985,8 +8985,8 @@
]
},
{
- "component": "BIconJustifyLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCommand",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9033,8 +9033,8 @@
]
},
{
- "component": "BIconJustifyRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCompass",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9081,8 +9081,10616 @@
]
},
{
- "component": "BIconKanban",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconCone",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconConeStriped",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconController",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconCreditCard",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconCrop",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconCursor",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconCursorFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconCursorText",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDash",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDashCircle",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDashCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDashSquare",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDashSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDiamond",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDiamondFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDiamondHalf",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDisplay",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDisplayFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDot",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDownload",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDroplet",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDropletFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconDropletHalf",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconEgg",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconEggFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconEggFried",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconEject",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconEjectFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconEnvelope",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconEnvelopeFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconEnvelopeOpen",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconEnvelopeOpenFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconExclamation",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconExclamationCircle",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconExclamationCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconExclamationDiamond",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconExclamationDiamondFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconExclamationOctagon",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconExclamationOctagonFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconExclamationSquare",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconExclamationSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconExclamationTriangle",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconExclamationTriangleFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconExclude",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconEye",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconEyeFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconEyeSlash",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconEyeSlashFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFile",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileArrowDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileArrowUp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileBreak",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileCheck",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileCode",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileDiff",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileEarmark",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileEarmarkArrowDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileEarmarkArrowUp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileEarmarkBreak",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileEarmarkCheck",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileEarmarkCode",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileEarmarkDiff",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileEarmarkMinus",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileEarmarkPlus",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileEarmarkRuled",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileEarmarkSpreadsheet",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileEarmarkText",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileEarmarkZip",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileMinus",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFilePlus",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFilePost",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileRichtext",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileRuled",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileSpreadsheet",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileText",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFileZip",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFiles",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFilesAlt",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFilm",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFilter",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFilterLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFilterRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFlag",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFlagFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFolder",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFolderCheck",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFolderFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFolderMinus",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFolderPlus",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFolderSymlink",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFolderSymlinkFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFonts",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconForward",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconForwardFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFullscreen",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFullscreenExit",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFunnel",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFunnelFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGear",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGearFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGearWide",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGearWideConnected",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGem",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGeo",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGeoAlt",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGift",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGiftFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGraphDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGraphUp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGrid",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGrid1x2",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGrid1x2Fill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGrid3x2",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGrid3x2Gap",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGrid3x2GapFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGrid3x3",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGrid3x3Gap",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGrid3x3GapFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconGridFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconHammer",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconHash",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconHeart",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconHeartFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconHeartHalf",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconHouse",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconHouseDoor",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconHouseDoorFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconHouseFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconHr",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconImage",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconImageAlt",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconImageFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconImages",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconInbox",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconInboxFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconInboxes",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconInboxesFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconInfo",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconInfoCircle",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconInfoCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconInfoSquare",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconInfoSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconIntersect",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconJustify",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconJustifyLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconJustifyRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconKanban",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconKanbanFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLaptop",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLayers",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLayersFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLayersHalf",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLayoutSidebar",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLayoutSidebarInset",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLayoutSidebarInsetReverse",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLayoutSidebarReverse",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLayoutSplit",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLayoutTextSidebar",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLayoutTextSidebarReverse",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLayoutTextWindow",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLayoutTextWindowReverse",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLayoutThreeColumns",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLayoutWtf",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLifePreserver",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLightning",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLightningFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLink",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLink45deg",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconList",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconListCheck",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconListNested",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconListOl",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconListTask",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconListUl",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLock",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconLockFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconMap",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconMic",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconMicFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconMicMute",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconMicMuteFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconMoon",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconMusicNote",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconMusicNoteBeamed",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconMusicNoteList",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconMusicPlayer",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconMusicPlayerFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconNewspaper",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconOctagon",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconOctagonFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconOctagonHalf",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconOption",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconOutlet",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPaperclip",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPause",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPauseFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPen",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPencil",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPencilSquare",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPentagon",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPentagonFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPentagonHalf",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPeople",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPeopleCircle",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPeopleFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPerson",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPersonBoundingBox",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPersonCheck",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPersonCheckFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPersonDash",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPersonDashFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPersonFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPersonLinesFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPersonPlus",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPersonPlusFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPersonSquare",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPhone",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPhoneLandscape",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPieChart",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPieChartFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPip",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
+ "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 'spin', 'pulse' and 'cylon'"
+ }
+ ]
+ },
+ {
+ "component": "BIconPipFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9129,8 +19737,8 @@
]
},
{
- "component": "BIconKanbanFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconPlay",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9177,8 +19785,8 @@
]
},
{
- "component": "BIconLaptop",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconPlayFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9225,8 +19833,8 @@
]
},
{
- "component": "BIconLayoutSidebar",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconPlug",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9273,8 +19881,8 @@
]
},
{
- "component": "BIconLayoutSidebarReverse",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconPlus",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9321,8 +19929,8 @@
]
},
{
- "component": "BIconLayoutSplit",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconPlusCircle",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9369,8 +19977,8 @@
]
},
{
- "component": "BIconList",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconPlusCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9417,8 +20025,8 @@
]
},
{
- "component": "BIconListCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconPlusSquare",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9465,8 +20073,8 @@
]
},
{
- "component": "BIconListOl",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconPlusSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9513,8 +20121,8 @@
]
},
{
- "component": "BIconListTask",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconPower",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9561,8 +20169,8 @@
]
},
{
- "component": "BIconListUl",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconPuzzle",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9609,8 +20217,8 @@
]
},
{
- "component": "BIconLock",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconPuzzleFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9657,8 +20265,8 @@
]
},
{
- "component": "BIconLockFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconQuestion",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9705,8 +20313,8 @@
]
},
{
- "component": "BIconMap",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconQuestionCircle",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9753,8 +20361,8 @@
]
},
{
- "component": "BIconMic",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconQuestionCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9801,8 +20409,8 @@
]
},
{
- "component": "BIconMoon",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconQuestionDiamond",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9849,8 +20457,8 @@
]
},
{
- "component": "BIconMusicPlayer",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconQuestionDiamondFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9897,8 +20505,8 @@
]
},
{
- "component": "BIconMusicPlayerFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconQuestionOctagon",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9945,8 +20553,8 @@
]
},
{
- "component": "BIconOption",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconQuestionOctagonFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -9993,8 +20601,8 @@
]
},
{
- "component": "BIconOutlet",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconQuestionSquare",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10041,8 +20649,8 @@
]
},
{
- "component": "BIconPause",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconQuestionSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10089,8 +20697,8 @@
]
},
{
- "component": "BIconPauseFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconReply",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10137,8 +20745,8 @@
]
},
{
- "component": "BIconPen",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconReplyAll",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10185,8 +20793,8 @@
]
},
{
- "component": "BIconPencil",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconReplyAllFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10233,8 +20841,8 @@
]
},
{
- "component": "BIconPeople",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconReplyFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10281,8 +20889,8 @@
]
},
{
- "component": "BIconPeopleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconScrewdriver",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10329,8 +20937,8 @@
]
},
{
- "component": "BIconPerson",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSearch",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10377,8 +20985,8 @@
]
},
{
- "component": "BIconPersonFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconServer",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10425,8 +21033,8 @@
]
},
{
- "component": "BIconPhone",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconShield",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10473,8 +21081,8 @@
]
},
{
- "component": "BIconPhoneLandscape",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconShieldFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10521,8 +21129,8 @@
]
},
{
- "component": "BIconPieChart",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconShieldLock",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10569,8 +21177,8 @@
]
},
{
- "component": "BIconPieChartFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconShieldLockFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10617,8 +21225,8 @@
]
},
{
- "component": "BIconPlay",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconShieldShaded",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10665,8 +21273,8 @@
]
},
{
- "component": "BIconPlayFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconShift",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10713,8 +21321,8 @@
]
},
{
- "component": "BIconPlug",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconShiftFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10761,8 +21369,8 @@
]
},
{
- "component": "BIconPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconShuffle",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10809,8 +21417,8 @@
]
},
{
- "component": "BIconPower",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSkipBackward",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10857,8 +21465,8 @@
]
},
{
- "component": "BIconQuestion",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSkipBackwardFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10905,8 +21513,8 @@
]
},
{
- "component": "BIconQuestionFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSkipEnd",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -10953,8 +21561,8 @@
]
},
{
- "component": "BIconQuestionSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSkipEndFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11001,8 +21609,8 @@
]
},
{
- "component": "BIconQuestionSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSkipForward",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11049,8 +21657,8 @@
]
},
{
- "component": "BIconReply",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSkipForwardFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11097,8 +21705,8 @@
]
},
{
- "component": "BIconReplyAll",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSkipStart",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11145,8 +21753,8 @@
]
},
{
- "component": "BIconReplyAllFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSkipStartFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11193,8 +21801,8 @@
]
},
{
- "component": "BIconReplyFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSlash",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11241,8 +21849,8 @@
]
},
{
- "component": "BIconScrewdriver",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSlashCircle",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11289,8 +21897,8 @@
]
},
{
- "component": "BIconSearch",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSlashCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11337,8 +21945,8 @@
]
},
{
- "component": "BIconShield",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSlashSquare",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11385,8 +21993,8 @@
]
},
{
- "component": "BIconShieldFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSlashSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11433,8 +22041,8 @@
]
},
{
- "component": "BIconShieldLock",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSliders",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11481,8 +22089,8 @@
]
},
{
- "component": "BIconShieldLockFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSoundwave",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11529,8 +22137,8 @@
]
},
{
- "component": "BIconShieldShaded",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSpeaker",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11577,8 +22185,8 @@
]
},
{
- "component": "BIconShift",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSquare",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11625,8 +22233,8 @@
]
},
{
- "component": "BIconShiftFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11673,8 +22281,8 @@
]
},
{
- "component": "BIconSkipBackward",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSquareHalf",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11721,8 +22329,8 @@
]
},
{
- "component": "BIconSkipBackwardFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconStar",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11769,8 +22377,8 @@
]
},
{
- "component": "BIconSkipEnd",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconStarFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11817,8 +22425,8 @@
]
},
{
- "component": "BIconSkipEndFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconStarHalf",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11865,8 +22473,8 @@
]
},
{
- "component": "BIconSkipForward",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconStop",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11913,8 +22521,8 @@
]
},
{
- "component": "BIconSkipForwardFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconStopFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -11961,8 +22569,8 @@
]
},
{
- "component": "BIconSkipStart",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconStopwatch",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12009,8 +22617,8 @@
]
},
{
- "component": "BIconSkipStartFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconStopwatchFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12057,8 +22665,8 @@
]
},
{
- "component": "BIconSpeaker",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSubtract",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12105,8 +22713,8 @@
]
},
{
- "component": "BIconSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconSun",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12153,8 +22761,8 @@
]
},
{
- "component": "BIconSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTable",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12201,8 +22809,8 @@
]
},
{
- "component": "BIconSquareHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTablet",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12249,8 +22857,8 @@
]
},
{
- "component": "BIconStar",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTabletLandscape",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12297,8 +22905,8 @@
]
},
{
- "component": "BIconStarFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTag",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12345,8 +22953,8 @@
]
},
{
- "component": "BIconStarHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTagFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12393,8 +23001,8 @@
]
},
{
- "component": "BIconStop",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTerminal",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12441,8 +23049,8 @@
]
},
{
- "component": "BIconStopFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTerminalFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12489,8 +23097,8 @@
]
},
{
- "component": "BIconStopwatch",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTextCenter",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12537,8 +23145,8 @@
]
},
{
- "component": "BIconStopwatchFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTextIndentLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12585,8 +23193,8 @@
]
},
{
- "component": "BIconSun",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTextIndentRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12633,8 +23241,8 @@
]
},
{
- "component": "BIconTable",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTextLeft",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12681,8 +23289,8 @@
]
},
{
- "component": "BIconTablet",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTextRight",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12729,8 +23337,8 @@
]
},
{
- "component": "BIconTabletLandscape",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTextarea",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12777,8 +23385,8 @@
]
},
{
- "component": "BIconTag",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTextareaT",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12825,8 +23433,8 @@
]
},
{
- "component": "BIconTagFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconThreeDots",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12873,8 +23481,8 @@
]
},
{
- "component": "BIconTerminal",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconThreeDotsVertical",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12921,8 +23529,8 @@
]
},
{
- "component": "BIconTerminalFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconToggleOff",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -12969,8 +23577,8 @@
]
},
{
- "component": "BIconTextCenter",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconToggleOn",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13017,8 +23625,8 @@
]
},
{
- "component": "BIconTextIndentLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconToggles",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13065,8 +23673,8 @@
]
},
{
- "component": "BIconTextIndentRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTools",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13113,8 +23721,8 @@
]
},
{
- "component": "BIconTextLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTrash",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13161,8 +23769,8 @@
]
},
{
- "component": "BIconTextRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTrash2",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13209,8 +23817,8 @@
]
},
{
- "component": "BIconThreeDots",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTrash2Fill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13257,8 +23865,8 @@
]
},
{
- "component": "BIconThreeDotsVertical",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTrashFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13305,8 +23913,8 @@
]
},
{
- "component": "BIconToggleOff",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTriangle",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13353,8 +23961,8 @@
]
},
{
- "component": "BIconToggleOn",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTriangleFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13401,8 +24009,8 @@
]
},
{
- "component": "BIconToggles",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTriangleHalf",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13449,8 +24057,8 @@
]
},
{
- "component": "BIconTools",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTrophy",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13497,8 +24105,8 @@
]
},
{
- "component": "BIconTrash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTv",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13545,8 +24153,8 @@
]
},
{
- "component": "BIconTrashFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTvFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13593,8 +24201,8 @@
]
},
{
- "component": "BIconTriangle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconType",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13641,8 +24249,8 @@
]
},
{
- "component": "BIconTriangleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTypeBold",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13689,8 +24297,8 @@
]
},
{
- "component": "BIconTriangleHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTypeH1",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13737,8 +24345,8 @@
]
},
{
- "component": "BIconTrophy",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTypeH2",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13785,8 +24393,8 @@
]
},
{
- "component": "BIconTv",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTypeH3",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13833,8 +24441,8 @@
]
},
{
- "component": "BIconTvFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTypeItalic",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13881,8 +24489,8 @@
]
},
{
- "component": "BIconType",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTypeStrikethrough",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13929,8 +24537,8 @@
]
},
{
- "component": "BIconTypeBold",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconTypeUnderline",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -13977,8 +24585,8 @@
]
},
{
- "component": "BIconTypeH1",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconUnion",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14025,8 +24633,8 @@
]
},
{
- "component": "BIconTypeH2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconUnlock",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14073,8 +24681,8 @@
]
},
{
- "component": "BIconTypeH3",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconUnlockFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14121,8 +24729,8 @@
]
},
{
- "component": "BIconTypeItalic",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconUpload",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14169,8 +24777,8 @@
]
},
{
- "component": "BIconTypeStrikethrough",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconViewList",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14217,8 +24825,8 @@
]
},
{
- "component": "BIconTypeUnderline",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconViewStacked",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14265,8 +24873,8 @@
]
},
{
- "component": "BIconUnlock",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconVolumeDown",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14313,8 +24921,8 @@
]
},
{
- "component": "BIconUnlockFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconVolumeDownFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14361,8 +24969,8 @@
]
},
{
- "component": "BIconUpload",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconVolumeMute",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14409,8 +25017,8 @@
]
},
{
- "component": "BIconVolumeDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconVolumeMuteFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14457,8 +25065,8 @@
]
},
{
- "component": "BIconVolumeDownFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconVolumeUp",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14505,8 +25113,8 @@
]
},
{
- "component": "BIconVolumeMute",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconVolumeUpFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14553,8 +25161,8 @@
]
},
{
- "component": "BIconVolumeMuteFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconVr",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14601,8 +25209,8 @@
]
},
{
- "component": "BIconVolumeUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconWallet",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14649,8 +25257,8 @@
]
},
{
- "component": "BIconVolumeUpFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconWatch",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14697,8 +25305,8 @@
]
},
{
- "component": "BIconWallet",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconWifi",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14745,8 +25353,8 @@
]
},
{
- "component": "BIconWatch",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconWindow",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14793,8 +25401,8 @@
]
},
{
- "component": "BIconWifi",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconWrench",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14841,8 +25449,8 @@
]
},
{
- "component": "BIconWindow",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconX",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14889,8 +25497,8 @@
]
},
{
- "component": "BIconWrench",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconXCircle",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14937,8 +25545,8 @@
]
},
{
- "component": "BIconX",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconXCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -14985,8 +25593,8 @@
]
},
{
- "component": "BIconXCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconXDiamond",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -15033,8 +25641,8 @@
]
},
{
- "component": "BIconXCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "component": "BIconXDiamondFill",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -15082,7 +25690,7 @@
},
{
"component": "BIconXOctagon",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -15130,7 +25738,7 @@
},
{
"component": "BIconXOctagonFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -15178,7 +25786,7 @@
},
{
"component": "BIconXSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
@@ -15226,7 +25834,7 @@
},
{
"component": "BIconXSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha2",
+ "auto-gen": "bootstrap-icons 1.0.0-alpha3",
"props": [
{
"prop": "variant",
diff --git a/src/icons/plugin.js b/src/icons/plugin.js
index 2d495b2f61e..c3a8479472e 100644
--- a/src/icons/plugin.js
+++ b/src/icons/plugin.js
@@ -1,7 +1,7 @@
// --- BEGIN AUTO-GENERATED FILE ---
//
-// @IconsVersion: 1.0.0-alpha2
-// @Generated: 2020-03-12T09:18:47.956Z
+// @IconsVersion: 1.0.0-alpha3
+// @Generated: 2020-03-19T18:55:36.736Z
//
// This file is generated on each build. Do not edit this file!
@@ -19,17 +19,16 @@ import {
// Bootstrap icons
BIconAlarm,
BIconAlarmFill,
- BIconAlertCircle,
- BIconAlertCircleFill,
- BIconAlertOctagon,
- BIconAlertOctagonFill,
- BIconAlertSquare,
- BIconAlertSquareFill,
- BIconAlertTriangle,
- BIconAlertTriangleFill,
+ BIconAlt,
+ BIconApp,
+ BIconAppIndicator,
BIconArchive,
BIconArchiveFill,
- BIconArrowBarBottom,
+ BIconArrow90degDown,
+ BIconArrow90degLeft,
+ BIconArrow90degRight,
+ BIconArrow90degUp,
+ BIconArrowBarDown,
BIconArrowBarLeft,
BIconArrowBarRight,
BIconArrowBarUp,
@@ -43,6 +42,8 @@ import {
BIconArrowLeftRight,
BIconArrowLeftShort,
BIconArrowRepeat,
+ BIconArrowReturnLeft,
+ BIconArrowReturnRight,
BIconArrowRight,
BIconArrowRightShort,
BIconArrowUp,
@@ -55,41 +56,69 @@ import {
BIconArrowsCollapse,
BIconArrowsExpand,
BIconArrowsFullscreen,
+ BIconArrowsMove,
+ BIconAspectRatio,
+ BIconAspectRatioFill,
BIconAt,
BIconAward,
+ BIconAwardFill,
BIconBackspace,
BIconBackspaceFill,
BIconBackspaceReverse,
BIconBackspaceReverseFill,
+ BIconBag,
+ BIconBagFill,
BIconBarChart,
BIconBarChartFill,
BIconBattery,
BIconBatteryCharging,
BIconBatteryFull,
+ BIconBatteryHalf,
BIconBell,
BIconBellFill,
BIconBlockquoteLeft,
BIconBlockquoteRight,
BIconBook,
- BIconBookHalfFill,
+ BIconBookHalf,
BIconBookmark,
+ BIconBookmarkCheck,
+ BIconBookmarkDash,
BIconBookmarkFill,
+ BIconBookmarkPlus,
+ BIconBookmarks,
+ BIconBookmarksFill,
BIconBootstrap,
BIconBootstrapFill,
BIconBootstrapReboot,
- BIconBoxArrowBottomLeft,
- BIconBoxArrowBottomRight,
+ BIconBoundingBox,
+ BIconBoundingBoxCircles,
BIconBoxArrowDown,
+ BIconBoxArrowDownLeft,
+ BIconBoxArrowDownRight,
+ BIconBoxArrowInDown,
+ BIconBoxArrowInDownLeft,
+ BIconBoxArrowInDownRight,
+ BIconBoxArrowInLeft,
+ BIconBoxArrowInRight,
+ BIconBoxArrowInUp,
+ BIconBoxArrowInUpLeft,
+ BIconBoxArrowInUpRight,
BIconBoxArrowLeft,
BIconBoxArrowRight,
BIconBoxArrowUp,
BIconBoxArrowUpLeft,
BIconBoxArrowUpRight,
BIconBraces,
- BIconBrightnessFillHigh,
- BIconBrightnessFillLow,
+ BIconBriefcase,
+ BIconBriefcaseFill,
+ BIconBrightnessAltHigh,
+ BIconBrightnessAltHighFill,
+ BIconBrightnessAltLow,
+ BIconBrightnessAltLowFill,
BIconBrightnessHigh,
+ BIconBrightnessHighFill,
BIconBrightnessLow,
+ BIconBrightnessLowFill,
BIconBrush,
BIconBucket,
BIconBucketFill,
@@ -102,56 +131,103 @@ import {
BIconCameraVideoFill,
BIconCapslock,
BIconCapslockFill,
+ BIconCardChecklist,
+ BIconCardHeading,
+ BIconCardImage,
+ BIconCardList,
+ BIconCardText,
+ BIconCaretDown,
+ BIconCaretDownFill,
+ BIconCaretLeft,
+ BIconCaretLeftFill,
+ BIconCaretRight,
+ BIconCaretRightFill,
+ BIconCaretUp,
+ BIconCaretUpFill,
BIconChat,
+ BIconChatDots,
+ BIconChatDotsFill,
BIconChatFill,
+ BIconChatQuote,
+ BIconChatQuoteFill,
+ BIconChatSquare,
+ BIconChatSquareDots,
+ BIconChatSquareDotsFill,
+ BIconChatSquareFill,
+ BIconChatSquareQuote,
+ BIconChatSquareQuoteFill,
BIconCheck,
+ BIconCheckAll,
BIconCheckBox,
BIconCheckCircle,
+ BIconChevronBarContract,
+ BIconChevronBarDown,
+ BIconChevronBarExpand,
+ BIconChevronBarLeft,
+ BIconChevronBarRight,
+ BIconChevronBarUp,
BIconChevronCompactDown,
BIconChevronCompactLeft,
BIconChevronCompactRight,
BIconChevronCompactUp,
+ BIconChevronContract,
+ BIconChevronDoubleDown,
+ BIconChevronDoubleLeft,
+ BIconChevronDoubleRight,
+ BIconChevronDoubleUp,
BIconChevronDown,
+ BIconChevronExpand,
BIconChevronLeft,
BIconChevronRight,
BIconChevronUp,
BIconCircle,
BIconCircleFill,
BIconCircleHalf,
- BIconCircleSlash,
+ BIconCircleSquare,
+ BIconClipboard,
+ BIconClipboardData,
BIconClock,
BIconClockFill,
+ BIconClockHistory,
BIconCloud,
BIconCloudDownload,
BIconCloudFill,
BIconCloudUpload,
BIconCode,
BIconCodeSlash,
+ BIconCollection,
+ BIconCollectionFill,
+ BIconCollectionPlay,
+ BIconCollectionPlayFill,
BIconColumns,
- BIconColumnsGutters,
+ BIconColumnsGap,
BIconCommand,
BIconCompass,
BIconCone,
BIconConeStriped,
BIconController,
BIconCreditCard,
+ BIconCrop,
BIconCursor,
BIconCursorFill,
+ BIconCursorText,
BIconDash,
+ BIconDashCircle,
+ BIconDashCircleFill,
+ BIconDashSquare,
+ BIconDashSquareFill,
BIconDiamond,
+ BIconDiamondFill,
BIconDiamondHalf,
BIconDisplay,
BIconDisplayFill,
- BIconDocument,
- BIconDocumentCode,
- BIconDocumentDiff,
- BIconDocumentRichtext,
- BIconDocumentSpreadsheet,
- BIconDocumentText,
- BIconDocuments,
- BIconDocumentsAlt,
BIconDot,
BIconDownload,
+ BIconDroplet,
+ BIconDropletFill,
+ BIconDropletHalf,
+ BIconEgg,
+ BIconEggFill,
BIconEggFried,
BIconEject,
BIconEjectFill,
@@ -159,35 +235,103 @@ import {
BIconEnvelopeFill,
BIconEnvelopeOpen,
BIconEnvelopeOpenFill,
+ BIconExclamation,
+ BIconExclamationCircle,
+ BIconExclamationCircleFill,
+ BIconExclamationDiamond,
+ BIconExclamationDiamondFill,
+ BIconExclamationOctagon,
+ BIconExclamationOctagonFill,
+ BIconExclamationSquare,
+ BIconExclamationSquareFill,
+ BIconExclamationTriangle,
+ BIconExclamationTriangleFill,
+ BIconExclude,
BIconEye,
BIconEyeFill,
BIconEyeSlash,
BIconEyeSlashFill,
+ BIconFile,
+ BIconFileArrowDown,
+ BIconFileArrowUp,
+ BIconFileBreak,
+ BIconFileCheck,
+ BIconFileCode,
+ BIconFileDiff,
+ BIconFileEarmark,
+ BIconFileEarmarkArrowDown,
+ BIconFileEarmarkArrowUp,
+ BIconFileEarmarkBreak,
+ BIconFileEarmarkCheck,
+ BIconFileEarmarkCode,
+ BIconFileEarmarkDiff,
+ BIconFileEarmarkMinus,
+ BIconFileEarmarkPlus,
+ BIconFileEarmarkRuled,
+ BIconFileEarmarkSpreadsheet,
+ BIconFileEarmarkText,
+ BIconFileEarmarkZip,
+ BIconFileMinus,
+ BIconFilePlus,
+ BIconFilePost,
+ BIconFileRichtext,
+ BIconFileRuled,
+ BIconFileSpreadsheet,
+ BIconFileText,
+ BIconFileZip,
+ BIconFiles,
+ BIconFilesAlt,
+ BIconFilm,
BIconFilter,
+ BIconFilterLeft,
+ BIconFilterRight,
BIconFlag,
BIconFlagFill,
BIconFolder,
+ BIconFolderCheck,
BIconFolderFill,
+ BIconFolderMinus,
+ BIconFolderPlus,
BIconFolderSymlink,
BIconFolderSymlinkFill,
BIconFonts,
BIconForward,
BIconForwardFill,
+ BIconFullscreen,
+ BIconFullscreenExit,
+ BIconFunnel,
+ BIconFunnelFill,
BIconGear,
BIconGearFill,
BIconGearWide,
BIconGearWideConnected,
+ BIconGem,
BIconGeo,
+ BIconGeoAlt,
+ BIconGift,
+ BIconGiftFill,
BIconGraphDown,
BIconGraphUp,
BIconGrid,
+ BIconGrid1x2,
+ BIconGrid1x2Fill,
+ BIconGrid3x2,
+ BIconGrid3x2Gap,
+ BIconGrid3x2GapFill,
+ BIconGrid3x3,
+ BIconGrid3x3Gap,
+ BIconGrid3x3GapFill,
BIconGridFill,
BIconHammer,
BIconHash,
BIconHeart,
BIconHeartFill,
+ BIconHeartHalf,
BIconHouse,
+ BIconHouseDoor,
+ BIconHouseDoorFill,
BIconHouseFill,
+ BIconHr,
BIconImage,
BIconImageAlt,
BIconImageFill,
@@ -197,20 +341,39 @@ import {
BIconInboxes,
BIconInboxesFill,
BIconInfo,
- BIconInfoFill,
+ BIconInfoCircle,
+ BIconInfoCircleFill,
BIconInfoSquare,
BIconInfoSquareFill,
+ BIconIntersect,
BIconJustify,
BIconJustifyLeft,
BIconJustifyRight,
BIconKanban,
BIconKanbanFill,
BIconLaptop,
+ BIconLayers,
+ BIconLayersFill,
+ BIconLayersHalf,
BIconLayoutSidebar,
+ BIconLayoutSidebarInset,
+ BIconLayoutSidebarInsetReverse,
BIconLayoutSidebarReverse,
BIconLayoutSplit,
+ BIconLayoutTextSidebar,
+ BIconLayoutTextSidebarReverse,
+ BIconLayoutTextWindow,
+ BIconLayoutTextWindowReverse,
+ BIconLayoutThreeColumns,
+ BIconLayoutWtf,
+ BIconLifePreserver,
+ BIconLightning,
+ BIconLightningFill,
+ BIconLink,
+ BIconLink45deg,
BIconList,
BIconListCheck,
+ BIconListNested,
BIconListOl,
BIconListTask,
BIconListUl,
@@ -218,30 +381,68 @@ import {
BIconLockFill,
BIconMap,
BIconMic,
+ BIconMicFill,
+ BIconMicMute,
+ BIconMicMuteFill,
BIconMoon,
+ BIconMusicNote,
+ BIconMusicNoteBeamed,
+ BIconMusicNoteList,
BIconMusicPlayer,
BIconMusicPlayerFill,
+ BIconNewspaper,
+ BIconOctagon,
+ BIconOctagonFill,
+ BIconOctagonHalf,
BIconOption,
BIconOutlet,
+ BIconPaperclip,
BIconPause,
BIconPauseFill,
BIconPen,
BIconPencil,
+ BIconPencilSquare,
+ BIconPentagon,
+ BIconPentagonFill,
+ BIconPentagonHalf,
BIconPeople,
+ BIconPeopleCircle,
BIconPeopleFill,
BIconPerson,
+ BIconPersonBoundingBox,
+ BIconPersonCheck,
+ BIconPersonCheckFill,
+ BIconPersonDash,
+ BIconPersonDashFill,
BIconPersonFill,
+ BIconPersonLinesFill,
+ BIconPersonPlus,
+ BIconPersonPlusFill,
+ BIconPersonSquare,
BIconPhone,
BIconPhoneLandscape,
BIconPieChart,
BIconPieChartFill,
+ BIconPip,
+ BIconPipFill,
BIconPlay,
BIconPlayFill,
BIconPlug,
BIconPlus,
+ BIconPlusCircle,
+ BIconPlusCircleFill,
+ BIconPlusSquare,
+ BIconPlusSquareFill,
BIconPower,
+ BIconPuzzle,
+ BIconPuzzleFill,
BIconQuestion,
- BIconQuestionFill,
+ BIconQuestionCircle,
+ BIconQuestionCircleFill,
+ BIconQuestionDiamond,
+ BIconQuestionDiamondFill,
+ BIconQuestionOctagon,
+ BIconQuestionOctagonFill,
BIconQuestionSquare,
BIconQuestionSquareFill,
BIconReply,
@@ -250,6 +451,7 @@ import {
BIconReplyFill,
BIconScrewdriver,
BIconSearch,
+ BIconServer,
BIconShield,
BIconShieldFill,
BIconShieldLock,
@@ -257,6 +459,7 @@ import {
BIconShieldShaded,
BIconShift,
BIconShiftFill,
+ BIconShuffle,
BIconSkipBackward,
BIconSkipBackwardFill,
BIconSkipEnd,
@@ -265,6 +468,13 @@ import {
BIconSkipForwardFill,
BIconSkipStart,
BIconSkipStartFill,
+ BIconSlash,
+ BIconSlashCircle,
+ BIconSlashCircleFill,
+ BIconSlashSquare,
+ BIconSlashSquareFill,
+ BIconSliders,
+ BIconSoundwave,
BIconSpeaker,
BIconSquare,
BIconSquareFill,
@@ -276,6 +486,7 @@ import {
BIconStopFill,
BIconStopwatch,
BIconStopwatchFill,
+ BIconSubtract,
BIconSun,
BIconTable,
BIconTablet,
@@ -289,6 +500,8 @@ import {
BIconTextIndentRight,
BIconTextLeft,
BIconTextRight,
+ BIconTextarea,
+ BIconTextareaT,
BIconThreeDots,
BIconThreeDotsVertical,
BIconToggleOff,
@@ -296,6 +509,8 @@ import {
BIconToggles,
BIconTools,
BIconTrash,
+ BIconTrash2,
+ BIconTrash2Fill,
BIconTrashFill,
BIconTriangle,
BIconTriangleFill,
@@ -311,15 +526,19 @@ import {
BIconTypeItalic,
BIconTypeStrikethrough,
BIconTypeUnderline,
+ BIconUnion,
BIconUnlock,
BIconUnlockFill,
BIconUpload,
+ BIconViewList,
+ BIconViewStacked,
BIconVolumeDown,
BIconVolumeDownFill,
BIconVolumeMute,
BIconVolumeMuteFill,
BIconVolumeUp,
BIconVolumeUpFill,
+ BIconVr,
BIconWallet,
BIconWatch,
BIconWifi,
@@ -328,6 +547,8 @@ import {
BIconX,
BIconXCircle,
BIconXCircleFill,
+ BIconXDiamond,
+ BIconXDiamondFill,
BIconXOctagon,
BIconXOctagonFill,
BIconXSquare,
@@ -341,17 +562,16 @@ export const iconNames = [
// Bootstrap icon component names
'BIconAlarm',
'BIconAlarmFill',
- 'BIconAlertCircle',
- 'BIconAlertCircleFill',
- 'BIconAlertOctagon',
- 'BIconAlertOctagonFill',
- 'BIconAlertSquare',
- 'BIconAlertSquareFill',
- 'BIconAlertTriangle',
- 'BIconAlertTriangleFill',
+ 'BIconAlt',
+ 'BIconApp',
+ 'BIconAppIndicator',
'BIconArchive',
'BIconArchiveFill',
- 'BIconArrowBarBottom',
+ 'BIconArrow90degDown',
+ 'BIconArrow90degLeft',
+ 'BIconArrow90degRight',
+ 'BIconArrow90degUp',
+ 'BIconArrowBarDown',
'BIconArrowBarLeft',
'BIconArrowBarRight',
'BIconArrowBarUp',
@@ -365,6 +585,8 @@ export const iconNames = [
'BIconArrowLeftRight',
'BIconArrowLeftShort',
'BIconArrowRepeat',
+ 'BIconArrowReturnLeft',
+ 'BIconArrowReturnRight',
'BIconArrowRight',
'BIconArrowRightShort',
'BIconArrowUp',
@@ -377,41 +599,69 @@ export const iconNames = [
'BIconArrowsCollapse',
'BIconArrowsExpand',
'BIconArrowsFullscreen',
+ 'BIconArrowsMove',
+ 'BIconAspectRatio',
+ 'BIconAspectRatioFill',
'BIconAt',
'BIconAward',
+ 'BIconAwardFill',
'BIconBackspace',
'BIconBackspaceFill',
'BIconBackspaceReverse',
'BIconBackspaceReverseFill',
+ 'BIconBag',
+ 'BIconBagFill',
'BIconBarChart',
'BIconBarChartFill',
'BIconBattery',
'BIconBatteryCharging',
'BIconBatteryFull',
+ 'BIconBatteryHalf',
'BIconBell',
'BIconBellFill',
'BIconBlockquoteLeft',
'BIconBlockquoteRight',
'BIconBook',
- 'BIconBookHalfFill',
+ 'BIconBookHalf',
'BIconBookmark',
+ 'BIconBookmarkCheck',
+ 'BIconBookmarkDash',
'BIconBookmarkFill',
+ 'BIconBookmarkPlus',
+ 'BIconBookmarks',
+ 'BIconBookmarksFill',
'BIconBootstrap',
'BIconBootstrapFill',
'BIconBootstrapReboot',
- 'BIconBoxArrowBottomLeft',
- 'BIconBoxArrowBottomRight',
+ 'BIconBoundingBox',
+ 'BIconBoundingBoxCircles',
'BIconBoxArrowDown',
+ 'BIconBoxArrowDownLeft',
+ 'BIconBoxArrowDownRight',
+ 'BIconBoxArrowInDown',
+ 'BIconBoxArrowInDownLeft',
+ 'BIconBoxArrowInDownRight',
+ 'BIconBoxArrowInLeft',
+ 'BIconBoxArrowInRight',
+ 'BIconBoxArrowInUp',
+ 'BIconBoxArrowInUpLeft',
+ 'BIconBoxArrowInUpRight',
'BIconBoxArrowLeft',
'BIconBoxArrowRight',
'BIconBoxArrowUp',
'BIconBoxArrowUpLeft',
'BIconBoxArrowUpRight',
'BIconBraces',
- 'BIconBrightnessFillHigh',
- 'BIconBrightnessFillLow',
+ 'BIconBriefcase',
+ 'BIconBriefcaseFill',
+ 'BIconBrightnessAltHigh',
+ 'BIconBrightnessAltHighFill',
+ 'BIconBrightnessAltLow',
+ 'BIconBrightnessAltLowFill',
'BIconBrightnessHigh',
+ 'BIconBrightnessHighFill',
'BIconBrightnessLow',
+ 'BIconBrightnessLowFill',
'BIconBrush',
'BIconBucket',
'BIconBucketFill',
@@ -424,56 +674,103 @@ export const iconNames = [
'BIconCameraVideoFill',
'BIconCapslock',
'BIconCapslockFill',
+ 'BIconCardChecklist',
+ 'BIconCardHeading',
+ 'BIconCardImage',
+ 'BIconCardList',
+ 'BIconCardText',
+ 'BIconCaretDown',
+ 'BIconCaretDownFill',
+ 'BIconCaretLeft',
+ 'BIconCaretLeftFill',
+ 'BIconCaretRight',
+ 'BIconCaretRightFill',
+ 'BIconCaretUp',
+ 'BIconCaretUpFill',
'BIconChat',
+ 'BIconChatDots',
+ 'BIconChatDotsFill',
'BIconChatFill',
+ 'BIconChatQuote',
+ 'BIconChatQuoteFill',
+ 'BIconChatSquare',
+ 'BIconChatSquareDots',
+ 'BIconChatSquareDotsFill',
+ 'BIconChatSquareFill',
+ 'BIconChatSquareQuote',
+ 'BIconChatSquareQuoteFill',
'BIconCheck',
+ 'BIconCheckAll',
'BIconCheckBox',
'BIconCheckCircle',
+ 'BIconChevronBarContract',
+ 'BIconChevronBarDown',
+ 'BIconChevronBarExpand',
+ 'BIconChevronBarLeft',
+ 'BIconChevronBarRight',
+ 'BIconChevronBarUp',
'BIconChevronCompactDown',
'BIconChevronCompactLeft',
'BIconChevronCompactRight',
'BIconChevronCompactUp',
+ 'BIconChevronContract',
+ 'BIconChevronDoubleDown',
+ 'BIconChevronDoubleLeft',
+ 'BIconChevronDoubleRight',
+ 'BIconChevronDoubleUp',
'BIconChevronDown',
+ 'BIconChevronExpand',
'BIconChevronLeft',
'BIconChevronRight',
'BIconChevronUp',
'BIconCircle',
'BIconCircleFill',
'BIconCircleHalf',
- 'BIconCircleSlash',
+ 'BIconCircleSquare',
+ 'BIconClipboard',
+ 'BIconClipboardData',
'BIconClock',
'BIconClockFill',
+ 'BIconClockHistory',
'BIconCloud',
'BIconCloudDownload',
'BIconCloudFill',
'BIconCloudUpload',
'BIconCode',
'BIconCodeSlash',
+ 'BIconCollection',
+ 'BIconCollectionFill',
+ 'BIconCollectionPlay',
+ 'BIconCollectionPlayFill',
'BIconColumns',
- 'BIconColumnsGutters',
+ 'BIconColumnsGap',
'BIconCommand',
'BIconCompass',
'BIconCone',
'BIconConeStriped',
'BIconController',
'BIconCreditCard',
+ 'BIconCrop',
'BIconCursor',
'BIconCursorFill',
+ 'BIconCursorText',
'BIconDash',
+ 'BIconDashCircle',
+ 'BIconDashCircleFill',
+ 'BIconDashSquare',
+ 'BIconDashSquareFill',
'BIconDiamond',
+ 'BIconDiamondFill',
'BIconDiamondHalf',
'BIconDisplay',
'BIconDisplayFill',
- 'BIconDocument',
- 'BIconDocumentCode',
- 'BIconDocumentDiff',
- 'BIconDocumentRichtext',
- 'BIconDocumentSpreadsheet',
- 'BIconDocumentText',
- 'BIconDocuments',
- 'BIconDocumentsAlt',
'BIconDot',
'BIconDownload',
+ 'BIconDroplet',
+ 'BIconDropletFill',
+ 'BIconDropletHalf',
+ 'BIconEgg',
+ 'BIconEggFill',
'BIconEggFried',
'BIconEject',
'BIconEjectFill',
@@ -481,35 +778,103 @@ export const iconNames = [
'BIconEnvelopeFill',
'BIconEnvelopeOpen',
'BIconEnvelopeOpenFill',
+ 'BIconExclamation',
+ 'BIconExclamationCircle',
+ 'BIconExclamationCircleFill',
+ 'BIconExclamationDiamond',
+ 'BIconExclamationDiamondFill',
+ 'BIconExclamationOctagon',
+ 'BIconExclamationOctagonFill',
+ 'BIconExclamationSquare',
+ 'BIconExclamationSquareFill',
+ 'BIconExclamationTriangle',
+ 'BIconExclamationTriangleFill',
+ 'BIconExclude',
'BIconEye',
'BIconEyeFill',
'BIconEyeSlash',
'BIconEyeSlashFill',
+ 'BIconFile',
+ 'BIconFileArrowDown',
+ 'BIconFileArrowUp',
+ 'BIconFileBreak',
+ 'BIconFileCheck',
+ 'BIconFileCode',
+ 'BIconFileDiff',
+ 'BIconFileEarmark',
+ 'BIconFileEarmarkArrowDown',
+ 'BIconFileEarmarkArrowUp',
+ 'BIconFileEarmarkBreak',
+ 'BIconFileEarmarkCheck',
+ 'BIconFileEarmarkCode',
+ 'BIconFileEarmarkDiff',
+ 'BIconFileEarmarkMinus',
+ 'BIconFileEarmarkPlus',
+ 'BIconFileEarmarkRuled',
+ 'BIconFileEarmarkSpreadsheet',
+ 'BIconFileEarmarkText',
+ 'BIconFileEarmarkZip',
+ 'BIconFileMinus',
+ 'BIconFilePlus',
+ 'BIconFilePost',
+ 'BIconFileRichtext',
+ 'BIconFileRuled',
+ 'BIconFileSpreadsheet',
+ 'BIconFileText',
+ 'BIconFileZip',
+ 'BIconFiles',
+ 'BIconFilesAlt',
+ 'BIconFilm',
'BIconFilter',
+ 'BIconFilterLeft',
+ 'BIconFilterRight',
'BIconFlag',
'BIconFlagFill',
'BIconFolder',
+ 'BIconFolderCheck',
'BIconFolderFill',
+ 'BIconFolderMinus',
+ 'BIconFolderPlus',
'BIconFolderSymlink',
'BIconFolderSymlinkFill',
'BIconFonts',
'BIconForward',
'BIconForwardFill',
+ 'BIconFullscreen',
+ 'BIconFullscreenExit',
+ 'BIconFunnel',
+ 'BIconFunnelFill',
'BIconGear',
'BIconGearFill',
'BIconGearWide',
'BIconGearWideConnected',
+ 'BIconGem',
'BIconGeo',
+ 'BIconGeoAlt',
+ 'BIconGift',
+ 'BIconGiftFill',
'BIconGraphDown',
'BIconGraphUp',
'BIconGrid',
+ 'BIconGrid1x2',
+ 'BIconGrid1x2Fill',
+ 'BIconGrid3x2',
+ 'BIconGrid3x2Gap',
+ 'BIconGrid3x2GapFill',
+ 'BIconGrid3x3',
+ 'BIconGrid3x3Gap',
+ 'BIconGrid3x3GapFill',
'BIconGridFill',
'BIconHammer',
'BIconHash',
'BIconHeart',
'BIconHeartFill',
+ 'BIconHeartHalf',
'BIconHouse',
+ 'BIconHouseDoor',
+ 'BIconHouseDoorFill',
'BIconHouseFill',
+ 'BIconHr',
'BIconImage',
'BIconImageAlt',
'BIconImageFill',
@@ -519,20 +884,39 @@ export const iconNames = [
'BIconInboxes',
'BIconInboxesFill',
'BIconInfo',
- 'BIconInfoFill',
+ 'BIconInfoCircle',
+ 'BIconInfoCircleFill',
'BIconInfoSquare',
'BIconInfoSquareFill',
+ 'BIconIntersect',
'BIconJustify',
'BIconJustifyLeft',
'BIconJustifyRight',
'BIconKanban',
'BIconKanbanFill',
'BIconLaptop',
+ 'BIconLayers',
+ 'BIconLayersFill',
+ 'BIconLayersHalf',
'BIconLayoutSidebar',
+ 'BIconLayoutSidebarInset',
+ 'BIconLayoutSidebarInsetReverse',
'BIconLayoutSidebarReverse',
'BIconLayoutSplit',
+ 'BIconLayoutTextSidebar',
+ 'BIconLayoutTextSidebarReverse',
+ 'BIconLayoutTextWindow',
+ 'BIconLayoutTextWindowReverse',
+ 'BIconLayoutThreeColumns',
+ 'BIconLayoutWtf',
+ 'BIconLifePreserver',
+ 'BIconLightning',
+ 'BIconLightningFill',
+ 'BIconLink',
+ 'BIconLink45deg',
'BIconList',
'BIconListCheck',
+ 'BIconListNested',
'BIconListOl',
'BIconListTask',
'BIconListUl',
@@ -540,30 +924,68 @@ export const iconNames = [
'BIconLockFill',
'BIconMap',
'BIconMic',
+ 'BIconMicFill',
+ 'BIconMicMute',
+ 'BIconMicMuteFill',
'BIconMoon',
+ 'BIconMusicNote',
+ 'BIconMusicNoteBeamed',
+ 'BIconMusicNoteList',
'BIconMusicPlayer',
'BIconMusicPlayerFill',
+ 'BIconNewspaper',
+ 'BIconOctagon',
+ 'BIconOctagonFill',
+ 'BIconOctagonHalf',
'BIconOption',
'BIconOutlet',
+ 'BIconPaperclip',
'BIconPause',
'BIconPauseFill',
'BIconPen',
'BIconPencil',
+ 'BIconPencilSquare',
+ 'BIconPentagon',
+ 'BIconPentagonFill',
+ 'BIconPentagonHalf',
'BIconPeople',
+ 'BIconPeopleCircle',
'BIconPeopleFill',
'BIconPerson',
+ 'BIconPersonBoundingBox',
+ 'BIconPersonCheck',
+ 'BIconPersonCheckFill',
+ 'BIconPersonDash',
+ 'BIconPersonDashFill',
'BIconPersonFill',
+ 'BIconPersonLinesFill',
+ 'BIconPersonPlus',
+ 'BIconPersonPlusFill',
+ 'BIconPersonSquare',
'BIconPhone',
'BIconPhoneLandscape',
'BIconPieChart',
'BIconPieChartFill',
+ 'BIconPip',
+ 'BIconPipFill',
'BIconPlay',
'BIconPlayFill',
'BIconPlug',
'BIconPlus',
+ 'BIconPlusCircle',
+ 'BIconPlusCircleFill',
+ 'BIconPlusSquare',
+ 'BIconPlusSquareFill',
'BIconPower',
+ 'BIconPuzzle',
+ 'BIconPuzzleFill',
'BIconQuestion',
- 'BIconQuestionFill',
+ 'BIconQuestionCircle',
+ 'BIconQuestionCircleFill',
+ 'BIconQuestionDiamond',
+ 'BIconQuestionDiamondFill',
+ 'BIconQuestionOctagon',
+ 'BIconQuestionOctagonFill',
'BIconQuestionSquare',
'BIconQuestionSquareFill',
'BIconReply',
@@ -572,6 +994,7 @@ export const iconNames = [
'BIconReplyFill',
'BIconScrewdriver',
'BIconSearch',
+ 'BIconServer',
'BIconShield',
'BIconShieldFill',
'BIconShieldLock',
@@ -579,6 +1002,7 @@ export const iconNames = [
'BIconShieldShaded',
'BIconShift',
'BIconShiftFill',
+ 'BIconShuffle',
'BIconSkipBackward',
'BIconSkipBackwardFill',
'BIconSkipEnd',
@@ -587,6 +1011,13 @@ export const iconNames = [
'BIconSkipForwardFill',
'BIconSkipStart',
'BIconSkipStartFill',
+ 'BIconSlash',
+ 'BIconSlashCircle',
+ 'BIconSlashCircleFill',
+ 'BIconSlashSquare',
+ 'BIconSlashSquareFill',
+ 'BIconSliders',
+ 'BIconSoundwave',
'BIconSpeaker',
'BIconSquare',
'BIconSquareFill',
@@ -598,6 +1029,7 @@ export const iconNames = [
'BIconStopFill',
'BIconStopwatch',
'BIconStopwatchFill',
+ 'BIconSubtract',
'BIconSun',
'BIconTable',
'BIconTablet',
@@ -611,6 +1043,8 @@ export const iconNames = [
'BIconTextIndentRight',
'BIconTextLeft',
'BIconTextRight',
+ 'BIconTextarea',
+ 'BIconTextareaT',
'BIconThreeDots',
'BIconThreeDotsVertical',
'BIconToggleOff',
@@ -618,6 +1052,8 @@ export const iconNames = [
'BIconToggles',
'BIconTools',
'BIconTrash',
+ 'BIconTrash2',
+ 'BIconTrash2Fill',
'BIconTrashFill',
'BIconTriangle',
'BIconTriangleFill',
@@ -633,15 +1069,19 @@ export const iconNames = [
'BIconTypeItalic',
'BIconTypeStrikethrough',
'BIconTypeUnderline',
+ 'BIconUnion',
'BIconUnlock',
'BIconUnlockFill',
'BIconUpload',
+ 'BIconViewList',
+ 'BIconViewStacked',
'BIconVolumeDown',
'BIconVolumeDownFill',
'BIconVolumeMute',
'BIconVolumeMuteFill',
'BIconVolumeUp',
'BIconVolumeUpFill',
+ 'BIconVr',
'BIconWallet',
'BIconWatch',
'BIconWifi',
@@ -650,6 +1090,8 @@ export const iconNames = [
'BIconX',
'BIconXCircle',
'BIconXCircleFill',
+ 'BIconXDiamond',
+ 'BIconXDiamondFill',
'BIconXOctagon',
'BIconXOctagonFill',
'BIconXSquare',
@@ -668,17 +1110,16 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
// Bootstrap icon components
BIconAlarm,
BIconAlarmFill,
- BIconAlertCircle,
- BIconAlertCircleFill,
- BIconAlertOctagon,
- BIconAlertOctagonFill,
- BIconAlertSquare,
- BIconAlertSquareFill,
- BIconAlertTriangle,
- BIconAlertTriangleFill,
+ BIconAlt,
+ BIconApp,
+ BIconAppIndicator,
BIconArchive,
BIconArchiveFill,
- BIconArrowBarBottom,
+ BIconArrow90degDown,
+ BIconArrow90degLeft,
+ BIconArrow90degRight,
+ BIconArrow90degUp,
+ BIconArrowBarDown,
BIconArrowBarLeft,
BIconArrowBarRight,
BIconArrowBarUp,
@@ -692,6 +1133,8 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconArrowLeftRight,
BIconArrowLeftShort,
BIconArrowRepeat,
+ BIconArrowReturnLeft,
+ BIconArrowReturnRight,
BIconArrowRight,
BIconArrowRightShort,
BIconArrowUp,
@@ -704,41 +1147,69 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconArrowsCollapse,
BIconArrowsExpand,
BIconArrowsFullscreen,
+ BIconArrowsMove,
+ BIconAspectRatio,
+ BIconAspectRatioFill,
BIconAt,
BIconAward,
+ BIconAwardFill,
BIconBackspace,
BIconBackspaceFill,
BIconBackspaceReverse,
BIconBackspaceReverseFill,
+ BIconBag,
+ BIconBagFill,
BIconBarChart,
BIconBarChartFill,
BIconBattery,
BIconBatteryCharging,
BIconBatteryFull,
+ BIconBatteryHalf,
BIconBell,
BIconBellFill,
BIconBlockquoteLeft,
BIconBlockquoteRight,
BIconBook,
- BIconBookHalfFill,
+ BIconBookHalf,
BIconBookmark,
+ BIconBookmarkCheck,
+ BIconBookmarkDash,
BIconBookmarkFill,
+ BIconBookmarkPlus,
+ BIconBookmarks,
+ BIconBookmarksFill,
BIconBootstrap,
BIconBootstrapFill,
BIconBootstrapReboot,
- BIconBoxArrowBottomLeft,
- BIconBoxArrowBottomRight,
+ BIconBoundingBox,
+ BIconBoundingBoxCircles,
BIconBoxArrowDown,
+ BIconBoxArrowDownLeft,
+ BIconBoxArrowDownRight,
+ BIconBoxArrowInDown,
+ BIconBoxArrowInDownLeft,
+ BIconBoxArrowInDownRight,
+ BIconBoxArrowInLeft,
+ BIconBoxArrowInRight,
+ BIconBoxArrowInUp,
+ BIconBoxArrowInUpLeft,
+ BIconBoxArrowInUpRight,
BIconBoxArrowLeft,
BIconBoxArrowRight,
BIconBoxArrowUp,
BIconBoxArrowUpLeft,
BIconBoxArrowUpRight,
BIconBraces,
- BIconBrightnessFillHigh,
- BIconBrightnessFillLow,
+ BIconBriefcase,
+ BIconBriefcaseFill,
+ BIconBrightnessAltHigh,
+ BIconBrightnessAltHighFill,
+ BIconBrightnessAltLow,
+ BIconBrightnessAltLowFill,
BIconBrightnessHigh,
+ BIconBrightnessHighFill,
BIconBrightnessLow,
+ BIconBrightnessLowFill,
BIconBrush,
BIconBucket,
BIconBucketFill,
@@ -751,56 +1222,103 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconCameraVideoFill,
BIconCapslock,
BIconCapslockFill,
+ BIconCardChecklist,
+ BIconCardHeading,
+ BIconCardImage,
+ BIconCardList,
+ BIconCardText,
+ BIconCaretDown,
+ BIconCaretDownFill,
+ BIconCaretLeft,
+ BIconCaretLeftFill,
+ BIconCaretRight,
+ BIconCaretRightFill,
+ BIconCaretUp,
+ BIconCaretUpFill,
BIconChat,
+ BIconChatDots,
+ BIconChatDotsFill,
BIconChatFill,
+ BIconChatQuote,
+ BIconChatQuoteFill,
+ BIconChatSquare,
+ BIconChatSquareDots,
+ BIconChatSquareDotsFill,
+ BIconChatSquareFill,
+ BIconChatSquareQuote,
+ BIconChatSquareQuoteFill,
BIconCheck,
+ BIconCheckAll,
BIconCheckBox,
BIconCheckCircle,
+ BIconChevronBarContract,
+ BIconChevronBarDown,
+ BIconChevronBarExpand,
+ BIconChevronBarLeft,
+ BIconChevronBarRight,
+ BIconChevronBarUp,
BIconChevronCompactDown,
BIconChevronCompactLeft,
BIconChevronCompactRight,
BIconChevronCompactUp,
+ BIconChevronContract,
+ BIconChevronDoubleDown,
+ BIconChevronDoubleLeft,
+ BIconChevronDoubleRight,
+ BIconChevronDoubleUp,
BIconChevronDown,
+ BIconChevronExpand,
BIconChevronLeft,
BIconChevronRight,
BIconChevronUp,
BIconCircle,
BIconCircleFill,
BIconCircleHalf,
- BIconCircleSlash,
+ BIconCircleSquare,
+ BIconClipboard,
+ BIconClipboardData,
BIconClock,
BIconClockFill,
+ BIconClockHistory,
BIconCloud,
BIconCloudDownload,
BIconCloudFill,
BIconCloudUpload,
BIconCode,
BIconCodeSlash,
+ BIconCollection,
+ BIconCollectionFill,
+ BIconCollectionPlay,
+ BIconCollectionPlayFill,
BIconColumns,
- BIconColumnsGutters,
+ BIconColumnsGap,
BIconCommand,
BIconCompass,
BIconCone,
BIconConeStriped,
BIconController,
BIconCreditCard,
+ BIconCrop,
BIconCursor,
BIconCursorFill,
+ BIconCursorText,
BIconDash,
+ BIconDashCircle,
+ BIconDashCircleFill,
+ BIconDashSquare,
+ BIconDashSquareFill,
BIconDiamond,
+ BIconDiamondFill,
BIconDiamondHalf,
BIconDisplay,
BIconDisplayFill,
- BIconDocument,
- BIconDocumentCode,
- BIconDocumentDiff,
- BIconDocumentRichtext,
- BIconDocumentSpreadsheet,
- BIconDocumentText,
- BIconDocuments,
- BIconDocumentsAlt,
BIconDot,
BIconDownload,
+ BIconDroplet,
+ BIconDropletFill,
+ BIconDropletHalf,
+ BIconEgg,
+ BIconEggFill,
BIconEggFried,
BIconEject,
BIconEjectFill,
@@ -808,35 +1326,103 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconEnvelopeFill,
BIconEnvelopeOpen,
BIconEnvelopeOpenFill,
+ BIconExclamation,
+ BIconExclamationCircle,
+ BIconExclamationCircleFill,
+ BIconExclamationDiamond,
+ BIconExclamationDiamondFill,
+ BIconExclamationOctagon,
+ BIconExclamationOctagonFill,
+ BIconExclamationSquare,
+ BIconExclamationSquareFill,
+ BIconExclamationTriangle,
+ BIconExclamationTriangleFill,
+ BIconExclude,
BIconEye,
BIconEyeFill,
BIconEyeSlash,
BIconEyeSlashFill,
+ BIconFile,
+ BIconFileArrowDown,
+ BIconFileArrowUp,
+ BIconFileBreak,
+ BIconFileCheck,
+ BIconFileCode,
+ BIconFileDiff,
+ BIconFileEarmark,
+ BIconFileEarmarkArrowDown,
+ BIconFileEarmarkArrowUp,
+ BIconFileEarmarkBreak,
+ BIconFileEarmarkCheck,
+ BIconFileEarmarkCode,
+ BIconFileEarmarkDiff,
+ BIconFileEarmarkMinus,
+ BIconFileEarmarkPlus,
+ BIconFileEarmarkRuled,
+ BIconFileEarmarkSpreadsheet,
+ BIconFileEarmarkText,
+ BIconFileEarmarkZip,
+ BIconFileMinus,
+ BIconFilePlus,
+ BIconFilePost,
+ BIconFileRichtext,
+ BIconFileRuled,
+ BIconFileSpreadsheet,
+ BIconFileText,
+ BIconFileZip,
+ BIconFiles,
+ BIconFilesAlt,
+ BIconFilm,
BIconFilter,
+ BIconFilterLeft,
+ BIconFilterRight,
BIconFlag,
BIconFlagFill,
BIconFolder,
+ BIconFolderCheck,
BIconFolderFill,
+ BIconFolderMinus,
+ BIconFolderPlus,
BIconFolderSymlink,
BIconFolderSymlinkFill,
BIconFonts,
BIconForward,
BIconForwardFill,
+ BIconFullscreen,
+ BIconFullscreenExit,
+ BIconFunnel,
+ BIconFunnelFill,
BIconGear,
BIconGearFill,
BIconGearWide,
BIconGearWideConnected,
+ BIconGem,
BIconGeo,
+ BIconGeoAlt,
+ BIconGift,
+ BIconGiftFill,
BIconGraphDown,
BIconGraphUp,
BIconGrid,
+ BIconGrid1x2,
+ BIconGrid1x2Fill,
+ BIconGrid3x2,
+ BIconGrid3x2Gap,
+ BIconGrid3x2GapFill,
+ BIconGrid3x3,
+ BIconGrid3x3Gap,
+ BIconGrid3x3GapFill,
BIconGridFill,
BIconHammer,
BIconHash,
BIconHeart,
BIconHeartFill,
+ BIconHeartHalf,
BIconHouse,
+ BIconHouseDoor,
+ BIconHouseDoorFill,
BIconHouseFill,
+ BIconHr,
BIconImage,
BIconImageAlt,
BIconImageFill,
@@ -846,20 +1432,39 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconInboxes,
BIconInboxesFill,
BIconInfo,
- BIconInfoFill,
+ BIconInfoCircle,
+ BIconInfoCircleFill,
BIconInfoSquare,
BIconInfoSquareFill,
+ BIconIntersect,
BIconJustify,
BIconJustifyLeft,
BIconJustifyRight,
BIconKanban,
BIconKanbanFill,
BIconLaptop,
+ BIconLayers,
+ BIconLayersFill,
+ BIconLayersHalf,
BIconLayoutSidebar,
+ BIconLayoutSidebarInset,
+ BIconLayoutSidebarInsetReverse,
BIconLayoutSidebarReverse,
BIconLayoutSplit,
+ BIconLayoutTextSidebar,
+ BIconLayoutTextSidebarReverse,
+ BIconLayoutTextWindow,
+ BIconLayoutTextWindowReverse,
+ BIconLayoutThreeColumns,
+ BIconLayoutWtf,
+ BIconLifePreserver,
+ BIconLightning,
+ BIconLightningFill,
+ BIconLink,
+ BIconLink45deg,
BIconList,
BIconListCheck,
+ BIconListNested,
BIconListOl,
BIconListTask,
BIconListUl,
@@ -867,30 +1472,68 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconLockFill,
BIconMap,
BIconMic,
+ BIconMicFill,
+ BIconMicMute,
+ BIconMicMuteFill,
BIconMoon,
+ BIconMusicNote,
+ BIconMusicNoteBeamed,
+ BIconMusicNoteList,
BIconMusicPlayer,
BIconMusicPlayerFill,
+ BIconNewspaper,
+ BIconOctagon,
+ BIconOctagonFill,
+ BIconOctagonHalf,
BIconOption,
BIconOutlet,
+ BIconPaperclip,
BIconPause,
BIconPauseFill,
BIconPen,
BIconPencil,
+ BIconPencilSquare,
+ BIconPentagon,
+ BIconPentagonFill,
+ BIconPentagonHalf,
BIconPeople,
+ BIconPeopleCircle,
BIconPeopleFill,
BIconPerson,
+ BIconPersonBoundingBox,
+ BIconPersonCheck,
+ BIconPersonCheckFill,
+ BIconPersonDash,
+ BIconPersonDashFill,
BIconPersonFill,
+ BIconPersonLinesFill,
+ BIconPersonPlus,
+ BIconPersonPlusFill,
+ BIconPersonSquare,
BIconPhone,
BIconPhoneLandscape,
BIconPieChart,
BIconPieChartFill,
+ BIconPip,
+ BIconPipFill,
BIconPlay,
BIconPlayFill,
BIconPlug,
BIconPlus,
+ BIconPlusCircle,
+ BIconPlusCircleFill,
+ BIconPlusSquare,
+ BIconPlusSquareFill,
BIconPower,
+ BIconPuzzle,
+ BIconPuzzleFill,
BIconQuestion,
- BIconQuestionFill,
+ BIconQuestionCircle,
+ BIconQuestionCircleFill,
+ BIconQuestionDiamond,
+ BIconQuestionDiamondFill,
+ BIconQuestionOctagon,
+ BIconQuestionOctagonFill,
BIconQuestionSquare,
BIconQuestionSquareFill,
BIconReply,
@@ -899,6 +1542,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconReplyFill,
BIconScrewdriver,
BIconSearch,
+ BIconServer,
BIconShield,
BIconShieldFill,
BIconShieldLock,
@@ -906,6 +1550,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconShieldShaded,
BIconShift,
BIconShiftFill,
+ BIconShuffle,
BIconSkipBackward,
BIconSkipBackwardFill,
BIconSkipEnd,
@@ -914,6 +1559,13 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconSkipForwardFill,
BIconSkipStart,
BIconSkipStartFill,
+ BIconSlash,
+ BIconSlashCircle,
+ BIconSlashCircleFill,
+ BIconSlashSquare,
+ BIconSlashSquareFill,
+ BIconSliders,
+ BIconSoundwave,
BIconSpeaker,
BIconSquare,
BIconSquareFill,
@@ -925,6 +1577,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconStopFill,
BIconStopwatch,
BIconStopwatchFill,
+ BIconSubtract,
BIconSun,
BIconTable,
BIconTablet,
@@ -938,6 +1591,8 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconTextIndentRight,
BIconTextLeft,
BIconTextRight,
+ BIconTextarea,
+ BIconTextareaT,
BIconThreeDots,
BIconThreeDotsVertical,
BIconToggleOff,
@@ -945,6 +1600,8 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconToggles,
BIconTools,
BIconTrash,
+ BIconTrash2,
+ BIconTrash2Fill,
BIconTrashFill,
BIconTriangle,
BIconTriangleFill,
@@ -960,15 +1617,19 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconTypeItalic,
BIconTypeStrikethrough,
BIconTypeUnderline,
+ BIconUnion,
BIconUnlock,
BIconUnlockFill,
BIconUpload,
+ BIconViewList,
+ BIconViewStacked,
BIconVolumeDown,
BIconVolumeDownFill,
BIconVolumeMute,
BIconVolumeMuteFill,
BIconVolumeUp,
BIconVolumeUpFill,
+ BIconVr,
BIconWallet,
BIconWatch,
BIconWifi,
@@ -977,6 +1638,8 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconX,
BIconXCircle,
BIconXCircleFill,
+ BIconXDiamond,
+ BIconXDiamondFill,
BIconXOctagon,
BIconXOctagonFill,
BIconXSquare,
diff --git a/yarn.lock b/yarn.lock
index 37d5ecab29a..1e60c8130e9 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2521,10 +2521,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-alpha2:
- version "1.0.0-alpha2"
- resolved "https://registry.yarnpkg.com/bootstrap-icons/-/bootstrap-icons-1.0.0-alpha2.tgz#ed65dc5f25eb41448db1b46f53c34fceb7456976"
- integrity sha512-7Tsip8n6GX0zoMm3l5eHWFYynq9CX8QlnWEJ1O42GwtwKOcc4bNZTW1tdhGGS+Q6oSgpTvvi08fZkdyfrqPp2w==
+bootstrap-icons@^1.0.0-alpha3:
+ version "1.0.0-alpha3"
+ resolved "https://registry.yarnpkg.com/bootstrap-icons/-/bootstrap-icons-1.0.0-alpha3.tgz#413171e88b79315e712e6ab65601f64b1735d566"
+ integrity sha512-UO++43jb/qlWVsC31WkHOjFsTihJkSz0wngnUS+P1ImcCMTqDJqDHySld+hpkzxi+q6fL8iom7nfT3ApAxZ6cQ==
"bootstrap@>=4.4.1 <5.0.0":
version "4.4.1"