From 821e4cad6eea9497b3817e53a91bb5d3f8c9e0e4 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 03:05:54 -0300 Subject: [PATCH 01/26] chore(icons): prep for bootstrap icons alpha 3 --- src/icons/helpers/icon-base.js | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/icons/helpers/icon-base.js b/src/icons/helpers/icon-base.js index bf0e02a71d0..73c9937e848 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({ @@ -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: { From 64f508006f2371bf2b00453726065698592c21cc Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 03:10:32 -0300 Subject: [PATCH 02/26] Update icons.spec.js --- src/icons/icons.spec.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/icons/icons.spec.js b/src/icons/icons.spec.js index 2e5f28c9aaf..0cde5c0c879 100644 --- a/src/icons/icons.spec.js +++ b/src/icons/icons.spec.js @@ -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('') @@ -70,11 +70,12 @@ describe('icons', () => { 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('') From d08ae824f427a96d7a822e9743c83d9803dade38 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 03:11:34 -0300 Subject: [PATCH 03/26] Update iconstack.spec.js --- src/icons/iconstack.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/icons/iconstack.spec.js b/src/icons/iconstack.spec.js index 5e761d29375..c425ee24c90 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('') From fc942a7ee8fe80a840a5a82625c1c2d189fc84d9 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 03:45:44 -0300 Subject: [PATCH 04/26] Update README.md --- src/icons/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/icons/README.md b/src/icons/README.md index aa8c937ff0a..366d898aa14 100644 --- a/src/icons/README.md +++ b/src/icons/README.md @@ -9,7 +9,8 @@ BootstrapVue icon components are built from are opt-in, meaning that they explicitly need to be imported in order to be used. They are not installed by default. You do not need `bootstrap-icons` as a dependency. -Icon components were added in BootstrapVue release `v2.2.0`. +Icon components were added in BootstrapVue release `v2.2.0`. Bootstrap Icons `v1.0.0-alpha3` icons +were added in BootstrapVue release `v2.8.0`.

@@ -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.

From cd48945e352b2d2739184c2bf173a7db8127df72 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 03:47:51 -0300 Subject: [PATCH 05/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f6f46e3086e..d855864fc6b 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@

- BootstrapVue, with over 40 available plugins, more than 80 custom components, and over 300 icons, + BootstrapVue, with over 40 available plugins, more than 80 custom components, and over 500 icons, provides one of the most comprehensive implementations of the Bootstrap v4 component and grid system for Vue.js, complete with extensive and automated WAI-ARIA accessibility markup.

From ceaea7ee63327b1d86695d024cf63d9ea31905af Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 03:49:35 -0300 Subject: [PATCH 06/26] Update index.vue --- docs/pages/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/index.vue b/docs/pages/index.vue index e9e776c4e7c..2ced4b022b1 100644 --- a/docs/pages/index.vue +++ b/docs/pages/index.vue @@ -134,7 +134,7 @@

- 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 From e480acb061cea00ba5350d98544456a455d8f8de Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 03:53:21 -0300 Subject: [PATCH 07/26] Update _icons.scss --- src/icons/_icons.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/icons/_icons.scss b/src/icons/_icons.scss index c09afe5d618..dae405754e9 100644 --- a/src/icons/_icons.scss +++ b/src/icons/_icons.scss @@ -5,7 +5,10 @@ overflow: visible; // The following is required to compensate for alignment // issues with the Bootstrap Icons alpha implementation - // TODO: Is this "hack" still required? + // TODO: + // Is this "hack" still required? + // Perhaps change variable to `baseline`, or hardcode to + // `baseline` or similar (`text-bottom`, etc) vertical-align: $b-icon-vertical-offset; } From bdf497a9e640df908fb02272ecb6bb1912afa9b1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Mar 2020 15:09:29 -0300 Subject: [PATCH 08/26] feat: update devdependency bootstrap-icons to ^1.0.0-alpha3 (#4968) --- package.json | 4 +- yarn.lock | 172 ++++++++++++++++++++++++++++++++++----------------- 2 files changed, 117 insertions(+), 59 deletions(-) diff --git a/package.json b/package.json index 62d7b16da6d..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", @@ -132,7 +132,7 @@ "esm": "^3.2.25", "gh-pages": "^2.2.0", "highlight.js": "^9.18.1", - "html-loader": "^0.5.5", + "html-loader": "^1.0.0", "husky": "^4.2.3", "jest": "^25.1.0", "jest-environment-jsdom-fourteen": "^1.0.1", diff --git a/yarn.lock b/yarn.lock index 42a746ff57f..1e60c8130e9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2163,11 +2163,6 @@ assign-symbols@^1.0.0: resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= -ast-types@0.9.6: - version "0.9.6" - resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.6.tgz#102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9" - integrity sha1-ECyenpAF0+fjgpvwxPok7oYu6bk= - astral-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" @@ -2526,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" @@ -2895,6 +2890,14 @@ camel-case@3.0.x, camel-case@^3.0.0: no-case "^2.2.0" upper-case "^1.1.1" +camel-case@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.1.tgz#1fc41c854f00e2f7d0139dfeba1542d6896fe547" + integrity sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q== + dependencies: + pascal-case "^3.1.1" + tslib "^1.10.0" + camelcase-keys@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" @@ -3100,7 +3103,7 @@ clean-css-cli@^4.3.0: commander "2.x" glob "7.x" -clean-css@4.2.x, clean-css@^4.2.1: +clean-css@4.2.x, clean-css@^4.2.1, clean-css@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78" integrity sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA== @@ -3337,7 +3340,7 @@ commander@2.x, commander@^2.18.0, commander@^2.19.0, commander@^2.20.0, commande resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== -commander@^4.0.1: +commander@^4.0.1, commander@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== @@ -4330,7 +4333,7 @@ dom-event-types@^1.0.0: resolved "https://registry.yarnpkg.com/dom-event-types/-/dom-event-types-1.0.0.tgz#5830a0a29e1bf837fe50a70cd80a597232813cae" integrity sha512-2G2Vwi2zXTHBGqXHsJ4+ak/iP0N8Ar+G8a7LiD2oup5o4sQWytwqqrZu/O6hIMV0KMID2PL69OhpshLO0n7UJQ== -dom-serializer@0: +dom-serializer@0, dom-serializer@^0.2.1: version "0.2.2" resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== @@ -4367,6 +4370,13 @@ domhandler@^2.3.0: dependencies: domelementtype "1" +domhandler@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-3.0.0.tgz#51cd13efca31da95bbb0c5bee3a48300e333b3e9" + integrity sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw== + dependencies: + domelementtype "^2.0.1" + domutils@1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" @@ -4383,6 +4393,23 @@ domutils@^1.5.1, domutils@^1.7.0: dom-serializer "0" domelementtype "1" +domutils@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.0.0.tgz#15b8278e37bfa8468d157478c58c367718133c08" + integrity sha512-n5SelJ1axbO636c2yUtOGia/IcJtVtlhQbFiVDBZHKV5ReJO1ViX7sFEemtuyoAnBxk5meNSYgA8V4s0271efg== + dependencies: + dom-serializer "^0.2.1" + domelementtype "^2.0.1" + domhandler "^3.0.0" + +dot-case@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.3.tgz#21d3b52efaaba2ea5fda875bb1aa8124521cf4aa" + integrity sha512-7hwEmg6RiSQfm/GwPL4AAWXKy3YNNZA3oFv2Pdiey0mwkRCPZ9x6SZbkLcn8Ma5PYeVokzoD4Twv2n7LKp5WeA== + dependencies: + no-case "^3.0.3" + tslib "^1.10.0" + dot-prop@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" @@ -4628,14 +4655,6 @@ es6-promisify@^5.0.0: dependencies: es6-promise "^4.0.3" -es6-templates@^0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/es6-templates/-/es6-templates-0.2.3.tgz#5cb9ac9fb1ded6eb1239342b81d792bbb4078ee4" - integrity sha1-XLmsn7He1usSOTQrgdeSu7QHjuQ= - dependencies: - recast "~0.11.12" - through "~2.3.6" - escape-html@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" @@ -4868,11 +4887,6 @@ esprima@^4.0.0, esprima@^4.0.1: resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== -esprima@~3.1.0: - version "3.1.3" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" - integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM= - esquery@^1.0.1: version "1.1.0" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.1.0.tgz#c5c0b66f383e7656404f86b31334d72524eddb48" @@ -5148,11 +5162,6 @@ fast-levenshtein@~2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= -fastparse@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9" - integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ== - fastq@^1.6.0: version "1.6.1" resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.6.1.tgz#4570c74f2ded173e71cf0beb08ac70bb85826791" @@ -6072,18 +6081,31 @@ html-escaper@^2.0.0: resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.0.tgz#71e87f931de3fe09e56661ab9a29aadec707b491" integrity sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig== -html-loader@^0.5.5: - version "0.5.5" - resolved "https://registry.yarnpkg.com/html-loader/-/html-loader-0.5.5.tgz#6356dbeb0c49756d8ebd5ca327f16ff06ab5faea" - integrity sha512-7hIW7YinOYUpo//kSYcPB6dCKoceKLmOwjEMmhIobHuWGDVl0Nwe4l68mdG/Ru0wcUxQjVMEoZpkalZ/SE7zog== - dependencies: - es6-templates "^0.2.3" - fastparse "^1.1.1" - html-minifier "^3.5.8" - loader-utils "^1.1.0" - object-assign "^4.1.1" +html-loader@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/html-loader/-/html-loader-1.0.0.tgz#40000ff27bfb4fbf087d37f8438cae0b1d8b53b1" + integrity sha512-acPyjP9Mo05jEbe/oejXu5gFwtKWdFewPoaVa47VCnHmRbR43jtdx/kPhPEbCBm2qWtIn+a8uTJAW4Ocnn4olw== + dependencies: + html-minifier-terser "^5.0.4" + htmlparser2 "^4.1.0" + loader-utils "^2.0.0" + parse-srcset "^1.0.2" + schema-utils "^2.6.5" + +html-minifier-terser@^5.0.4: + version "5.0.4" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.0.4.tgz#e8cc02748acb983bd7912ea9660bd31c0702ec32" + integrity sha512-fHwmKQ+GzhlqdxEtwrqLT7MSuheiA+rif5/dZgbz3GjoMXJzcRzy1L9NXoiiyxrnap+q5guSiv8Tz5lrh9g42g== + dependencies: + camel-case "^4.1.1" + clean-css "^4.2.3" + commander "^4.1.1" + he "^1.2.0" + param-case "^3.0.3" + relateurl "^0.2.7" + terser "^4.6.3" -html-minifier@^3.2.3, html-minifier@^3.5.8: +html-minifier@^3.2.3: version "3.5.21" resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.21.tgz#d0040e054730e354db008463593194015212d20c" integrity sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA== @@ -6139,6 +6161,16 @@ htmlparser2@^3.3.0: inherits "^2.0.1" readable-stream "^3.1.1" +htmlparser2@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-4.1.0.tgz#9a4ef161f2e4625ebf7dfbe6c0a2f52d18a59e78" + integrity sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q== + dependencies: + domelementtype "^2.0.1" + domhandler "^3.0.0" + domutils "^2.0.0" + entities "^2.0.0" + http-cache-semantics@^3.8.0: version "3.8.1" resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2" @@ -7968,6 +8000,13 @@ lower-case@^1.1.1: resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw= +lower-case@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.1.tgz#39eeb36e396115cc05e29422eaea9e692c9408c7" + integrity sha512-LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ== + dependencies: + tslib "^1.10.0" + lowercase-keys@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" @@ -8495,6 +8534,14 @@ no-case@^2.2.0: dependencies: lower-case "^1.1.1" +no-case@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.3.tgz#c21b434c1ffe48b39087e86cfb4d2582e9df18f8" + integrity sha512-ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw== + dependencies: + lower-case "^2.0.1" + tslib "^1.10.0" + node-cache@^4.1.1: version "4.2.1" resolved "https://registry.yarnpkg.com/node-cache/-/node-cache-4.2.1.tgz#efd8474dee4edec4138cdded580f5516500f7334" @@ -9101,6 +9148,14 @@ param-case@2.1.x, param-case@^2.1.1: dependencies: no-case "^2.2.0" +param-case@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.3.tgz#4be41f8399eff621c56eebb829a5e451d9801238" + integrity sha512-VWBVyimc1+QrzappRs7waeN2YmoZFCGXWASRYX1/rGHtXqEcrGEIDm+jqIwFa2fRXNgQEwrxaYuIrX0WcAguTA== + dependencies: + dot-case "^3.0.3" + tslib "^1.10.0" + parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -9184,6 +9239,11 @@ parse-passwd@^1.0.0: resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= +parse-srcset@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/parse-srcset/-/parse-srcset-1.0.2.tgz#f2bd221f6cc970a938d88556abc589caaaa2bde1" + integrity sha1-8r0iH2zJcKk42IVWq8WJyqqiveE= + parse5@5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2" @@ -9194,6 +9254,14 @@ parseurl@~1.3.3: resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== +pascal-case@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.1.tgz#5ac1975133ed619281e88920973d2cd1f279de5f" + integrity sha512-XIeHKqIrsquVTQL2crjq3NfJUxmdLasn3TYOU0VBM+UX2a6ztAWBlJQBePLGY7VHW8+2dRadeIPK5+KImwTxQA== + dependencies: + no-case "^3.0.3" + tslib "^1.10.0" + pascalcase@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" @@ -10130,7 +10198,7 @@ pretty-time@^1.1.0: resolved "https://registry.yarnpkg.com/pretty-time/-/pretty-time-1.1.0.tgz#ffb7429afabb8535c346a34e41873adf3d74dd0e" integrity sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA== -private@^0.1.8, private@~0.1.5: +private@^0.1.8: version "0.1.8" resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== @@ -10469,16 +10537,6 @@ realpath-native@^1.1.0: dependencies: util.promisify "^1.0.0" -recast@~0.11.12: - version "0.11.23" - resolved "https://registry.yarnpkg.com/recast/-/recast-0.11.23.tgz#451fd3004ab1e4df9b4e4b66376b2a21912462d3" - integrity sha1-RR/TAEqx5N+bTktmN2sqIZEkYtM= - dependencies: - ast-types "0.9.6" - esprima "~3.1.0" - private "~0.1.5" - source-map "~0.5.0" - redent@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" @@ -11005,7 +11063,7 @@ schema-utils@^1.0.0: ajv-errors "^1.0.0" ajv-keywords "^3.1.0" -schema-utils@^2.0.0, schema-utils@^2.5.0, schema-utils@^2.6.0, schema-utils@^2.6.1, schema-utils@^2.6.4: +schema-utils@^2.0.0, schema-utils@^2.5.0, schema-utils@^2.6.0, schema-utils@^2.6.1, schema-utils@^2.6.4, schema-utils@^2.6.5: version "2.6.5" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.5.tgz#c758f0a7e624263073d396e29cd40aa101152d8a" integrity sha512-5KXuwKziQrTVHh8j/Uxz+QUbxkaLW9X/86NBlx/gnKgtsZA2GIVMUn17qWhRFwF8jdYb3Dig5hRO/W5mZqy6SQ== @@ -11347,7 +11405,7 @@ source-map@^0.4.2: dependencies: amdefine ">=0.0.4" -source-map@^0.5.0, source-map@^0.5.6, source-map@~0.5.0: +source-map@^0.5.0, source-map@^0.5.6: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= @@ -11975,7 +12033,7 @@ terser@^4.1.2, terser@^4.4.3: source-map "~0.6.1" source-map-support "~0.5.12" -terser@^4.6.7: +terser@^4.6.3, terser@^4.6.7: version "4.6.7" resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.7.tgz#478d7f9394ec1907f0e488c5f6a6a9a2bad55e72" integrity sha512-fmr7M1f7DBly5cX2+rFDvmGBAaaZyPrHYK4mMdHEDAdNTqXSZgSOfqsfGq2HqPGT/1V0foZZuCZFx8CHKgAk3g== @@ -12047,7 +12105,7 @@ through2@^3.0.0: dependencies: readable-stream "2 || 3" -through@2, "through@>=2.2.7 <3", through@^2.3.6, through@~2.3.6: +through@2, "through@>=2.2.7 <3", through@^2.3.6: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= @@ -12231,7 +12289,7 @@ tsconfig@^7.0.0: strip-bom "^3.0.0" strip-json-comments "^2.0.0" -tslib@^1.8.1, tslib@^1.9.0: +tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0: version "1.11.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35" integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA== From 45a328ce43e5d7dcd8c27f68c255626d0d448115 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 15:30:12 -0300 Subject: [PATCH 09/26] Add files via upload --- src/icons/icons.d.ts | 514 +- src/icons/icons.js | 1877 +++++-- src/icons/package.json | 11858 ++++++++++++++++++++++++++++++++++++--- src/icons/plugin.js | 823 ++- 4 files changed, 13945 insertions(+), 1127 deletions(-) diff --git a/src/icons/icons.d.ts b/src/icons/icons.d.ts index 2caaf358c06..e35333388d6 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:25:44.286Z // // 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..4273e186770 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:25:44.286Z // // 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 @@ -23,1577 +23,2682 @@ export const BIconBlank = /*#__PURE__*/ makeIcon('Blank', '') export const BIconAlarm = /*#__PURE__*/ makeIcon( 'Alarm', - '' + '' ) export const BIconAlarmFill = /*#__PURE__*/ makeIcon( 'AlarmFill', - '' + '' ) -export const BIconAlertCircle = /*#__PURE__*/ makeIcon( - 'AlertCircle', - '' +export const BIconAlt = /*#__PURE__*/ makeIcon( + 'Alt', + '' ) -export const BIconAlertCircleFill = /*#__PURE__*/ makeIcon( - 'AlertCircleFill', - '' +export const BIconApp = /*#__PURE__*/ makeIcon( + 'App', + '' ) -export const BIconAlertOctagon = /*#__PURE__*/ makeIcon( - 'AlertOctagon', - '' +export const BIconAppIndicator = /*#__PURE__*/ makeIcon( + 'AppIndicator', + '' ) -export const BIconAlertOctagonFill = /*#__PURE__*/ makeIcon( - 'AlertOctagonFill', - '' +export const BIconArchive = /*#__PURE__*/ makeIcon( + 'Archive', + '' ) -export const BIconAlertSquare = /*#__PURE__*/ makeIcon( - 'AlertSquare', - '' +export const BIconArchiveFill = /*#__PURE__*/ makeIcon( + 'ArchiveFill', + '' ) -export const BIconAlertSquareFill = /*#__PURE__*/ makeIcon( - 'AlertSquareFill', - '' +export const BIconArrow90degDown = /*#__PURE__*/ makeIcon( + 'Arrow90degDown', + '' ) -export const BIconAlertTriangle = /*#__PURE__*/ makeIcon( - 'AlertTriangle', - '' +export const BIconArrow90degLeft = /*#__PURE__*/ makeIcon( + 'Arrow90degLeft', + '' ) -export const BIconAlertTriangleFill = /*#__PURE__*/ makeIcon( - 'AlertTriangleFill', - '' +export const BIconArrow90degRight = /*#__PURE__*/ makeIcon( + 'Arrow90degRight', + '' ) -export const BIconArchive = /*#__PURE__*/ makeIcon( - 'Archive', - '' +export const BIconArrow90degUp = /*#__PURE__*/ makeIcon( + 'Arrow90degUp', + '' ) -export const BIconArchiveFill = /*#__PURE__*/ makeIcon( - 'ArchiveFill', - '' -) - -export const BIconArrowBarBottom = /*#__PURE__*/ makeIcon( - 'ArrowBarBottom', - '' +export const BIconArrowBarDown = /*#__PURE__*/ makeIcon( + 'ArrowBarDown', + '' ) export const BIconArrowBarLeft = /*#__PURE__*/ makeIcon( 'ArrowBarLeft', - '' + '' ) export const BIconArrowBarRight = /*#__PURE__*/ makeIcon( 'ArrowBarRight', - '' + '' ) export const BIconArrowBarUp = /*#__PURE__*/ makeIcon( 'ArrowBarUp', - '' + '' ) export const BIconArrowClockwise = /*#__PURE__*/ makeIcon( 'ArrowClockwise', - '' + '' ) export const BIconArrowCounterclockwise = /*#__PURE__*/ makeIcon( 'ArrowCounterclockwise', - '' + '' ) export const BIconArrowDown = /*#__PURE__*/ makeIcon( 'ArrowDown', - '' + '' ) export const BIconArrowDownLeft = /*#__PURE__*/ makeIcon( 'ArrowDownLeft', - '' + '' ) export const BIconArrowDownRight = /*#__PURE__*/ makeIcon( 'ArrowDownRight', - '' + '' ) export const BIconArrowDownShort = /*#__PURE__*/ makeIcon( 'ArrowDownShort', - '' + '' ) export const BIconArrowLeft = /*#__PURE__*/ makeIcon( 'ArrowLeft', - '' + '' ) export const BIconArrowLeftRight = /*#__PURE__*/ makeIcon( 'ArrowLeftRight', - '' + '' ) export const BIconArrowLeftShort = /*#__PURE__*/ makeIcon( 'ArrowLeftShort', - '' + '' ) export const BIconArrowRepeat = /*#__PURE__*/ makeIcon( 'ArrowRepeat', - '' + '' +) + +export const BIconArrowReturnLeft = /*#__PURE__*/ makeIcon( + 'ArrowReturnLeft', + '' +) + +export const BIconArrowReturnRight = /*#__PURE__*/ makeIcon( + 'ArrowReturnRight', + '' ) export const BIconArrowRight = /*#__PURE__*/ makeIcon( 'ArrowRight', - '' + '' ) export const BIconArrowRightShort = /*#__PURE__*/ makeIcon( 'ArrowRightShort', - '' + '' ) export const BIconArrowUp = /*#__PURE__*/ makeIcon( 'ArrowUp', - '' + '' ) export const BIconArrowUpDown = /*#__PURE__*/ makeIcon( 'ArrowUpDown', - '' + '' ) export const BIconArrowUpLeft = /*#__PURE__*/ makeIcon( 'ArrowUpLeft', - '' + '' ) export const BIconArrowUpRight = /*#__PURE__*/ makeIcon( 'ArrowUpRight', - '' + '' ) export const BIconArrowUpShort = /*#__PURE__*/ makeIcon( 'ArrowUpShort', - '' + '' ) export const BIconArrowsAngleContract = /*#__PURE__*/ makeIcon( 'ArrowsAngleContract', - '' + '' ) export const BIconArrowsAngleExpand = /*#__PURE__*/ makeIcon( 'ArrowsAngleExpand', - '' + '' ) export const BIconArrowsCollapse = /*#__PURE__*/ makeIcon( 'ArrowsCollapse', - '' + '' ) export const BIconArrowsExpand = /*#__PURE__*/ makeIcon( 'ArrowsExpand', - '' + '' ) export const BIconArrowsFullscreen = /*#__PURE__*/ makeIcon( 'ArrowsFullscreen', - '' + '' +) + +export const BIconArrowsMove = /*#__PURE__*/ makeIcon( + 'ArrowsMove', + '' +) + +export const BIconAspectRatio = /*#__PURE__*/ makeIcon( + 'AspectRatio', + '' +) + +export const BIconAspectRatioFill = /*#__PURE__*/ makeIcon( + 'AspectRatioFill', + '' ) export const BIconAt = /*#__PURE__*/ makeIcon( 'At', - '' + '' ) export const BIconAward = /*#__PURE__*/ makeIcon( 'Award', - '' + '' +) + +export const BIconAwardFill = /*#__PURE__*/ makeIcon( + 'AwardFill', + '' ) export const BIconBackspace = /*#__PURE__*/ makeIcon( 'Backspace', - '' + '' ) export const BIconBackspaceFill = /*#__PURE__*/ makeIcon( 'BackspaceFill', - '' + '' ) export const BIconBackspaceReverse = /*#__PURE__*/ makeIcon( 'BackspaceReverse', - '' + '' ) export const BIconBackspaceReverseFill = /*#__PURE__*/ makeIcon( 'BackspaceReverseFill', - '' + '' +) + +export const BIconBag = /*#__PURE__*/ makeIcon( + 'Bag', + '' +) + +export const BIconBagFill = /*#__PURE__*/ makeIcon( + 'BagFill', + '' ) export const BIconBarChart = /*#__PURE__*/ makeIcon( 'BarChart', - '' + '' ) export const BIconBarChartFill = /*#__PURE__*/ makeIcon( 'BarChartFill', - '' + '' ) export const BIconBattery = /*#__PURE__*/ makeIcon( 'Battery', - '' + '' ) export const BIconBatteryCharging = /*#__PURE__*/ makeIcon( 'BatteryCharging', - '' + '' ) export const BIconBatteryFull = /*#__PURE__*/ makeIcon( 'BatteryFull', - '' + '' +) + +export const BIconBatteryHalf = /*#__PURE__*/ makeIcon( + 'BatteryHalf', + '' ) export const BIconBell = /*#__PURE__*/ makeIcon( 'Bell', - '' + '' ) export const BIconBellFill = /*#__PURE__*/ makeIcon( 'BellFill', - '' + '' ) export const BIconBlockquoteLeft = /*#__PURE__*/ makeIcon( 'BlockquoteLeft', - '' + '' ) export const BIconBlockquoteRight = /*#__PURE__*/ makeIcon( 'BlockquoteRight', - '' + '' ) export const BIconBook = /*#__PURE__*/ makeIcon( 'Book', - '' + '' ) -export const BIconBookHalfFill = /*#__PURE__*/ makeIcon( - 'BookHalfFill', - '' +export const BIconBookHalf = /*#__PURE__*/ makeIcon( + 'BookHalf', + '' ) export const BIconBookmark = /*#__PURE__*/ makeIcon( 'Bookmark', - '' + '' +) + +export const BIconBookmarkCheck = /*#__PURE__*/ makeIcon( + 'BookmarkCheck', + '' +) + +export const BIconBookmarkDash = /*#__PURE__*/ makeIcon( + 'BookmarkDash', + '' ) export const BIconBookmarkFill = /*#__PURE__*/ makeIcon( 'BookmarkFill', - '' + '' +) + +export const BIconBookmarkPlus = /*#__PURE__*/ makeIcon( + 'BookmarkPlus', + '' +) + +export const BIconBookmarks = /*#__PURE__*/ makeIcon( + 'Bookmarks', + '' +) + +export const BIconBookmarksFill = /*#__PURE__*/ makeIcon( + 'BookmarksFill', + '' ) export const BIconBootstrap = /*#__PURE__*/ makeIcon( 'Bootstrap', - '' + '' ) export const BIconBootstrapFill = /*#__PURE__*/ makeIcon( 'BootstrapFill', - '' + '' ) export const BIconBootstrapReboot = /*#__PURE__*/ makeIcon( 'BootstrapReboot', - '' + '' ) -export const BIconBoxArrowBottomLeft = /*#__PURE__*/ makeIcon( - 'BoxArrowBottomLeft', - '' +export const BIconBoundingBox = /*#__PURE__*/ makeIcon( + 'BoundingBox', + '' ) -export const BIconBoxArrowBottomRight = /*#__PURE__*/ makeIcon( - 'BoxArrowBottomRight', - '' +export const BIconBoundingBoxCircles = /*#__PURE__*/ makeIcon( + 'BoundingBoxCircles', + '' ) export const BIconBoxArrowDown = /*#__PURE__*/ makeIcon( 'BoxArrowDown', - '' + '' +) + +export const BIconBoxArrowDownLeft = /*#__PURE__*/ makeIcon( + 'BoxArrowDownLeft', + '' +) + +export const BIconBoxArrowDownRight = /*#__PURE__*/ makeIcon( + 'BoxArrowDownRight', + '' +) + +export const BIconBoxArrowInDown = /*#__PURE__*/ makeIcon( + 'BoxArrowInDown', + '' +) + +export const BIconBoxArrowInDownLeft = /*#__PURE__*/ makeIcon( + 'BoxArrowInDownLeft', + '' +) + +export const BIconBoxArrowInDownRight = /*#__PURE__*/ makeIcon( + 'BoxArrowInDownRight', + '' +) + +export const BIconBoxArrowInLeft = /*#__PURE__*/ makeIcon( + 'BoxArrowInLeft', + '' +) + +export const BIconBoxArrowInRight = /*#__PURE__*/ makeIcon( + 'BoxArrowInRight', + '' +) + +export const BIconBoxArrowInUp = /*#__PURE__*/ makeIcon( + 'BoxArrowInUp', + '' +) + +export const BIconBoxArrowInUpLeft = /*#__PURE__*/ makeIcon( + 'BoxArrowInUpLeft', + '' +) + +export const BIconBoxArrowInUpRight = /*#__PURE__*/ makeIcon( + 'BoxArrowInUpRight', + '' ) export const BIconBoxArrowLeft = /*#__PURE__*/ makeIcon( 'BoxArrowLeft', - '' + '' ) export const BIconBoxArrowRight = /*#__PURE__*/ makeIcon( 'BoxArrowRight', - '' + '' ) export const BIconBoxArrowUp = /*#__PURE__*/ makeIcon( 'BoxArrowUp', - '' + '' ) export const BIconBoxArrowUpLeft = /*#__PURE__*/ makeIcon( 'BoxArrowUpLeft', - '' + '' ) export const BIconBoxArrowUpRight = /*#__PURE__*/ makeIcon( 'BoxArrowUpRight', - '' + '' ) export const BIconBraces = /*#__PURE__*/ makeIcon( 'Braces', - '' + '' +) + +export const BIconBriefcase = /*#__PURE__*/ makeIcon( + 'Briefcase', + '' ) -export const BIconBrightnessFillHigh = /*#__PURE__*/ makeIcon( - 'BrightnessFillHigh', - '' +export const BIconBriefcaseFill = /*#__PURE__*/ makeIcon( + 'BriefcaseFill', + '' ) -export const BIconBrightnessFillLow = /*#__PURE__*/ makeIcon( - 'BrightnessFillLow', - '' +export const BIconBrightnessAltHigh = /*#__PURE__*/ makeIcon( + 'BrightnessAltHigh', + '' +) + +export const BIconBrightnessAltHighFill = /*#__PURE__*/ makeIcon( + 'BrightnessAltHighFill', + '' +) + +export const BIconBrightnessAltLow = /*#__PURE__*/ makeIcon( + 'BrightnessAltLow', + '' +) + +export const BIconBrightnessAltLowFill = /*#__PURE__*/ makeIcon( + 'BrightnessAltLowFill', + '' ) export const BIconBrightnessHigh = /*#__PURE__*/ makeIcon( 'BrightnessHigh', - '' + '' +) + +export const BIconBrightnessHighFill = /*#__PURE__*/ makeIcon( + 'BrightnessHighFill', + '' ) export const BIconBrightnessLow = /*#__PURE__*/ makeIcon( 'BrightnessLow', - '' + '' +) + +export const BIconBrightnessLowFill = /*#__PURE__*/ makeIcon( + 'BrightnessLowFill', + '' ) export const BIconBrush = /*#__PURE__*/ makeIcon( 'Brush', - '' + '' ) export const BIconBucket = /*#__PURE__*/ makeIcon( 'Bucket', - '' + '' ) export const BIconBucketFill = /*#__PURE__*/ makeIcon( 'BucketFill', - '' + '' ) export const BIconBuilding = /*#__PURE__*/ makeIcon( 'Building', - '' + '' ) export const BIconBullseye = /*#__PURE__*/ makeIcon( 'Bullseye', - '' + '' ) export const BIconCalendar = /*#__PURE__*/ makeIcon( 'Calendar', - '' + '' ) export const BIconCalendarFill = /*#__PURE__*/ makeIcon( 'CalendarFill', - '' + '' ) export const BIconCamera = /*#__PURE__*/ makeIcon( 'Camera', - '' + '' ) export const BIconCameraVideo = /*#__PURE__*/ makeIcon( 'CameraVideo', - '' + '' ) export const BIconCameraVideoFill = /*#__PURE__*/ makeIcon( 'CameraVideoFill', - '' + '' ) export const BIconCapslock = /*#__PURE__*/ makeIcon( 'Capslock', - '' + '' ) export const BIconCapslockFill = /*#__PURE__*/ makeIcon( 'CapslockFill', - '' + '' +) + +export const BIconCardChecklist = /*#__PURE__*/ makeIcon( + 'CardChecklist', + '' +) + +export const BIconCardHeading = /*#__PURE__*/ makeIcon( + 'CardHeading', + '' +) + +export const BIconCardImage = /*#__PURE__*/ makeIcon( + 'CardImage', + '' +) + +export const BIconCardList = /*#__PURE__*/ makeIcon( + 'CardList', + '' +) + +export const BIconCardText = /*#__PURE__*/ makeIcon( + 'CardText', + '' +) + +export const BIconCaretDown = /*#__PURE__*/ makeIcon( + 'CaretDown', + '' +) + +export const BIconCaretDownFill = /*#__PURE__*/ makeIcon( + 'CaretDownFill', + '' +) + +export const BIconCaretLeft = /*#__PURE__*/ makeIcon( + 'CaretLeft', + '' +) + +export const BIconCaretLeftFill = /*#__PURE__*/ makeIcon( + 'CaretLeftFill', + '' +) + +export const BIconCaretRight = /*#__PURE__*/ makeIcon( + 'CaretRight', + '' +) + +export const BIconCaretRightFill = /*#__PURE__*/ makeIcon( + 'CaretRightFill', + '' +) + +export const BIconCaretUp = /*#__PURE__*/ makeIcon( + 'CaretUp', + '' +) + +export const BIconCaretUpFill = /*#__PURE__*/ makeIcon( + 'CaretUpFill', + '' ) export const BIconChat = /*#__PURE__*/ makeIcon( 'Chat', - '' + '' +) + +export const BIconChatDots = /*#__PURE__*/ makeIcon( + 'ChatDots', + '' +) + +export const BIconChatDotsFill = /*#__PURE__*/ makeIcon( + 'ChatDotsFill', + '' ) export const BIconChatFill = /*#__PURE__*/ makeIcon( 'ChatFill', - '' + '' +) + +export const BIconChatQuote = /*#__PURE__*/ makeIcon( + 'ChatQuote', + '' +) + +export const BIconChatQuoteFill = /*#__PURE__*/ makeIcon( + 'ChatQuoteFill', + '' +) + +export const BIconChatSquare = /*#__PURE__*/ makeIcon( + 'ChatSquare', + '' +) + +export const BIconChatSquareDots = /*#__PURE__*/ makeIcon( + 'ChatSquareDots', + '' +) + +export const BIconChatSquareDotsFill = /*#__PURE__*/ makeIcon( + 'ChatSquareDotsFill', + '' +) + +export const BIconChatSquareFill = /*#__PURE__*/ makeIcon( + 'ChatSquareFill', + '' +) + +export const BIconChatSquareQuote = /*#__PURE__*/ makeIcon( + 'ChatSquareQuote', + '' +) + +export const BIconChatSquareQuoteFill = /*#__PURE__*/ makeIcon( + 'ChatSquareQuoteFill', + '' ) export const BIconCheck = /*#__PURE__*/ makeIcon( 'Check', - '' + '' +) + +export const BIconCheckAll = /*#__PURE__*/ makeIcon( + 'CheckAll', + '' ) export const BIconCheckBox = /*#__PURE__*/ makeIcon( 'CheckBox', - '' + '' ) export const BIconCheckCircle = /*#__PURE__*/ makeIcon( 'CheckCircle', - '' + '' +) + +export const BIconChevronBarContract = /*#__PURE__*/ makeIcon( + 'ChevronBarContract', + '' +) + +export const BIconChevronBarDown = /*#__PURE__*/ makeIcon( + 'ChevronBarDown', + '' +) + +export const BIconChevronBarExpand = /*#__PURE__*/ makeIcon( + 'ChevronBarExpand', + '' +) + +export const BIconChevronBarLeft = /*#__PURE__*/ makeIcon( + 'ChevronBarLeft', + '' +) + +export const BIconChevronBarRight = /*#__PURE__*/ makeIcon( + 'ChevronBarRight', + '' +) + +export const BIconChevronBarUp = /*#__PURE__*/ makeIcon( + 'ChevronBarUp', + '' ) export const BIconChevronCompactDown = /*#__PURE__*/ makeIcon( 'ChevronCompactDown', - '' + '' ) export const BIconChevronCompactLeft = /*#__PURE__*/ makeIcon( 'ChevronCompactLeft', - '' + '' ) export const BIconChevronCompactRight = /*#__PURE__*/ makeIcon( 'ChevronCompactRight', - '' + '' ) export const BIconChevronCompactUp = /*#__PURE__*/ makeIcon( 'ChevronCompactUp', - '' + '' +) + +export const BIconChevronContract = /*#__PURE__*/ makeIcon( + 'ChevronContract', + '' +) + +export const BIconChevronDoubleDown = /*#__PURE__*/ makeIcon( + 'ChevronDoubleDown', + '' +) + +export const BIconChevronDoubleLeft = /*#__PURE__*/ makeIcon( + 'ChevronDoubleLeft', + '' +) + +export const BIconChevronDoubleRight = /*#__PURE__*/ makeIcon( + 'ChevronDoubleRight', + '' +) + +export const BIconChevronDoubleUp = /*#__PURE__*/ makeIcon( + 'ChevronDoubleUp', + '' ) export const BIconChevronDown = /*#__PURE__*/ makeIcon( 'ChevronDown', - '' + '' +) + +export const BIconChevronExpand = /*#__PURE__*/ makeIcon( + 'ChevronExpand', + '' ) export const BIconChevronLeft = /*#__PURE__*/ makeIcon( 'ChevronLeft', - '' + '' ) export const BIconChevronRight = /*#__PURE__*/ makeIcon( 'ChevronRight', - '' + '' ) export const BIconChevronUp = /*#__PURE__*/ makeIcon( 'ChevronUp', - '' + '' ) export const BIconCircle = /*#__PURE__*/ makeIcon( 'Circle', - '' + '' ) export const BIconCircleFill = /*#__PURE__*/ makeIcon( 'CircleFill', - '' + '' ) export const BIconCircleHalf = /*#__PURE__*/ makeIcon( 'CircleHalf', - '' + '' ) -export const BIconCircleSlash = /*#__PURE__*/ makeIcon( - 'CircleSlash', - '' +export const BIconCircleSquare = /*#__PURE__*/ makeIcon( + 'CircleSquare', + '' +) + +export const BIconClipboard = /*#__PURE__*/ makeIcon( + 'Clipboard', + '' +) + +export const BIconClipboardData = /*#__PURE__*/ makeIcon( + 'ClipboardData', + '' ) export const BIconClock = /*#__PURE__*/ makeIcon( 'Clock', - '' + '' ) export const BIconClockFill = /*#__PURE__*/ makeIcon( 'ClockFill', - '' + '' +) + +export const BIconClockHistory = /*#__PURE__*/ makeIcon( + 'ClockHistory', + '' ) export const BIconCloud = /*#__PURE__*/ makeIcon( 'Cloud', - '' + '' ) export const BIconCloudDownload = /*#__PURE__*/ makeIcon( 'CloudDownload', - '' + '' ) export const BIconCloudFill = /*#__PURE__*/ makeIcon( 'CloudFill', - '' + '' ) export const BIconCloudUpload = /*#__PURE__*/ makeIcon( 'CloudUpload', - '' + '' ) export const BIconCode = /*#__PURE__*/ makeIcon( 'Code', - '' + '' ) export const BIconCodeSlash = /*#__PURE__*/ makeIcon( 'CodeSlash', - '' + '' +) + +export const BIconCollection = /*#__PURE__*/ makeIcon( + 'Collection', + '' +) + +export const BIconCollectionFill = /*#__PURE__*/ makeIcon( + 'CollectionFill', + '' +) + +export const BIconCollectionPlay = /*#__PURE__*/ makeIcon( + 'CollectionPlay', + '' +) + +export const BIconCollectionPlayFill = /*#__PURE__*/ makeIcon( + 'CollectionPlayFill', + '' ) export const BIconColumns = /*#__PURE__*/ makeIcon( 'Columns', - '' + '' ) -export const BIconColumnsGutters = /*#__PURE__*/ makeIcon( - 'ColumnsGutters', - '' +export const BIconColumnsGap = /*#__PURE__*/ makeIcon( + 'ColumnsGap', + '' ) export const BIconCommand = /*#__PURE__*/ makeIcon( 'Command', - '' + '' ) export const BIconCompass = /*#__PURE__*/ makeIcon( 'Compass', - '' + '' ) export const BIconCone = /*#__PURE__*/ makeIcon( 'Cone', - '' + '' ) export const BIconConeStriped = /*#__PURE__*/ makeIcon( 'ConeStriped', - '' + '' ) export const BIconController = /*#__PURE__*/ makeIcon( 'Controller', - '' + '' ) export const BIconCreditCard = /*#__PURE__*/ makeIcon( 'CreditCard', - '' + '' +) + +export const BIconCrop = /*#__PURE__*/ makeIcon( + 'Crop', + '' ) export const BIconCursor = /*#__PURE__*/ makeIcon( 'Cursor', - '' + '' ) export const BIconCursorFill = /*#__PURE__*/ makeIcon( 'CursorFill', - '' + '' +) + +export const BIconCursorText = /*#__PURE__*/ makeIcon( + 'CursorText', + '' ) export const BIconDash = /*#__PURE__*/ makeIcon( 'Dash', - '' + '' +) + +export const BIconDashCircle = /*#__PURE__*/ makeIcon( + 'DashCircle', + '' +) + +export const BIconDashCircleFill = /*#__PURE__*/ makeIcon( + 'DashCircleFill', + '' +) + +export const BIconDashSquare = /*#__PURE__*/ makeIcon( + 'DashSquare', + '' +) + +export const BIconDashSquareFill = /*#__PURE__*/ makeIcon( + 'DashSquareFill', + '' ) export const BIconDiamond = /*#__PURE__*/ makeIcon( 'Diamond', - '' + '' +) + +export const BIconDiamondFill = /*#__PURE__*/ makeIcon( + 'DiamondFill', + '' ) export const BIconDiamondHalf = /*#__PURE__*/ makeIcon( 'DiamondHalf', - '' + '' ) export const BIconDisplay = /*#__PURE__*/ makeIcon( 'Display', - '' + '' ) 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', - '' +export const BIconDot = /*#__PURE__*/ makeIcon( + 'Dot', + '' ) -export const BIconDocumentSpreadsheet = /*#__PURE__*/ makeIcon( - 'DocumentSpreadsheet', - '' +export const BIconDownload = /*#__PURE__*/ makeIcon( + 'Download', + '' ) -export const BIconDocumentText = /*#__PURE__*/ makeIcon( - 'DocumentText', - '' +export const BIconDroplet = /*#__PURE__*/ makeIcon( + 'Droplet', + '' ) -export const BIconDocuments = /*#__PURE__*/ makeIcon( - 'Documents', - '' +export const BIconDropletFill = /*#__PURE__*/ makeIcon( + 'DropletFill', + '' ) -export const BIconDocumentsAlt = /*#__PURE__*/ makeIcon( - 'DocumentsAlt', - '' +export const BIconDropletHalf = /*#__PURE__*/ makeIcon( + 'DropletHalf', + '' ) -export const BIconDot = /*#__PURE__*/ makeIcon( - 'Dot', - '' +export const BIconEgg = /*#__PURE__*/ makeIcon( + 'Egg', + '' ) -export const BIconDownload = /*#__PURE__*/ makeIcon( - 'Download', - '' +export const BIconEggFill = /*#__PURE__*/ makeIcon( + 'EggFill', + '' ) export const BIconEggFried = /*#__PURE__*/ makeIcon( 'EggFried', - '' + '' ) export const BIconEject = /*#__PURE__*/ makeIcon( 'Eject', - '' + '' ) export const BIconEjectFill = /*#__PURE__*/ makeIcon( 'EjectFill', - '' + '' ) export const BIconEnvelope = /*#__PURE__*/ makeIcon( 'Envelope', - '' + '' ) export const BIconEnvelopeFill = /*#__PURE__*/ makeIcon( 'EnvelopeFill', - '' + '' ) export const BIconEnvelopeOpen = /*#__PURE__*/ makeIcon( 'EnvelopeOpen', - '' + '' ) export const BIconEnvelopeOpenFill = /*#__PURE__*/ makeIcon( 'EnvelopeOpenFill', - '' + '' +) + +export const BIconExclamation = /*#__PURE__*/ makeIcon( + 'Exclamation', + '' +) + +export const BIconExclamationCircle = /*#__PURE__*/ makeIcon( + 'ExclamationCircle', + '' +) + +export const BIconExclamationCircleFill = /*#__PURE__*/ makeIcon( + 'ExclamationCircleFill', + '' +) + +export const BIconExclamationDiamond = /*#__PURE__*/ makeIcon( + 'ExclamationDiamond', + '' +) + +export const BIconExclamationDiamondFill = /*#__PURE__*/ makeIcon( + 'ExclamationDiamondFill', + '' +) + +export const BIconExclamationOctagon = /*#__PURE__*/ makeIcon( + 'ExclamationOctagon', + '' +) + +export const BIconExclamationOctagonFill = /*#__PURE__*/ makeIcon( + 'ExclamationOctagonFill', + '' +) + +export const BIconExclamationSquare = /*#__PURE__*/ makeIcon( + 'ExclamationSquare', + '' +) + +export const BIconExclamationSquareFill = /*#__PURE__*/ makeIcon( + 'ExclamationSquareFill', + '' +) + +export const BIconExclamationTriangle = /*#__PURE__*/ makeIcon( + 'ExclamationTriangle', + '' +) + +export const BIconExclamationTriangleFill = /*#__PURE__*/ makeIcon( + 'ExclamationTriangleFill', + '' +) + +export const BIconExclude = /*#__PURE__*/ makeIcon( + 'Exclude', + '' ) export const BIconEye = /*#__PURE__*/ makeIcon( 'Eye', - '' + '' ) export const BIconEyeFill = /*#__PURE__*/ makeIcon( 'EyeFill', - '' + '' ) export const BIconEyeSlash = /*#__PURE__*/ makeIcon( 'EyeSlash', - '' + '' ) export const BIconEyeSlashFill = /*#__PURE__*/ makeIcon( 'EyeSlashFill', - '' + '' +) + +export const BIconFile = /*#__PURE__*/ makeIcon( + 'File', + '' +) + +export const BIconFileArrowDown = /*#__PURE__*/ makeIcon( + 'FileArrowDown', + '' +) + +export const BIconFileArrowUp = /*#__PURE__*/ makeIcon( + 'FileArrowUp', + '' +) + +export const BIconFileBreak = /*#__PURE__*/ makeIcon( + 'FileBreak', + '' +) + +export const BIconFileCheck = /*#__PURE__*/ makeIcon( + 'FileCheck', + '' +) + +export const BIconFileCode = /*#__PURE__*/ makeIcon( + 'FileCode', + '' +) + +export const BIconFileDiff = /*#__PURE__*/ makeIcon( + 'FileDiff', + '' +) + +export const BIconFileEarmark = /*#__PURE__*/ makeIcon( + 'FileEarmark', + '' +) + +export const BIconFileEarmarkArrowDown = /*#__PURE__*/ makeIcon( + 'FileEarmarkArrowDown', + '' +) + +export const BIconFileEarmarkArrowUp = /*#__PURE__*/ makeIcon( + 'FileEarmarkArrowUp', + '' +) + +export const BIconFileEarmarkBreak = /*#__PURE__*/ makeIcon( + 'FileEarmarkBreak', + '' +) + +export const BIconFileEarmarkCheck = /*#__PURE__*/ makeIcon( + 'FileEarmarkCheck', + '' +) + +export const BIconFileEarmarkCode = /*#__PURE__*/ makeIcon( + 'FileEarmarkCode', + '' +) + +export const BIconFileEarmarkDiff = /*#__PURE__*/ makeIcon( + 'FileEarmarkDiff', + '' +) + +export const BIconFileEarmarkMinus = /*#__PURE__*/ makeIcon( + 'FileEarmarkMinus', + '' +) + +export const BIconFileEarmarkPlus = /*#__PURE__*/ makeIcon( + 'FileEarmarkPlus', + '' +) + +export const BIconFileEarmarkRuled = /*#__PURE__*/ makeIcon( + 'FileEarmarkRuled', + '' +) + +export const BIconFileEarmarkSpreadsheet = /*#__PURE__*/ makeIcon( + 'FileEarmarkSpreadsheet', + '' +) + +export const BIconFileEarmarkText = /*#__PURE__*/ makeIcon( + 'FileEarmarkText', + '' +) + +export const BIconFileEarmarkZip = /*#__PURE__*/ makeIcon( + 'FileEarmarkZip', + '' +) + +export const BIconFileMinus = /*#__PURE__*/ makeIcon( + 'FileMinus', + '' +) + +export const BIconFilePlus = /*#__PURE__*/ makeIcon( + 'FilePlus', + '' +) + +export const BIconFilePost = /*#__PURE__*/ makeIcon( + 'FilePost', + '' +) + +export const BIconFileRichtext = /*#__PURE__*/ makeIcon( + 'FileRichtext', + '' +) + +export const BIconFileRuled = /*#__PURE__*/ makeIcon( + 'FileRuled', + '' +) + +export const BIconFileSpreadsheet = /*#__PURE__*/ makeIcon( + 'FileSpreadsheet', + '' +) + +export const BIconFileText = /*#__PURE__*/ makeIcon( + 'FileText', + '' +) + +export const BIconFileZip = /*#__PURE__*/ makeIcon( + 'FileZip', + '' +) + +export const BIconFiles = /*#__PURE__*/ makeIcon( + 'Files', + '' +) + +export const BIconFilesAlt = /*#__PURE__*/ makeIcon( + 'FilesAlt', + '' +) + +export const BIconFilm = /*#__PURE__*/ makeIcon( + 'Film', + '' ) export const BIconFilter = /*#__PURE__*/ makeIcon( 'Filter', - '' + '' +) + +export const BIconFilterLeft = /*#__PURE__*/ makeIcon( + 'FilterLeft', + '' +) + +export const BIconFilterRight = /*#__PURE__*/ makeIcon( + 'FilterRight', + '' ) export const BIconFlag = /*#__PURE__*/ makeIcon( 'Flag', - '' + '' ) export const BIconFlagFill = /*#__PURE__*/ makeIcon( 'FlagFill', - '' + '' ) export const BIconFolder = /*#__PURE__*/ makeIcon( 'Folder', - '' + '' +) + +export const BIconFolderCheck = /*#__PURE__*/ makeIcon( + 'FolderCheck', + '' ) export const BIconFolderFill = /*#__PURE__*/ makeIcon( 'FolderFill', - '' + '' +) + +export const BIconFolderMinus = /*#__PURE__*/ makeIcon( + 'FolderMinus', + '' +) + +export const BIconFolderPlus = /*#__PURE__*/ makeIcon( + 'FolderPlus', + '' ) export const BIconFolderSymlink = /*#__PURE__*/ makeIcon( 'FolderSymlink', - '' + '' ) export const BIconFolderSymlinkFill = /*#__PURE__*/ makeIcon( 'FolderSymlinkFill', - '' + '' ) export const BIconFonts = /*#__PURE__*/ makeIcon( 'Fonts', - '' + '' ) export const BIconForward = /*#__PURE__*/ makeIcon( 'Forward', - '' + '' ) export const BIconForwardFill = /*#__PURE__*/ makeIcon( 'ForwardFill', - '' + '' +) + +export const BIconFullscreen = /*#__PURE__*/ makeIcon( + 'Fullscreen', + '' +) + +export const BIconFullscreenExit = /*#__PURE__*/ makeIcon( + 'FullscreenExit', + '' +) + +export const BIconFunnel = /*#__PURE__*/ makeIcon( + 'Funnel', + '' +) + +export const BIconFunnelFill = /*#__PURE__*/ makeIcon( + 'FunnelFill', + '' ) export const BIconGear = /*#__PURE__*/ makeIcon( 'Gear', - '' + '' ) export const BIconGearFill = /*#__PURE__*/ makeIcon( 'GearFill', - '' + '' ) export const BIconGearWide = /*#__PURE__*/ makeIcon( 'GearWide', - '' + '' ) export const BIconGearWideConnected = /*#__PURE__*/ makeIcon( 'GearWideConnected', - '' + '' +) + +export const BIconGem = /*#__PURE__*/ makeIcon( + 'Gem', + '' ) export const BIconGeo = /*#__PURE__*/ makeIcon( 'Geo', - '' + '' +) + +export const BIconGeoAlt = /*#__PURE__*/ makeIcon( + 'GeoAlt', + '' +) + +export const BIconGift = /*#__PURE__*/ makeIcon( + 'Gift', + '' +) + +export const BIconGiftFill = /*#__PURE__*/ makeIcon( + 'GiftFill', + '' ) export const BIconGraphDown = /*#__PURE__*/ makeIcon( 'GraphDown', - '' + '' ) export const BIconGraphUp = /*#__PURE__*/ makeIcon( 'GraphUp', - '' + '' ) export const BIconGrid = /*#__PURE__*/ makeIcon( 'Grid', - '' + '' +) + +export const BIconGrid1x2 = /*#__PURE__*/ makeIcon( + 'Grid1x2', + '' +) + +export const BIconGrid1x2Fill = /*#__PURE__*/ makeIcon( + 'Grid1x2Fill', + '' +) + +export const BIconGrid3x2 = /*#__PURE__*/ makeIcon( + 'Grid3x2', + '' +) + +export const BIconGrid3x2Gap = /*#__PURE__*/ makeIcon( + 'Grid3x2Gap', + '' +) + +export const BIconGrid3x2GapFill = /*#__PURE__*/ makeIcon( + 'Grid3x2GapFill', + '' +) + +export const BIconGrid3x3 = /*#__PURE__*/ makeIcon( + 'Grid3x3', + '' +) + +export const BIconGrid3x3Gap = /*#__PURE__*/ makeIcon( + 'Grid3x3Gap', + '' +) + +export const BIconGrid3x3GapFill = /*#__PURE__*/ makeIcon( + 'Grid3x3GapFill', + '' ) export const BIconGridFill = /*#__PURE__*/ makeIcon( 'GridFill', - '' + '' ) export const BIconHammer = /*#__PURE__*/ makeIcon( 'Hammer', - '' + '' ) export const BIconHash = /*#__PURE__*/ makeIcon( 'Hash', - '' + '' ) export const BIconHeart = /*#__PURE__*/ makeIcon( 'Heart', - '' + '' ) export const BIconHeartFill = /*#__PURE__*/ makeIcon( 'HeartFill', - '' + '' +) + +export const BIconHeartHalf = /*#__PURE__*/ makeIcon( + 'HeartHalf', + '' ) export const BIconHouse = /*#__PURE__*/ makeIcon( 'House', - '' + '' +) + +export const BIconHouseDoor = /*#__PURE__*/ makeIcon( + 'HouseDoor', + '' +) + +export const BIconHouseDoorFill = /*#__PURE__*/ makeIcon( + 'HouseDoorFill', + '' ) export const BIconHouseFill = /*#__PURE__*/ makeIcon( 'HouseFill', - '' + '' +) + +export const BIconHr = /*#__PURE__*/ makeIcon( + 'Hr', + '' ) export const BIconImage = /*#__PURE__*/ makeIcon( 'Image', - '' + '' ) export const BIconImageAlt = /*#__PURE__*/ makeIcon( 'ImageAlt', - '' + '' ) export const BIconImageFill = /*#__PURE__*/ makeIcon( 'ImageFill', - '' + '' ) export const BIconImages = /*#__PURE__*/ makeIcon( 'Images', - '' + '' ) export const BIconInbox = /*#__PURE__*/ makeIcon( 'Inbox', - '' + '' ) export const BIconInboxFill = /*#__PURE__*/ makeIcon( 'InboxFill', - '' + '' ) export const BIconInboxes = /*#__PURE__*/ makeIcon( 'Inboxes', - '' + '' ) export const BIconInboxesFill = /*#__PURE__*/ makeIcon( 'InboxesFill', - '' + '' ) export const BIconInfo = /*#__PURE__*/ makeIcon( 'Info', - '' + '' ) -export const BIconInfoFill = /*#__PURE__*/ makeIcon( - 'InfoFill', - '' +export const BIconInfoCircle = /*#__PURE__*/ makeIcon( + 'InfoCircle', + '' +) + +export const BIconInfoCircleFill = /*#__PURE__*/ makeIcon( + 'InfoCircleFill', + '' ) export const BIconInfoSquare = /*#__PURE__*/ makeIcon( 'InfoSquare', - '' + '' ) export const BIconInfoSquareFill = /*#__PURE__*/ makeIcon( 'InfoSquareFill', - '' + '' +) + +export const BIconIntersect = /*#__PURE__*/ makeIcon( + 'Intersect', + '' ) export const BIconJustify = /*#__PURE__*/ makeIcon( 'Justify', - '' + '' ) export const BIconJustifyLeft = /*#__PURE__*/ makeIcon( 'JustifyLeft', - '' + '' ) export const BIconJustifyRight = /*#__PURE__*/ makeIcon( 'JustifyRight', - '' + '' ) export const BIconKanban = /*#__PURE__*/ makeIcon( 'Kanban', - '' + '' ) export const BIconKanbanFill = /*#__PURE__*/ makeIcon( 'KanbanFill', - '' + '' ) export const BIconLaptop = /*#__PURE__*/ makeIcon( 'Laptop', - '' + '' +) + +export const BIconLayers = /*#__PURE__*/ makeIcon( + 'Layers', + '' +) + +export const BIconLayersFill = /*#__PURE__*/ makeIcon( + 'LayersFill', + '' +) + +export const BIconLayersHalf = /*#__PURE__*/ makeIcon( + 'LayersHalf', + '' ) export const BIconLayoutSidebar = /*#__PURE__*/ makeIcon( 'LayoutSidebar', - '' + '' +) + +export const BIconLayoutSidebarInset = /*#__PURE__*/ makeIcon( + 'LayoutSidebarInset', + '' +) + +export const BIconLayoutSidebarInsetReverse = /*#__PURE__*/ makeIcon( + 'LayoutSidebarInsetReverse', + '' ) export const BIconLayoutSidebarReverse = /*#__PURE__*/ makeIcon( 'LayoutSidebarReverse', - '' + '' ) export const BIconLayoutSplit = /*#__PURE__*/ makeIcon( 'LayoutSplit', - '' + '' +) + +export const BIconLayoutTextSidebar = /*#__PURE__*/ makeIcon( + 'LayoutTextSidebar', + '' +) + +export const BIconLayoutTextSidebarReverse = /*#__PURE__*/ makeIcon( + 'LayoutTextSidebarReverse', + '' +) + +export const BIconLayoutTextWindow = /*#__PURE__*/ makeIcon( + 'LayoutTextWindow', + '' +) + +export const BIconLayoutTextWindowReverse = /*#__PURE__*/ makeIcon( + 'LayoutTextWindowReverse', + '' +) + +export const BIconLayoutThreeColumns = /*#__PURE__*/ makeIcon( + 'LayoutThreeColumns', + '' +) + +export const BIconLayoutWtf = /*#__PURE__*/ makeIcon( + 'LayoutWtf', + '' +) + +export const BIconLifePreserver = /*#__PURE__*/ makeIcon( + 'LifePreserver', + '' +) + +export const BIconLightning = /*#__PURE__*/ makeIcon( + 'Lightning', + '' +) + +export const BIconLightningFill = /*#__PURE__*/ makeIcon( + 'LightningFill', + '' +) + +export const BIconLink = /*#__PURE__*/ makeIcon( + 'Link', + '' +) + +export const BIconLink45deg = /*#__PURE__*/ makeIcon( + 'Link45deg', + '' ) export const BIconList = /*#__PURE__*/ makeIcon( 'List', - '' + '' ) export const BIconListCheck = /*#__PURE__*/ makeIcon( 'ListCheck', - '' + '' +) + +export const BIconListNested = /*#__PURE__*/ makeIcon( + 'ListNested', + '' ) export const BIconListOl = /*#__PURE__*/ makeIcon( 'ListOl', - '' + '' ) export const BIconListTask = /*#__PURE__*/ makeIcon( 'ListTask', - '' + '' ) export const BIconListUl = /*#__PURE__*/ makeIcon( 'ListUl', - '' + '' ) export const BIconLock = /*#__PURE__*/ makeIcon( 'Lock', - '' + '' ) export const BIconLockFill = /*#__PURE__*/ makeIcon( 'LockFill', - '' + '' ) export const BIconMap = /*#__PURE__*/ makeIcon( 'Map', - '' + '' ) export const BIconMic = /*#__PURE__*/ makeIcon( 'Mic', - '' + '' +) + +export const BIconMicFill = /*#__PURE__*/ makeIcon( + 'MicFill', + '' +) + +export const BIconMicMute = /*#__PURE__*/ makeIcon( + 'MicMute', + '' +) + +export const BIconMicMuteFill = /*#__PURE__*/ makeIcon( + 'MicMuteFill', + '' ) export const BIconMoon = /*#__PURE__*/ makeIcon( 'Moon', - '' + '' +) + +export const BIconMusicNote = /*#__PURE__*/ makeIcon( + 'MusicNote', + '' +) + +export const BIconMusicNoteBeamed = /*#__PURE__*/ makeIcon( + 'MusicNoteBeamed', + '' +) + +export const BIconMusicNoteList = /*#__PURE__*/ makeIcon( + 'MusicNoteList', + '' ) export const BIconMusicPlayer = /*#__PURE__*/ makeIcon( 'MusicPlayer', - '' + '' ) export const BIconMusicPlayerFill = /*#__PURE__*/ makeIcon( 'MusicPlayerFill', - '' + '' +) + +export const BIconNewspaper = /*#__PURE__*/ makeIcon( + 'Newspaper', + '' +) + +export const BIconOctagon = /*#__PURE__*/ makeIcon( + 'Octagon', + '' +) + +export const BIconOctagonFill = /*#__PURE__*/ makeIcon( + 'OctagonFill', + '' +) + +export const BIconOctagonHalf = /*#__PURE__*/ makeIcon( + 'OctagonHalf', + '' ) export const BIconOption = /*#__PURE__*/ makeIcon( 'Option', - '' + '' ) export const BIconOutlet = /*#__PURE__*/ makeIcon( 'Outlet', - '' + '' +) + +export const BIconPaperclip = /*#__PURE__*/ makeIcon( + 'Paperclip', + '' ) export const BIconPause = /*#__PURE__*/ makeIcon( 'Pause', - '' + '' ) export const BIconPauseFill = /*#__PURE__*/ makeIcon( 'PauseFill', - '' + '' ) export const BIconPen = /*#__PURE__*/ makeIcon( 'Pen', - '' + '' ) export const BIconPencil = /*#__PURE__*/ makeIcon( 'Pencil', - '' + '' +) + +export const BIconPencilSquare = /*#__PURE__*/ makeIcon( + 'PencilSquare', + '' +) + +export const BIconPentagon = /*#__PURE__*/ makeIcon( + 'Pentagon', + '' +) + +export const BIconPentagonFill = /*#__PURE__*/ makeIcon( + 'PentagonFill', + '' +) + +export const BIconPentagonHalf = /*#__PURE__*/ makeIcon( + 'PentagonHalf', + '' ) export const BIconPeople = /*#__PURE__*/ makeIcon( 'People', - '' + '' +) + +export const BIconPeopleCircle = /*#__PURE__*/ makeIcon( + 'PeopleCircle', + '' ) export const BIconPeopleFill = /*#__PURE__*/ makeIcon( 'PeopleFill', - '' + '' ) export const BIconPerson = /*#__PURE__*/ makeIcon( 'Person', - '' + '' +) + +export const BIconPersonBoundingBox = /*#__PURE__*/ makeIcon( + 'PersonBoundingBox', + '' +) + +export const BIconPersonCheck = /*#__PURE__*/ makeIcon( + 'PersonCheck', + '' +) + +export const BIconPersonCheckFill = /*#__PURE__*/ makeIcon( + 'PersonCheckFill', + '' +) + +export const BIconPersonDash = /*#__PURE__*/ makeIcon( + 'PersonDash', + '' +) + +export const BIconPersonDashFill = /*#__PURE__*/ makeIcon( + 'PersonDashFill', + '' ) export const BIconPersonFill = /*#__PURE__*/ makeIcon( 'PersonFill', - '' + '' +) + +export const BIconPersonLinesFill = /*#__PURE__*/ makeIcon( + 'PersonLinesFill', + '' +) + +export const BIconPersonPlus = /*#__PURE__*/ makeIcon( + 'PersonPlus', + '' +) + +export const BIconPersonPlusFill = /*#__PURE__*/ makeIcon( + 'PersonPlusFill', + '' +) + +export const BIconPersonSquare = /*#__PURE__*/ makeIcon( + 'PersonSquare', + '' ) export const BIconPhone = /*#__PURE__*/ makeIcon( 'Phone', - '' + '' ) export const BIconPhoneLandscape = /*#__PURE__*/ makeIcon( 'PhoneLandscape', - '' + '' ) export const BIconPieChart = /*#__PURE__*/ makeIcon( 'PieChart', - '' + '' ) export const BIconPieChartFill = /*#__PURE__*/ makeIcon( 'PieChartFill', - '' + '' +) + +export const BIconPip = /*#__PURE__*/ makeIcon( + 'Pip', + '' +) + +export const BIconPipFill = /*#__PURE__*/ makeIcon( + 'PipFill', + '' ) export const BIconPlay = /*#__PURE__*/ makeIcon( 'Play', - '' + '' ) export const BIconPlayFill = /*#__PURE__*/ makeIcon( 'PlayFill', - '' + '' ) export const BIconPlug = /*#__PURE__*/ makeIcon( 'Plug', - '' + '' ) export const BIconPlus = /*#__PURE__*/ makeIcon( 'Plus', - '' + '' +) + +export const BIconPlusCircle = /*#__PURE__*/ makeIcon( + 'PlusCircle', + '' +) + +export const BIconPlusCircleFill = /*#__PURE__*/ makeIcon( + 'PlusCircleFill', + '' +) + +export const BIconPlusSquare = /*#__PURE__*/ makeIcon( + 'PlusSquare', + '' +) + +export const BIconPlusSquareFill = /*#__PURE__*/ makeIcon( + 'PlusSquareFill', + '' ) export const BIconPower = /*#__PURE__*/ makeIcon( 'Power', - '' + '' +) + +export const BIconPuzzle = /*#__PURE__*/ makeIcon( + 'Puzzle', + '' +) + +export const BIconPuzzleFill = /*#__PURE__*/ makeIcon( + 'PuzzleFill', + '' ) export const BIconQuestion = /*#__PURE__*/ makeIcon( 'Question', - '' + '' +) + +export const BIconQuestionCircle = /*#__PURE__*/ makeIcon( + 'QuestionCircle', + '' +) + +export const BIconQuestionCircleFill = /*#__PURE__*/ makeIcon( + 'QuestionCircleFill', + '' +) + +export const BIconQuestionDiamond = /*#__PURE__*/ makeIcon( + 'QuestionDiamond', + '' ) -export const BIconQuestionFill = /*#__PURE__*/ makeIcon( - 'QuestionFill', - '' +export const BIconQuestionDiamondFill = /*#__PURE__*/ makeIcon( + 'QuestionDiamondFill', + '' +) + +export const BIconQuestionOctagon = /*#__PURE__*/ makeIcon( + 'QuestionOctagon', + '' +) + +export const BIconQuestionOctagonFill = /*#__PURE__*/ makeIcon( + 'QuestionOctagonFill', + '' ) export const BIconQuestionSquare = /*#__PURE__*/ makeIcon( 'QuestionSquare', - '' + '' ) export const BIconQuestionSquareFill = /*#__PURE__*/ makeIcon( 'QuestionSquareFill', - '' + '' ) export const BIconReply = /*#__PURE__*/ makeIcon( 'Reply', - '' + '' ) export const BIconReplyAll = /*#__PURE__*/ makeIcon( 'ReplyAll', - '' + '' ) export const BIconReplyAllFill = /*#__PURE__*/ makeIcon( 'ReplyAllFill', - '' + '' ) export const BIconReplyFill = /*#__PURE__*/ makeIcon( 'ReplyFill', - '' + '' ) export const BIconScrewdriver = /*#__PURE__*/ makeIcon( 'Screwdriver', - '' + '' ) export const BIconSearch = /*#__PURE__*/ makeIcon( 'Search', - '' + '' +) + +export const BIconServer = /*#__PURE__*/ makeIcon( + 'Server', + '' ) export const BIconShield = /*#__PURE__*/ makeIcon( 'Shield', - '' + '' ) export const BIconShieldFill = /*#__PURE__*/ makeIcon( 'ShieldFill', - '' + '' ) export const BIconShieldLock = /*#__PURE__*/ makeIcon( 'ShieldLock', - '' + '' ) export const BIconShieldLockFill = /*#__PURE__*/ makeIcon( 'ShieldLockFill', - '' + '' ) export const BIconShieldShaded = /*#__PURE__*/ makeIcon( 'ShieldShaded', - '' + '' ) export const BIconShift = /*#__PURE__*/ makeIcon( 'Shift', - '' + '' ) export const BIconShiftFill = /*#__PURE__*/ makeIcon( 'ShiftFill', - '' + '' +) + +export const BIconShuffle = /*#__PURE__*/ makeIcon( + 'Shuffle', + '' ) export const BIconSkipBackward = /*#__PURE__*/ makeIcon( 'SkipBackward', - '' + '' ) export const BIconSkipBackwardFill = /*#__PURE__*/ makeIcon( 'SkipBackwardFill', - '' + '' ) export const BIconSkipEnd = /*#__PURE__*/ makeIcon( 'SkipEnd', - '' + '' ) export const BIconSkipEndFill = /*#__PURE__*/ makeIcon( 'SkipEndFill', - '' + '' ) export const BIconSkipForward = /*#__PURE__*/ makeIcon( 'SkipForward', - '' + '' ) export const BIconSkipForwardFill = /*#__PURE__*/ makeIcon( 'SkipForwardFill', - '' + '' ) export const BIconSkipStart = /*#__PURE__*/ makeIcon( 'SkipStart', - '' + '' ) export const BIconSkipStartFill = /*#__PURE__*/ makeIcon( 'SkipStartFill', - '' + '' +) + +export const BIconSlash = /*#__PURE__*/ makeIcon( + 'Slash', + '' +) + +export const BIconSlashCircle = /*#__PURE__*/ makeIcon( + 'SlashCircle', + '' +) + +export const BIconSlashCircleFill = /*#__PURE__*/ makeIcon( + 'SlashCircleFill', + '' +) + +export const BIconSlashSquare = /*#__PURE__*/ makeIcon( + 'SlashSquare', + '' +) + +export const BIconSlashSquareFill = /*#__PURE__*/ makeIcon( + 'SlashSquareFill', + '' +) + +export const BIconSliders = /*#__PURE__*/ makeIcon( + 'Sliders', + '' +) + +export const BIconSoundwave = /*#__PURE__*/ makeIcon( + 'Soundwave', + '' ) export const BIconSpeaker = /*#__PURE__*/ makeIcon( 'Speaker', - '' + '' ) export const BIconSquare = /*#__PURE__*/ makeIcon( 'Square', - '' + '' ) export const BIconSquareFill = /*#__PURE__*/ makeIcon( 'SquareFill', - '' + '' ) export const BIconSquareHalf = /*#__PURE__*/ makeIcon( 'SquareHalf', - '' + '' ) export const BIconStar = /*#__PURE__*/ makeIcon( 'Star', - '' + '' ) export const BIconStarFill = /*#__PURE__*/ makeIcon( 'StarFill', - '' + '' ) export const BIconStarHalf = /*#__PURE__*/ makeIcon( 'StarHalf', - '' + '' ) export const BIconStop = /*#__PURE__*/ makeIcon( 'Stop', - '' + '' ) export const BIconStopFill = /*#__PURE__*/ makeIcon( 'StopFill', - '' + '' ) export const BIconStopwatch = /*#__PURE__*/ makeIcon( 'Stopwatch', - '' + '' ) export const BIconStopwatchFill = /*#__PURE__*/ makeIcon( 'StopwatchFill', - '' + '' +) + +export const BIconSubtract = /*#__PURE__*/ makeIcon( + 'Subtract', + '' ) export const BIconSun = /*#__PURE__*/ makeIcon( 'Sun', - '' + '' ) export const BIconTable = /*#__PURE__*/ makeIcon( 'Table', - '' + '' ) export const BIconTablet = /*#__PURE__*/ makeIcon( 'Tablet', - '' + '' ) export const BIconTabletLandscape = /*#__PURE__*/ makeIcon( 'TabletLandscape', - '' + '' ) export const BIconTag = /*#__PURE__*/ makeIcon( 'Tag', - '' + '' ) export const BIconTagFill = /*#__PURE__*/ makeIcon( 'TagFill', - '' + '' ) export const BIconTerminal = /*#__PURE__*/ makeIcon( 'Terminal', - '' + '' ) export const BIconTerminalFill = /*#__PURE__*/ makeIcon( 'TerminalFill', - '' + '' ) export const BIconTextCenter = /*#__PURE__*/ makeIcon( 'TextCenter', - '' + '' ) export const BIconTextIndentLeft = /*#__PURE__*/ makeIcon( 'TextIndentLeft', - '' + '' ) export const BIconTextIndentRight = /*#__PURE__*/ makeIcon( 'TextIndentRight', - '' + '' ) export const BIconTextLeft = /*#__PURE__*/ makeIcon( 'TextLeft', - '' + '' ) export const BIconTextRight = /*#__PURE__*/ makeIcon( 'TextRight', - '' + '' +) + +export const BIconTextarea = /*#__PURE__*/ makeIcon( + 'Textarea', + '' +) + +export const BIconTextareaT = /*#__PURE__*/ makeIcon( + 'TextareaT', + '' ) export const BIconThreeDots = /*#__PURE__*/ makeIcon( 'ThreeDots', - '' + '' ) export const BIconThreeDotsVertical = /*#__PURE__*/ makeIcon( 'ThreeDotsVertical', - '' + '' ) export const BIconToggleOff = /*#__PURE__*/ makeIcon( 'ToggleOff', - '' + '' ) export const BIconToggleOn = /*#__PURE__*/ makeIcon( 'ToggleOn', - '' + '' ) export const BIconToggles = /*#__PURE__*/ makeIcon( 'Toggles', - '' + '' ) export const BIconTools = /*#__PURE__*/ makeIcon( 'Tools', - '' + '' ) export const BIconTrash = /*#__PURE__*/ makeIcon( 'Trash', - '' + '' +) + +export const BIconTrash2 = /*#__PURE__*/ makeIcon( + 'Trash2', + '' +) + +export const BIconTrash2Fill = /*#__PURE__*/ makeIcon( + 'Trash2Fill', + '' ) export const BIconTrashFill = /*#__PURE__*/ makeIcon( 'TrashFill', - '' + '' ) export const BIconTriangle = /*#__PURE__*/ makeIcon( 'Triangle', - '' + '' ) export const BIconTriangleFill = /*#__PURE__*/ makeIcon( 'TriangleFill', - '' + '' ) export const BIconTriangleHalf = /*#__PURE__*/ makeIcon( 'TriangleHalf', - '' + '' ) export const BIconTrophy = /*#__PURE__*/ makeIcon( 'Trophy', - '' + '' ) export const BIconTv = /*#__PURE__*/ makeIcon( 'Tv', - '' + '' ) export const BIconTvFill = /*#__PURE__*/ makeIcon( 'TvFill', - '' + '' ) export const BIconType = /*#__PURE__*/ makeIcon( 'Type', - '' + '' ) export const BIconTypeBold = /*#__PURE__*/ makeIcon( 'TypeBold', - '' + '' ) export const BIconTypeH1 = /*#__PURE__*/ makeIcon( 'TypeH1', - '' + '' ) export const BIconTypeH2 = /*#__PURE__*/ makeIcon( 'TypeH2', - '' + '' ) export const BIconTypeH3 = /*#__PURE__*/ makeIcon( 'TypeH3', - '' + '' ) export const BIconTypeItalic = /*#__PURE__*/ makeIcon( 'TypeItalic', - '' + '' ) export const BIconTypeStrikethrough = /*#__PURE__*/ makeIcon( 'TypeStrikethrough', - '' + '' ) export const BIconTypeUnderline = /*#__PURE__*/ makeIcon( 'TypeUnderline', - '' + '' +) + +export const BIconUnion = /*#__PURE__*/ makeIcon( + 'Union', + '' ) export const BIconUnlock = /*#__PURE__*/ makeIcon( 'Unlock', - '' + '' ) export const BIconUnlockFill = /*#__PURE__*/ makeIcon( 'UnlockFill', - '' + '' ) export const BIconUpload = /*#__PURE__*/ makeIcon( 'Upload', - '' + '' +) + +export const BIconViewList = /*#__PURE__*/ makeIcon( + 'ViewList', + '' +) + +export const BIconViewStacked = /*#__PURE__*/ makeIcon( + 'ViewStacked', + '' ) export const BIconVolumeDown = /*#__PURE__*/ makeIcon( 'VolumeDown', - '' + '' ) export const BIconVolumeDownFill = /*#__PURE__*/ makeIcon( 'VolumeDownFill', - '' + '' ) export const BIconVolumeMute = /*#__PURE__*/ makeIcon( 'VolumeMute', - '' + '' ) export const BIconVolumeMuteFill = /*#__PURE__*/ makeIcon( 'VolumeMuteFill', - '' + '' ) export const BIconVolumeUp = /*#__PURE__*/ makeIcon( 'VolumeUp', - '' + '' ) export const BIconVolumeUpFill = /*#__PURE__*/ makeIcon( 'VolumeUpFill', - '' + '' +) + +export const BIconVr = /*#__PURE__*/ makeIcon( + 'Vr', + '' ) export const BIconWallet = /*#__PURE__*/ makeIcon( 'Wallet', - '' + '' ) export const BIconWatch = /*#__PURE__*/ makeIcon( 'Watch', - '' + '' ) export const BIconWifi = /*#__PURE__*/ makeIcon( 'Wifi', - '' + '' ) export const BIconWindow = /*#__PURE__*/ makeIcon( 'Window', - '' + '' ) export const BIconWrench = /*#__PURE__*/ makeIcon( 'Wrench', - '' + '' ) export const BIconX = /*#__PURE__*/ makeIcon( 'X', - '' + '' ) export const BIconXCircle = /*#__PURE__*/ makeIcon( 'XCircle', - '' + '' ) export const BIconXCircleFill = /*#__PURE__*/ makeIcon( 'XCircleFill', - '' + '' +) + +export const BIconXDiamond = /*#__PURE__*/ makeIcon( + 'XDiamond', + '' +) + +export const BIconXDiamondFill = /*#__PURE__*/ makeIcon( + 'XDiamondFill', + '' ) export const BIconXOctagon = /*#__PURE__*/ makeIcon( 'XOctagon', - '' + '' ) export const BIconXOctagonFill = /*#__PURE__*/ makeIcon( 'XOctagonFill', - '' + '' ) export const BIconXSquare = /*#__PURE__*/ makeIcon( 'XSquare', - '' + '' ) export const BIconXSquareFill = /*#__PURE__*/ makeIcon( 'XSquareFill', - '' + '' ) // --- END AUTO-GENERATED FILE --- 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..f1b8cfab0eb 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:25:44.286Z // // 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, From ce5ef3e6caab7dcd070bc05ffe2fa10ca8fbeb75 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 15:41:54 -0300 Subject: [PATCH 10/26] Update icons.spec.js --- src/icons/icons.spec.js | 56 ++++++++++++++++++++--------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/src/icons/icons.spec.js b/src/icons/icons.spec.js index 0cde5c0c879..e5b74aa0492 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') @@ -57,7 +57,7 @@ describe('icons', () => { localVue: localVue, parentComponent: parentComponent, propsData: { - icon: 'alert-circle-fill', + icon: 'alarm-fill', stacked: true } }) @@ -66,7 +66,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')).not.toBe('img') expect(wrapper.attributes('alt')).not.toBe('icon') @@ -147,7 +147,7 @@ describe('icons', () => { localVue: localVue, parentComponent: parentComponent, propsData: { - icon: 'alert-circle-fill', + icon: 'alarm-fill', variant: 'danger' } }) @@ -156,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') @@ -172,7 +172,7 @@ describe('icons', () => { localVue: localVue, parentComponent: parentComponent, propsData: { - icon: 'alert-circle-fill', + icon: 'alarm-fill', fontScale: '1.25' } }) @@ -181,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') @@ -218,7 +218,7 @@ describe('icons', () => { localVue: localVue, parentComponent: parentComponent, propsData: { - icon: 'alert-circle-fill', + icon: 'alarm-fill', rotate: '45' } }) @@ -227,7 +227,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.find('svg > g').exists()).toBe(true) expect(wrapper.find('svg > g').attributes('transform')).toBeDefined() @@ -242,7 +242,7 @@ describe('icons', () => { localVue: localVue, parentComponent: parentComponent, propsData: { - icon: 'alert-circle-fill', + icon: 'alarm-fill', scale: '1.5' } }) @@ -251,7 +251,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.find('svg > g').exists()).toBe(true) expect(wrapper.find('svg > g').attributes('transform')).toBeDefined() @@ -266,7 +266,7 @@ describe('icons', () => { localVue: localVue, parentComponent: parentComponent, propsData: { - icon: 'alert-circle-fill', + icon: 'alarm-fill', flipH: true } }) @@ -275,7 +275,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.find('svg > g').exists()).toBe(true) expect(wrapper.find('svg > g').attributes('transform')).toBeDefined() @@ -290,7 +290,7 @@ describe('icons', () => { localVue: localVue, parentComponent: parentComponent, propsData: { - icon: 'alert-circle-fill', + icon: 'alarm-fill', flipV: true } }) @@ -299,7 +299,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.find('svg > g').exists()).toBe(true) expect(wrapper.find('svg > g').attributes('transform')).toBeDefined() @@ -314,7 +314,7 @@ describe('icons', () => { localVue: localVue, parentComponent: parentComponent, propsData: { - icon: 'alert-circle-fill', + icon: 'alarm-fill', flipH: true, flipV: true } @@ -324,7 +324,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.find('svg > g').exists()).toBe(true) expect(wrapper.find('svg > g').attributes('transform')).toBeDefined() @@ -339,7 +339,7 @@ describe('icons', () => { localVue: localVue, parentComponent: parentComponent, propsData: { - icon: 'alert-circle-fill', + icon: 'alarm-fill', scale: '1.5', flipH: true } @@ -349,7 +349,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.find('svg > g').exists()).toBe(true) expect(wrapper.find('svg > g').attributes('transform')).toBeDefined() @@ -364,7 +364,7 @@ describe('icons', () => { localVue: localVue, parentComponent: parentComponent, propsData: { - icon: 'alert-circle-fill', + icon: 'alarm-fill', scale: '1.5', flipV: true } @@ -374,7 +374,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.find('svg > g').exists()).toBe(true) expect(wrapper.find('svg > g').attributes('transform')).toBeDefined() @@ -389,7 +389,7 @@ describe('icons', () => { localVue: localVue, parentComponent: parentComponent, propsData: { - icon: 'alert-circle-fill', + icon: 'alarm-fill', scale: '1.5', flipH: true, flipV: true @@ -400,7 +400,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.find('svg > g').exists()).toBe(true) expect(wrapper.find('svg > g').attributes('transform')).toBeDefined() @@ -415,7 +415,7 @@ describe('icons', () => { localVue: localVue, parentComponent: parentComponent, propsData: { - icon: 'alert-circle-fill', + icon: 'alarm-fill', shiftH: 8, shiftV: 16 } @@ -425,7 +425,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.find('svg > g').exists()).toBe(true) expect(wrapper.find('svg > g').attributes('transform')).toBeDefined() @@ -440,7 +440,7 @@ describe('icons', () => { localVue: localVue, parentComponent: parentComponent, propsData: { - icon: 'alert-circle-fill', + icon: 'alarm-fill', rotate: 45, shiftH: 8, shiftV: 16 @@ -451,7 +451,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.find('svg > g').exists()).toBe(true) expect(wrapper.find('svg > g').attributes('transform')).toBeDefined() From 56665d342e9e615cf9c4c8eafb5b757130ed5b8b Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 15:45:49 -0300 Subject: [PATCH 11/26] Update .prettierignore --- .prettierignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.prettierignore b/.prettierignore index 1b8ccc37ecc..41ded7ff67a 100644 --- a/.prettierignore +++ b/.prettierignore @@ -7,3 +7,4 @@ node_modules/ nuxt/plugin.template.js nuxt/plugin.prod.js nuxt/plugin.dev.js +src/icons/icons.js From e5ecf2f7e9c2bbd7ea024cb847321054c2385a1c Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 15:51:29 -0300 Subject: [PATCH 12/26] Update create-icons.js --- scripts/create-icons.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/create-icons.js b/scripts/create-icons.js index 7fbff4e5f4c..2c8411bca72 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 => { %> +// prettier-ignore export const <%= component %> = /*#__PURE__*/ makeIcon( '<%= icons[component].name %>', '<%= icons[component].content %>' From 3de47e780d0652d1fd72748f08a8890693976a6e Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 15:58:00 -0300 Subject: [PATCH 13/26] Update create-icons.js --- scripts/create-icons.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/create-icons.js b/scripts/create-icons.js index 2c8411bca72..7eecb398b60 100644 --- a/scripts/create-icons.js +++ b/scripts/create-icons.js @@ -63,7 +63,7 @@ export const BIconBlank = /*#__PURE__*/ makeIcon('Blank', '') // --- Bootstrap Icons --- <% componentNames.forEach(component => { %> -// prettier-ignore +// eslint-disable-next-line export const <%= component %> = /*#__PURE__*/ makeIcon( '<%= icons[component].name %>', '<%= icons[component].content %>' From 48fe77c9b8b1123d8c9d8e4e0f0248a2a72c649a Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 15:58:50 -0300 Subject: [PATCH 14/26] update auto generated files --- src/icons/icons.d.ts | 2 +- src/icons/icons.js | 538 ++++++++++++++++++++++++++++++++++++++++++- src/icons/plugin.js | 2 +- 3 files changed, 539 insertions(+), 3 deletions(-) diff --git a/src/icons/icons.d.ts b/src/icons/icons.d.ts index e35333388d6..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-alpha3 -// @Generated: 2020-03-19T18:25:44.286Z +// @Generated: 2020-03-19T18:55:36.736Z // // This file is generated on each build. Do not edit this file! diff --git a/src/icons/icons.js b/src/icons/icons.js index 4273e186770..86e87447f9c 100644 --- a/src/icons/icons.js +++ b/src/icons/icons.js @@ -1,7 +1,7 @@ // --- BEGIN AUTO-GENERATED FILE --- // // @IconsVersion: 1.0.0-alpha3 -// @Generated: 2020-03-19T18:25:44.286Z +// @Generated: 2020-03-19T18:55:36.736Z // // This file is generated on each build. Do not edit this file! @@ -21,2681 +21,3217 @@ 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', '' ) +// eslint-disable-next-line export const BIconAlt = /*#__PURE__*/ makeIcon( 'Alt', '' ) +// eslint-disable-next-line export const BIconApp = /*#__PURE__*/ makeIcon( 'App', '' ) +// eslint-disable-next-line export const BIconAppIndicator = /*#__PURE__*/ makeIcon( 'AppIndicator', '' ) +// eslint-disable-next-line export const BIconArchive = /*#__PURE__*/ makeIcon( 'Archive', '' ) +// eslint-disable-next-line export const BIconArchiveFill = /*#__PURE__*/ makeIcon( 'ArchiveFill', '' ) +// eslint-disable-next-line export const BIconArrow90degDown = /*#__PURE__*/ makeIcon( 'Arrow90degDown', '' ) +// eslint-disable-next-line export const BIconArrow90degLeft = /*#__PURE__*/ makeIcon( 'Arrow90degLeft', '' ) +// eslint-disable-next-line export const BIconArrow90degRight = /*#__PURE__*/ makeIcon( 'Arrow90degRight', '' ) +// eslint-disable-next-line export const BIconArrow90degUp = /*#__PURE__*/ makeIcon( 'Arrow90degUp', '' ) +// eslint-disable-next-line export const BIconArrowBarDown = /*#__PURE__*/ makeIcon( 'ArrowBarDown', '' ) +// eslint-disable-next-line export const BIconArrowBarLeft = /*#__PURE__*/ makeIcon( 'ArrowBarLeft', '' ) +// eslint-disable-next-line export const BIconArrowBarRight = /*#__PURE__*/ makeIcon( 'ArrowBarRight', '' ) +// eslint-disable-next-line export const BIconArrowBarUp = /*#__PURE__*/ makeIcon( 'ArrowBarUp', '' ) +// eslint-disable-next-line export const BIconArrowClockwise = /*#__PURE__*/ makeIcon( 'ArrowClockwise', '' ) +// eslint-disable-next-line export const BIconArrowCounterclockwise = /*#__PURE__*/ makeIcon( 'ArrowCounterclockwise', '' ) +// eslint-disable-next-line export const BIconArrowDown = /*#__PURE__*/ makeIcon( 'ArrowDown', '' ) +// eslint-disable-next-line export const 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', '' ) +// 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', '' ) +// eslint-disable-next-line export const BIconBoundingBox = /*#__PURE__*/ makeIcon( 'BoundingBox', '' ) +// 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', '' ) +// eslint-disable-next-line export const BIconBriefcaseFill = /*#__PURE__*/ makeIcon( 'BriefcaseFill', '' ) +// 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', '' ) +// 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', '' ) +// 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', '' ) +// eslint-disable-next-line export const BIconDot = /*#__PURE__*/ makeIcon( 'Dot', '' ) +// eslint-disable-next-line export const BIconDownload = /*#__PURE__*/ makeIcon( 'Download', '' ) +// eslint-disable-next-line export const BIconDroplet = /*#__PURE__*/ makeIcon( 'Droplet', '' ) +// eslint-disable-next-line export const BIconDropletFill = /*#__PURE__*/ makeIcon( 'DropletFill', '' ) +// eslint-disable-next-line export const BIconDropletHalf = /*#__PURE__*/ makeIcon( 'DropletHalf', '' ) +// eslint-disable-next-line export const BIconEgg = /*#__PURE__*/ makeIcon( 'Egg', '' ) +// 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', '' ) +// 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', '' ) +// 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', '' diff --git a/src/icons/plugin.js b/src/icons/plugin.js index f1b8cfab0eb..c3a8479472e 100644 --- a/src/icons/plugin.js +++ b/src/icons/plugin.js @@ -1,7 +1,7 @@ // --- BEGIN AUTO-GENERATED FILE --- // // @IconsVersion: 1.0.0-alpha3 -// @Generated: 2020-03-19T18:25:44.286Z +// @Generated: 2020-03-19T18:55:36.736Z // // This file is generated on each build. Do not edit this file! From e2bf6e11c4b6150b42d030f32672668391c4c8f2 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 16:02:54 -0300 Subject: [PATCH 15/26] Update icons-table.vue --- docs/components/icons-table.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/components/icons-table.vue b/docs/components/icons-table.vue index 6968fe5e152..d06f1eab82e 100644 --- a/docs/components/icons-table.vue +++ b/docs/components/icons-table.vue @@ -94,7 +94,7 @@ } &:hover .bi { - transform: scale(2); + transform: scale(1.5); } } From 4702a94fabd936f73d2d3537a3b350af2345fb1b Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 16:26:30 -0300 Subject: [PATCH 16/26] Update icons-table.vue --- docs/components/icons-table.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/components/icons-table.vue b/docs/components/icons-table.vue index d06f1eab82e..65bb9852aa5 100644 --- a/docs/components/icons-table.vue +++ b/docs/components/icons-table.vue @@ -80,7 +80,7 @@ } #bv-icons-table-result /deep/ .bi { - font-size: 2rem; + font-size: 1.5rem; } .form-group /deep/ .form-text { @@ -94,7 +94,7 @@ } &:hover .bi { - transform: scale(1.5); + transform: scale(1.75); } } From ccac72415432b304777b26fd7460c9b4a8bc08c8 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 16:33:13 -0300 Subject: [PATCH 17/26] Update README.md --- src/icons/README.md | 56 ++++++++++++++++++++++----------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/src/icons/README.md b/src/icons/README.md index 366d898aa14..3313f6279a6 100644 --- a/src/icons/README.md +++ b/src/icons/README.md @@ -198,13 +198,13 @@ provide a `variant` prop to apply one of the Bootstrap contextual text variant c ```html @@ -235,11 +235,11 @@ current font size: ```html @@ -252,7 +252,7 @@ classes: ```html @@ -288,9 +288,9 @@ With the use of Bootstrap's border and background ```html @@ -352,16 +352,16 @@ but not its physical font size. To illustrate this we have added a background co @@ -389,29 +389,29 @@ For clarity in the example, we’ve added a background color on the icon so you @@ -605,7 +605,7 @@ Individual icons within the icon stack can also be animated (except on IE 11): > @@ -652,7 +652,7 @@ font scaled by 125%).
- + Help

@@ -699,7 +699,7 @@ font scaled by 125%). - + @@ -784,11 +784,11 @@ font scaled by 125%). Cras justo odio - + Dapibus ac facilisis in - + Morbi leo risus From fc8eba579d6bfad0a116bb6fe439e873edc05426 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 17:13:45 -0300 Subject: [PATCH 24/26] Update index.vue --- docs/pages/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/index.vue b/docs/pages/index.vue index 2ced4b022b1..d52a1db6f90 100644 --- a/docs/pages/index.vue +++ b/docs/pages/index.vue @@ -208,7 +208,7 @@ - + Modular From b1f9e6a3ea2694a9f40580a6e2a3c989cbffb126 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Thu, 19 Mar 2020 17:30:19 -0300 Subject: [PATCH 25/26] Update README.md --- src/icons/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/icons/README.md b/src/icons/README.md index ca76664d33f..853b4d385fb 100644 --- a/src/icons/README.md +++ b/src/icons/README.md @@ -282,14 +282,14 @@ 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