{
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
  "framework": "vue",
  "name": "bootstrap-vue",
  "version": "2.4.1",
  "contributions": {
    "html": {
      "types-syntax": "typescript",
      "description-markup": "markdown",
      "tags": [
        {
          "name": "BAlert",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BAlert"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/alert/",
          "description": "Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"info\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/alert/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "dismissible",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/alert/",
              "type": "boolean",
              "description": "When set, enables the dismiss close button"
            },
            {
              "name": "dismissLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Close\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/alert/",
              "description": "Value for the 'aria-label' attribute on the dismiss button"
            },
            {
              "name": "show",
              "value": {
                "kind": "expression",
                "type": "boolean|number|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/alert/",
              "description": "When set, shows the alert. Set to a number (seconds) to show and automatically dismiss the alert after the number of seconds has elapsed"
            },
            {
              "name": "fade",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/alert/",
              "type": "boolean",
              "description": "When set to 'true', enables the fade animation/transition on the component"
            }
          ],
          "vue-model": {
            "prop": "show",
            "event": "input"
          },
          "events": [
            {
              "name": "dismissed",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/alert/",
              "description": "Alert dismissed either via the dismiss close button or when the dismiss countdown has expired"
            },
            {
              "name": "dismiss-count-down",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/alert/",
              "description": "When prop show is a number, this event emits every second on countdown.",
              "arguments": [
                {
                  "name": "dismissCountDown",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/alert/",
                  "description": "Time remaining to dismissed",
                  "type": "number"
                }
              ]
            },
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/alert/",
              "description": "Used to update the v-model show value",
              "arguments": [
                {
                  "name": "show",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/alert/",
                  "description": "Boolean state of alert, or Number for current countdown value",
                  "type": "boolean|number"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "dismiss",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/alert/",
              "description": "Content for the dismiss button."
            }
          ]
        },
        {
          "name": "BBadge",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BBadge"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
          "description": "Small and adaptive tag for adding context to just about any content.",
          "attributes": [
            {
              "name": "href",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "description": "Denotes the target URL of the link for standard a links"
            },
            {
              "name": "rel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "description": "Sets the 'rel' attribute on the rendered link"
            },
            {
              "name": "target",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"_self\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "description": "Sets the 'target' attribute on the rendered link"
            },
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "to",
              "value": {
                "kind": "expression",
                "type": "string|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "description": "router-link prop: Denotes the target route of the link. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object"
            },
            {
              "name": "append",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "type": "boolean",
              "description": "router-link prop: Setting append prop always appends the relative path to the current path"
            },
            {
              "name": "replace",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "type": "boolean",
              "description": "router-link prop: Setting the replace prop will call 'router.replace()' instead of 'router.push()' when clicked, so the navigation will not leave a history record"
            },
            {
              "name": "event",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "\"click\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "description": "router-link prop: Specify the event that triggers the link. In most cases you should leave this as the default"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "exact",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "type": "boolean",
              "description": "router-link prop: The default active class matching behavior is inclusive match. Setting this prop forces the mode to exactly match the route"
            },
            {
              "name": "exactActiveClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active with exact match. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "routerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"a\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "description": "router-link prop: Specify which tag to render, and it will still listen to click events for navigation. 'router-tag' translates to the tag prop on the final rendered router-link. Typically you should use the default value"
            },
            {
              "name": "noPrefetch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "type": "boolean",
              "description": "nuxt-link prop: To improve the responsiveness of your Nuxt.js applications, when the link will be displayed within the viewport, Nuxt.js will automatically prefetch the code splitted page. Setting 'no-prefetch' will disabled this feature for the specific link"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"span\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "pill",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/badge/",
              "type": "boolean",
              "description": "When set to 'true', renders the badge in pill style"
            }
          ]
        },
        {
          "name": "BBreadcrumb",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BBreadcrumb"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
          "description": "Indicate the current page's location within a navigational hierarchy. Separators are automatically added in CSS through ::before and content.",
          "attributes": [
            {
              "name": "items",
              "value": {
                "kind": "expression",
                "type": "any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "description": "Array of breadcrumb items to render"
            }
          ]
        },
        {
          "name": "BBreadcrumbItem",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BBreadcrumbItem"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
          "description": "Indicate the current page's location within a navigational hierarchy. Separators are automatically added in CSS through ::before and content.",
          "attributes": [
            {
              "name": "href",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "description": "Denotes the target URL of the link for standard a links"
            },
            {
              "name": "rel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "description": "Sets the 'rel' attribute on the rendered link"
            },
            {
              "name": "target",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"_self\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "description": "Sets the 'target' attribute on the rendered link"
            },
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "to",
              "value": {
                "kind": "expression",
                "type": "string|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "description": "router-link prop: Denotes the target route of the link. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object"
            },
            {
              "name": "append",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "type": "boolean",
              "description": "router-link prop: Setting append prop always appends the relative path to the current path"
            },
            {
              "name": "replace",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "type": "boolean",
              "description": "router-link prop: Setting the replace prop will call 'router.replace()' instead of 'router.push()' when clicked, so the navigation will not leave a history record"
            },
            {
              "name": "event",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "\"click\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "description": "router-link prop: Specify the event that triggers the link. In most cases you should leave this as the default"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "exact",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "type": "boolean",
              "description": "router-link prop: The default active class matching behavior is inclusive match. Setting this prop forces the mode to exactly match the route"
            },
            {
              "name": "exactActiveClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active with exact match. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "routerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"a\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "description": "router-link prop: Specify which tag to render, and it will still listen to click events for navigation. 'router-tag' translates to the tag prop on the final rendered router-link. Typically you should use the default value"
            },
            {
              "name": "noPrefetch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "type": "boolean",
              "description": "nuxt-link prop: To improve the responsiveness of your Nuxt.js applications, when the link will be displayed within the viewport, Nuxt.js will automatically prefetch the code splitted page. Setting 'no-prefetch' will disabled this feature for the specific link"
            },
            {
              "name": "text",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "description": "Text to render in the breadcrumb item"
            },
            {
              "name": "html",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "description": "HTML string to render in the breadcrumb item. Use with caution"
            },
            {
              "name": "ariaCurrent",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"location\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "description": "Sets the value of the 'aria-current' attribute (when the item is the active item). Supported string values are 'location', 'page', or 'true'"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
              "description": "Emitted when clicked",
              "arguments": [
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/breadcrumb/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BButton",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BButton"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
          "description": "Use BootstrapVue's <b-button> component for actions in forms, dialogs, and more. Includes support for a handful of contextual variations, sizes, states, and more.",
          "attributes": [
            {
              "name": "href",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Denotes the target URL of the link for standard a links"
            },
            {
              "name": "rel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Sets the 'rel' attribute on the rendered link"
            },
            {
              "name": "target",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"_self\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Sets the 'target' attribute on the rendered link"
            },
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "to",
              "value": {
                "kind": "expression",
                "type": "string|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "router-link prop: Denotes the target route of the link. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object"
            },
            {
              "name": "append",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "router-link prop: Setting append prop always appends the relative path to the current path"
            },
            {
              "name": "replace",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "router-link prop: Setting the replace prop will call 'router.replace()' instead of 'router.push()' when clicked, so the navigation will not leave a history record"
            },
            {
              "name": "event",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "\"click\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "router-link prop: Specify the event that triggers the link. In most cases you should leave this as the default"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "exact",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "router-link prop: The default active class matching behavior is inclusive match. Setting this prop forces the mode to exactly match the route"
            },
            {
              "name": "exactActiveClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active with exact match. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "routerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"a\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "router-link prop: Specify which tag to render, and it will still listen to click events for navigation. 'router-tag' translates to the tag prop on the final rendered router-link. Typically you should use the default value"
            },
            {
              "name": "noPrefetch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "nuxt-link prop: To improve the responsiveness of your Nuxt.js applications, when the link will be displayed within the viewport, Nuxt.js will automatically prefetch the code splitted page. Setting 'no-prefetch' will disabled this feature for the specific link"
            },
            {
              "name": "block",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "Renders a 100% width button (expands to the width of its parent container)"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "type",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"button\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "The value to set the button's 'type' attribute to. Can be one of 'button', 'submit', or 'reset'"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"button\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "pill",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "Renders the button with the pill style appearance when set to 'true'"
            },
            {
              "name": "squared",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "Renders the button with non-rounded corners when set to 'true'"
            },
            {
              "name": "pressed",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "When set to 'true', gives the button the appearance of being pressed. Syncable with the .sync modifier"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Emitted when non-disabled button clicked",
              "arguments": [
                {
                  "name": "mouseEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BBtn",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BBtn"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
          "description": "Use BootstrapVue's <b-button> component for actions in forms, dialogs, and more. Includes support for a handful of contextual variations, sizes, states, and more.\n\n*Alias for BButton*",
          "attributes": [
            {
              "name": "href",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Denotes the target URL of the link for standard a links"
            },
            {
              "name": "rel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Sets the 'rel' attribute on the rendered link"
            },
            {
              "name": "target",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"_self\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Sets the 'target' attribute on the rendered link"
            },
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "to",
              "value": {
                "kind": "expression",
                "type": "string|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "router-link prop: Denotes the target route of the link. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object"
            },
            {
              "name": "append",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "router-link prop: Setting append prop always appends the relative path to the current path"
            },
            {
              "name": "replace",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "router-link prop: Setting the replace prop will call 'router.replace()' instead of 'router.push()' when clicked, so the navigation will not leave a history record"
            },
            {
              "name": "event",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "\"click\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "router-link prop: Specify the event that triggers the link. In most cases you should leave this as the default"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "exact",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "router-link prop: The default active class matching behavior is inclusive match. Setting this prop forces the mode to exactly match the route"
            },
            {
              "name": "exactActiveClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active with exact match. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "routerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"a\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "router-link prop: Specify which tag to render, and it will still listen to click events for navigation. 'router-tag' translates to the tag prop on the final rendered router-link. Typically you should use the default value"
            },
            {
              "name": "noPrefetch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "nuxt-link prop: To improve the responsiveness of your Nuxt.js applications, when the link will be displayed within the viewport, Nuxt.js will automatically prefetch the code splitted page. Setting 'no-prefetch' will disabled this feature for the specific link"
            },
            {
              "name": "block",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "Renders a 100% width button (expands to the width of its parent container)"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "type",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"button\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "The value to set the button's 'type' attribute to. Can be one of 'button', 'submit', or 'reset'"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"button\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "pill",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "Renders the button with the pill style appearance when set to 'true'"
            },
            {
              "name": "squared",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "Renders the button with non-rounded corners when set to 'true'"
            },
            {
              "name": "pressed",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "When set to 'true', gives the button the appearance of being pressed. Syncable with the .sync modifier"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Emitted when non-disabled button clicked",
              "arguments": [
                {
                  "name": "mouseEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BButtonClose",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BButtonClose"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
          "description": "Use BootstrapVue's <b-button> component for actions in forms, dialogs, and more. Includes support for a handful of contextual variations, sizes, states, and more.",
          "attributes": [
            {
              "name": "content",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"&times;\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "The content of the close button"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "ariaLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Close\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Sets the value of 'aria-label' attribute on the rendered element"
            },
            {
              "name": "textVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Applies one of the Bootstrap theme color variants to the text"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Emitted when non-disabled button clicked",
              "arguments": [
                {
                  "name": "mouseEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BBtnClose",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BBtnClose"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
          "description": "Use BootstrapVue's <b-button> component for actions in forms, dialogs, and more. Includes support for a handful of contextual variations, sizes, states, and more.\n\n*Alias for BButtonClose*",
          "attributes": [
            {
              "name": "content",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"&times;\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "The content of the close button"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "ariaLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Close\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Sets the value of 'aria-label' attribute on the rendered element"
            },
            {
              "name": "textVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Applies one of the Bootstrap theme color variants to the text"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
              "description": "Emitted when non-disabled button clicked",
              "arguments": [
                {
                  "name": "mouseEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/button/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BButtonGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BButtonGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-group/",
          "description": "Group a series of buttons together on a single line with <b-button-group>.",
          "attributes": [
            {
              "name": "vertical",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-group/",
              "type": "boolean",
              "description": "When set, rendered the button group in vertical mode"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-group/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-group/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "ariaRole",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"group\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-group/",
              "description": "Sets the ARIA attribute 'role' to a specific value"
            }
          ]
        },
        {
          "name": "BBtnGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BBtnGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-group/",
          "description": "Group a series of buttons together on a single line with <b-button-group>.\n\n*Alias for BButtonGroup*",
          "attributes": [
            {
              "name": "vertical",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-group/",
              "type": "boolean",
              "description": "When set, rendered the button group in vertical mode"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-group/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-group/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "ariaRole",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"group\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-group/",
              "description": "Sets the ARIA attribute 'role' to a specific value"
            }
          ]
        },
        {
          "name": "BButtonToolbar",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BButtonToolbar"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-toolbar/",
          "description": "Group a series of <b-button-group> and/or <b-input-group> together on a single line, with optional keyboard navigation.",
          "attributes": [
            {
              "name": "justify",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-toolbar/",
              "type": "boolean",
              "description": "Make the toolbar span the maximum available width, by increasing spacing between the button groups, input groups and dropdowns"
            },
            {
              "name": "keyNav",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-toolbar/",
              "type": "boolean",
              "description": "When set, enabled keyboard navigation mode for the toolbar. Do not set this prop when the toolbar has inputs"
            }
          ]
        },
        {
          "name": "BBtnToolbar",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BBtnToolbar"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-toolbar/",
          "description": "Group a series of <b-button-group> and/or <b-input-group> together on a single line, with optional keyboard navigation.\n\n*Alias for BButtonToolbar*",
          "attributes": [
            {
              "name": "justify",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-toolbar/",
              "type": "boolean",
              "description": "Make the toolbar span the maximum available width, by increasing spacing between the button groups, input groups and dropdowns"
            },
            {
              "name": "keyNav",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/button-toolbar/",
              "type": "boolean",
              "description": "When set, enabled keyboard navigation mode for the toolbar. Do not set this prop when the toolbar has inputs"
            }
          ]
        },
        {
          "name": "BCard",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCard"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
          "description": "A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options.",
          "attributes": [
            {
              "name": "bodyTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag for the body"
            },
            {
              "name": "bodyBgVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the body background"
            },
            {
              "name": "bodyBorderVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the body border"
            },
            {
              "name": "bodyTextVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the body text"
            },
            {
              "name": "bodyClass",
              "value": {
                "kind": "expression",
                "type": "string|object|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "CSS class (or classes) to apply to the body"
            },
            {
              "name": "title",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Text content to place in the title"
            },
            {
              "name": "titleTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"h4\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag for the title"
            },
            {
              "name": "subTitle",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Text content to place in the sub title"
            },
            {
              "name": "subTitleTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"h6\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag for the sub title"
            },
            {
              "name": "subTitleTextVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"muted\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the sub title text"
            },
            {
              "name": "overlay",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "When set, will overlay the card body on top of the image (if the card has an image)"
            },
            {
              "name": "headerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag for the header"
            },
            {
              "name": "headerBgVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the header background"
            },
            {
              "name": "headerBorderVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the header border"
            },
            {
              "name": "headerTextVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the header text"
            },
            {
              "name": "header",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Text content to place in the header"
            },
            {
              "name": "headerHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "HTML string content to place in the header. Use with caution"
            },
            {
              "name": "headerClass",
              "value": {
                "kind": "expression",
                "type": "string|object|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "CSS class (or classes) to apply to the header"
            },
            {
              "name": "footerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag for the footer"
            },
            {
              "name": "footerBgVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the footer background"
            },
            {
              "name": "footerBorderVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the footer border"
            },
            {
              "name": "footerTextVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the footer text"
            },
            {
              "name": "footer",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Text content to place in the footer"
            },
            {
              "name": "footerHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "HTML string content to place in the footer. Use with caution"
            },
            {
              "name": "footerClass",
              "value": {
                "kind": "expression",
                "type": "string|object|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "CSS class (or classes) to apply to the footer"
            },
            {
              "name": "imgSrc",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "URL for the optional image"
            },
            {
              "name": "imgAlt",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Value to set the image attribute 'alt'"
            },
            {
              "name": "imgTop",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image should appear at the top of the card"
            },
            {
              "name": "imgBottom",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image should appear at the bottom of the card"
            },
            {
              "name": "imgStart",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image should appear at the start (left) of the card"
            },
            {
              "name": "imgLeft",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image should appear at the start (left) of the card. Synonym for the 'left' prop"
            },
            {
              "name": "imgEnd",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image should appear at the end (right) of the card"
            },
            {
              "name": "imgRight",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image should appear at the end (right) of the card. Synonym for the 'right' prop"
            },
            {
              "name": "imgHeight",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "The value to set on the image's 'height' attribute"
            },
            {
              "name": "imgWidth",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "The value to set on the image's 'width' attribute"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "bgVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the background"
            },
            {
              "name": "borderVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the border"
            },
            {
              "name": "textVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the text"
            },
            {
              "name": "align",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Text alignment for the card's content: 'left', 'center' or 'right'"
            },
            {
              "name": "noBody",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Disable rendering of the default inner card-body element"
            }
          ],
          "slots": [
            {
              "name": "header",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "For custom rendering of header content"
            },
            {
              "name": "footer",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "For custom rendering of footer content"
            }
          ]
        },
        {
          "name": "BCardHeader",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCardHeader"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
          "description": "A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options.",
          "attributes": [
            {
              "name": "headerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag for the header"
            },
            {
              "name": "headerBgVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the header background"
            },
            {
              "name": "headerBorderVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the header border"
            },
            {
              "name": "headerTextVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the header text"
            },
            {
              "name": "header",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Text content to place in the header"
            },
            {
              "name": "headerHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "HTML string content to place in the header. Use with caution"
            },
            {
              "name": "headerClass",
              "value": {
                "kind": "expression",
                "type": "string|object|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "CSS class (or classes) to apply to the header"
            }
          ]
        },
        {
          "name": "BCardFooter",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCardFooter"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
          "description": "A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options.",
          "attributes": [
            {
              "name": "footerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag for the footer"
            },
            {
              "name": "footerBgVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the footer background"
            },
            {
              "name": "footerBorderVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the footer border"
            },
            {
              "name": "footerTextVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the footer text"
            },
            {
              "name": "footer",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Text content to place in the footer"
            },
            {
              "name": "footerHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "HTML string content to place in the footer. Use with caution"
            },
            {
              "name": "footerClass",
              "value": {
                "kind": "expression",
                "type": "string|object|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "CSS class (or classes) to apply to the footer"
            }
          ]
        },
        {
          "name": "BCardBody",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCardBody"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
          "description": "A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options.",
          "attributes": [
            {
              "name": "bodyTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag for the body"
            },
            {
              "name": "bodyBgVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the body background"
            },
            {
              "name": "bodyBorderVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the body border"
            },
            {
              "name": "bodyTextVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the body text"
            },
            {
              "name": "bodyClass",
              "value": {
                "kind": "expression",
                "type": "string|object|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "CSS class (or classes) to apply to the body"
            },
            {
              "name": "title",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Text content to place in the title"
            },
            {
              "name": "titleTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"h4\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag for the title"
            },
            {
              "name": "subTitle",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Text content to place in the sub title"
            },
            {
              "name": "subTitleTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"h6\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag for the sub title"
            },
            {
              "name": "subTitleTextVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"muted\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the sub title text"
            },
            {
              "name": "overlay",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "When set, will overlay the card body on top of the image (if the card has an image)"
            }
          ]
        },
        {
          "name": "BCardTitle",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCardTitle"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
          "description": "A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options.",
          "attributes": [
            {
              "name": "title",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Text content to place in the title"
            },
            {
              "name": "titleTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"h4\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag for the title"
            }
          ]
        },
        {
          "name": "BCardSubTitle",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCardSubTitle"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
          "description": "A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options.",
          "attributes": [
            {
              "name": "subTitle",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Text content to place in the sub title"
            },
            {
              "name": "subTitleTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"h6\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag for the sub title"
            },
            {
              "name": "subTitleTextVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"muted\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Applies one of the Bootstrap theme color variants to the sub title text"
            }
          ]
        },
        {
          "name": "BCardImg",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCardImg"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
          "description": "A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options.",
          "attributes": [
            {
              "name": "src",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "required": true,
              "description": "URL to set for the 'src' attribute"
            },
            {
              "name": "alt",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Value to set for the 'alt' attribute"
            },
            {
              "name": "top",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image will be placed at the top of the card"
            },
            {
              "name": "bottom",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image will be placed at the bottom of the card"
            },
            {
              "name": "start",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image will be placed at the start (left) of the card"
            },
            {
              "name": "left",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image will be placed at the start (left) of the card. Synonym for the 'left' prop"
            },
            {
              "name": "end",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image will be placed at the end (right) of the card"
            },
            {
              "name": "right",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image will be placed at the end (right) of the card. Synonym for the 'right' prop"
            },
            {
              "name": "height",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "The value to set on the image's 'height' attribute"
            },
            {
              "name": "width",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "The value to set on the image's 'width' attribute"
            }
          ]
        },
        {
          "name": "BCardImgLazy",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCardImgLazy"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
          "description": "A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options.",
          "attributes": [
            {
              "name": "src",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "required": true,
              "description": "URL to set for the 'src' attribute"
            },
            {
              "name": "srcset",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/"
            },
            {
              "name": "sizes",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/"
            },
            {
              "name": "alt",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Value to set for the 'alt' attribute"
            },
            {
              "name": "width",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "The value to set on the image's 'width' attribute"
            },
            {
              "name": "height",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "The value to set on the image's 'height' attribute"
            },
            {
              "name": "blankSrc",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "URL of placeholder image. If not set, an SVG placeholder placeholder will be used"
            },
            {
              "name": "blankColor",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"transparent\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "CSS color of the blank SVG placeholder image. Has no effect if 'blank-src' is set"
            },
            {
              "name": "blankWidth",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Value of the 'width' attribute for the placeholder image"
            },
            {
              "name": "blankHeight",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Value of the 'height' attribute for the placeholder image"
            },
            {
              "name": "show",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "If set to true, will force show the image specified via the 'src' prop"
            },
            {
              "name": "offset",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "360",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Number of pixels away from the viewport edge before the lazy image is loaded"
            },
            {
              "name": "top",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image will be placed at the top of the card"
            },
            {
              "name": "bottom",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image will be placed at the bottom of the card"
            },
            {
              "name": "start",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image will be placed at the start (left) of the card"
            },
            {
              "name": "left",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image will be placed at the start (left) of the card. Synonym for the 'left' prop"
            },
            {
              "name": "end",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image will be placed at the end (right) of the card"
            },
            {
              "name": "right",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "Set if the image will be placed at the end (right) of the card. Synonym for the 'right' prop"
            }
          ]
        },
        {
          "name": "BCardText",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCardText"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
          "description": "A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options.",
          "attributes": [
            {
              "name": "textTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"p\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag for the text content"
            }
          ]
        },
        {
          "name": "BCardGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCardGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
          "description": "A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "deck",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "When set renders the card group with gutters between cards"
            },
            {
              "name": "columns",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/card/",
              "type": "boolean",
              "description": "When set, renders the card group in a masonry-like columnar style"
            }
          ]
        },
        {
          "name": "BCarousel",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCarousel"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
          "description": "The <b-carousel> component is a slideshow for cycling through a series of content, built with CSS 3D transforms. It works with a series of images, text, or custom markup.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "labelPrev",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Previous Slide\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Sets the 'aria-label' value for the previous slide control"
            },
            {
              "name": "labelNext",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Next Slide\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Sets the 'aria-label' value for the next slide control"
            },
            {
              "name": "labelGotoSlide",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Goto Slide\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Sets the prefix for the 'aria-label' on the slide indicator controls. Will be suffixed with the slide number (1 indexed)"
            },
            {
              "name": "labelIndicators",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Select a slide to display\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Sets the 'aria-label' on the indicator controls wrapper"
            },
            {
              "name": "interval",
              "value": {
                "kind": "expression",
                "type": "number"
              },
              "default": "5000",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Set the delay time (in milliseconds) between slides"
            },
            {
              "name": "indicators",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "type": "boolean",
              "description": "Enable the indicator buttons for jumping to specific slides"
            },
            {
              "name": "controls",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "type": "boolean",
              "description": "Enable the previous and next controls"
            },
            {
              "name": "noAnimation",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "type": "boolean",
              "description": "When set, disables animation when transitioning between slides"
            },
            {
              "name": "fade",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "type": "boolean",
              "description": "When set, changes the slide animation to a crossfade instead of a sliding effect"
            },
            {
              "name": "noWrap",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "type": "boolean",
              "description": "Do not restart the slide show when then end is reached"
            },
            {
              "name": "noTouch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "type": "boolean",
              "description": "Disable controlling the slides via touch swipes"
            },
            {
              "name": "noHoverPause",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "type": "boolean",
              "description": "When set, disables the pausing of hte slide show when the current slide is hovered"
            },
            {
              "name": "imgWidth",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Set the default image 'width' attribute for all b-tab children"
            },
            {
              "name": "imgHeight",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Set the default image 'height' attribute for all b-tab children"
            },
            {
              "name": "background",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Set the CSS color of the carousel's background"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "number"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "The currently active slide (zero-indexed)"
            }
          ],
          "vue-model": {
            "prop": "value",
            "event": "input"
          },
          "events": [
            {
              "name": "sliding-start",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Emitted when transitioning to a new slide has started.",
              "arguments": [
                {
                  "name": "slide",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
                  "description": "Slide number that is being slid to.",
                  "type": "number"
                }
              ]
            },
            {
              "name": "sliding-end",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Emitted when transitioning to a new slide has ended.",
              "arguments": [
                {
                  "name": "slide",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
                  "description": "Slide number that was slid to.",
                  "type": "number"
                }
              ]
            }
          ]
        },
        {
          "name": "BCarouselSlide",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCarouselSlide"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
          "description": "The <b-carousel> component is a slideshow for cycling through a series of content, built with CSS 3D transforms. It works with a series of images, text, or custom markup.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "imgSrc",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Sets the URL of the image"
            },
            {
              "name": "imgAlt",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Sets the value of the 'alt' attribute on the image"
            },
            {
              "name": "imgWidth",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Set the default image 'width' attribute for all b-tab children"
            },
            {
              "name": "imgHeight",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Set the default image 'height' attribute for all b-tab children"
            },
            {
              "name": "imgBlank",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "type": "boolean",
              "description": "If set, will render a blank image instead of the img-src"
            },
            {
              "name": "imgBlankColor",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"transparent\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Set the CSS color to use as the fill of the blank image"
            },
            {
              "name": "contentVisibleUp",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Specify the breakpoint that the textual content will start to be shown. Leave at default to always show the textual content"
            },
            {
              "name": "contentTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Specify the HTML tag to render instead of the default tag for the content wrapper"
            },
            {
              "name": "caption",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Text content to place in the caption"
            },
            {
              "name": "captionHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "HTML string content to place in the caption. Use with caution"
            },
            {
              "name": "captionTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"h3\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Specify the HTML tag to render instead of the default tag for the caption wrapper"
            },
            {
              "name": "text",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Text content to place in the text of the slide"
            },
            {
              "name": "textHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "HTML string content to place in the text of the slide. Use with caution"
            },
            {
              "name": "textTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"p\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Specify the HTML tag to render instead of the default tag for the text content"
            },
            {
              "name": "background",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "CSS color to use as the slide's background color"
            }
          ],
          "slots": [
            {
              "name": "img",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/carousel/",
              "description": "Slot for img element or image component"
            }
          ]
        },
        {
          "name": "BCollapse",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCollapse"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
          "description": "Easily toggle content visibility on your pages. Includes support for making accordions.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "isNav",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
              "type": "boolean",
              "description": "When set, signifies that hte collapse is bart of a navbar, enabling certain features for navbar support"
            },
            {
              "name": "accordion",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
              "description": "The name of the accordion group that this collapse belongs to"
            },
            {
              "name": "visible",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
              "type": "boolean",
              "description": "When 'true', expands the collapse"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "appear",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
              "type": "boolean",
              "description": "When set, and prop 'visible' is true on mount, will animate on initial mount"
            }
          ],
          "vue-model": {
            "prop": "visible",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
              "description": "Used to update the v-model",
              "arguments": [
                {
                  "name": "visible",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
                  "description": "Will be true if the collapse is visible",
                  "type": "boolean"
                }
              ]
            },
            {
              "name": "show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
              "description": "Emitted when collapse has started to open"
            },
            {
              "name": "shown",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
              "description": "Emitted when collapse has finished opening"
            },
            {
              "name": "hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
              "description": "Emitted when collapse has started to close"
            },
            {
              "name": "hidden",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
              "description": "Emitted when collapse has finished closing"
            },
            {
              "name": "bv::collapse::state",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
              "description": "Emitted on $root when collapse has changed its state",
              "arguments": [
                {
                  "name": "id",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
                  "description": "changed state collapse id",
                  "type": "string"
                },
                {
                  "name": "state",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
                  "description": "true or false, i.e. opened or closed",
                  "type": "boolean"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "default",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
              "vue-properties": [
                {
                  "name": "visible",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
                  "description": "Visible state of the collapse: true if the collapse is visible",
                  "type": "boolean"
                },
                {
                  "name": "close",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
                  "description": "Method for closing the collapse",
                  "type": "function"
                }
              ]
            }
          ]
        },
        {
          "name": "BDropdown",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDropdown"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "text",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Text to place in the toggle button, or in the split button is split mode"
            },
            {
              "name": "html",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "HTML string to place in the toggle button, or in the split button is split mode. Use with caution"
            },
            {
              "name": "dropup",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, positions the menu on the top of the button"
            },
            {
              "name": "dropright",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, positions the menu to the right of the button"
            },
            {
              "name": "dropleft",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, positions the menu to the left of the button"
            },
            {
              "name": "right",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "Align the right edge of the menu with the right of the button"
            },
            {
              "name": "offset",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Specify the number of pixels to shift the menu by. Negative values supported"
            },
            {
              "name": "noFlip",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "Prevent the menu from auto flipping positions"
            },
            {
              "name": "lazy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, will only mount the menu content into the DOM when the menu is open"
            },
            {
              "name": "popperOpts",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Additional configuration to pass to Popper.js"
            },
            {
              "name": "boundary",
              "value": {
                "kind": "expression",
                "type": "string|HTMLElement"
              },
              "default": "\"scrollParent\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "The boundary constraint of the menu: 'scrollParent', 'window', 'viewport', or a reference to an HTMLElement"
            },
            {
              "name": "toggleText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Toggle Dropdown\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "ARIA label (sr-only) to set on the toggle when in split mode"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "block",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "Renders a 100% width toggle button (expands to the width of its parent container)"
            },
            {
              "name": "menuClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "CSS class (or classes) to add to the menu container"
            },
            {
              "name": "toggleTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"button\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Specify the HTML tag to render instead of the default tag. Use with caution"
            },
            {
              "name": "toggleClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "CSS class (or classes) to add to the toggle button"
            },
            {
              "name": "noCaret",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "Hide the caret indicator on the toggle button"
            },
            {
              "name": "split",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, renders a split button dropdown"
            },
            {
              "name": "splitHref",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Denotes the target URL of the link for the split button"
            },
            {
              "name": "splitTo",
              "value": {
                "kind": "expression",
                "type": "string|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Denotes the target route of the split button. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object"
            },
            {
              "name": "splitVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the split button. Defaults to the 'variant' prop value"
            },
            {
              "name": "splitClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "CSS class (or classes) to add to the split button"
            },
            {
              "name": "splitButtonType",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"button\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Value to place in the 'type' attribute on the split button: 'button', 'submit', 'reset'"
            },
            {
              "name": "role",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"menu\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Sets the ARIA attribute 'role' to a specific value"
            }
          ],
          "events": [
            {
              "name": "show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted just before dropdown is shown. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel show.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "shown",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted when dropdown is shown."
            },
            {
              "name": "hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted just before dropdown is hidden. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel hide.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "hidden",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted when dropdown is hidden."
            },
            {
              "name": "toggle",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted when toggle button is clicked."
            },
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted when split button is clicked in split mode.",
              "arguments": [
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            },
            {
              "name": "bv::dropdown::show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted on $root just before dropdown is shown. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel show.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "bv::dropdown::hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted on $root just before dropdown is hidden. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel hide.",
                  "type": "BvEvent"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "button-content",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Can be used to implement custom text with icons and more styling."
            },
            {
              "name": "default",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Optionally scoped default slot for dropdown menu content",
              "vue-properties": [
                {
                  "name": "hide",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "Can be used to close the dropdown menu. Accepts an optional boolean argument, which if true returns focus to the toggle button.",
                  "type": "function"
                }
              ]
            }
          ]
        },
        {
          "name": "BDd",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDd"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.\n\n*Alias for BDropdown*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "text",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Text to place in the toggle button, or in the split button is split mode"
            },
            {
              "name": "html",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "HTML string to place in the toggle button, or in the split button is split mode. Use with caution"
            },
            {
              "name": "dropup",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, positions the menu on the top of the button"
            },
            {
              "name": "dropright",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, positions the menu to the right of the button"
            },
            {
              "name": "dropleft",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, positions the menu to the left of the button"
            },
            {
              "name": "right",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "Align the right edge of the menu with the right of the button"
            },
            {
              "name": "offset",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Specify the number of pixels to shift the menu by. Negative values supported"
            },
            {
              "name": "noFlip",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "Prevent the menu from auto flipping positions"
            },
            {
              "name": "lazy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, will only mount the menu content into the DOM when the menu is open"
            },
            {
              "name": "popperOpts",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Additional configuration to pass to Popper.js"
            },
            {
              "name": "boundary",
              "value": {
                "kind": "expression",
                "type": "string|HTMLElement"
              },
              "default": "\"scrollParent\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "The boundary constraint of the menu: 'scrollParent', 'window', 'viewport', or a reference to an HTMLElement"
            },
            {
              "name": "toggleText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Toggle Dropdown\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "ARIA label (sr-only) to set on the toggle when in split mode"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "block",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "Renders a 100% width toggle button (expands to the width of its parent container)"
            },
            {
              "name": "menuClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "CSS class (or classes) to add to the menu container"
            },
            {
              "name": "toggleTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"button\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Specify the HTML tag to render instead of the default tag. Use with caution"
            },
            {
              "name": "toggleClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "CSS class (or classes) to add to the toggle button"
            },
            {
              "name": "noCaret",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "Hide the caret indicator on the toggle button"
            },
            {
              "name": "split",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, renders a split button dropdown"
            },
            {
              "name": "splitHref",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Denotes the target URL of the link for the split button"
            },
            {
              "name": "splitTo",
              "value": {
                "kind": "expression",
                "type": "string|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Denotes the target route of the split button. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object"
            },
            {
              "name": "splitVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the split button. Defaults to the 'variant' prop value"
            },
            {
              "name": "splitClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "CSS class (or classes) to add to the split button"
            },
            {
              "name": "splitButtonType",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"button\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Value to place in the 'type' attribute on the split button: 'button', 'submit', 'reset'"
            },
            {
              "name": "role",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"menu\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Sets the ARIA attribute 'role' to a specific value"
            }
          ],
          "events": [
            {
              "name": "show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted just before dropdown is shown. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel show.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "shown",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted when dropdown is shown."
            },
            {
              "name": "hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted just before dropdown is hidden. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel hide.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "hidden",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted when dropdown is hidden."
            },
            {
              "name": "toggle",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted when toggle button is clicked."
            },
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted when split button is clicked in split mode.",
              "arguments": [
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            },
            {
              "name": "bv::dropdown::show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted on $root just before dropdown is shown. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel show.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "bv::dropdown::hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted on $root just before dropdown is hidden. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel hide.",
                  "type": "BvEvent"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "button-content",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Can be used to implement custom text with icons and more styling."
            },
            {
              "name": "default",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Optionally scoped default slot for dropdown menu content",
              "vue-properties": [
                {
                  "name": "hide",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "Can be used to close the dropdown menu. Accepts an optional boolean argument, which if true returns focus to the toggle button.",
                  "type": "function"
                }
              ]
            }
          ]
        },
        {
          "name": "BDropdownItem",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDropdownItem"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.",
          "attributes": [
            {
              "name": "href",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Denotes the target URL of the link for standard a links"
            },
            {
              "name": "rel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Sets the 'rel' attribute on the rendered link"
            },
            {
              "name": "target",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"_self\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Sets the 'target' attribute on the rendered link"
            },
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "to",
              "value": {
                "kind": "expression",
                "type": "string|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Denotes the target route of the link. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object"
            },
            {
              "name": "append",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "router-link prop: Setting append prop always appends the relative path to the current path"
            },
            {
              "name": "replace",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "router-link prop: Setting the replace prop will call 'router.replace()' instead of 'router.push()' when clicked, so the navigation will not leave a history record"
            },
            {
              "name": "event",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "\"click\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Specify the event that triggers the link. In most cases you should leave this as the default"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "exact",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "router-link prop: The default active class matching behavior is inclusive match. Setting this prop forces the mode to exactly match the route"
            },
            {
              "name": "exactActiveClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active with exact match. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "routerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"a\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Specify which tag to render, and it will still listen to click events for navigation. 'router-tag' translates to the tag prop on the final rendered router-link. Typically you should use the default value"
            },
            {
              "name": "noPrefetch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "nuxt-link prop: To improve the responsiveness of your Nuxt.js applications, when the link will be displayed within the viewport, Nuxt.js will automatically prefetch the code splitted page. Setting 'no-prefetch' will disabled this feature for the specific link"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted when item is clicked.",
              "arguments": [
                {
                  "name": "mouseEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BDdItem",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDdItem"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.\n\n*Alias for BDropdownItem*",
          "attributes": [
            {
              "name": "href",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Denotes the target URL of the link for standard a links"
            },
            {
              "name": "rel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Sets the 'rel' attribute on the rendered link"
            },
            {
              "name": "target",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"_self\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Sets the 'target' attribute on the rendered link"
            },
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "to",
              "value": {
                "kind": "expression",
                "type": "string|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Denotes the target route of the link. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object"
            },
            {
              "name": "append",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "router-link prop: Setting append prop always appends the relative path to the current path"
            },
            {
              "name": "replace",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "router-link prop: Setting the replace prop will call 'router.replace()' instead of 'router.push()' when clicked, so the navigation will not leave a history record"
            },
            {
              "name": "event",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "\"click\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Specify the event that triggers the link. In most cases you should leave this as the default"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "exact",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "router-link prop: The default active class matching behavior is inclusive match. Setting this prop forces the mode to exactly match the route"
            },
            {
              "name": "exactActiveClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active with exact match. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "routerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"a\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Specify which tag to render, and it will still listen to click events for navigation. 'router-tag' translates to the tag prop on the final rendered router-link. Typically you should use the default value"
            },
            {
              "name": "noPrefetch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "nuxt-link prop: To improve the responsiveness of your Nuxt.js applications, when the link will be displayed within the viewport, Nuxt.js will automatically prefetch the code splitted page. Setting 'no-prefetch' will disabled this feature for the specific link"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted when item is clicked.",
              "arguments": [
                {
                  "name": "mouseEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BDropdownItemButton",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDropdownItemButton"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.",
          "attributes": [
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"active\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted when button item is clicked.",
              "arguments": [
                {
                  "name": "mouseEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BDropdownItemBtn",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDropdownItemBtn"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.\n\n*Alias for BDropdownItemButton*",
          "attributes": [
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"active\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted when button item is clicked.",
              "arguments": [
                {
                  "name": "mouseEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BDdItemButton",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDdItemButton"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.\n\n*Alias for BDropdownItemButton*",
          "attributes": [
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"active\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted when button item is clicked.",
              "arguments": [
                {
                  "name": "mouseEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BDdItemBtn",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDdItemBtn"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.\n\n*Alias for BDropdownItemButton*",
          "attributes": [
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"active\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Emitted when button item is clicked.",
              "arguments": [
                {
                  "name": "mouseEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BDropdownDivider",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDropdownDivider"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"hr\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Specify the HTML tag to render instead of the default tag"
            }
          ]
        },
        {
          "name": "BDdDivider",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDdDivider"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.\n\n*Alias for BDropdownDivider*",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"hr\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Specify the HTML tag to render instead of the default tag"
            }
          ]
        },
        {
          "name": "BDropdownForm",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDropdownForm"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "inline",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, the form will be in inline mode which display labels, form controls, and buttons on a single horizontal row"
            },
            {
              "name": "novalidate",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, disables browser native HTML5 validation on controls in the form"
            },
            {
              "name": "validated",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, adds the Bootstrap class 'was-validated' on the form, triggering the native browser validation states"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "formClass",
              "value": {
                "kind": "expression",
                "type": "string|object|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "CSS class (or classes) to add to the form"
            }
          ]
        },
        {
          "name": "BDdForm",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDdForm"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.\n\n*Alias for BDropdownForm*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "inline",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, the form will be in inline mode which display labels, form controls, and buttons on a single horizontal row"
            },
            {
              "name": "novalidate",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, disables browser native HTML5 validation on controls in the form"
            },
            {
              "name": "validated",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set, adds the Bootstrap class 'was-validated' on the form, triggering the native browser validation states"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "formClass",
              "value": {
                "kind": "expression",
                "type": "string|object|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "CSS class (or classes) to add to the form"
            }
          ]
        },
        {
          "name": "BDropdownText",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDropdownText"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"p\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            }
          ]
        },
        {
          "name": "BDdText",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDdText"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.\n\n*Alias for BDropdownText*",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"p\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            }
          ]
        },
        {
          "name": "BDropdownGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDropdownGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "header",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Text content to place in the header"
            },
            {
              "name": "headerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"header\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Specify the HTML tag to render instead of the default tag for the header"
            },
            {
              "name": "headerVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the header"
            },
            {
              "name": "headerClasses",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "CSS class (or classes) to add to the header"
            },
            {
              "name": "ariaDescribedby",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "The ID of the element that provides additional context for this component. Used as the value for the 'aria-describedby' attribute"
            }
          ],
          "slots": [
            {
              "name": "header",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Optional header content for the dropdown group."
            }
          ]
        },
        {
          "name": "BDdGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDdGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.\n\n*Alias for BDropdownGroup*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "header",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Text content to place in the header"
            },
            {
              "name": "headerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"header\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Specify the HTML tag to render instead of the default tag for the header"
            },
            {
              "name": "headerVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the header"
            },
            {
              "name": "headerClasses",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "CSS class (or classes) to add to the header"
            },
            {
              "name": "ariaDescribedby",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "The ID of the element that provides additional context for this component. Used as the value for the 'aria-describedby' attribute"
            }
          ],
          "slots": [
            {
              "name": "header",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Optional header content for the dropdown group."
            }
          ]
        },
        {
          "name": "BDropdownHeader",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDropdownHeader"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"header\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            }
          ]
        },
        {
          "name": "BDdHeader",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDdHeader"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
          "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.\n\n*Alias for BDropdownHeader*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"header\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/dropdown/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            }
          ]
        },
        {
          "name": "BEmbed",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BEmbed"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/embed/",
          "description": "Create responsive video or slideshow embeds based on the width of the parent by creating an intrinsic ratio that scales on any device.",
          "attributes": [
            {
              "name": "type",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"iframe\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/embed/",
              "description": "Type of embed. Possible values are 'iframe', 'video', 'embed' and 'object'"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/embed/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "aspect",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"16by9\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/embed/",
              "description": "Aspect ratio of the embed. Supported values are '16by9', '21by9', '4by3', and '1by1' and are translated to CSS classes. Refer to the docs for more details"
            }
          ]
        },
        {
          "name": "BForm",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BForm"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
          "description": "Form component and form helper components that optionally supports inline form styles and validation states",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "inline",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "type": "boolean",
              "description": "When set, the form will be in inline mode which display labels, form controls, and buttons on a single horizontal row"
            },
            {
              "name": "novalidate",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "type": "boolean",
              "description": "When set, disables browser native HTML5 validation on controls in the form"
            },
            {
              "name": "validated",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "type": "boolean",
              "description": "When set, adds the Bootstrap class 'was-validated' on the form, triggering the native browser validation states"
            }
          ],
          "events": [
            {
              "name": "submit",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Emitted when the form is being submitted",
              "arguments": [
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
                  "description": "Native submit event.",
                  "type": "Event"
                }
              ]
            }
          ]
        },
        {
          "name": "BFormText",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormText"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
          "description": "Form component and form helper components that optionally supports inline form styles and validation states",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"small\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "textVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"muted\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Applies one of the Bootstrap theme color variants to the text"
            },
            {
              "name": "inline",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "type": "boolean",
              "description": "When set, renders the help text as an inline element, rather than a block element"
            }
          ]
        },
        {
          "name": "BFormInvalidFeedback",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormInvalidFeedback"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
          "description": "Form component and form helper components that optionally supports inline form styles and validation states",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "tooltip",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "type": "boolean",
              "description": "Renders the feedback text in a rudimentary tooltip style"
            },
            {
              "name": "forceShow",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "type": "boolean",
              "description": "Shows the feedback text, regardless of the value of the 'state' prop"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "type": "boolean",
              "description": "When explicitly 'false', forces the feedback to show"
            },
            {
              "name": "ariaLive",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "When the rendered element is an aria-live region (for screen reader users), set to either 'polite' or 'assertive'"
            },
            {
              "name": "role",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Sets the ARIA attribute 'role' to a specific value"
            }
          ]
        },
        {
          "name": "BFormValidFeedback",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormValidFeedback"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
          "description": "Form component and form helper components that optionally supports inline form styles and validation states",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "tooltip",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "type": "boolean",
              "description": "Renders the feedback text in a rudimentary tooltip style"
            },
            {
              "name": "forceShow",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "type": "boolean",
              "description": "Shows the feedback text, regardless of the value of the 'state' prop"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "type": "boolean",
              "description": "When explicitly 'true', forces the feedback to show"
            },
            {
              "name": "ariaLive",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "When the rendered element is an aria-live region (for screen reader users), set to either 'polite' or 'assertive'"
            },
            {
              "name": "role",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Sets the ARIA attribute 'role' to a specific value"
            }
          ]
        },
        {
          "name": "BFormDatalist",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormDatalist"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
          "description": "Form component and form helper components that optionally supports inline form styles and validation states",
          "attributes": [
            {
              "name": "options",
              "value": {
                "kind": "expression",
                "type": "any[]|object"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Array of items to render in the component"
            },
            {
              "name": "valueField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"value\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Field name in the 'options' array that should be used for the value"
            },
            {
              "name": "textField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Field name in the 'options' array that should be used for the text label"
            },
            {
              "name": "htmlField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"html\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Field name in the 'options' array that should be used for the html label instead of text field. Use with caution."
            },
            {
              "name": "disabledField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"disabled\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Field name in the 'options' array that should be used for the disabled state"
            },
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "required": true,
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            }
          ]
        },
        {
          "name": "BDatalist",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BDatalist"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
          "description": "Form component and form helper components that optionally supports inline form styles and validation states\n\n*Alias for BFormDatalist*",
          "attributes": [
            {
              "name": "options",
              "value": {
                "kind": "expression",
                "type": "any[]|object"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Array of items to render in the component"
            },
            {
              "name": "valueField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"value\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Field name in the 'options' array that should be used for the value"
            },
            {
              "name": "textField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Field name in the 'options' array that should be used for the text label"
            },
            {
              "name": "htmlField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"html\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Field name in the 'options' array that should be used for the html label instead of text field. Use with caution."
            },
            {
              "name": "disabledField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"disabled\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "description": "Field name in the 'options' array that should be used for the disabled state"
            },
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form/",
              "required": true,
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            }
          ]
        },
        {
          "name": "BFormCheckboxGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormCheckboxGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
          "description": "Custom checkbox input and checkbox group to replace the browser default checkbox input, built on top of semantic and accessible markup. Optionally supports switch styling.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "validated",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, adds the Bootstrap class 'was-validated' to the group wrapper"
            },
            {
              "name": "ariaInvalid",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Sets the 'aria-invalid' attribute value on the wrapper element. When not provided, the 'state' prop will control the attribute"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkbox group in stacked mode"
            },
            {
              "name": "plain",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Render the form control in plain mode, rather than custom styled mode"
            },
            {
              "name": "buttons",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renderes the checkboxes in this group with button styling"
            },
            {
              "name": "buttonVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Specifies the Bootstrap contextual color theme variant the apply to the button style checkboxes"
            },
            {
              "name": "options",
              "value": {
                "kind": "expression",
                "type": "any[]|object"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Array of items to render in the component"
            },
            {
              "name": "valueField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"value\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Field name in the 'options' array that should be used for the value"
            },
            {
              "name": "textField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Field name in the 'options' array that should be used for the text label"
            },
            {
              "name": "htmlField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"html\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Field name in the 'options' array that should be used for the html label instead of text field. Use with caution."
            },
            {
              "name": "disabledField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"disabled\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Field name in the 'options' array that should be used for the disabled state"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "switches",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkboxes in the group with switch styling"
            },
            {
              "name": "checked",
              "value": {
                "kind": "expression",
                "type": "any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "The current value of the checked checkboxes in the group. Must be an array when there are multiple checkboxes"
            }
          ],
          "vue-model": {
            "prop": "checked",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Emitted when the checked value is changed",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
                  "description": "Value of checkboxes. Value will be an array.",
                  "type": "any[]"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Emitted when selected value(s) is changed due to user interaction",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
                  "description": "Value of checkboxes. Value will be an array.",
                  "type": "any[]"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "first",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Slot to place b-form-checks so that they appear before checks generated from options prop"
            }
          ]
        },
        {
          "name": "BCheckboxGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCheckboxGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
          "description": "Custom checkbox input and checkbox group to replace the browser default checkbox input, built on top of semantic and accessible markup. Optionally supports switch styling.\n\n*Alias for BFormCheckboxGroup*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "validated",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, adds the Bootstrap class 'was-validated' to the group wrapper"
            },
            {
              "name": "ariaInvalid",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Sets the 'aria-invalid' attribute value on the wrapper element. When not provided, the 'state' prop will control the attribute"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkbox group in stacked mode"
            },
            {
              "name": "plain",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Render the form control in plain mode, rather than custom styled mode"
            },
            {
              "name": "buttons",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renderes the checkboxes in this group with button styling"
            },
            {
              "name": "buttonVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Specifies the Bootstrap contextual color theme variant the apply to the button style checkboxes"
            },
            {
              "name": "options",
              "value": {
                "kind": "expression",
                "type": "any[]|object"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Array of items to render in the component"
            },
            {
              "name": "valueField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"value\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Field name in the 'options' array that should be used for the value"
            },
            {
              "name": "textField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Field name in the 'options' array that should be used for the text label"
            },
            {
              "name": "htmlField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"html\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Field name in the 'options' array that should be used for the html label instead of text field. Use with caution."
            },
            {
              "name": "disabledField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"disabled\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Field name in the 'options' array that should be used for the disabled state"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "switches",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkboxes in the group with switch styling"
            },
            {
              "name": "checked",
              "value": {
                "kind": "expression",
                "type": "any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "The current value of the checked checkboxes in the group. Must be an array when there are multiple checkboxes"
            }
          ],
          "vue-model": {
            "prop": "checked",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Emitted when the checked value is changed",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
                  "description": "Value of checkboxes. Value will be an array.",
                  "type": "any[]"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Emitted when selected value(s) is changed due to user interaction",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
                  "description": "Value of checkboxes. Value will be an array.",
                  "type": "any[]"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "first",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Slot to place b-form-checks so that they appear before checks generated from options prop"
            }
          ]
        },
        {
          "name": "BCheckGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCheckGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
          "description": "Custom checkbox input and checkbox group to replace the browser default checkbox input, built on top of semantic and accessible markup. Optionally supports switch styling.\n\n*Alias for BFormCheckboxGroup*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "validated",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, adds the Bootstrap class 'was-validated' to the group wrapper"
            },
            {
              "name": "ariaInvalid",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Sets the 'aria-invalid' attribute value on the wrapper element. When not provided, the 'state' prop will control the attribute"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkbox group in stacked mode"
            },
            {
              "name": "plain",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Render the form control in plain mode, rather than custom styled mode"
            },
            {
              "name": "buttons",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renderes the checkboxes in this group with button styling"
            },
            {
              "name": "buttonVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Specifies the Bootstrap contextual color theme variant the apply to the button style checkboxes"
            },
            {
              "name": "options",
              "value": {
                "kind": "expression",
                "type": "any[]|object"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Array of items to render in the component"
            },
            {
              "name": "valueField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"value\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Field name in the 'options' array that should be used for the value"
            },
            {
              "name": "textField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Field name in the 'options' array that should be used for the text label"
            },
            {
              "name": "htmlField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"html\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Field name in the 'options' array that should be used for the html label instead of text field. Use with caution."
            },
            {
              "name": "disabledField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"disabled\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Field name in the 'options' array that should be used for the disabled state"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "switches",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkboxes in the group with switch styling"
            },
            {
              "name": "checked",
              "value": {
                "kind": "expression",
                "type": "any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "The current value of the checked checkboxes in the group. Must be an array when there are multiple checkboxes"
            }
          ],
          "vue-model": {
            "prop": "checked",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Emitted when the checked value is changed",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
                  "description": "Value of checkboxes. Value will be an array.",
                  "type": "any[]"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Emitted when selected value(s) is changed due to user interaction",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
                  "description": "Value of checkboxes. Value will be an array.",
                  "type": "any[]"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "first",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Slot to place b-form-checks so that they appear before checks generated from options prop"
            }
          ]
        },
        {
          "name": "BFormCheckbox",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormCheckbox"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
          "description": "Custom checkbox input and checkbox group to replace the browser default checkbox input, built on top of semantic and accessible markup. Optionally supports switch styling.",
          "attributes": [
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "true",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Value returned when this checkbox is checked"
            },
            {
              "name": "checked",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "The current value of the checkbox(es). Must be an array when there are multiple checkboxes bound to the same v-model"
            },
            {
              "name": "inline",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkbox as an inline element rather than as a 100% width block"
            },
            {
              "name": "plain",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Render the form control in plain mode, rather than custom styled mode"
            },
            {
              "name": "button",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkbox with the appearance of a button"
            },
            {
              "name": "buttonVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Applies on of Bootstrap's theme colors when in 'button' mode"
            },
            {
              "name": "ariaLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Sets the value of 'aria-label' attribute on the rendered element"
            },
            {
              "name": "ariaLabelledby",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "The ID of the element that provides a label for this component. Used as the value for the 'aria-labelledby' attribute"
            },
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "uncheckedValue",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Value returned when this checkbox is unchecked. Note not applicable when multiple checkboxes bound to the same v-model array"
            },
            {
              "name": "indeterminate",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Renders the checkbox in an indeterminate state. Syncable via the .sync modifier"
            },
            {
              "name": "switch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkbox with the appearance of a switch"
            }
          ],
          "vue-model": {
            "prop": "checked",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Emitted when the selected value(s) is changed",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
                  "description": "Value of checkbox(es). When bound to multiple checkboxes, value will be an array.",
                  "type": "boolean|string|number|object|any[]"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Emitted when selected value(s) is changed due to user interaction",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
                  "description": "Value of checkbox(es). When bound to multiple checkboxes, value will be an array.",
                  "type": "boolean|string|number|object|any[]"
                }
              ]
            }
          ]
        },
        {
          "name": "BCheckbox",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCheckbox"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
          "description": "Custom checkbox input and checkbox group to replace the browser default checkbox input, built on top of semantic and accessible markup. Optionally supports switch styling.\n\n*Alias for BFormCheckbox*",
          "attributes": [
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "true",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Value returned when this checkbox is checked"
            },
            {
              "name": "checked",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "The current value of the checkbox(es). Must be an array when there are multiple checkboxes bound to the same v-model"
            },
            {
              "name": "inline",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkbox as an inline element rather than as a 100% width block"
            },
            {
              "name": "plain",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Render the form control in plain mode, rather than custom styled mode"
            },
            {
              "name": "button",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkbox with the appearance of a button"
            },
            {
              "name": "buttonVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Applies on of Bootstrap's theme colors when in 'button' mode"
            },
            {
              "name": "ariaLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Sets the value of 'aria-label' attribute on the rendered element"
            },
            {
              "name": "ariaLabelledby",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "The ID of the element that provides a label for this component. Used as the value for the 'aria-labelledby' attribute"
            },
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "uncheckedValue",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Value returned when this checkbox is unchecked. Note not applicable when multiple checkboxes bound to the same v-model array"
            },
            {
              "name": "indeterminate",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Renders the checkbox in an indeterminate state. Syncable via the .sync modifier"
            },
            {
              "name": "switch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkbox with the appearance of a switch"
            }
          ],
          "vue-model": {
            "prop": "checked",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Emitted when the selected value(s) is changed",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
                  "description": "Value of checkbox(es). When bound to multiple checkboxes, value will be an array.",
                  "type": "boolean|string|number|object|any[]"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Emitted when selected value(s) is changed due to user interaction",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
                  "description": "Value of checkbox(es). When bound to multiple checkboxes, value will be an array.",
                  "type": "boolean|string|number|object|any[]"
                }
              ]
            }
          ]
        },
        {
          "name": "BCheck",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCheck"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
          "description": "Custom checkbox input and checkbox group to replace the browser default checkbox input, built on top of semantic and accessible markup. Optionally supports switch styling.\n\n*Alias for BFormCheckbox*",
          "attributes": [
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "true",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Value returned when this checkbox is checked"
            },
            {
              "name": "checked",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "The current value of the checkbox(es). Must be an array when there are multiple checkboxes bound to the same v-model"
            },
            {
              "name": "inline",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkbox as an inline element rather than as a 100% width block"
            },
            {
              "name": "plain",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Render the form control in plain mode, rather than custom styled mode"
            },
            {
              "name": "button",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkbox with the appearance of a button"
            },
            {
              "name": "buttonVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Applies on of Bootstrap's theme colors when in 'button' mode"
            },
            {
              "name": "ariaLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Sets the value of 'aria-label' attribute on the rendered element"
            },
            {
              "name": "ariaLabelledby",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "The ID of the element that provides a label for this component. Used as the value for the 'aria-labelledby' attribute"
            },
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "uncheckedValue",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Value returned when this checkbox is unchecked. Note not applicable when multiple checkboxes bound to the same v-model array"
            },
            {
              "name": "indeterminate",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "Renders the checkbox in an indeterminate state. Syncable via the .sync modifier"
            },
            {
              "name": "switch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "type": "boolean",
              "description": "When set, renders the checkbox with the appearance of a switch"
            }
          ],
          "vue-model": {
            "prop": "checked",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Emitted when the selected value(s) is changed",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
                  "description": "Value of checkbox(es). When bound to multiple checkboxes, value will be an array.",
                  "type": "boolean|string|number|object|any[]"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
              "description": "Emitted when selected value(s) is changed due to user interaction",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-checkbox/",
                  "description": "Value of checkbox(es). When bound to multiple checkboxes, value will be an array.",
                  "type": "boolean|string|number|object|any[]"
                }
              ]
            }
          ]
        },
        {
          "name": "BFormFile",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormFile"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
          "description": "Customized, cross-browser consistent, file input control that supports single file, multiple files, and directory upload.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "plain",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "Render the form control in plain mode, rather than custom styled mode"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "File|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "The current value of the file input. Will be a single File object or an array of File objects (if multiple or directory is set). Can be set to null, or an empty array to reset the file input"
            },
            {
              "name": "accept",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Value to set on the file input's 'accept' attribute"
            },
            {
              "name": "capture",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "When set, will instruction the browser to use the devices camera (if supported)"
            },
            {
              "name": "placeholder",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"No file chosen\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Sets the 'placeholder' attribute value on the form control"
            },
            {
              "name": "browseText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Browse\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Text content for the file browse button"
            },
            {
              "name": "dropPlaceholder",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Drop files here\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Text to display as the placeholder when fies are being dragged"
            },
            {
              "name": "multiple",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "When set, will allow multiple files to be selected. v-model will be an array"
            },
            {
              "name": "directory",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "Enable directory drop mode (on browsers that support directory mode)"
            },
            {
              "name": "noTraverse",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "For directory drop mode: returns files as a flat array"
            },
            {
              "name": "noDrop",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "Disable drag and drop mode"
            },
            {
              "name": "fileNameFormatter",
              "value": {
                "kind": "expression",
                "type": "function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Method to format the file names for display. Refer to the docs for details"
            }
          ],
          "vue-model": {
            "prop": "value",
            "event": "input"
          },
          "events": [
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "original native change event on input",
              "arguments": [
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
                  "description": "Native change event object",
                  "type": "Event"
                }
              ]
            },
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Updates the v-model value (see docs for more details)",
              "arguments": [
                {
                  "name": "file",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
                  "description": "Will be a single File object in single mode or an array of File objects in multiple mode",
                  "type": "File|any[]"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "file-name",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Scoped slot for formatting the file names",
              "vue-properties": [
                {
                  "name": "files",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
                  "description": "Array of File objects",
                  "type": "any[]"
                },
                {
                  "name": "names",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
                  "description": "Array of file names (strings)",
                  "type": "any[]"
                }
              ]
            }
          ]
        },
        {
          "name": "BFile",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFile"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
          "description": "Customized, cross-browser consistent, file input control that supports single file, multiple files, and directory upload.\n\n*Alias for BFormFile*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "plain",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "Render the form control in plain mode, rather than custom styled mode"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "File|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "The current value of the file input. Will be a single File object or an array of File objects (if multiple or directory is set). Can be set to null, or an empty array to reset the file input"
            },
            {
              "name": "accept",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Value to set on the file input's 'accept' attribute"
            },
            {
              "name": "capture",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "When set, will instruction the browser to use the devices camera (if supported)"
            },
            {
              "name": "placeholder",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"No file chosen\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Sets the 'placeholder' attribute value on the form control"
            },
            {
              "name": "browseText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Browse\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Text content for the file browse button"
            },
            {
              "name": "dropPlaceholder",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Drop files here\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Text to display as the placeholder when fies are being dragged"
            },
            {
              "name": "multiple",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "When set, will allow multiple files to be selected. v-model will be an array"
            },
            {
              "name": "directory",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "Enable directory drop mode (on browsers that support directory mode)"
            },
            {
              "name": "noTraverse",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "For directory drop mode: returns files as a flat array"
            },
            {
              "name": "noDrop",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "type": "boolean",
              "description": "Disable drag and drop mode"
            },
            {
              "name": "fileNameFormatter",
              "value": {
                "kind": "expression",
                "type": "function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Method to format the file names for display. Refer to the docs for details"
            }
          ],
          "vue-model": {
            "prop": "value",
            "event": "input"
          },
          "events": [
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "original native change event on input",
              "arguments": [
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
                  "description": "Native change event object",
                  "type": "Event"
                }
              ]
            },
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Updates the v-model value (see docs for more details)",
              "arguments": [
                {
                  "name": "file",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
                  "description": "Will be a single File object in single mode or an array of File objects in multiple mode",
                  "type": "File|any[]"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "file-name",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
              "description": "Scoped slot for formatting the file names",
              "vue-properties": [
                {
                  "name": "files",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
                  "description": "Array of File objects",
                  "type": "any[]"
                },
                {
                  "name": "names",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-file/",
                  "description": "Array of file names (strings)",
                  "type": "any[]"
                }
              ]
            }
          ]
        },
        {
          "name": "BFormGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
          "description": "Easily add some structure to forms. Its purpose is to pair form controls with a legend or label, and to provide help text and invalid/valid feedback text, as well as visual (color) contextual state feedback.",
          "attributes": [
            {
              "name": "label",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Text to place in the label/legend of the form group"
            },
            {
              "name": "labelFor",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Set to the ID of the singular form-control in the form-group. Do not set a value if there is more than one form control in the group."
            },
            {
              "name": "labelSize",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Sets the text size of the label: 'sm', 'md' (default) or 'lg'. Use this prop to have the label size match the form control size"
            },
            {
              "name": "labelSrOnly",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "type": "boolean",
              "description": "Visually hides the label content, but makes it available to screen reader users"
            },
            {
              "name": "labelCols",
              "value": {
                "kind": "expression",
                "type": "number|string|boolean"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Number of columns for the label width xs screens and up"
            },
            {
              "name": "labelColsSm",
              "value": {
                "kind": "expression",
                "type": "number|string|boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Number of columns for the label width sm screens and up"
            },
            {
              "name": "labelColsMd",
              "value": {
                "kind": "expression",
                "type": "number|string|boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Number of columns for the label width md screens and up"
            },
            {
              "name": "labelColsLg",
              "value": {
                "kind": "expression",
                "type": "number|string|boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Number of columns for the label width lg screens and up"
            },
            {
              "name": "labelColsXl",
              "value": {
                "kind": "expression",
                "type": "number|string|boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Number of columns for the label width xl screens and up"
            },
            {
              "name": "labelAlign",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Text alignment 'left', 'center', 'right' for the label xs screens and up"
            },
            {
              "name": "labelAlignSm",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Text alignment 'left', 'center', 'right' for the label sm screens and up"
            },
            {
              "name": "labelAlignMd",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Text alignment 'left', 'center', 'right' for the label md screens and up"
            },
            {
              "name": "labelAlignLg",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Text alignment 'left', 'center', 'right' for the label lg screens and up"
            },
            {
              "name": "labelAlignXl",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Text alignment 'left', 'center', 'right' for the label xl screens and up"
            },
            {
              "name": "labelClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "CSS class (or classes) to add to the label/legend element"
            },
            {
              "name": "description",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Text to place in the help text area of the form group"
            },
            {
              "name": "invalidFeedback",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Text to show when the form group has an invalid state"
            },
            {
              "name": "validFeedback",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Text to show when the form group has a valid state"
            },
            {
              "name": "tooltip",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "type": "boolean",
              "description": "Renders the feedback text in a rudimentary tooltip style"
            },
            {
              "name": "feedbackAriaLive",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"assertive\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Value to use for the 'aria-live' attribute on the feedback text"
            },
            {
              "name": "validated",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "type": "boolean",
              "description": "When set, adds the Bootstrap validation trigger class 'was-validated' on the component"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "type": "boolean",
              "description": "Disabled the fieldset element, which in turn disables the form controls (on browsers that support disabled fieldsets). Has no effect if 'label-for' is set"
            }
          ],
          "slots": [
            {
              "name": "label",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Content to place inside the <label> element."
            },
            {
              "name": "description",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Content to place in the description area."
            },
            {
              "name": "invalid-feedback",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Content to place in the invalid feedback area"
            },
            {
              "name": "valid-feedback",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-group/",
              "description": "Content to place in the valid feedback area"
            }
          ]
        },
        {
          "name": "BFormInput",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormInput"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
          "description": "Create various type inputs such as: text, password, number, url, email, search, range, date and more.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "The current value of the input.  Result will always be a string, except when the 'number' prop is used"
            },
            {
              "name": "ariaInvalid",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Sets the 'aria-invalid' attribute with the specified value"
            },
            {
              "name": "readonly",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "Sets the 'readonly' attribute on hte form control"
            },
            {
              "name": "plaintext",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "Set the form control as readonly and renders the control to look like plain text (no borders)"
            },
            {
              "name": "autocomplete",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Sets the 'autocomplete' attribute value on the form control"
            },
            {
              "name": "placeholder",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Sets the 'placeholder' attribute value on the form control"
            },
            {
              "name": "formatter",
              "value": {
                "kind": "expression",
                "type": "function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "reference to a function for formatting the input"
            },
            {
              "name": "lazyFormatter",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "When set, the input is formatted on blur instead of each keystroke (if there is a formatter specified)"
            },
            {
              "name": "trim",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "When set, trims any leading and trailing white space from the input value. Emulates the Vue '.trim' v-model modifier"
            },
            {
              "name": "number",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "When set attempts to convert the input value to a native number. Emulates the Vue '.number' v-model modifier"
            },
            {
              "name": "lazy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "When set, updates the v-model on 'change'/'blur' events instead of 'input'. Emulates the Vue '.lazy' v-model modifier"
            },
            {
              "name": "debounce",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "When set to a number of milliseconds greater than zero, will debounce the user input. Has no effect if prop 'lazy' is set"
            },
            {
              "name": "type",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "The type of input to render. See the docs for supported types"
            },
            {
              "name": "noWheel",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "For number-like inputs, disables the mouse wheel from incrementing or decrementing the value"
            },
            {
              "name": "min",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Value to set in the 'min' attribute on the input. Used by number-like inputs"
            },
            {
              "name": "max",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Value to set in the 'max' attribute on the input. Used by number-like inputs"
            },
            {
              "name": "step",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Value to set in the 'step' attribute on the input. Used by number-like inputs"
            },
            {
              "name": "list",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "The ID of the associated datalist element or component"
            }
          ],
          "vue-model": {
            "prop": "value",
            "event": "update"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Input event triggered by user interaction. Emitted after any formatting (not including 'trim' or 'number' props) and after the v-model is updated",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
                  "description": "Current value of input",
                  "type": "string|number"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Change event triggered by user interaction. Emitted after any formatting (not including 'trim' or 'number' props) and after the v-model is updated.",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
                  "description": "Current value of input",
                  "type": "string|number"
                }
              ]
            },
            {
              "name": "update",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Emitted to update the v-model",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
                  "description": "Value of input, after any formatting. Not emitted if the value does not change",
                  "type": "string|number"
                }
              ]
            },
            {
              "name": "blur",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Emitted after the input looses focus",
              "arguments": [
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
                  "description": "Native blur event (before any formatting)",
                  "type": "FocusEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BInput",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BInput"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
          "description": "Create various type inputs such as: text, password, number, url, email, search, range, date and more.\n\n*Alias for BFormInput*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "The current value of the input.  Result will always be a string, except when the 'number' prop is used"
            },
            {
              "name": "ariaInvalid",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Sets the 'aria-invalid' attribute with the specified value"
            },
            {
              "name": "readonly",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "Sets the 'readonly' attribute on hte form control"
            },
            {
              "name": "plaintext",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "Set the form control as readonly and renders the control to look like plain text (no borders)"
            },
            {
              "name": "autocomplete",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Sets the 'autocomplete' attribute value on the form control"
            },
            {
              "name": "placeholder",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Sets the 'placeholder' attribute value on the form control"
            },
            {
              "name": "formatter",
              "value": {
                "kind": "expression",
                "type": "function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "reference to a function for formatting the input"
            },
            {
              "name": "lazyFormatter",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "When set, the input is formatted on blur instead of each keystroke (if there is a formatter specified)"
            },
            {
              "name": "trim",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "When set, trims any leading and trailing white space from the input value. Emulates the Vue '.trim' v-model modifier"
            },
            {
              "name": "number",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "When set attempts to convert the input value to a native number. Emulates the Vue '.number' v-model modifier"
            },
            {
              "name": "lazy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "When set, updates the v-model on 'change'/'blur' events instead of 'input'. Emulates the Vue '.lazy' v-model modifier"
            },
            {
              "name": "debounce",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "When set to a number of milliseconds greater than zero, will debounce the user input. Has no effect if prop 'lazy' is set"
            },
            {
              "name": "type",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "The type of input to render. See the docs for supported types"
            },
            {
              "name": "noWheel",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "type": "boolean",
              "description": "For number-like inputs, disables the mouse wheel from incrementing or decrementing the value"
            },
            {
              "name": "min",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Value to set in the 'min' attribute on the input. Used by number-like inputs"
            },
            {
              "name": "max",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Value to set in the 'max' attribute on the input. Used by number-like inputs"
            },
            {
              "name": "step",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Value to set in the 'step' attribute on the input. Used by number-like inputs"
            },
            {
              "name": "list",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "The ID of the associated datalist element or component"
            }
          ],
          "vue-model": {
            "prop": "value",
            "event": "update"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Input event triggered by user interaction. Emitted after any formatting (not including 'trim' or 'number' props) and after the v-model is updated",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
                  "description": "Current value of input",
                  "type": "string|number"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Change event triggered by user interaction. Emitted after any formatting (not including 'trim' or 'number' props) and after the v-model is updated.",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
                  "description": "Current value of input",
                  "type": "string|number"
                }
              ]
            },
            {
              "name": "update",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Emitted to update the v-model",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
                  "description": "Value of input, after any formatting. Not emitted if the value does not change",
                  "type": "string|number"
                }
              ]
            },
            {
              "name": "blur",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
              "description": "Emitted after the input looses focus",
              "arguments": [
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-input/",
                  "description": "Native blur event (before any formatting)",
                  "type": "FocusEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BFormRadioGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormRadioGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
          "description": "Cross browser consistent radio inputs and radio groups, using Bootstrap's custom radio input to replace the browser default radio input.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "validated",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set, adds the Bootstrap class 'was-validated' to the group wrapper"
            },
            {
              "name": "ariaInvalid",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Sets the 'aria-invalid' attribute value on the wrapper element. When not provided, the 'state' prop will control the attribute"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set, renders the radio group in stacked mode"
            },
            {
              "name": "plain",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "Render the form control in plain mode, rather than custom styled mode"
            },
            {
              "name": "buttons",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set, renderes the radios in this group with button styling"
            },
            {
              "name": "buttonVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Specifies the Bootstrap contextual color theme variant the apply to the button style radios"
            },
            {
              "name": "options",
              "value": {
                "kind": "expression",
                "type": "any[]|object"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Array of items to render in the component"
            },
            {
              "name": "valueField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"value\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Field name in the 'options' array that should be used for the value"
            },
            {
              "name": "textField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Field name in the 'options' array that should be used for the text label"
            },
            {
              "name": "htmlField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"html\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Field name in the 'options' array that should be used for the html label instead of text field. Use with caution."
            },
            {
              "name": "disabledField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"disabled\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Field name in the 'options' array that should be used for the disabled state"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "checked",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "The current value of the checked radio in the group"
            }
          ],
          "vue-model": {
            "prop": "checked",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Emitted when the selected value is changed",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
                  "description": "current selected Value of radio group.",
                  "type": "boolean|string|number|object"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Emitted when selected value is changed due to user interaction",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
                  "description": "current selected Value of radio group.",
                  "type": "boolean|string|number|object"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "first",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Slot to place b-form-radio's so that they appear before radios generated from options prop"
            }
          ]
        },
        {
          "name": "BRadioGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BRadioGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
          "description": "Cross browser consistent radio inputs and radio groups, using Bootstrap's custom radio input to replace the browser default radio input.\n\n*Alias for BFormRadioGroup*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "validated",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set, adds the Bootstrap class 'was-validated' to the group wrapper"
            },
            {
              "name": "ariaInvalid",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Sets the 'aria-invalid' attribute value on the wrapper element. When not provided, the 'state' prop will control the attribute"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set, renders the radio group in stacked mode"
            },
            {
              "name": "plain",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "Render the form control in plain mode, rather than custom styled mode"
            },
            {
              "name": "buttons",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set, renderes the radios in this group with button styling"
            },
            {
              "name": "buttonVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Specifies the Bootstrap contextual color theme variant the apply to the button style radios"
            },
            {
              "name": "options",
              "value": {
                "kind": "expression",
                "type": "any[]|object"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Array of items to render in the component"
            },
            {
              "name": "valueField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"value\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Field name in the 'options' array that should be used for the value"
            },
            {
              "name": "textField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Field name in the 'options' array that should be used for the text label"
            },
            {
              "name": "htmlField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"html\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Field name in the 'options' array that should be used for the html label instead of text field. Use with caution."
            },
            {
              "name": "disabledField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"disabled\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Field name in the 'options' array that should be used for the disabled state"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "checked",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "The current value of the checked radio in the group"
            }
          ],
          "vue-model": {
            "prop": "checked",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Emitted when the selected value is changed",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
                  "description": "current selected Value of radio group.",
                  "type": "boolean|string|number|object"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Emitted when selected value is changed due to user interaction",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
                  "description": "current selected Value of radio group.",
                  "type": "boolean|string|number|object"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "first",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Slot to place b-form-radio's so that they appear before radios generated from options prop"
            }
          ]
        },
        {
          "name": "BFormRadio",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormRadio"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
          "description": "Cross browser consistent radio inputs and radio groups, using Bootstrap's custom radio input to replace the browser default radio input.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Value returned when this radio is checked"
            },
            {
              "name": "checked",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "The current value of the radio(s)"
            },
            {
              "name": "inline",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set, renders the radio as an inline element rather than as a 100% width block"
            },
            {
              "name": "plain",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "Render the form control in plain mode, rather than custom styled mode"
            },
            {
              "name": "button",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set, renders the radio with the appearance of a button"
            },
            {
              "name": "buttonVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Applies on of Bootstrap's theme colors when in 'button' mode"
            },
            {
              "name": "ariaLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Sets the value of 'aria-label' attribute on the rendered element"
            },
            {
              "name": "ariaLabelledby",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "The ID of the element that provides a label for this component. Used as the value for the 'aria-labelledby' attribute"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            }
          ],
          "vue-model": {
            "prop": "checked",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Emitted when the selected value is changed",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
                  "description": "current selected Value of radio group.",
                  "type": "boolean|string|number|object"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Emitted when selected value is changed due to user interaction",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
                  "description": "current selected Value of radio group.",
                  "type": "boolean|string|number|object"
                }
              ]
            }
          ]
        },
        {
          "name": "BRadio",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BRadio"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
          "description": "Cross browser consistent radio inputs and radio groups, using Bootstrap's custom radio input to replace the browser default radio input.\n\n*Alias for BFormRadio*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Value returned when this radio is checked"
            },
            {
              "name": "checked",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "The current value of the radio(s)"
            },
            {
              "name": "inline",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set, renders the radio as an inline element rather than as a 100% width block"
            },
            {
              "name": "plain",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "Render the form control in plain mode, rather than custom styled mode"
            },
            {
              "name": "button",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set, renders the radio with the appearance of a button"
            },
            {
              "name": "buttonVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Applies on of Bootstrap's theme colors when in 'button' mode"
            },
            {
              "name": "ariaLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Sets the value of 'aria-label' attribute on the rendered element"
            },
            {
              "name": "ariaLabelledby",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "The ID of the element that provides a label for this component. Used as the value for the 'aria-labelledby' attribute"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            }
          ],
          "vue-model": {
            "prop": "checked",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Emitted when the selected value is changed",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
                  "description": "current selected Value of radio group.",
                  "type": "boolean|string|number|object"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
              "description": "Emitted when selected value is changed due to user interaction",
              "arguments": [
                {
                  "name": "checked",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-radio/",
                  "description": "current selected Value of radio group.",
                  "type": "boolean|string|number|object"
                }
              ]
            }
          ]
        },
        {
          "name": "BFormSelect",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormSelect"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
          "description": "Custom <select> component using cross-browser custom styles. Optionally generate <option> entries based on an array, array of objects.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "plain",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "type": "boolean",
              "description": "Render the form control in plain mode, rather than custom styled mode"
            },
            {
              "name": "options",
              "value": {
                "kind": "expression",
                "type": "any[]|object"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Array of items to render in the component"
            },
            {
              "name": "valueField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"value\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the value"
            },
            {
              "name": "textField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the text label"
            },
            {
              "name": "htmlField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"html\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the html label instead of text field. Use with caution."
            },
            {
              "name": "disabledField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"disabled\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the disabled state"
            },
            {
              "name": "labelField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"label\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/"
            },
            {
              "name": "optionsField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"options\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Current value of the select. Should be set to an array when the 'multiple' prop is set"
            },
            {
              "name": "multiple",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "type": "boolean",
              "description": "When set, allows multiple options to be selected (multi-select)"
            },
            {
              "name": "selectSize",
              "value": {
                "kind": "expression",
                "type": "number"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "When set to a number larger than 0, will set the number of display option rows. Note not all browser will respect this setting"
            },
            {
              "name": "ariaInvalid",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Optional value to set for the 'aria-invalid' attribute. Supported values are 'true' and 'false'. If not set, the 'state' prop will dictate the value"
            }
          ],
          "vue-model": {
            "prop": "value",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Emitted with the select value changes",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
                  "description": "current selected value(s) of the select.",
                  "type": "string|number|object|any[]"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Emitted with the select value changes via user interaction",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
                  "description": "current selected value(s) of the select.",
                  "type": "string|number|object|any[]"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "first",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Slot to place options or option groups above options provided via the 'options' prop"
            }
          ]
        },
        {
          "name": "BSelect",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BSelect"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
          "description": "Custom <select> component using cross-browser custom styles. Optionally generate <option> entries based on an array, array of objects.\n\n*Alias for BFormSelect*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "plain",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "type": "boolean",
              "description": "Render the form control in plain mode, rather than custom styled mode"
            },
            {
              "name": "options",
              "value": {
                "kind": "expression",
                "type": "any[]|object"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Array of items to render in the component"
            },
            {
              "name": "valueField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"value\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the value"
            },
            {
              "name": "textField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the text label"
            },
            {
              "name": "htmlField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"html\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the html label instead of text field. Use with caution."
            },
            {
              "name": "disabledField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"disabled\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the disabled state"
            },
            {
              "name": "labelField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"label\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/"
            },
            {
              "name": "optionsField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"options\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Current value of the select. Should be set to an array when the 'multiple' prop is set"
            },
            {
              "name": "multiple",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "type": "boolean",
              "description": "When set, allows multiple options to be selected (multi-select)"
            },
            {
              "name": "selectSize",
              "value": {
                "kind": "expression",
                "type": "number"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "When set to a number larger than 0, will set the number of display option rows. Note not all browser will respect this setting"
            },
            {
              "name": "ariaInvalid",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Optional value to set for the 'aria-invalid' attribute. Supported values are 'true' and 'false'. If not set, the 'state' prop will dictate the value"
            }
          ],
          "vue-model": {
            "prop": "value",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Emitted with the select value changes",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
                  "description": "current selected value(s) of the select.",
                  "type": "string|number|object|any[]"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Emitted with the select value changes via user interaction",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
                  "description": "current selected value(s) of the select.",
                  "type": "string|number|object|any[]"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "first",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Slot to place options or option groups above options provided via the 'options' prop"
            }
          ]
        },
        {
          "name": "BFormSelectOption",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormSelectOption"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
          "description": "Custom <select> component using cross-browser custom styles. Optionally generate <option> entries based on an array, array of objects.",
          "attributes": [
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "required": true,
              "description": "The value of the option"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            }
          ]
        },
        {
          "name": "BSelectOption",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BSelectOption"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
          "description": "Custom <select> component using cross-browser custom styles. Optionally generate <option> entries based on an array, array of objects.\n\n*Alias for BFormSelectOption*",
          "attributes": [
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "required": true,
              "description": "The value of the option"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            }
          ]
        },
        {
          "name": "BFormSelectOptionGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormSelectOptionGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
          "description": "Custom <select> component using cross-browser custom styles. Optionally generate <option> entries based on an array, array of objects.",
          "attributes": [
            {
              "name": "options",
              "value": {
                "kind": "expression",
                "type": "any[]|object"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Array of items to render in the component"
            },
            {
              "name": "valueField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"value\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the value"
            },
            {
              "name": "textField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the text label"
            },
            {
              "name": "htmlField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"html\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the html label instead of text field. Use with caution."
            },
            {
              "name": "disabledField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"disabled\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the disabled state"
            },
            {
              "name": "label",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "required": true
            }
          ],
          "slots": [
            {
              "name": "first",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Slot to place options above options provided via the 'options' prop"
            }
          ]
        },
        {
          "name": "BSelectOptionGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BSelectOptionGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
          "description": "Custom <select> component using cross-browser custom styles. Optionally generate <option> entries based on an array, array of objects.\n\n*Alias for BFormSelectOptionGroup*",
          "attributes": [
            {
              "name": "options",
              "value": {
                "kind": "expression",
                "type": "any[]|object"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Array of items to render in the component"
            },
            {
              "name": "valueField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"value\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the value"
            },
            {
              "name": "textField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the text label"
            },
            {
              "name": "htmlField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"html\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the html label instead of text field. Use with caution."
            },
            {
              "name": "disabledField",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"disabled\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Field name in the 'options' array that should be used for the disabled state"
            },
            {
              "name": "label",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "required": true
            }
          ],
          "slots": [
            {
              "name": "first",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-select/",
              "description": "Slot to place options above options provided via the 'options' prop"
            }
          ]
        },
        {
          "name": "BFormTags",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormTags"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
          "description": "Lightweight custom tagged input form control, with options for customized interface rendering, duplicate tag detection and optional tag validation",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "inputId",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "ID to apply to the new tag input element. If not provided, a unique ID will be auto generated"
            },
            {
              "name": "placeholder",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Add tag...\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Sets the 'placeholder' attribute value on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Sets the value of the 'name' attribute on the form control. When set, creates a hidden input for each tag"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "inputType",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Specifies the type of input to use: 'text', 'email', 'tel', 'url', or 'number'. Default is 'text'"
            },
            {
              "name": "inputClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Class (or classes) to apply to the new tag input element"
            },
            {
              "name": "inputAttrs",
              "value": {
                "kind": "expression",
                "type": "object"
              },
              "default": "{}",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Additional attributes to apply to the new tag input element"
            },
            {
              "name": "addButtonText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Add\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Text for the built in 'Add' button. Slot `add-button-text' takes precedence"
            },
            {
              "name": "addButtonVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"outline-secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Applies one of the Bootstrap theme color variants to the 'Add' button"
            },
            {
              "name": "tagVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Applies one of the Bootstrap theme color variants to the tags"
            },
            {
              "name": "tagClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Class (or classes) to apply to the tags"
            },
            {
              "name": "tagPills",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "Makes the built in tags have a pill appearance"
            },
            {
              "name": "tagRemoveLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Remove tag\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "The value of the 'aria-label' attribute on the remove button in the tag"
            },
            {
              "name": "tagValidator",
              "value": {
                "kind": "expression",
                "type": "function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Optional tag validator method. Passed a single argument of tag being added. Should return 'true' if the tag passes validation, or 'false' if the tag cannot be added"
            },
            {
              "name": "duplicateTagText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Duplicate tag(s)\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "The message when duplicate tags are detected. Set to an empty string to disable the message"
            },
            {
              "name": "invalidTagText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Invalid tag(s)\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "The error message when invalid tags are detected. Set to an empty string to disable the message"
            },
            {
              "name": "separator",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Separator character(s) that will trigger a tag to be created"
            },
            {
              "name": "removeOnDelete",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "When set, enables removal of last tag in tags when user presses delete and the input is empty"
            },
            {
              "name": "addOnChange",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "When set, enables adding the tag on the input's 'change' event"
            },
            {
              "name": "noAddOnEnter",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "When set, disables adding the tag on the input's 'keydown.enter' event"
            },
            {
              "name": "noOuterFocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "When set, disables the focus styling of the component root element"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "any[]"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Array of current tags. This is the v-model"
            }
          ],
          "vue-model": {
            "prop": "value",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Emitted when the tags changes. Updates the v-model",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Array of current tags.",
                  "type": "any[]"
                }
              ]
            },
            {
              "name": "tag-state",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Emitted when tags in the user input are parsed",
              "arguments": [
                {
                  "name": "validTags",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Array of new tag(s) added (or that will be added). Will be zero length if no tags added.",
                  "type": "any[]"
                },
                {
                  "name": "invalidTags",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Array of tag(s) that can not added because they did not pass validation. Will be zero length if no invalid tags.",
                  "type": "any[]"
                },
                {
                  "name": "duplicateTags",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Array of tag(s) that can not added because they would be a duplicate tag. Will be zero length if no duplicate tags.",
                  "type": "any[]"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "add-button-text",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Content to place in the built in  'Add' button. Takes precedence over the 'add-button-text' prop. Not used when the default scoped slot is provided"
            },
            {
              "name": "default",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Slot to override the default rendering of the tags component",
              "vue-properties": [
                {
                  "name": "tags",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Array of tags to render",
                  "type": "any[]"
                },
                {
                  "name": "inputAttrs",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Object of attributes to apply to native input elements via 'v-bind=\"inputAttrs\"'",
                  "type": "object"
                },
                {
                  "name": "inputHandlers",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Object of event handlers to apply to native input elements via 'v-on=\"inputHandlers\"'",
                  "type": "object"
                },
                {
                  "name": "inputType",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "The type of input to use: 'type', 'email', 'tel', 'url', or 'number'. Default is 'text'. Normalized value of the 'input-type' prop"
                },
                {
                  "name": "inputId",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "ID to add to the new tag input element. Defaults to prop 'input-id'. If not provided a unique ID is auto-generated. Also available via 'inputAttrs.id'",
                  "type": "string"
                },
                {
                  "name": "inputClass",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Class (or classes) to apply to the new tag input element. Value of the 'input-class' prop",
                  "type": "string|any[]|object"
                },
                {
                  "name": "removeTag",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Method to remove a tag. Accepts one argument which is the tag value to remove",
                  "type": "function"
                },
                {
                  "name": "addTag",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Method to add a new tag. Assumes the tag is the value of the input, but optionally accepts one argument which is the tag value to be added",
                  "type": "function"
                },
                {
                  "name": "invalidTags",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Array of invalid tag(s) that could not be added. Requires a validator function via the 'tag-validator' prop",
                  "type": "any[]"
                },
                {
                  "name": "isInvalid",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Will be true if the input has invalid tag(s). Requires a validator function via the 'tag-validator' prop",
                  "type": "boolean"
                },
                {
                  "name": "duplicateTags",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Array of duplicate tag(s) that could not be added",
                  "type": "any[]"
                },
                {
                  "name": "isDuplicate",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Will be true if the user has attempted to add duplicate tag(s)",
                  "type": "boolean"
                },
                {
                  "name": "disableAddButton",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Will be true if the tag(s) in the input cannot be added (all invalid and/or duplicates)",
                  "type": "boolean"
                },
                {
                  "name": "disabled",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "If the component is in the disabled state. Value of the 'disabled' prop",
                  "type": "boolean"
                },
                {
                  "name": "state",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "The contextual state of the component. Value of the 'state' prop. Possible values are true, false or null",
                  "type": "boolean"
                },
                {
                  "name": "size",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "The value of the 'size' prop",
                  "type": "string"
                },
                {
                  "name": "separator",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "The value of the 'separator' prop",
                  "type": "string|any[]"
                },
                {
                  "name": "placeholder",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "The value of the 'placeholder' prop",
                  "type": "string"
                },
                {
                  "name": "invalidTagText",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "The value of the 'invalid-tag-text' prop",
                  "type": "string"
                },
                {
                  "name": "duplicateTagText",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "The value of the 'duplicate-tag-text' prop",
                  "type": "string"
                },
                {
                  "name": "tagRemoveLabel",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "ARIA label for the remove button on tags. Value of the 'tag-remove-label' prop",
                  "type": "string"
                },
                {
                  "name": "tagPills",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Value of the `tag-pills` prop",
                  "type": "boolean"
                },
                {
                  "name": "tagVariant",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Value of the 'tag-variant' prop",
                  "type": "string"
                },
                {
                  "name": "tagClass",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Class (or classes) to apply to the tag elements. Value of the 'tag-class' prop",
                  "type": "string|any[]|object"
                },
                {
                  "name": "addButtonText",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Value of the 'add-button-text' prop",
                  "type": "string"
                },
                {
                  "name": "addButtonVariant",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Value of the 'add-button-variant' prop",
                  "type": "string"
                }
              ]
            }
          ]
        },
        {
          "name": "BTags",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BTags"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
          "description": "Lightweight custom tagged input form control, with options for customized interface rendering, duplicate tag detection and optional tag validation\n\n*Alias for BFormTags*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "inputId",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "ID to apply to the new tag input element. If not provided, a unique ID will be auto generated"
            },
            {
              "name": "placeholder",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Add tag...\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Sets the 'placeholder' attribute value on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Sets the value of the 'name' attribute on the form control. When set, creates a hidden input for each tag"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "inputType",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"text\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Specifies the type of input to use: 'text', 'email', 'tel', 'url', or 'number'. Default is 'text'"
            },
            {
              "name": "inputClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Class (or classes) to apply to the new tag input element"
            },
            {
              "name": "inputAttrs",
              "value": {
                "kind": "expression",
                "type": "object"
              },
              "default": "{}",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Additional attributes to apply to the new tag input element"
            },
            {
              "name": "addButtonText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Add\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Text for the built in 'Add' button. Slot `add-button-text' takes precedence"
            },
            {
              "name": "addButtonVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"outline-secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Applies one of the Bootstrap theme color variants to the 'Add' button"
            },
            {
              "name": "tagVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Applies one of the Bootstrap theme color variants to the tags"
            },
            {
              "name": "tagClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Class (or classes) to apply to the tags"
            },
            {
              "name": "tagPills",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "Makes the built in tags have a pill appearance"
            },
            {
              "name": "tagRemoveLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Remove tag\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "The value of the 'aria-label' attribute on the remove button in the tag"
            },
            {
              "name": "tagValidator",
              "value": {
                "kind": "expression",
                "type": "function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Optional tag validator method. Passed a single argument of tag being added. Should return 'true' if the tag passes validation, or 'false' if the tag cannot be added"
            },
            {
              "name": "duplicateTagText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Duplicate tag(s)\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "The message when duplicate tags are detected. Set to an empty string to disable the message"
            },
            {
              "name": "invalidTagText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Invalid tag(s)\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "The error message when invalid tags are detected. Set to an empty string to disable the message"
            },
            {
              "name": "separator",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Separator character(s) that will trigger a tag to be created"
            },
            {
              "name": "removeOnDelete",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "When set, enables removal of last tag in tags when user presses delete and the input is empty"
            },
            {
              "name": "addOnChange",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "When set, enables adding the tag on the input's 'change' event"
            },
            {
              "name": "noAddOnEnter",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "When set, disables adding the tag on the input's 'keydown.enter' event"
            },
            {
              "name": "noOuterFocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "When set, disables the focus styling of the component root element"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "any[]"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Array of current tags. This is the v-model"
            }
          ],
          "vue-model": {
            "prop": "value",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Emitted when the tags changes. Updates the v-model",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Array of current tags.",
                  "type": "any[]"
                }
              ]
            },
            {
              "name": "tag-state",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Emitted when tags in the user input are parsed",
              "arguments": [
                {
                  "name": "validTags",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Array of new tag(s) added (or that will be added). Will be zero length if no tags added.",
                  "type": "any[]"
                },
                {
                  "name": "invalidTags",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Array of tag(s) that can not added because they did not pass validation. Will be zero length if no invalid tags.",
                  "type": "any[]"
                },
                {
                  "name": "duplicateTags",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Array of tag(s) that can not added because they would be a duplicate tag. Will be zero length if no duplicate tags.",
                  "type": "any[]"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "add-button-text",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Content to place in the built in  'Add' button. Takes precedence over the 'add-button-text' prop. Not used when the default scoped slot is provided"
            },
            {
              "name": "default",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Slot to override the default rendering of the tags component",
              "vue-properties": [
                {
                  "name": "tags",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Array of tags to render",
                  "type": "any[]"
                },
                {
                  "name": "inputAttrs",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Object of attributes to apply to native input elements via 'v-bind=\"inputAttrs\"'",
                  "type": "object"
                },
                {
                  "name": "inputHandlers",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Object of event handlers to apply to native input elements via 'v-on=\"inputHandlers\"'",
                  "type": "object"
                },
                {
                  "name": "inputType",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "The type of input to use: 'type', 'email', 'tel', 'url', or 'number'. Default is 'text'. Normalized value of the 'input-type' prop"
                },
                {
                  "name": "inputId",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "ID to add to the new tag input element. Defaults to prop 'input-id'. If not provided a unique ID is auto-generated. Also available via 'inputAttrs.id'",
                  "type": "string"
                },
                {
                  "name": "inputClass",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Class (or classes) to apply to the new tag input element. Value of the 'input-class' prop",
                  "type": "string|any[]|object"
                },
                {
                  "name": "removeTag",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Method to remove a tag. Accepts one argument which is the tag value to remove",
                  "type": "function"
                },
                {
                  "name": "addTag",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Method to add a new tag. Assumes the tag is the value of the input, but optionally accepts one argument which is the tag value to be added",
                  "type": "function"
                },
                {
                  "name": "invalidTags",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Array of invalid tag(s) that could not be added. Requires a validator function via the 'tag-validator' prop",
                  "type": "any[]"
                },
                {
                  "name": "isInvalid",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Will be true if the input has invalid tag(s). Requires a validator function via the 'tag-validator' prop",
                  "type": "boolean"
                },
                {
                  "name": "duplicateTags",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Array of duplicate tag(s) that could not be added",
                  "type": "any[]"
                },
                {
                  "name": "isDuplicate",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Will be true if the user has attempted to add duplicate tag(s)",
                  "type": "boolean"
                },
                {
                  "name": "disableAddButton",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Will be true if the tag(s) in the input cannot be added (all invalid and/or duplicates)",
                  "type": "boolean"
                },
                {
                  "name": "disabled",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "If the component is in the disabled state. Value of the 'disabled' prop",
                  "type": "boolean"
                },
                {
                  "name": "state",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "The contextual state of the component. Value of the 'state' prop. Possible values are true, false or null",
                  "type": "boolean"
                },
                {
                  "name": "size",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "The value of the 'size' prop",
                  "type": "string"
                },
                {
                  "name": "separator",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "The value of the 'separator' prop",
                  "type": "string|any[]"
                },
                {
                  "name": "placeholder",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "The value of the 'placeholder' prop",
                  "type": "string"
                },
                {
                  "name": "invalidTagText",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "The value of the 'invalid-tag-text' prop",
                  "type": "string"
                },
                {
                  "name": "duplicateTagText",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "The value of the 'duplicate-tag-text' prop",
                  "type": "string"
                },
                {
                  "name": "tagRemoveLabel",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "ARIA label for the remove button on tags. Value of the 'tag-remove-label' prop",
                  "type": "string"
                },
                {
                  "name": "tagPills",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Value of the `tag-pills` prop",
                  "type": "boolean"
                },
                {
                  "name": "tagVariant",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Value of the 'tag-variant' prop",
                  "type": "string"
                },
                {
                  "name": "tagClass",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Class (or classes) to apply to the tag elements. Value of the 'tag-class' prop",
                  "type": "string|any[]|object"
                },
                {
                  "name": "addButtonText",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Value of the 'add-button-text' prop",
                  "type": "string"
                },
                {
                  "name": "addButtonVariant",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
                  "description": "Value of the 'add-button-variant' prop",
                  "type": "string"
                }
              ]
            }
          ]
        },
        {
          "name": "BFormTag",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormTag"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
          "description": "Lightweight custom tagged input form control, with options for customized interface rendering, duplicate tag detection and optional tag validation",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "title",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Value to place in the 'title' attribute of the tag. Will also be used for the tag content if no default slot provided"
            },
            {
              "name": "pill",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "Makes the tag have a pill appearance"
            },
            {
              "name": "removeLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Remove tag\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "The value of the 'aria-label' attribute on the remove button in the tag"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"span\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Specify the HTML tag to render instead of the default tag"
            }
          ],
          "events": [
            {
              "name": "remove",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Emitted when the remove button is clicked",
              "arguments": []
            }
          ]
        },
        {
          "name": "BTag",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BTag"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
          "description": "Lightweight custom tagged input form control, with options for customized interface rendering, duplicate tag detection and optional tag validation\n\n*Alias for BFormTag*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "title",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Value to place in the 'title' attribute of the tag. Will also be used for the tag content if no default slot provided"
            },
            {
              "name": "pill",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "type": "boolean",
              "description": "Makes the tag have a pill appearance"
            },
            {
              "name": "removeLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Remove tag\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "The value of the 'aria-label' attribute on the remove button in the tag"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"span\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Specify the HTML tag to render instead of the default tag"
            }
          ],
          "events": [
            {
              "name": "remove",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-tags/",
              "description": "Emitted when the remove button is clicked",
              "arguments": []
            }
          ]
        },
        {
          "name": "BFormTextarea",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormTextarea"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
          "description": "Create multi-line text inputs with support for auto height sizing, minimum and maximum number of rows, and contextual validation states.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "The current value of the textarea. Result will always be a string, except when the 'number' prop is used"
            },
            {
              "name": "ariaInvalid",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Sets the 'aria-invalid' attribute with the specified value"
            },
            {
              "name": "readonly",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "Sets the 'readonly' attribute on hte form control"
            },
            {
              "name": "plaintext",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "Set the form control as readonly and renders the control to look like plain text (no borders)"
            },
            {
              "name": "autocomplete",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Sets the 'autocomplete' attribute value on the form control"
            },
            {
              "name": "placeholder",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Sets the 'placeholder' attribute value on the form control"
            },
            {
              "name": "formatter",
              "value": {
                "kind": "expression",
                "type": "function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "reference to a function for formatting the textarea"
            },
            {
              "name": "lazyFormatter",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set, the textarea is formatted on blur instead of each keystroke (if there is a formatter specified)"
            },
            {
              "name": "trim",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set, trims any leading and trailing white space from the input value. Emulates the Vue '.trim' v-model modifier"
            },
            {
              "name": "number",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set attempts to convert the input value to a native number. Emulates the Vue '.number' v-model modifier"
            },
            {
              "name": "lazy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set, updates the v-model on 'change'/'blur' events instead of 'input'. Emulates the Vue '.lazy' v-model modifier"
            },
            {
              "name": "debounce",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "When set to a number of milliseconds greater than zero, will debounce the user input. Has no effect if prop 'lazy' is set"
            },
            {
              "name": "rows",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "2",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "The minimum number of rows to display. Must be a value greater than 1"
            },
            {
              "name": "maxRows",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "The maximum number of rows to show. When provided, the textarea will grow (or shrink) to fit the content up to maximum rows"
            },
            {
              "name": "wrap",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"soft\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "The value to place on the textarea's 'wrap' attribute. Controls how line break are returned"
            },
            {
              "name": "noResize",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set, disabled the browser's resize handle which prevents the user from changing the height of the textarea. Automatically set when in auto height mode"
            },
            {
              "name": "noAutoShrink",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set, prevents the auto height textarea from shrinking to fit the content"
            }
          ],
          "vue-model": {
            "prop": "value",
            "event": "update"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Input event triggered by user interaction. Emitted after any formatting (not including 'trim' or 'number' props) and after the v-model is updated",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
                  "description": "Current value of textarea",
                  "type": "string"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Change event triggered by user interaction. Emitted after any formatting (not including 'trim' or 'number' props) and after the v-model is updated.",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
                  "description": "Current value of the textarea",
                  "type": "string"
                }
              ]
            },
            {
              "name": "update",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Emitted to update the v-model",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
                  "description": "Value of textarea, after any formatting. Not emitted if the value does nto change",
                  "type": "string"
                }
              ]
            },
            {
              "name": "blur",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Emitted after the textarea looses focus",
              "arguments": [
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
                  "description": "Native blur event (before any optional formatting occurs)",
                  "type": "FocusEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BTextarea",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BTextarea"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
          "description": "Create multi-line text inputs with support for auto height sizing, minimum and maximum number of rows, and contextual validation states.\n\n*Alias for BFormTextarea*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Sets the value of the 'name' attribute on the form control"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "required",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "Adds the 'required' attribute to the form control"
            },
            {
              "name": "form",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "ID of the form that the form control belongs to. Sets the 'form' attribute on the control"
            },
            {
              "name": "autofocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set to 'true', attempts to auto-focus the control when it is mounted, or re-activated when in a keep-alive. Does not set the 'autofocus' attribute on the control"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "state",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "Controls the validation state appearance of the component. 'true' for valid, 'false' for invalid', or 'null' for no validation state"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "The current value of the textarea. Result will always be a string, except when the 'number' prop is used"
            },
            {
              "name": "ariaInvalid",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Sets the 'aria-invalid' attribute with the specified value"
            },
            {
              "name": "readonly",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "Sets the 'readonly' attribute on hte form control"
            },
            {
              "name": "plaintext",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "Set the form control as readonly and renders the control to look like plain text (no borders)"
            },
            {
              "name": "autocomplete",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Sets the 'autocomplete' attribute value on the form control"
            },
            {
              "name": "placeholder",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Sets the 'placeholder' attribute value on the form control"
            },
            {
              "name": "formatter",
              "value": {
                "kind": "expression",
                "type": "function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "reference to a function for formatting the textarea"
            },
            {
              "name": "lazyFormatter",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set, the textarea is formatted on blur instead of each keystroke (if there is a formatter specified)"
            },
            {
              "name": "trim",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set, trims any leading and trailing white space from the input value. Emulates the Vue '.trim' v-model modifier"
            },
            {
              "name": "number",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set attempts to convert the input value to a native number. Emulates the Vue '.number' v-model modifier"
            },
            {
              "name": "lazy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set, updates the v-model on 'change'/'blur' events instead of 'input'. Emulates the Vue '.lazy' v-model modifier"
            },
            {
              "name": "debounce",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "When set to a number of milliseconds greater than zero, will debounce the user input. Has no effect if prop 'lazy' is set"
            },
            {
              "name": "rows",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "2",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "The minimum number of rows to display. Must be a value greater than 1"
            },
            {
              "name": "maxRows",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "The maximum number of rows to show. When provided, the textarea will grow (or shrink) to fit the content up to maximum rows"
            },
            {
              "name": "wrap",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"soft\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "The value to place on the textarea's 'wrap' attribute. Controls how line break are returned"
            },
            {
              "name": "noResize",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set, disabled the browser's resize handle which prevents the user from changing the height of the textarea. Automatically set when in auto height mode"
            },
            {
              "name": "noAutoShrink",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "type": "boolean",
              "description": "When set, prevents the auto height textarea from shrinking to fit the content"
            }
          ],
          "vue-model": {
            "prop": "value",
            "event": "update"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Input event triggered by user interaction. Emitted after any formatting (not including 'trim' or 'number' props) and after the v-model is updated",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
                  "description": "Current value of textarea",
                  "type": "string"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Change event triggered by user interaction. Emitted after any formatting (not including 'trim' or 'number' props) and after the v-model is updated.",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
                  "description": "Current value of the textarea",
                  "type": "string"
                }
              ]
            },
            {
              "name": "update",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Emitted to update the v-model",
              "arguments": [
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
                  "description": "Value of textarea, after any formatting. Not emitted if the value does nto change",
                  "type": "string"
                }
              ]
            },
            {
              "name": "blur",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
              "description": "Emitted after the textarea looses focus",
              "arguments": [
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/form-textarea/",
                  "description": "Native blur event (before any optional formatting occurs)",
                  "type": "FocusEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BImg",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BImg"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
          "description": "Create responsive images, optionally adding lightweight styles to them — all via props. Support for rounded images, thumbnail styling, alignment, and even the ability to create blank images with an optional solid background color, and lazy loaded images.",
          "attributes": [
            {
              "name": "src",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "URL to set for the 'src' attribute"
            },
            {
              "name": "srcset",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "One or more strings separated by commas (or an array of strings), indicating possible image sources for the user agent to use"
            },
            {
              "name": "sizes",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "One or more strings separated by commas (or an array of strings), indicating a set of source sizes. Optionally used in combination with the srcset prop"
            },
            {
              "name": "alt",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "Value to set for the 'alt' attribute"
            },
            {
              "name": "width",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "The value to set on the image's 'width' attribute"
            },
            {
              "name": "height",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "The value to set on the image's 'height' attribute"
            },
            {
              "name": "block",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Forces the image to display as a block element rather than the browser default of inline-block element"
            },
            {
              "name": "fluid",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Makes the image responsive. The image will shrink as needed or grow up the the image's native width"
            },
            {
              "name": "fluidGrow",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Similar to the 'fluid' prop, but allows the image to scale up past its native width"
            },
            {
              "name": "rounded",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "When set to 'true', makes the image corners slightly rounded. Can also be used to disable rounded corners or make the image a circle/oval. See docs for details"
            },
            {
              "name": "thumbnail",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Adds a thumbnail border around the image"
            },
            {
              "name": "left",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Floats the image to the left when set"
            },
            {
              "name": "right",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Floats the image to the right when set"
            },
            {
              "name": "center",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Centers the image horizontally"
            },
            {
              "name": "blank",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Creates a blank/transparent image via an SVG data URI"
            },
            {
              "name": "blankColor",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"transparent\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "Sets the color of the blank image to the CSS color value specified"
            }
          ]
        },
        {
          "name": "BImgLazy",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BImgLazy"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
          "description": "Create responsive images, optionally adding lightweight styles to them — all via props. Support for rounded images, thumbnail styling, alignment, and even the ability to create blank images with an optional solid background color, and lazy loaded images.",
          "attributes": [
            {
              "name": "src",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "required": true,
              "description": "URL to set for the 'src' attribute"
            },
            {
              "name": "srcset",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "One or more strings separated by commas (or an array of strings), indicating possible image sources for the user agent to use"
            },
            {
              "name": "sizes",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "One or more strings separated by commas (or an array of strings), indicating a set of source sizes. Optionally used in combination with the srcset prop"
            },
            {
              "name": "alt",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "Value to set for the 'alt' attribute"
            },
            {
              "name": "width",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "The value to set on the image's 'width' attribute"
            },
            {
              "name": "height",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "The value to set on the image's 'height' attribute"
            },
            {
              "name": "blankSrc",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "Placeholder image instead of a blank image"
            },
            {
              "name": "blankColor",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"transparent\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "Sets the color of the blank placeholder image to the CSS color value specified"
            },
            {
              "name": "blankWidth",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "The value to set on the placeholder image's 'width' attribute. Defaults to value of the 'width' prop"
            },
            {
              "name": "blankHeight",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "The value to set on the placeholder image's 'height' attribute. Defaults to value of the 'height' prop"
            },
            {
              "name": "show",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "If set to true, will force show the image specified via the 'src' prop"
            },
            {
              "name": "fluid",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Makes the image responsive. The image will shrink as needed or grow up the the image's native width"
            },
            {
              "name": "fluidGrow",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Similar to the 'fluid' prop, but allows the image to scale up past its native width"
            },
            {
              "name": "block",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Forces the image to display as a block element rather than the browser default of inline-block element"
            },
            {
              "name": "thumbnail",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Adds a thumbnail border around the image"
            },
            {
              "name": "rounded",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "When set to 'true', makes the image corners slightly rounded. Can also be used to disable rounded corners or make the image a circle/oval. See docs for details"
            },
            {
              "name": "left",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Floats the image to the left when set"
            },
            {
              "name": "right",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Floats the image to the right when set"
            },
            {
              "name": "center",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "type": "boolean",
              "description": "Centers the image horizontally"
            },
            {
              "name": "offset",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "360",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/image/",
              "description": "Number of pixels away from the viewport edge before the lazy image is loaded"
            }
          ]
        },
        {
          "name": "BInputGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BInputGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
          "description": "Easily extend form controls by adding text, buttons, or button groups on either side of textual inputs.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "Set the size of the component's appearance. 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "prepend",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "Text to prepend to the input group"
            },
            {
              "name": "prependHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "HTML string to prepend to the input group. Has precedence over 'prepend' prop. Use with caution"
            },
            {
              "name": "append",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "Text to append to the input group"
            },
            {
              "name": "appendHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "HTML string to append to the input group. Has precedence over 'append' prop. Use with caution"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "Specify the HTML tag to render instead of the default tag"
            }
          ],
          "slots": [
            {
              "name": "prepend",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "Prepend attachment"
            },
            {
              "name": "append",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "Append attachment"
            }
          ]
        },
        {
          "name": "BInputGroupPrepend",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BInputGroupPrepend"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
          "description": "Easily extend form controls by adding text, buttons, or button groups on either side of textual inputs.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "isText",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "type": "boolean",
              "description": "When 'true', wraps the content in a b-input-group-text component"
            }
          ]
        },
        {
          "name": "BInputGroupAppend",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BInputGroupAppend"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
          "description": "Easily extend form controls by adding text, buttons, or button groups on either side of textual inputs.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "isText",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "type": "boolean",
              "description": "When 'true', wraps the content in a b-input-group-text component"
            }
          ]
        },
        {
          "name": "BInputGroupText",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BInputGroupText"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
          "description": "Easily extend form controls by adding text, buttons, or button groups on either side of textual inputs.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "Specify the HTML tag to render instead of the default tag"
            }
          ]
        },
        {
          "name": "BInputGroupAddon",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BInputGroupAddon"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
          "description": "Easily extend form controls by adding text, buttons, or button groups on either side of textual inputs.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "isText",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "type": "boolean",
              "description": "When 'true', wraps the content in a b-input-group-text component"
            },
            {
              "name": "append",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/input-group/",
              "type": "boolean",
              "description": "When set to 'true' sets the addon as being appended. defaults to 'false' which is prepended"
            }
          ]
        },
        {
          "name": "BJumbotron",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BJumbotron"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
          "description": "A lightweight, flexible component that can optionally extend the entire viewport to showcase key marketing messages on your site.",
          "attributes": [
            {
              "name": "fluid",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "type": "boolean",
              "description": "Makes the jumbotron full width, and without rounded corners. When set, the inner content will automatically be wrapped into a 'b-container' (fixed width at the various breakpoints)"
            },
            {
              "name": "containerFluid",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "description": "When prop 'fluid' is set, this prop will make the inner container wrapper also fluid in width. Can also be set to one of the Bootstrap breakpoint names"
            },
            {
              "name": "header",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "description": "Text content to place in the header"
            },
            {
              "name": "headerHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "description": "HTML string content to place in the header. Use with caution"
            },
            {
              "name": "headerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"h1\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "description": "Specify the HTML tag to render instead of the default tag for the header"
            },
            {
              "name": "headerLevel",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "\"3\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "description": "Scaling factor of hte header. Values range from 1 to 5"
            },
            {
              "name": "lead",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "description": "Text string to place in the lead paragraph"
            },
            {
              "name": "leadHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "description": "HTML string to place in the lead paragraph. Use with caution"
            },
            {
              "name": "leadTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"p\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "description": "Specify the HTML tag to render instead of the default tag for the lead paragraph"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "bgVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "description": "Applies one of the Bootstrap theme color variants to the background"
            },
            {
              "name": "borderVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "description": "Applies one of the Bootstrap theme color variants to the border"
            },
            {
              "name": "textVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "description": "Applies one of the Bootstrap theme color variants to the text"
            }
          ],
          "slots": [
            {
              "name": "header",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "description": "Slot for custom header content. Placed inside 'header-tag'"
            },
            {
              "name": "lead",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/jumbotron/",
              "description": "For custom rendering of lead text content. Placed inside 'lead-tag'"
            }
          ]
        },
        {
          "name": "BContainer",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BContainer"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
          "description": "Use the powerful mobile-first flexbox grid (via the <b-container>, <b-row>, <b-form-row> and <b-col> components) to build layouts of all shapes and sizes thanks to a twelve column system, five default responsive tiers, CSS Sass variables and mixins, and dozens of predefined classes.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "fluid",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "When set to true, makes the row 100% wide all the time, or set to one of the Bootstrap breakpoint names for 100% width up to the breakpoint (requires Bootstrap v4.4+ CSS for breakpoint specific value)"
            }
          ]
        },
        {
          "name": "BRow",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BRow"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
          "description": "Use the powerful mobile-first flexbox grid (via the <b-container>, <b-row>, <b-form-row> and <b-col> components) to build layouts of all shapes and sizes thanks to a twelve column system, five default responsive tiers, CSS Sass variables and mixins, and dozens of predefined classes.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "noGutters",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "type": "boolean",
              "description": "When set, removes the margin from the row and removes the padding from the child columns"
            },
            {
              "name": "alignV",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Vertical alignment of all columns in a row: 'start', 'center', or 'end'"
            },
            {
              "name": "alignH",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Horizontal alignment/spacing of all columns: 'start', 'center', 'end', 'around', or 'between'"
            },
            {
              "name": "alignContent",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Align columns items together on the cross axis: 'start', 'center', 'end', 'around', 'between' or 'stretch'. Has no effect on single rows of items"
            },
            {
              "name": "cols",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "The number row columns to create at the 'xs' breakpoint. Requires Bootstrap v4.4 CSS"
            },
            {
              "name": "colsSm",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "The number row columns to create at the 'sm' breakpoint. Requires Bootstrap v4.4 CSS"
            },
            {
              "name": "colsMd",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "The number row columns to create at the 'md' breakpoint. Requires Bootstrap v4.4 CSS"
            },
            {
              "name": "colsLg",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "The number row columns to create at the 'lg' breakpoint. Requires Bootstrap v4.4 CSS"
            },
            {
              "name": "colsXl",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "The number row columns to create at the 'xl' breakpoint. Requires Bootstrap v4.4 CSS"
            }
          ]
        },
        {
          "name": "BCol",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BCol"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
          "description": "Use the powerful mobile-first flexbox grid (via the <b-container>, <b-row>, <b-form-row> and <b-col> components) to build layouts of all shapes and sizes thanks to a twelve column system, five default responsive tiers, CSS Sass variables and mixins, and dozens of predefined classes.",
          "attributes": [
            {
              "name": "col",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "type": "boolean",
              "description": "When true makes an equal width column grid cell spans for xs and up breakpoints"
            },
            {
              "name": "cols",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Number of columns the grid cell spans for xs and up breakpoints"
            },
            {
              "name": "sm",
              "value": {
                "kind": "expression",
                "type": "boolean|string|number"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Number of columns the grid cell spans for sm and up breakpoints"
            },
            {
              "name": "md",
              "value": {
                "kind": "expression",
                "type": "boolean|string|number"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Number of columns the grid cell spans for md and up breakpoints"
            },
            {
              "name": "lg",
              "value": {
                "kind": "expression",
                "type": "boolean|string|number"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Number of columns the grid cell spans for lg and up breakpoints"
            },
            {
              "name": "xl",
              "value": {
                "kind": "expression",
                "type": "boolean|string|number"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Number of columns the grid cell spans for xl and up breakpoints"
            },
            {
              "name": "offset",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Number of columns the grid cell is offset for xs and up breakpoints"
            },
            {
              "name": "offsetSm",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Number of columns the grid cell is offset for sm and up breakpoints"
            },
            {
              "name": "offsetMd",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Number of columns the grid cell is offset for md and up breakpoints"
            },
            {
              "name": "offsetLg",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Number of columns the grid cell is offset for lg and up breakpoints"
            },
            {
              "name": "offsetXl",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Number of columns the grid cell is offset for xl and up breakpoints"
            },
            {
              "name": "order",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Flex order of the grid cell for xs and up breakpoints"
            },
            {
              "name": "orderSm",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Flex order of the grid cell for sm and up breakpoints"
            },
            {
              "name": "orderMd",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Flex order of the grid cell for md and up breakpoints"
            },
            {
              "name": "orderLg",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Flex order of the grid cell for lg and up breakpoints"
            },
            {
              "name": "orderXl",
              "value": {
                "kind": "expression",
                "type": "string|number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Flex order of the grid cell for xl and up breakpoints"
            },
            {
              "name": "alignSelf",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Vertical alignment of the grid cell with respect to the row: 'start', 'center', or 'end'"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Specify the HTML tag to render instead of the default tag"
            }
          ]
        },
        {
          "name": "BFormRow",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BFormRow"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
          "description": "Use the powerful mobile-first flexbox grid (via the <b-container>, <b-row>, <b-form-row> and <b-col> components) to build layouts of all shapes and sizes thanks to a twelve column system, five default responsive tiers, CSS Sass variables and mixins, and dozens of predefined classes.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/layout/",
              "description": "Specify the HTML tag to render instead of the default tag"
            }
          ]
        },
        {
          "name": "BLink",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BLink"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
          "description": "Use BootstrapVue's custom <b-link> component for generating a standard <a> link or <router-link>. <b-link> supports the disabled state and click event propagation.",
          "attributes": [
            {
              "name": "href",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "description": "Denotes the target URL of the link for standard a links"
            },
            {
              "name": "rel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "description": "Sets the 'rel' attribute on the rendered link"
            },
            {
              "name": "target",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"_self\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "description": "Sets the 'target' attribute on the rendered link"
            },
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "to",
              "value": {
                "kind": "expression",
                "type": "string|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "description": "router-link prop: Denotes the target route of the link. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object"
            },
            {
              "name": "append",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "type": "boolean",
              "description": "router-link prop: Setting append prop always appends the relative path to the current path"
            },
            {
              "name": "replace",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "type": "boolean",
              "description": "router-link prop: Setting the replace prop will call 'router.replace()' instead of 'router.push()' when clicked, so the navigation will not leave a history record"
            },
            {
              "name": "event",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "\"click\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "description": "router-link prop: Specify the event that triggers the link. In most cases you should leave this as the default"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "exact",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "type": "boolean",
              "description": "router-link prop: The default active class matching behavior is inclusive match. Setting this prop forces the mode to exactly match the route"
            },
            {
              "name": "exactActiveClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active with exact match. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "routerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"a\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "description": "router-link prop: Specify which tag to render, and it will still listen to click events for navigation. 'router-tag' translates to the tag prop on the final rendered router-link. Typically you should use the default value"
            },
            {
              "name": "noPrefetch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "type": "boolean",
              "description": "nuxt-link prop: To improve the responsiveness of your Nuxt.js applications, when the link will be displayed within the viewport, Nuxt.js will automatically prefetch the code splitted page. Setting 'no-prefetch' will disabled this feature for the specific link"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
              "description": "when link clicked",
              "arguments": [
                {
                  "name": "mouseEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/link/",
                  "description": "Native click event",
                  "type": "MouseEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BListGroup",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BListGroup"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
          "description": "List groups are a flexible and powerful component for displaying a series of content. List group items can be modified to support just about any content within. They can also be used as navigation via various props.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "flush",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "type": "boolean",
              "description": "When set, renders a flush list group with no left and right borders"
            },
            {
              "name": "horizontal",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "description": "When set, renders the list-group horizontally rather than the default of vertical"
            }
          ]
        },
        {
          "name": "BListGroupItem",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BListGroupItem"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
          "description": "List groups are a flexible and powerful component for displaying a series of content. List group items can be modified to support just about any content within. They can also be used as navigation via various props.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "action",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "type": "boolean",
              "description": "When set, give the item the appearance of having an action. Not needed when props 'to', 'href' or 'button' are used"
            },
            {
              "name": "button",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "type": "boolean",
              "description": "When true renders the list-group-item as a button element"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "href",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "description": "Denotes the target URL of the link for standard a links"
            },
            {
              "name": "rel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "description": "Sets the 'rel' attribute on the rendered link"
            },
            {
              "name": "target",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"_self\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "description": "Sets the 'target' attribute on the rendered link"
            },
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "to",
              "value": {
                "kind": "expression",
                "type": "string|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "description": "router-link prop: Denotes the target route of the link. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object"
            },
            {
              "name": "append",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "type": "boolean",
              "description": "router-link prop: Setting append prop always appends the relative path to the current path"
            },
            {
              "name": "replace",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "type": "boolean",
              "description": "router-link prop: Setting the replace prop will call 'router.replace()' instead of 'router.push()' when clicked, so the navigation will not leave a history record"
            },
            {
              "name": "event",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "\"click\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "description": "router-link prop: Specify the event that triggers the link. In most cases you should leave this as the default"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "exact",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "type": "boolean",
              "description": "router-link prop: The default active class matching behavior is inclusive match. Setting this prop forces the mode to exactly match the route"
            },
            {
              "name": "exactActiveClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active with exact match. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "routerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"a\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "description": "router-link prop: Specify which tag to render, and it will still listen to click events for navigation. 'router-tag' translates to the tag prop on the final rendered router-link. Typically you should use the default value"
            },
            {
              "name": "noPrefetch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/list-group/",
              "type": "boolean",
              "description": "nuxt-link prop: To improve the responsiveness of your Nuxt.js applications, when the link will be displayed within the viewport, Nuxt.js will automatically prefetch the code splitted page. Setting 'no-prefetch' will disabled this feature for the specific link"
            }
          ]
        },
        {
          "name": "BMedia",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BMedia"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/media/",
          "description": "The media object helps build complex and repetitive components where some media is positioned alongside content that doesn't wrap around said media.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/media/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "rightAlign",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/media/",
              "type": "boolean",
              "description": "Render the 'aside' slot on the right. Default is on the left"
            },
            {
              "name": "verticalAlign",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"top\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/media/",
              "description": "Vertical alignment of the 'aside' slot: 'start' (or 'top'), 'center', or 'end' (or 'bottom')"
            },
            {
              "name": "noBody",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/media/",
              "type": "boolean",
              "description": "When set, does not render a 'b-media-body' wrapper around the default slot content"
            }
          ],
          "slots": [
            {
              "name": "aside",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/media/",
              "description": "Media Aside"
            }
          ]
        },
        {
          "name": "BMediaAside",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BMediaAside"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/media/",
          "description": "The media object helps build complex and repetitive components where some media is positioned alongside content that doesn't wrap around said media.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/media/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "verticalAlign",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"top\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/media/",
              "description": "Vertical alignment of the aside: 'start' (or 'top'), 'center', or 'end' (or 'bottom')"
            }
          ]
        },
        {
          "name": "BMediaBody",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BMediaBody"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/media/",
          "description": "The media object helps build complex and repetitive components where some media is positioned alongside content that doesn't wrap around said media.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/media/",
              "description": "Specify the HTML tag to render instead of the default tag"
            }
          ]
        },
        {
          "name": "BModal",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BModal"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
          "description": "Modals are streamlined, but flexible dialog prompts powered by JavaScript and CSS. They support a number of use cases from user notification to completely custom content and feature a handful of helpful sub-components, sizes, variants, accessibility, and more.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"md\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Set the size of the modal's width. 'sm', 'md' (default), 'lg', or 'xl'"
            },
            {
              "name": "centered",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Vertically centers the modal in the viewport"
            },
            {
              "name": "scrollable",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Enables scrolling of the modal body"
            },
            {
              "name": "buttonSize",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Size of the built in footer buttons: 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "noStacking",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Prevents other modals from stacking over this one"
            },
            {
              "name": "noFade",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "When set to 'true', disables the fade animation/transition on the component"
            },
            {
              "name": "noCloseOnBackdrop",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Disables the ability to close the modal by clicking the backdrop"
            },
            {
              "name": "noCloseOnEsc",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Disables the ability to close the modal by pressing ESC"
            },
            {
              "name": "noEnforceFocus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Disables the enforce focus routine which maintains focus inside the modal"
            },
            {
              "name": "ignoreEnforceFocusSelector",
              "value": {
                "kind": "expression",
                "type": "any[]|string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Ignore certain elements from the enforce focus routine, specified by css selector(s)"
            },
            {
              "name": "title",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Text content to place in the title"
            },
            {
              "name": "titleHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "HTML string content to place in the title. Use with caution"
            },
            {
              "name": "titleTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"h5\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Specify the HTML tag to render instead of the default tag for the title"
            },
            {
              "name": "titleClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "CSS class (or classes) to apply to the title"
            },
            {
              "name": "titleSrOnly",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Wraps the title in an '.sr-only' wrapper"
            },
            {
              "name": "ariaLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Explicitly supply an 'aria-label' attribute for the modal. Should be set when the modal has no title. When not set 'aria-labelledby' will point to the modal's title"
            },
            {
              "name": "headerBgVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Applies one of the Bootstrap theme color variants to the header background"
            },
            {
              "name": "headerBorderVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Applies one of the Bootstrap theme color variants to the header border"
            },
            {
              "name": "headerTextVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Applies one of the Bootstrap theme color variants to the header text"
            },
            {
              "name": "headerCloseVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Text theme color variant to apply to the header close button"
            },
            {
              "name": "headerClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "CSS class (or classes) to apply to the '.modal-header' wrapper element"
            },
            {
              "name": "bodyBgVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Applies one of the Bootstrap theme color variants to the body background"
            },
            {
              "name": "bodyTextVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Applies one of the Bootstrap theme color variants to the body text"
            },
            {
              "name": "modalClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "CSS class (or classes) to apply to the '.modal' wrapper element"
            },
            {
              "name": "dialogClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "CSS class (or classes) to apply to the '.modal-dialog' wrapper element"
            },
            {
              "name": "contentClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "CSS class (or classes) to apply to the '.modal-content' wrapper element"
            },
            {
              "name": "bodyClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "CSS class (or classes) to apply to the '.modal-body' wrapper element"
            },
            {
              "name": "footerBgVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Applies one of the Bootstrap theme color variants to the footer background"
            },
            {
              "name": "footerBorderVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Applies one of the Bootstrap theme color variants to the footer border"
            },
            {
              "name": "footerTextVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Applies one of the Bootstrap theme color variants to the footer text"
            },
            {
              "name": "footerClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "CSS class (or classes) to apply to the '.modal-footer' wrapper element"
            },
            {
              "name": "hideHeader",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Disables rendering of the modal header"
            },
            {
              "name": "hideFooter",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Disables rendering of the modal footer"
            },
            {
              "name": "hideHeaderClose",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Disables rendering of the modal header's close button"
            },
            {
              "name": "hideBackdrop",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Disables rendering of the modal backdrop"
            },
            {
              "name": "okOnly",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Disables rendering of the default footer Cancel button"
            },
            {
              "name": "okDisabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Places the default footer OK button in the disabled state"
            },
            {
              "name": "cancelDisabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Places the default footer Cancel button in the disabled state"
            },
            {
              "name": "visible",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "The current visibility state of the modal"
            },
            {
              "name": "returnFocus",
              "value": {
                "kind": "expression",
                "type": "HTMLElement|string|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "HTML Element reference, CSS selector, or component reference to return focus to when the modal closes. When not set, will return focus to the element that last had focus before the modal opened"
            },
            {
              "name": "headerCloseContent",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"&times;\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Content of the header close button"
            },
            {
              "name": "headerCloseLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Close\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Value of the 'aria-label' on the header close button"
            },
            {
              "name": "cancelTitle",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Cancel\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Text string to place in the default footer Cancel button"
            },
            {
              "name": "cancelTitleHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "HTML string to place in the default footer Cancel button. Use with caution"
            },
            {
              "name": "okTitle",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"OK\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Text string to place in the default footer OK button"
            },
            {
              "name": "okTitleHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "HTML string to place in the default footer OK button. Use with caution"
            },
            {
              "name": "cancelVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"secondary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Button color theme variant to apply to the default footer Cancel button"
            },
            {
              "name": "okVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"primary\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Button color theme variant to apply to the default footer OK button"
            },
            {
              "name": "lazy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "When the modal has the `static` prop set, renders the modal content lazily"
            },
            {
              "name": "busy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Places the built in default footer OK and Cancel buttons in the disabled state"
            },
            {
              "name": "static",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "type": "boolean",
              "description": "Renders the content of the component in-place in the DOM, rather than portalling it to be appended to the body element"
            },
            {
              "name": "autoFocusButton",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Specify which built-in button to focus once the modal opens: 'ok', 'cancel', or 'close'"
            }
          ],
          "vue-model": {
            "prop": "visible",
            "event": "change"
          },
          "events": [
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "New modal visibility state. Used to update the v-model",
              "arguments": [
                {
                  "name": "isVisible",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "true if modal is visible, false otherwise",
                  "type": "boolean"
                }
              ]
            },
            {
              "name": "show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Always emits just before modal is shown. Cancelable",
              "arguments": [
                {
                  "name": "bvModalEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "BvModalEvent object. Call bvModalEvt.preventDefault() to cancel show",
                  "type": "BvModalEvent"
                }
              ]
            },
            {
              "name": "shown",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Always emits when modal is shown",
              "arguments": [
                {
                  "name": "bvModalEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "BvModalEvent object",
                  "type": "BvModalEvent"
                }
              ]
            },
            {
              "name": "hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Always emits just before modal has hidden. Cancelable (as long as modal wasn't forcibly hidden)",
              "arguments": [
                {
                  "name": "bvModalEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "BvModalEvent object. Call bvModalEvt.preventDefault() to cancel hide",
                  "type": "BvModalEvent"
                }
              ]
            },
            {
              "name": "hidden",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Always emits after modal is hidden",
              "arguments": [
                {
                  "name": "bvModalEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "BvModalEvent object",
                  "type": "BvModalEvent"
                }
              ]
            },
            {
              "name": "ok",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "When default OK button pressed, just before modal has hidden. Cancelable",
              "arguments": [
                {
                  "name": "bvModalEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "BvModalEvent object. Call bvModalEvt.preventDefault() to cancel hide",
                  "type": "BvModalEvent"
                }
              ]
            },
            {
              "name": "cancel",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "When default CANCEL button pressed, just before modal has hidden. Cancelable",
              "arguments": [
                {
                  "name": "bvModalEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "BvModalEvent object. Call bvModalEvt.preventDefault() to cancel hide",
                  "type": "BvModalEvent"
                }
              ]
            },
            {
              "name": "close",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "When default header close button pressed, just before modal has hidden. Cancelable",
              "arguments": [
                {
                  "name": "bvModalEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "BvModalEvent object. Call bvModalEvt.preventDefault() to cancel hide",
                  "type": "BvModalEvent"
                }
              ]
            },
            {
              "name": "bv::modal::show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Emitted on $root when modal is about to be shown. Cancelable",
              "arguments": [
                {
                  "name": "bvModalEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "BvModalEvent object. Call bvEvt.preventDefault() to cancel show",
                  "type": "BvModalEvent"
                },
                {
                  "name": "modalId",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "modal ID",
                  "type": "string"
                }
              ]
            },
            {
              "name": "bv::modal::shown",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Emitted on $root when modal is shown",
              "arguments": [
                {
                  "name": "bvModalEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "BvModalEvent object",
                  "type": "BvModalEvent"
                },
                {
                  "name": "modalId",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "modal ID",
                  "type": "string"
                }
              ]
            },
            {
              "name": "bv::modal::hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Emitted on $root when modal is about to be hidden. Cancelable (as long as modal wasn't forcibly hidden)",
              "arguments": [
                {
                  "name": "bvModalEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "BvModalEvent object. Call bvEvt.preventDefault() to cancel hide",
                  "type": "BvModalEvent"
                },
                {
                  "name": "modalId",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "modal ID",
                  "type": "string"
                }
              ]
            },
            {
              "name": "bv::modal::hidden",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Emitted on $root when modal is hidden",
              "arguments": [
                {
                  "name": "bvModalEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "BvModalEvent object",
                  "type": "BvModalEvent"
                },
                {
                  "name": "modalId",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "modal ID",
                  "type": "string"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "modal-header",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Entire modal header container contents. Also removes the top right X close button. Optionally scoped.",
              "vue-properties": [
                {
                  "name": "visible",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "The visibility state of the modal. true if the modal is visible and false if not visible",
                  "type": "boolean"
                },
                {
                  "name": "ok",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Closes the modal and fires the 'ok' and 'hide' events, with bvModalEvent.trigger = 'ok'",
                  "type": "function"
                },
                {
                  "name": "cancel",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Closes the modal and fires the 'cancel' and 'hide' events, with bvModalEvent.trigger = 'cancel'",
                  "type": "function"
                },
                {
                  "name": "close",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Closes the modal and fires the close and hide events, with bvModalEvent.trigger = 'headerclose'",
                  "type": "function"
                },
                {
                  "name": "hide",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Accepts one argument 'trigger'. Closes the modal and fires the 'hide' event, with the bvModalEvent.trigger = trigger (trigger is optional)",
                  "type": "function"
                }
              ]
            },
            {
              "name": "modal-title",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Modal title. If modal-header slot is used, this slot will not be shown. Optionally scoped.",
              "vue-properties": [
                {
                  "name": "visible",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "The visibility state of the modal. true if the modal is visible and false if not visible",
                  "type": "boolean"
                },
                {
                  "name": "ok",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Closes the modal and fires the 'ok' and 'hide' events, with bvModalEvent.trigger = 'ok'",
                  "type": "function"
                },
                {
                  "name": "cancel",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Closes the modal and fires the 'cancel' and 'hide' events, with bvModalEvent.trigger = 'cancel'",
                  "type": "function"
                },
                {
                  "name": "close",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Closes the modal and fires the close and hide events, with bvModalEvent.trigger = 'headerclose'",
                  "type": "function"
                },
                {
                  "name": "hide",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Accepts one argument 'trigger'. Closes the modal and fires the 'hide' event, with the bvModalEvent.trigger = trigger (trigger is optional)",
                  "type": "function"
                }
              ]
            },
            {
              "name": "modal-footer",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Modal footer content. Also removes default OK and CANCEL buttons. Optionally scoped.",
              "vue-properties": [
                {
                  "name": "visible",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "The visibility state of the modal. true if the modal is visible and false if not visible",
                  "type": "boolean"
                },
                {
                  "name": "ok",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Closes the modal and fires the 'ok' and 'hide' events, with bvModalEvent.trigger = 'ok'",
                  "type": "function"
                },
                {
                  "name": "cancel",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Closes the modal and fires the 'cancel' and 'hide' events, with bvModalEvent.trigger = 'cancel'",
                  "type": "function"
                },
                {
                  "name": "close",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Closes the modal and fires the close and hide events, with bvModalEvent.trigger = 'headerclose'",
                  "type": "function"
                },
                {
                  "name": "hide",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Accepts one argument 'trigger'. Closes the modal and fires the 'hide' event, with the bvModalEvent.trigger = trigger (trigger is optional)",
                  "type": "function"
                }
              ]
            },
            {
              "name": "modal-header-close",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Content of Modal header close button. If modal-header slot is used, this slot will not be shown."
            },
            {
              "name": "modal-ok",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Modal OK button content."
            },
            {
              "name": "modal-cancel",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Modal CANCEL button content."
            },
            {
              "name": "modal-backdrop",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Modal Backdrop content."
            },
            {
              "name": "default",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "description": "Content of modal body. Optionally scoped.",
              "vue-properties": [
                {
                  "name": "visible",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "The visibility state of the modal. true if the modal is visible and false if not visible",
                  "type": "boolean"
                },
                {
                  "name": "ok",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Closes the modal and fires the 'ok' and 'hide' events, with bvModalEvent.trigger = 'ok'",
                  "type": "function"
                },
                {
                  "name": "cancel",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Closes the modal and fires the 'cancel' and 'hide' events, with bvModalEvent.trigger = 'cancel'",
                  "type": "function"
                },
                {
                  "name": "close",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Closes the modal and fires the close and hide events, with bvModalEvent.trigger = 'headerclose'",
                  "type": "function"
                },
                {
                  "name": "hide",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
                  "description": "Accepts one argument 'trigger'. Closes the modal and fires the 'hide' event, with the bvModalEvent.trigger = trigger (trigger is optional)",
                  "type": "function"
                }
              ]
            }
          ]
        },
        {
          "name": "BNav",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BNav"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
          "description": "Navigation components that share general markup and styles, from the base <b-nav> class to the active and disabled states. Swap modifier props to switch between each style.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"ul\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "fill",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Proportionately fills all horizontal space with nav items. All horizontal space is occupied, but not every nav item has the same width"
            },
            {
              "name": "justified",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Fills all horizontal space with nav items, but unlike 'fill', every nav item will be the same width"
            },
            {
              "name": "align",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Align the nav items in the nav: 'start' (or 'left'), 'center', 'end' (or 'right')"
            },
            {
              "name": "tabs",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Renders the nav items with the appearance of tabs"
            },
            {
              "name": "pills",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Renders the nav items with the appearance of pill buttons"
            },
            {
              "name": "vertical",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Renders the nav vertically"
            },
            {
              "name": "small",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Makes the nav smaller"
            },
            {
              "name": "cardHeader",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Set this prop when the nav is placed inside a card header"
            }
          ]
        },
        {
          "name": "BNavItem",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BNavItem"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
          "description": "Navigation components that share general markup and styles, from the base <b-nav> class to the active and disabled states. Swap modifier props to switch between each style.",
          "attributes": [
            {
              "name": "href",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Denotes the target URL of the link for standard a links"
            },
            {
              "name": "rel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Sets the 'rel' attribute on the rendered link"
            },
            {
              "name": "target",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"_self\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Sets the 'target' attribute on the rendered link"
            },
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "to",
              "value": {
                "kind": "expression",
                "type": "string|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "router-link prop: Denotes the target route of the link. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object"
            },
            {
              "name": "append",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "router-link prop: Setting append prop always appends the relative path to the current path"
            },
            {
              "name": "replace",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "router-link prop: Setting the replace prop will call 'router.replace()' instead of 'router.push()' when clicked, so the navigation will not leave a history record"
            },
            {
              "name": "event",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "\"click\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "router-link prop: Specify the event that triggers the link. In most cases you should leave this as the default"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "exact",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "router-link prop: The default active class matching behavior is inclusive match. Setting this prop forces the mode to exactly match the route"
            },
            {
              "name": "exactActiveClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active with exact match. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "routerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"a\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "router-link prop: Specify which tag to render, and it will still listen to click events for navigation. 'router-tag' translates to the tag prop on the final rendered router-link. Typically you should use the default value"
            },
            {
              "name": "noPrefetch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "nuxt-link prop: To improve the responsiveness of your Nuxt.js applications, when the link will be displayed within the viewport, Nuxt.js will automatically prefetch the code splitted page. Setting 'no-prefetch' will disabled this feature for the specific link"
            },
            {
              "name": "linkAttrs",
              "value": {
                "kind": "expression",
                "type": "object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Additional attributes to place on the nested link element"
            },
            {
              "name": "linkClasses",
              "value": {
                "kind": "expression",
                "type": "string|object|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "CSS class (or classes) to place on the nested link element"
            }
          ]
        },
        {
          "name": "BNavText",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BNavText"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
          "description": "Navigation components that share general markup and styles, from the base <b-nav> class to the active and disabled states. Swap modifier props to switch between each style.",
          "attributes": []
        },
        {
          "name": "BNavForm",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BNavForm"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
          "description": "Navigation components that share general markup and styles, from the base <b-nav> class to the active and disabled states. Swap modifier props to switch between each style.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "novalidate",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, disables browser native HTML5 validation on controls in the form"
            },
            {
              "name": "validated",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, adds the Bootstrap class 'was-validated' on the form, triggering the native browser validation states"
            },
            {
              "name": "formClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/"
            }
          ],
          "events": [
            {
              "name": "submit",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted when the form is being submitted",
              "arguments": [
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
                  "description": "Native submit event.",
                  "type": "Event"
                }
              ]
            }
          ]
        },
        {
          "name": "BNavItemDropdown",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BNavItemDropdown"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
          "description": "Navigation components that share general markup and styles, from the base <b-nav> class to the active and disabled states. Swap modifier props to switch between each style.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "text",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Text to place in the toggle button, or in the split button is split mode"
            },
            {
              "name": "html",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "HTML string to place in the toggle button, or in the split button is split mode. Use with caution"
            },
            {
              "name": "dropup",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, positions the menu on the top of the button"
            },
            {
              "name": "dropright",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, positions the menu to the right of the button"
            },
            {
              "name": "dropleft",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, positions the menu to the left of the button"
            },
            {
              "name": "right",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Align the right edge of the menu with the right of the button"
            },
            {
              "name": "offset",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/"
            },
            {
              "name": "noFlip",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Prevent the menu from auto flipping positions"
            },
            {
              "name": "lazy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, will only mount the menu content into the DOM when the menu is open"
            },
            {
              "name": "popperOpts",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Additional configuration to pass to Popper.js"
            },
            {
              "name": "boundary",
              "value": {
                "kind": "expression",
                "type": "string|HTMLElement"
              },
              "default": "\"scrollParent\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "The boundary constraint of the menu: 'scrollParent', 'window', 'viewport', or a reference to an HTMLElement. Has no effect when dropdown is inside a b-navbar"
            },
            {
              "name": "menuClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "CSS class (or classes) to add to the menu container"
            },
            {
              "name": "toggleClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "CSS class (or classes) to add to the toggle button"
            },
            {
              "name": "noCaret",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Hide the caret indicator on the toggle button"
            },
            {
              "name": "role",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"menu\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Sets the ARIA attribute 'role' to a specific value"
            }
          ],
          "events": [
            {
              "name": "show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted just before dropdown is shown. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel show.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "shown",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted when dropdown is shown."
            },
            {
              "name": "hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted just before dropdown is hidden. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel hide.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "hidden",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted when dropdown is hidden."
            },
            {
              "name": "toggle",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted when toggle button is clicked."
            }
          ],
          "slots": [
            {
              "name": "button-content",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Can be used to implement custom text with icons and more styling."
            },
            {
              "name": "default",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Optionally scoped default slot for dropdown menu content.",
              "vue-properties": [
                {
                  "name": "hide",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
                  "description": "Can be used to close the dropdown menu. Accepts an optional boolean argument, which if true returns focus to the toggle button.",
                  "type": "function"
                }
              ]
            }
          ]
        },
        {
          "name": "BNavItemDd",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BNavItemDd"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
          "description": "Navigation components that share general markup and styles, from the base <b-nav> class to the active and disabled states. Swap modifier props to switch between each style.\n\n*Alias for BNavItemDropdown*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "text",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Text to place in the toggle button, or in the split button is split mode"
            },
            {
              "name": "html",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "HTML string to place in the toggle button, or in the split button is split mode. Use with caution"
            },
            {
              "name": "dropup",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, positions the menu on the top of the button"
            },
            {
              "name": "dropright",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, positions the menu to the right of the button"
            },
            {
              "name": "dropleft",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, positions the menu to the left of the button"
            },
            {
              "name": "right",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Align the right edge of the menu with the right of the button"
            },
            {
              "name": "offset",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/"
            },
            {
              "name": "noFlip",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Prevent the menu from auto flipping positions"
            },
            {
              "name": "lazy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, will only mount the menu content into the DOM when the menu is open"
            },
            {
              "name": "popperOpts",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Additional configuration to pass to Popper.js"
            },
            {
              "name": "boundary",
              "value": {
                "kind": "expression",
                "type": "string|HTMLElement"
              },
              "default": "\"scrollParent\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "The boundary constraint of the menu: 'scrollParent', 'window', 'viewport', or a reference to an HTMLElement. Has no effect when dropdown is inside a b-navbar"
            },
            {
              "name": "menuClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "CSS class (or classes) to add to the menu container"
            },
            {
              "name": "toggleClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "CSS class (or classes) to add to the toggle button"
            },
            {
              "name": "noCaret",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Hide the caret indicator on the toggle button"
            },
            {
              "name": "role",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"menu\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Sets the ARIA attribute 'role' to a specific value"
            }
          ],
          "events": [
            {
              "name": "show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted just before dropdown is shown. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel show.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "shown",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted when dropdown is shown."
            },
            {
              "name": "hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted just before dropdown is hidden. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel hide.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "hidden",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted when dropdown is hidden."
            },
            {
              "name": "toggle",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted when toggle button is clicked."
            }
          ],
          "slots": [
            {
              "name": "button-content",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Can be used to implement custom text with icons and more styling."
            },
            {
              "name": "default",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Optionally scoped default slot for dropdown menu content.",
              "vue-properties": [
                {
                  "name": "hide",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
                  "description": "Can be used to close the dropdown menu. Accepts an optional boolean argument, which if true returns focus to the toggle button.",
                  "type": "function"
                }
              ]
            }
          ]
        },
        {
          "name": "BNavDropdown",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BNavDropdown"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
          "description": "Navigation components that share general markup and styles, from the base <b-nav> class to the active and disabled states. Swap modifier props to switch between each style.\n\n*Alias for BNavItemDropdown*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "text",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Text to place in the toggle button, or in the split button is split mode"
            },
            {
              "name": "html",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "HTML string to place in the toggle button, or in the split button is split mode. Use with caution"
            },
            {
              "name": "dropup",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, positions the menu on the top of the button"
            },
            {
              "name": "dropright",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, positions the menu to the right of the button"
            },
            {
              "name": "dropleft",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, positions the menu to the left of the button"
            },
            {
              "name": "right",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Align the right edge of the menu with the right of the button"
            },
            {
              "name": "offset",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/"
            },
            {
              "name": "noFlip",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Prevent the menu from auto flipping positions"
            },
            {
              "name": "lazy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, will only mount the menu content into the DOM when the menu is open"
            },
            {
              "name": "popperOpts",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Additional configuration to pass to Popper.js"
            },
            {
              "name": "boundary",
              "value": {
                "kind": "expression",
                "type": "string|HTMLElement"
              },
              "default": "\"scrollParent\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "The boundary constraint of the menu: 'scrollParent', 'window', 'viewport', or a reference to an HTMLElement. Has no effect when dropdown is inside a b-navbar"
            },
            {
              "name": "menuClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "CSS class (or classes) to add to the menu container"
            },
            {
              "name": "toggleClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "CSS class (or classes) to add to the toggle button"
            },
            {
              "name": "noCaret",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Hide the caret indicator on the toggle button"
            },
            {
              "name": "role",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"menu\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Sets the ARIA attribute 'role' to a specific value"
            }
          ],
          "events": [
            {
              "name": "show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted just before dropdown is shown. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel show.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "shown",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted when dropdown is shown."
            },
            {
              "name": "hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted just before dropdown is hidden. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel hide.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "hidden",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted when dropdown is hidden."
            },
            {
              "name": "toggle",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted when toggle button is clicked."
            }
          ],
          "slots": [
            {
              "name": "button-content",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Can be used to implement custom text with icons and more styling."
            },
            {
              "name": "default",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Optionally scoped default slot for dropdown menu content.",
              "vue-properties": [
                {
                  "name": "hide",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
                  "description": "Can be used to close the dropdown menu. Accepts an optional boolean argument, which if true returns focus to the toggle button.",
                  "type": "function"
                }
              ]
            }
          ]
        },
        {
          "name": "BNavDd",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BNavDd"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
          "description": "Navigation components that share general markup and styles, from the base <b-nav> class to the active and disabled states. Swap modifier props to switch between each style.\n\n*Alias for BNavItemDropdown*",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "text",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Text to place in the toggle button, or in the split button is split mode"
            },
            {
              "name": "html",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "HTML string to place in the toggle button, or in the split button is split mode. Use with caution"
            },
            {
              "name": "dropup",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, positions the menu on the top of the button"
            },
            {
              "name": "dropright",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, positions the menu to the right of the button"
            },
            {
              "name": "dropleft",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, positions the menu to the left of the button"
            },
            {
              "name": "right",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Align the right edge of the menu with the right of the button"
            },
            {
              "name": "offset",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/"
            },
            {
              "name": "noFlip",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Prevent the menu from auto flipping positions"
            },
            {
              "name": "lazy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "When set, will only mount the menu content into the DOM when the menu is open"
            },
            {
              "name": "popperOpts",
              "value": {
                "kind": "expression",
                "type": "any"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Additional configuration to pass to Popper.js"
            },
            {
              "name": "boundary",
              "value": {
                "kind": "expression",
                "type": "string|HTMLElement"
              },
              "default": "\"scrollParent\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "The boundary constraint of the menu: 'scrollParent', 'window', 'viewport', or a reference to an HTMLElement. Has no effect when dropdown is inside a b-navbar"
            },
            {
              "name": "menuClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "CSS class (or classes) to add to the menu container"
            },
            {
              "name": "toggleClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "CSS class (or classes) to add to the toggle button"
            },
            {
              "name": "noCaret",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "type": "boolean",
              "description": "Hide the caret indicator on the toggle button"
            },
            {
              "name": "role",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"menu\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Sets the ARIA attribute 'role' to a specific value"
            }
          ],
          "events": [
            {
              "name": "show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted just before dropdown is shown. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel show.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "shown",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted when dropdown is shown."
            },
            {
              "name": "hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted just before dropdown is hidden. Cancelable.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel hide.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "hidden",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted when dropdown is hidden."
            },
            {
              "name": "toggle",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Emitted when toggle button is clicked."
            }
          ],
          "slots": [
            {
              "name": "button-content",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Can be used to implement custom text with icons and more styling."
            },
            {
              "name": "default",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
              "description": "Optionally scoped default slot for dropdown menu content.",
              "vue-properties": [
                {
                  "name": "hide",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/nav/",
                  "description": "Can be used to close the dropdown menu. Accepts an optional boolean argument, which if true returns focus to the toggle button.",
                  "type": "function"
                }
              ]
            }
          ]
        },
        {
          "name": "BNavbar",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BNavbar"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
          "description": "The component <b-navbar> is a responsive wrapper that positions branding, navigation, and other elements into a concise header. It's easily extensible and thanks to the <b-collapse> component.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"nav\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "type",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"light\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "Control the text color by setting to 'light' for use with light background color variants, or 'dark' for dark background color variants"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "toggleable",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "Set to 'true' for an always collapsed navbar, or to a specific breakpoint at which point the navbar will be expanded: 'sm', 'md', 'lg' or 'xl'"
            },
            {
              "name": "fixed",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "Set to 'top' for fixed to the top of the viewport, or 'bottom' for fixed to the bottom of the viewport"
            },
            {
              "name": "sticky",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "type": "boolean",
              "description": "Set to true to make the navbar stick to the top of the viewport (or parent container that has 'position: relative' set) when scrolled"
            },
            {
              "name": "print",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "type": "boolean",
              "description": "Navbars are hidden by default when printing. When this prop is set it will be printed"
            }
          ]
        },
        {
          "name": "BNavbarNav",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BNavbarNav"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
          "description": "The component <b-navbar> is a responsive wrapper that positions branding, navigation, and other elements into a concise header. It's easily extensible and thanks to the <b-collapse> component.",
          "attributes": [
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"ul\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "fill",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "type": "boolean",
              "description": "Proportionately fills all horizontal space with nav items. All horizontal space is occupied, but not every nav item has the same width"
            },
            {
              "name": "justified",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "type": "boolean",
              "description": "Fills all horizontal space with nav items, but unlike 'fill', every nav item will be the same width"
            },
            {
              "name": "align",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "Align the nav items in the nav: 'start' (or 'left'), 'center', 'end' (or 'right')"
            },
            {
              "name": "small",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "type": "boolean",
              "description": "Makes the nav smaller"
            }
          ]
        },
        {
          "name": "BNavbarBrand",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BNavbarBrand"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
          "description": "The component <b-navbar> is a responsive wrapper that positions branding, navigation, and other elements into a concise header. It's easily extensible and thanks to the <b-collapse> component.",
          "attributes": [
            {
              "name": "href",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "Denotes the target URL of the link for standard a links"
            },
            {
              "name": "rel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "Sets the 'rel' attribute on the rendered link"
            },
            {
              "name": "target",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"_self\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "Sets the 'target' attribute on the rendered link"
            },
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "to",
              "value": {
                "kind": "expression",
                "type": "string|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "router-link prop: Denotes the target route of the link. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object"
            },
            {
              "name": "append",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "type": "boolean",
              "description": "router-link prop: Setting append prop always appends the relative path to the current path"
            },
            {
              "name": "replace",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "type": "boolean",
              "description": "router-link prop: Setting the replace prop will call 'router.replace()' instead of 'router.push()' when clicked, so the navigation will not leave a history record"
            },
            {
              "name": "event",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "\"click\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "router-link prop: Specify the event that triggers the link. In most cases you should leave this as the default"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "exact",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "type": "boolean",
              "description": "router-link prop: The default active class matching behavior is inclusive match. Setting this prop forces the mode to exactly match the route"
            },
            {
              "name": "exactActiveClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active with exact match. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "routerTag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"a\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "router-link prop: Specify which tag to render, and it will still listen to click events for navigation. 'router-tag' translates to the tag prop on the final rendered router-link. Typically you should use the default value"
            },
            {
              "name": "noPrefetch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "type": "boolean",
              "description": "nuxt-link prop: To improve the responsiveness of your Nuxt.js applications, when the link will be displayed within the viewport, Nuxt.js will automatically prefetch the code splitted page. Setting 'no-prefetch' will disabled this feature for the specific link"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "Specify the HTML tag to render instead of the default tag"
            }
          ]
        },
        {
          "name": "BNavbarToggle",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BNavbarToggle"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
          "description": "The component <b-navbar> is a responsive wrapper that positions branding, navigation, and other elements into a concise header. It's easily extensible and thanks to the <b-collapse> component.",
          "attributes": [
            {
              "name": "label",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Toggle navigation\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "String to place in the toggle's 'aria-label' attribute"
            },
            {
              "name": "target",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "required": true,
              "description": "ID of the collapse the toggle controls"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "Emitted when the toggle is clicked.",
              "arguments": [
                {
                  "name": "mouseEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BNavToggle",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BNavToggle"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
          "description": "The component <b-navbar> is a responsive wrapper that positions branding, navigation, and other elements into a concise header. It's easily extensible and thanks to the <b-collapse> component.\n\n*Alias for BNavbarToggle*",
          "attributes": [
            {
              "name": "label",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Toggle navigation\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "String to place in the toggle's 'aria-label' attribute"
            },
            {
              "name": "target",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "required": true,
              "description": "ID of the collapse the toggle controls"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
              "description": "Emitted when the toggle is clicked.",
              "arguments": [
                {
                  "name": "mouseEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/navbar/",
                  "description": "Native click event object",
                  "type": "MouseEvent"
                }
              ]
            }
          ]
        },
        {
          "name": "BPagination",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BPagination"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
          "description": "Quick first, previous, next, last, and page buttons for pagination control of another component (such as <b-table> or lists).",
          "attributes": [
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Current page number, starting from 1"
            },
            {
              "name": "limit",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "5",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Maximum number of buttons to show (including ellipsis if shown, but excluding the bookend buttons)"
            },
            {
              "name": "align",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"left\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Alignment of the page buttons: 'start' (or 'left'), 'center', 'end' (or 'right'), or 'fill'"
            },
            {
              "name": "pills",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "type": "boolean",
              "description": "Applies pill styling to the pagination buttons"
            },
            {
              "name": "hideGotoEndButtons",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "type": "boolean",
              "description": "Hides the goto first and goto last page buttons"
            },
            {
              "name": "ariaLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Pagination\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Value to place in the 'aria-label' attribute of the pagination control"
            },
            {
              "name": "labelFirstPage",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Go to first page\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Value to place in the 'aria-label' attribute of the goto first page button"
            },
            {
              "name": "firstText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"«\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Content to place in the goto first page button"
            },
            {
              "name": "firstNumber",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "type": "boolean",
              "description": "Display first page number instead of Goto First button"
            },
            {
              "name": "firstClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Class(es) to apply to the 'Go to first page' button"
            },
            {
              "name": "labelPrevPage",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Go to previous page\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Value to place in the 'aria-label' attribute of the goto previous page button"
            },
            {
              "name": "prevText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"‹\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Content to place in the goto previous page button"
            },
            {
              "name": "prevClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Class(es) to apply to the 'Go to previous page' button"
            },
            {
              "name": "labelNextPage",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Go to next page\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Value to place in the 'aria-label' attribute of the goto next page button"
            },
            {
              "name": "nextText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"›\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Content to place in the goto next page button"
            },
            {
              "name": "nextClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Class(es) to apply to the 'Go to next page' button"
            },
            {
              "name": "labelLastPage",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Go to last page\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Value to place in the 'aria-label' attribute of the goto last page button"
            },
            {
              "name": "lastText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"»\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Content to place in the goto last page button"
            },
            {
              "name": "lastNumber",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "type": "boolean",
              "description": "Display last page number instead of Goto Last button"
            },
            {
              "name": "lastClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Class(es) to apply to the 'Go to last page' button"
            },
            {
              "name": "labelPage",
              "value": {
                "kind": "expression",
                "type": "string|function"
              },
              "default": "\"Go to page\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Value to place in the 'aria-label' attribute of the goto page button. Page number will be prepended automatically"
            },
            {
              "name": "pageClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Class(es) to apply to the 'Go to page #' buttons"
            },
            {
              "name": "hideEllipsis",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "type": "boolean",
              "description": "Do not show ellipsis buttons"
            },
            {
              "name": "ellipsisText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"…\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Content to place in the ellipsis placeholder"
            },
            {
              "name": "ellipsisClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Class(es) to apply to the 'ellipsis' placeholders"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Size of the rendered buttons: 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "perPage",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "20",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Number of rows per page"
            },
            {
              "name": "totalRows",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Total number of rows in the dataset"
            },
            {
              "name": "ariaControls",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "ID of the element or component that this controls. Value is placed in the 'aria-controls' attribute"
            }
          ],
          "vue-model": {
            "prop": "value",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "when page changes via user interaction or programmatically",
              "arguments": [
                {
                  "name": "page",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Selected page number (starting with 1)",
                  "type": "number"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "when page changes via user interaction",
              "arguments": [
                {
                  "name": "page",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Selected page number (starting with 1)",
                  "type": "number"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "first-text",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "The \"go to first page\" button content. Optionally scoped",
              "vue-properties": [
                {
                  "name": "disabled",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Will be true if this button is disabled (non-clickable)",
                  "type": "boolean"
                },
                {
                  "name": "page",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Page number (from 1 to numberOfPages)",
                  "type": "number"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Page number (indexed from 0 to numberOfPages -1)",
                  "type": "number"
                }
              ]
            },
            {
              "name": "prev-text",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "The \"go to previous page\" button content. Optionally scoped",
              "vue-properties": [
                {
                  "name": "disabled",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Will be true if this button is disabled (non-clickable)",
                  "type": "boolean"
                },
                {
                  "name": "page",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Page number (from 1 to numberOfPages)",
                  "type": "number"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Page number (indexed from 0 to numberOfPages -1)",
                  "type": "number"
                }
              ]
            },
            {
              "name": "next-text",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "The \"go to next page\" button content. Optionally scoped",
              "vue-properties": [
                {
                  "name": "disabled",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Will be true if this button is disabled (non-clickable)",
                  "type": "boolean"
                },
                {
                  "name": "page",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Page number (from 1 to numberOfPages)",
                  "type": "number"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Page number (indexed from 0 to numberOfPages -1)",
                  "type": "number"
                }
              ]
            },
            {
              "name": "last-text",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "The \"go to last page\" button content. Optionally scoped",
              "vue-properties": [
                {
                  "name": "disabled",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Will be true if this button is disabled (non-clickable)",
                  "type": "boolean"
                },
                {
                  "name": "page",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Page number (from 1 to numberOfPages)",
                  "type": "number"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Page number (indexed from 0 to numberOfPages -1)",
                  "type": "number"
                }
              ]
            },
            {
              "name": "ellipsis-text",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "The '...' indicator content. Not scoped"
            },
            {
              "name": "page",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
              "description": "Page number button content. Always scoped",
              "vue-properties": [
                {
                  "name": "active",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "If the page is the active page",
                  "type": "boolean"
                },
                {
                  "name": "disabled",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Will be true if this button is disabled (non-clickable)",
                  "type": "boolean"
                },
                {
                  "name": "page",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Page number (from 1 to numberOfPages)",
                  "type": "number"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Page number (indexed from 0 to numberOfPages -1)",
                  "type": "number"
                },
                {
                  "name": "content",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination/",
                  "description": "Default button content",
                  "type": "string"
                }
              ]
            }
          ]
        },
        {
          "name": "BPaginationNav",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BPaginationNav"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
          "description": "Quick first, previous, next, last, and page buttons for navigation based pagination, supporting regular links or router links.",
          "attributes": [
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Current page number, starting from 1"
            },
            {
              "name": "limit",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "5",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Maximum number of buttons to show (including ellipsis if shown, but excluding the bookend buttons)"
            },
            {
              "name": "align",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"left\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Alignment of the page buttons: 'start' (or 'left'), 'center', 'end' (or 'right'), or 'fill'"
            },
            {
              "name": "pills",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "type": "boolean",
              "description": "Applies pill styling to the pagination buttons"
            },
            {
              "name": "hideGotoEndButtons",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "type": "boolean",
              "description": "Hides the goto first and goto last page buttons"
            },
            {
              "name": "ariaLabel",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Pagination\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Value to place in the 'aria-label' attribute of the pagination control"
            },
            {
              "name": "labelFirstPage",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Go to first page\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Value to place in the 'aria-label' attribute of the goto first page button"
            },
            {
              "name": "firstText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"«\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Content to place in the goto first page button"
            },
            {
              "name": "firstNumber",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "type": "boolean",
              "description": "Display first page number instead of Goto First button"
            },
            {
              "name": "firstClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Class(es) to apply to the 'Go to first page' button"
            },
            {
              "name": "labelPrevPage",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Go to previous page\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Value to place in the 'aria-label' attribute of the goto previous page button"
            },
            {
              "name": "prevText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"‹\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Content to place in the goto previous page button"
            },
            {
              "name": "prevClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Class(es) to apply to the 'Go to previous page' button"
            },
            {
              "name": "labelNextPage",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Go to next page\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Value to place in the 'aria-label' attribute of the goto next page button"
            },
            {
              "name": "nextText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"›\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Content to place in the goto next page button"
            },
            {
              "name": "nextClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Class(es) to apply to the 'Go to next page' button"
            },
            {
              "name": "labelLastPage",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Go to last page\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Value to place in the 'aria-label' attribute of the goto last page button"
            },
            {
              "name": "lastText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"»\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Content to place in the goto last page button"
            },
            {
              "name": "lastNumber",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "type": "boolean",
              "description": "Display last page number instead of Goto Last button"
            },
            {
              "name": "lastClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Class(es) to apply to the 'Go to last page' button"
            },
            {
              "name": "labelPage",
              "value": {
                "kind": "expression",
                "type": "string|function"
              },
              "default": "\"Go to page\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Value to place in the 'aria-label' attribute of the goto page button. Page number will be prepended automatically"
            },
            {
              "name": "pageClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Class(es) to apply to the 'Go to page #' buttons"
            },
            {
              "name": "hideEllipsis",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "type": "boolean",
              "description": "Do not show ellipsis buttons"
            },
            {
              "name": "ellipsisText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"…\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Content to place in the ellipsis placeholder"
            },
            {
              "name": "ellipsisClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Class(es) to apply to the 'ellipsis' placeholders"
            },
            {
              "name": "size",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Size of the rendered buttons: 'sm', 'md' (default), or 'lg'"
            },
            {
              "name": "numberOfPages",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Total number of pages"
            },
            {
              "name": "baseUrl",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"/\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Base URL to use when auto generating page links"
            },
            {
              "name": "useRouter",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "type": "boolean",
              "description": "Render router-links instead of links when auto generating the page links"
            },
            {
              "name": "linkGen",
              "value": {
                "kind": "expression",
                "type": "function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Link generator function. See docs for details"
            },
            {
              "name": "pageGen",
              "value": {
                "kind": "expression",
                "type": "function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "page number generator function. See docs for details"
            },
            {
              "name": "pages",
              "value": {
                "kind": "expression",
                "type": "any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Array of page numbers and links"
            },
            {
              "name": "noPageDetect",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "type": "boolean",
              "description": "Disable of auto detection of current page"
            },
            {
              "name": "activeClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "exact",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "type": "boolean",
              "description": "router-link prop: The default active class matching behavior is inclusive match. Setting this prop forces the mode to exactly match the route"
            },
            {
              "name": "exactActiveClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "router-link prop: Configure the active CSS class applied when the link is active with exact match. Typically you will want to set this to class name 'active'"
            },
            {
              "name": "noPrefetch",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "type": "boolean",
              "description": "nuxt-link prop: To improve the responsiveness of your Nuxt.js applications, when the link will be displayed within the viewport, Nuxt.js will automatically prefetch the code splitted page. Setting 'no-prefetch' will disabled this feature for the specific link"
            }
          ],
          "vue-model": {
            "prop": "value",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "when page changes via user interaction or programmatically",
              "arguments": [
                {
                  "name": "page",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Selected page number (starting with 1), or null if no page found"
                }
              ]
            },
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "when page changes via user interaction",
              "arguments": [
                {
                  "name": "page",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Selected page number (starting with 1)"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "first-text",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "The \"go to first page\" button content. Optionally scoped",
              "vue-properties": [
                {
                  "name": "disabled",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Will be true if this button is disabled (non-clickable)",
                  "type": "boolean"
                },
                {
                  "name": "page",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Page number (from 1 to numberOfPages)",
                  "type": "number"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Page number (indexed from 0 to numberOfPages -1)",
                  "type": "number"
                }
              ]
            },
            {
              "name": "prev-text",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "The \"go to previous page\" button content. Optionally scoped",
              "vue-properties": [
                {
                  "name": "disabled",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Will be true if this button is disabled (non-clickable)",
                  "type": "boolean"
                },
                {
                  "name": "page",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Page number (from 1 to numberOfPages)",
                  "type": "number"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Page number (indexed from 0 to numberOfPages -1)",
                  "type": "number"
                }
              ]
            },
            {
              "name": "next-text",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "The \"go to next page\" button content. Optionally scoped",
              "vue-properties": [
                {
                  "name": "disabled",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Will be true if this button is disabled (non-clickable)",
                  "type": "boolean"
                },
                {
                  "name": "page",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Page number (from 1 to numberOfPages)",
                  "type": "number"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Page number (indexed from 0 to numberOfPages -1)",
                  "type": "number"
                }
              ]
            },
            {
              "name": "last-text",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "The \"go to last page\" button content. Optionally scoped",
              "vue-properties": [
                {
                  "name": "disabled",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Will be true if this button is disabled (non-clickable)",
                  "type": "boolean"
                },
                {
                  "name": "page",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Page number (from 1 to numberOfPages)",
                  "type": "number"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Page number (indexed from 0 to numberOfPages -1)",
                  "type": "number"
                }
              ]
            },
            {
              "name": "ellipsis-text",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "The '...' indicator content. Not scoped"
            },
            {
              "name": "page",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
              "description": "Page number button content. Always scoped",
              "vue-properties": [
                {
                  "name": "active",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "If the page is the active page",
                  "type": "boolean"
                },
                {
                  "name": "disabled",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Will be true if this button is disabled (non-clickable)",
                  "type": "boolean"
                },
                {
                  "name": "page",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Page number (from 1 to numberOfPages)",
                  "type": "number"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Page number (indexed from 0 to numberOfPages -1)",
                  "type": "number"
                },
                {
                  "name": "content",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/pagination-nav/",
                  "description": "Default button content, or the result of the page-gen function",
                  "type": "string"
                }
              ]
            }
          ]
        },
        {
          "name": "BPopover",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BPopover"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
          "description": "The Popover feature provides a tooltip-like behavior, can be easily applied to any interactive element via the <b-popover> component or v-b-popover directive",
          "attributes": [
            {
              "name": "title",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Text to place in the popovers title"
            },
            {
              "name": "target",
              "value": {
                "kind": "expression",
                "type": "string|HTMLElement|SVGElement|function|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "required": true,
              "description": "Element string ID, or a reference to an element or component, that you want to trigger the popover."
            },
            {
              "name": "triggers",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "\"click\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Specify which triggers will show the popover. Supported values are 'click', 'hover', 'focus'. Refer to the docs for special triggers 'blur' and 'manual'"
            },
            {
              "name": "placement",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"right\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Placement of the popover: One of 'top', 'bottom', 'right', 'left', 'top-left', 'top-right', 'bottom-left', 'bottom-right', 'left-top', 'left-bottom', 'right-top', 'right-bottom'"
            },
            {
              "name": "fallbackPlacement",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "\"flip\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "placement to use when the popover would be out of boundaries. Refer to the docs for more details"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "customClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "CSS class (or classes) to apply to the popover's root element"
            },
            {
              "name": "delay",
              "value": {
                "kind": "expression",
                "type": "number|object|string"
              },
              "default": "50",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Value for the show and hide delay. Applies to both show and hide when specified as a number or string. Use object form to set show and hide delays individually"
            },
            {
              "name": "boundary",
              "value": {
                "kind": "expression",
                "type": "string|HTMLElement|object"
              },
              "default": "\"scrollParent\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "The boundary constraint of the popover: 'scrollParent', 'window', 'viewport', or a reference to an HTMLElement or component"
            },
            {
              "name": "boundaryPadding",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "5",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "The popover will try and stay away from the edge of the boundary element by the number of pixels specified"
            },
            {
              "name": "offset",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Offset (in pixels) for the arrow center compared to the trigger target element"
            },
            {
              "name": "noFade",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "type": "boolean",
              "description": "When set to 'true', disables the fade animation/transition on the component"
            },
            {
              "name": "container",
              "value": {
                "kind": "expression",
                "type": "string|HTMLElement|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "The container element to append the rendered popover when visible. Default's to the body element"
            },
            {
              "name": "show",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "type": "boolean",
              "description": "When set will show the popover"
            },
            {
              "name": "noninteractive",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "type": "boolean"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "content",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Text to place in the body of the popover"
            }
          ],
          "events": [
            {
              "name": "show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Emitted when popover is about to be shown. Cancelable. Call bvEvent.preventDefault() to cancel show.",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
                  "description": "bvEvent object",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "shown",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Emitted when popover is shown",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
                  "description": "bvEvent object",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Emitted when popover is about to be hidden. Cancelable. Call bvEvent.preventDefault() to cancel hide.",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
                  "description": "bvEvent object",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "hidden",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Emitted when popover is hidden",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
                  "description": "bvEvent object",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "enabled",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Emitted when popover becomes enabled",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
                  "description": "bvEvent object",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "disabled",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Emitted when popover becomes disabled",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
                  "description": "bvEvent object",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "bv::popover::show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Emitted on $root when popover is about to be shown. Cancelable. Call bvEvent.preventDefault() to cancel show.",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
                  "description": "bvEvent object",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "bv::popover::shown",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Emitted on $root when popover is shown",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
                  "description": "bvEvent object",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "bv::popover::hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Emitted on $root when popover is about to be hidden. Cancelable. Call bvEvent.preventDefault() to cancel hide.",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
                  "description": "bvEvent object",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "bv::popover::hidden",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Emitted on $root when popover is hidden",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
                  "description": "bvEvent object",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "bv::popover::enabled",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Emitted on $root when popover becomes enabled",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
                  "description": "bvEvent object",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "bv::popover::disabled",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Emitted on $root when popover becomes disabled",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
                  "description": "bvEvent object",
                  "type": "BvEvent"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "title",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Optional slot for title (HTML/components supported)"
            },
            {
              "name": "default",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/popover/",
              "description": "Slot for content (HTML/components supported)"
            }
          ]
        },
        {
          "name": "BProgress",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BProgress"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
          "description": "A custom progress component for displaying simple or complex progress bars, featuring support for horizontally stacked bars, animated backgrounds, and text labels.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "striped",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "type": "boolean",
              "description": "Enable the striped background"
            },
            {
              "name": "animated",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "type": "boolean",
              "description": "Enable the animated background. Also automatically sets 'striped'"
            },
            {
              "name": "height",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "description": "Override the default height by specifying a CSS height value (including units)"
            },
            {
              "name": "precision",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "description": "The number of digits after the decimal to round the value to"
            },
            {
              "name": "showProgress",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "type": "boolean",
              "description": "Displays the current progress value as a percentage"
            },
            {
              "name": "showValue",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "type": "boolean",
              "description": "Displays the current progress value"
            },
            {
              "name": "max",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "100",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "description": "Set the maximum value"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "description": "The current value of the progress bar"
            }
          ]
        },
        {
          "name": "BProgressBar",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BProgressBar"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
          "description": "A custom progress component for displaying simple or complex progress bars, featuring support for horizontally stacked bars, animated backgrounds, and text labels.",
          "attributes": [
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "description": "The current value of the progress bar"
            },
            {
              "name": "label",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "description": "Text string to explicitly set the label as"
            },
            {
              "name": "labelHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "description": "HTML string to explicitly set the label as. Use with caution"
            },
            {
              "name": "max",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "description": "Set the maximum value"
            },
            {
              "name": "precision",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "description": "The number of digits after the decimal to round the value to"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "striped",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "type": "boolean",
              "description": "Enable the striped background"
            },
            {
              "name": "animated",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "type": "boolean",
              "description": "Enable the animated background. Also automatically sets 'striped'"
            },
            {
              "name": "showProgress",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "type": "boolean",
              "description": "Displays the current progress value as a percentage"
            },
            {
              "name": "showValue",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/progress/",
              "type": "boolean",
              "description": "Displays the current progress value"
            }
          ]
        },
        {
          "name": "BSpinner",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BSpinner"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/spinner/",
          "description": "The <b-spinner> component can be used to show the loading state in your projects. They're rendered only with basic HTML and CSS as a lightweight Vue functional component.",
          "attributes": [
            {
              "name": "type",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"border\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/spinner/",
              "description": "Type of spinner to show. Current supported types are 'border' and 'grow'"
            },
            {
              "name": "label",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/spinner/",
              "description": "Text content to place in the sr-only label"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/spinner/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "small",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/spinner/",
              "type": "boolean",
              "description": "When set, rendered a smaller spinner suitable for placing in buttons"
            },
            {
              "name": "role",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"status\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/spinner/",
              "description": "Sets the ARIA attribute 'role' to a specific value"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"span\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/spinner/",
              "description": "Specify the HTML tag to render instead of the default tag"
            }
          ],
          "slots": [
            {
              "name": "label",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/spinner/",
              "description": "Content to place in the sr-only label"
            }
          ]
        },
        {
          "name": "BTable",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BTable"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
          "description": "For displaying tabular data. <b-table> supports pagination, filtering, sorting, custom rendering, events, and asynchronous data. For simple display of tabular data without all the fancy features, BootstrapVue also provides lightweight alternative components <b-table-lite> and <b-table-simple>",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "items",
              "value": {
                "kind": "expression",
                "type": "any[]|function"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Array of items to display, or an items provider function reference. Refer to the docs for details"
            },
            {
              "name": "fields",
              "value": {
                "kind": "expression",
                "type": "any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Array of field names or array of field definition objects"
            },
            {
              "name": "primaryKey",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Name of a table field that contains a guaranteed unique value per row. Needed for tbody transition support, and also speeds up table rendering"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "any[]"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Currently displayed row data. Read-only. Do not set a value on this prop"
            },
            {
              "name": "striped",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Applies striping to the tbody rows"
            },
            {
              "name": "bordered",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Adds borders to all the cells and headers"
            },
            {
              "name": "borderless",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Removes all borders from cells"
            },
            {
              "name": "outlined",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Adds an outline border to the table element"
            },
            {
              "name": "dark",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Places the table in dark mode"
            },
            {
              "name": "hover",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Enables hover styling on rows"
            },
            {
              "name": "small",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Renders the table with smaller cell padding"
            },
            {
              "name": "fixed",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Makes all columns equal width (fixed layout table). Will speed up rendering for large tables. Column widths can be set via CSS or colgroup"
            },
            {
              "name": "responsive",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Makes the table responsive in width, adding a horizontal scrollbar. Set to true for always responsive or set to one of the breakpoints to switch from responsive to normal: 'sm', 'md', 'lg', 'xl'"
            },
            {
              "name": "stickyHeader",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Makes the table header sticky. Set to true for a maximum height 300px tall table, or set to any valid CSS hight (including units)"
            },
            {
              "name": "noBorderCollapse",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Disable's the collapsing of table borders. Useful when table has sticky headers or columns"
            },
            {
              "name": "captionTop",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Visually place the table caption above the table. Default is below."
            },
            {
              "name": "tableVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Apply a Bootstrap theme color variant to the entire table"
            },
            {
              "name": "tableClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the table element"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Place the table in stacked mode. Set to true for always stacked, or set to one of the breakpoints to switch from stacked to normal: 'sm', 'md', 'lg', 'xl'"
            },
            {
              "name": "headVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Header variant: 'light' or 'dark', or unset. May take precedence over head-row-variant"
            },
            {
              "name": "headRowVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Apply a Bootstrap theme color variant to the tr element in the thead"
            },
            {
              "name": "theadClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the thead element"
            },
            {
              "name": "theadTrClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the tr element in the thead"
            },
            {
              "name": "footClone",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Enable to the footer of the table, and clone the header content by default"
            },
            {
              "name": "footVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Footer variant: 'light' or 'dark', or unset. May take precedence over foot-row-variant"
            },
            {
              "name": "footRowVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Apply a Bootstrap theme color variant to the tr element in the tfoot. Falls back to head-row-variant"
            },
            {
              "name": "tfootClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the tfoot element"
            },
            {
              "name": "tfootTrClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the tr element in the tfoot"
            },
            {
              "name": "tbodyTrClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object|function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the tr element in the tbody. Can be a function that returns a class (see docs for details)"
            },
            {
              "name": "tbodyTrAttr",
              "value": {
                "kind": "expression",
                "type": "object|function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Attributes to be added to each tr in the tbody, or a function returning such attributes (see docs for details)"
            },
            {
              "name": "detailsTdClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the td element in the details row"
            },
            {
              "name": "tbodyTransitionProps",
              "value": {
                "kind": "expression",
                "type": "object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Vue 'transition-group' properties. When provided will make the tbody a Vue 'transition-group' component"
            },
            {
              "name": "tbodyTransitionHandlers",
              "value": {
                "kind": "expression",
                "type": "object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Vue 'transition-group' event handlers. When provided will make the tbody a Vue 'transition-group' component"
            },
            {
              "name": "tbodyClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the tbody element"
            },
            {
              "name": "filter",
              "value": {
                "kind": "expression",
                "type": "string|RegExp|object|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Criteria for filtering. Internal filtering supports only string or RegExpr criteria."
            },
            {
              "name": "filterFunction",
              "value": {
                "kind": "expression",
                "type": "function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Reference to a function to use instead of the internal filtering function. Refer to the docs for details"
            },
            {
              "name": "filterIgnoredFields",
              "value": {
                "kind": "expression",
                "type": "any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Array of top level fields to ignore when filtering the item data"
            },
            {
              "name": "filterIncludedFields",
              "value": {
                "kind": "expression",
                "type": "any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Array of fields to include when filtering. Overrides filter-ignore-fields"
            },
            {
              "name": "filterDebounce",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Time in milliseconds to debounce changes to the filter criteria before filtering the records"
            },
            {
              "name": "sortBy",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Field name that is currently being sorted. Set to null to clear sorting. Syncable with the .sync prop modifier"
            },
            {
              "name": "sortDesc",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Set to true to sort the column in descending order. Syncable with the .sync prop modifier"
            },
            {
              "name": "sortDirection",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"asc\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "The initial sorting direction to sort an unsorted column by: 'asc', 'desc', or 'last' (to use the previous sort direction)"
            },
            {
              "name": "sortCompare",
              "value": {
                "kind": "expression",
                "type": "function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "A reference to a function for sort-comparing tow rows of data. Defaults to the internal sort compare routine. See docs for details"
            },
            {
              "name": "sortCompareOptions",
              "value": {
                "kind": "expression",
                "type": "object"
              },
              "default": "{\"numeric\":true}",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "An object containing sort configuration for the 'String.prototype.sortLocale' method. See docs for details"
            },
            {
              "name": "sortCompareLocale",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "The locale string (or array of locale string) that specified the language when sorting. See docs for details"
            },
            {
              "name": "sortNullLast",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "When sorting, null and undefined values will be sorted first (or last, depending on 'sort-desc'). Set this prop to sort null values last. Only applicable to internal sorting"
            },
            {
              "name": "noSortReset",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "When a table is sortable, clicking on any non-sortable column heading will clear the current sort values. Set this prop to disable this feature"
            },
            {
              "name": "labelSortAsc",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Click to sort Ascending\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Hidden string to place in the header cell when clicking the cell will change the sort direction to ascending"
            },
            {
              "name": "labelSortDesc",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Click to sort Descending\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Hidden string to place in the header cell when clicking the cell will change the sort direction to descending"
            },
            {
              "name": "labelSortClear",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"Click to clear sorting\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Hidden string to place in the header cell when clicking the cell will clear the current sorting direction"
            },
            {
              "name": "noLocalSorting",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Disabled the internal sorting routine, and expects the user to provde the items sorted. Sorting controls will still be available"
            },
            {
              "name": "noFooterSorting",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "When the build in formatter is used, setting this prop will disable the sorting ability in the footer"
            },
            {
              "name": "sortIconLeft",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Positions the sort control to the left of the header text. Default is on the right of the header text"
            },
            {
              "name": "perPage",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Number of rows to show per page. Set to 0 to disable pagination"
            },
            {
              "name": "currentPage",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "The current page number to display when the table is paginated. Starting from 1 and up"
            },
            {
              "name": "caption",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Text string to place in the caption element"
            },
            {
              "name": "captionHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "HTML string to place in the caption element. Use with caution"
            },
            {
              "name": "selectable",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "When set, places the table body rows in selectable mode"
            },
            {
              "name": "selectMode",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"multi\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "The selectable mode for the table when 'selectable' is set. Possible values: 'single', 'multi' or 'range'"
            },
            {
              "name": "selectedVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"active\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Bootstrap color theme variant to set selected rows to. Use any of the standard Bootstrap theme color variants, or the special table row variant 'active' (default). Set to an empty string to not use a variant"
            },
            {
              "name": "noSelectOnClick",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Disables row selection via click events. Row selection will be only available programmatically"
            },
            {
              "name": "showEmpty",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "When enabled, and there are no item records to show, shows a message that there are no rows to show"
            },
            {
              "name": "emptyText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"There are no records to show\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Text string to show when the table has no items to show"
            },
            {
              "name": "emptyHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "HTML string to show when the table has no items to show. Use with caution"
            },
            {
              "name": "emptyFilteredText",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"There are no records matching your request\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Text string to show when the table has no items to show due to filtering"
            },
            {
              "name": "emptyFilteredHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "HTML string to show when the table has no items to show due to filtering. Use with caution"
            },
            {
              "name": "busy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "When set, forces the table into the busy state.Automatically set when an items provider function is being called"
            },
            {
              "name": "noProviderPaging",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "When set, uses internal paging to pagination the data. Otherwise the items provider is expected to perform the paging"
            },
            {
              "name": "noProviderSorting",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "When set, uses internal sorting to sort the data. Otherwise the items provider is expected to perform the sorting"
            },
            {
              "name": "noProviderFiltering",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "When set, uses internal filtering to pagination the data. Otherwise the provider is expected to perform the filtering"
            },
            {
              "name": "apiUrl",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Pass through prop. Passed as part of the context object sent to the items provider function"
            }
          ],
          "events": [
            {
              "name": "row-clicked",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a row is clicked.",
              "arguments": [
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Item data of the row being clicked.",
                  "type": "object"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Index of the row being clicked.",
                  "type": "number"
                },
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Native event object.",
                  "type": "MouseEvent|KeyboardEvent"
                }
              ]
            },
            {
              "name": "row-dblclicked",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a row is double clicked.",
              "arguments": [
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Item data of the row being double clicked.",
                  "type": "object"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Index of the row being double clicked.",
                  "type": "number"
                },
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Native event object.",
                  "type": "MouseEvent"
                }
              ]
            },
            {
              "name": "row-middle-clicked",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a row is middle clicked.",
              "arguments": [
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Item data of the row being middle clicked.",
                  "type": "object"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Index of the row being middle clicked.",
                  "type": "number"
                },
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Native event object.",
                  "type": "MouseEvent"
                }
              ]
            },
            {
              "name": "row-contextmenu",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a row is right clicked.",
              "arguments": [
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Item data of the row being right clicked.",
                  "type": "object"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Index of the row being right clicked.",
                  "type": "number"
                },
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Native event object.",
                  "type": "MouseEvent"
                }
              ]
            },
            {
              "name": "row-hovered",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a row is hovered.",
              "arguments": [
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Item data of the row being hovered.",
                  "type": "object"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Index of the row being hovered.",
                  "type": "number"
                },
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Native event object.",
                  "type": "MouseEvent"
                }
              ]
            },
            {
              "name": "row-unhovered",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a row is unhovered.",
              "arguments": [
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Item data of the row being unhovered.",
                  "type": "object"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Index of the row being unhovered.",
                  "type": "number"
                },
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Native event object.",
                  "type": "MouseEvent"
                }
              ]
            },
            {
              "name": "row-selected",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a row or rows have been selected or unselected.",
              "arguments": [
                {
                  "name": "rows",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Array of the row items that are selected.",
                  "type": "any[]"
                }
              ]
            },
            {
              "name": "head-clicked",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a header or footer cell is clicked. Not applicable for 'custom-foot' slot.",
              "arguments": [
                {
                  "name": "key",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Column key clicked (field name).",
                  "type": "string"
                },
                {
                  "name": "field",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Field definition object.",
                  "type": "object"
                },
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Native event object.",
                  "type": "MouseEvent|KeyboardEvent"
                },
                {
                  "name": "isFooter",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "'True' if this event originated from clicking on the footer cell",
                  "type": "boolean"
                }
              ]
            },
            {
              "name": "sort-changed",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when the sorting on the table has changed",
              "arguments": [
                {
                  "name": "ctx",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Table state context object. See docs.",
                  "type": "object"
                }
              ]
            },
            {
              "name": "context-changed",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted whenever the table state context has changed",
              "arguments": [
                {
                  "name": "ctx",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Table state context object. See docs.",
                  "type": "object"
                }
              ]
            },
            {
              "name": "filtered",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when local filtering causes a change in the number of items.",
              "arguments": [
                {
                  "name": "filteredItems",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Array of items after filtering (before local pagination occurs).",
                  "type": "any[]"
                }
              ]
            },
            {
              "name": "refreshed",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when the items provider function has returned data."
            }
          ],
          "slots": [
            {
              "name": "cell({key})",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Scoped slot for custom data rendering of field data. '{key}' is the field's key name. See docs for scoped data",
              "pattern": "cell\\([a-zA-Z0-9$_.\\-]+\\)",
              "vue-properties": [
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The row's index (zero-based) with respect to the displayed rows",
                  "type": "number"
                },
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The row's item data object",
                  "type": "object"
                },
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The value for this key in the record (null or undefined if a virtual column), or the output of the field's formatter function"
                },
                {
                  "name": "unformatted",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The raw value for this key in the item record (null or undefined if a virtual column), before being passed to the field's formatter function"
                },
                {
                  "name": "field",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's normalized definition object (from the fields prop)",
                  "type": "object"
                },
                {
                  "name": "detailsShowing",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Will be true if the row's row-details scoped slot is visible",
                  "type": "boolean"
                },
                {
                  "name": "toggleDetails",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Can be called to toggle the visibility of the rows row-details scoped slot",
                  "type": "function"
                },
                {
                  "name": "rowSelected",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Will be true if the row has been selected. Only applicable when table is in selectable mode",
                  "type": "boolean"
                },
                {
                  "name": "selectRow",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Can be called to select the current row. Only applicable when table is in selectable mode",
                  "type": "function"
                },
                {
                  "name": "unselectRow",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Can be called to unselect the current row. Only applicable when table is in selectable mode",
                  "type": "function"
                }
              ]
            },
            {
              "name": "cell()",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Default scoped slot for custom data rendering of field data. See docs for scoped data",
              "vue-properties": [
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The row's index (zero-based) with respect to the displayed rows",
                  "type": "number"
                },
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The row's item data object",
                  "type": "object"
                },
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The value for this key in the record (null or undefined if a virtual column), or the output of the field's formatter function"
                },
                {
                  "name": "unformatted",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The raw value for this key in the item record (null or undefined if a virtual column), before being passed to the field's formatter function"
                },
                {
                  "name": "field",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's normalized definition object (from the fields prop)",
                  "type": "object"
                },
                {
                  "name": "detailsShowing",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Will be true if the row's row-details scoped slot is visible",
                  "type": "boolean"
                },
                {
                  "name": "toggleDetails",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Can be called to toggle the visibility of the rows row-details scoped slot",
                  "type": "function"
                },
                {
                  "name": "rowSelected",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Will be true if the row has been selected. Only applicable when table is in selectable mode",
                  "type": "boolean"
                },
                {
                  "name": "selectRow",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Can be called to select the current row. Only applicable when table is in selectable mode",
                  "type": "function"
                },
                {
                  "name": "unselectRow",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Can be called to unselect the current row. Only applicable when table is in selectable mode",
                  "type": "function"
                }
              ]
            },
            {
              "name": "head({key})",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Scoped slot for custom rendering of field header. '{key}' is the field's key name. See docs for scoped header",
              "pattern": "head\\([a-zA-Z0-9$_.\\-]+\\)",
              "vue-properties": [
                {
                  "name": "column",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's key value",
                  "type": "string"
                },
                {
                  "name": "field",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's normalized definition object (from the fields prop)",
                  "type": "object"
                },
                {
                  "name": "label",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's label value",
                  "type": "string"
                },
                {
                  "name": "selectAllRows",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Select all rows (applicable if the table is in selectable mode)",
                  "type": "function"
                },
                {
                  "name": "clearSelected",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Unselect all rows (applicable if the table is in selectable mode)",
                  "type": "function"
                },
                {
                  "name": "isFoot",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Will be true if the slot is being rendered in the table footer",
                  "type": "boolean"
                }
              ]
            },
            {
              "name": "head()",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Default scoped slot for custom rendering of field header. See docs for scoped header",
              "vue-properties": [
                {
                  "name": "column",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's key value",
                  "type": "string"
                },
                {
                  "name": "field",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's normalized definition object (from the fields prop)",
                  "type": "object"
                },
                {
                  "name": "label",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's label value",
                  "type": "string"
                },
                {
                  "name": "selectAllRows",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Select all rows (applicable if the table is in selectable mode)",
                  "type": "function"
                },
                {
                  "name": "clearSelected",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Unselect all rows (applicable if the table is in selectable mode)",
                  "type": "function"
                },
                {
                  "name": "isFoot",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Will be true if the slot is being rendered in the table footer",
                  "type": "boolean"
                }
              ]
            },
            {
              "name": "foot({key})",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Scoped slot for custom rendering of field footer. '{key}' is the field's key name. See docs for scoped footer",
              "pattern": "foot\\([a-zA-Z0-9$_.\\-]+\\)",
              "vue-properties": [
                {
                  "name": "column",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's key value",
                  "type": "string"
                },
                {
                  "name": "field",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's normalized definition object (from the fields prop)",
                  "type": "object"
                },
                {
                  "name": "label",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's label value",
                  "type": "string"
                },
                {
                  "name": "selectAllRows",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Select all rows (applicable if the table is in selectable mode)",
                  "type": "function"
                },
                {
                  "name": "clearSelected",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Unselect all rows (applicable if the table is in selectable mode)",
                  "type": "function"
                }
              ]
            },
            {
              "name": "foot()",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Default scoped slot for custom rendering of field footer. See docs for scoped footer",
              "vue-properties": [
                {
                  "name": "column",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's key value",
                  "type": "string"
                },
                {
                  "name": "field",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's normalized definition object (from the fields prop)",
                  "type": "object"
                },
                {
                  "name": "label",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's label value",
                  "type": "string"
                },
                {
                  "name": "selectAllRows",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Select all rows (applicable if the table is in selectable mode)",
                  "type": "function"
                },
                {
                  "name": "clearSelected",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Unselect all rows (applicable if the table is in selectable mode)",
                  "type": "function"
                }
              ]
            },
            {
              "name": "table-caption",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Content to display in the table's caption element"
            },
            {
              "name": "table-colgroup",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Slot to place custom colgroup and col elements. Optionally scoped",
              "vue-properties": [
                {
                  "name": "columns",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The number of columns in the table",
                  "type": "number"
                },
                {
                  "name": "fields",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Array of field definition objects",
                  "type": "any[]"
                }
              ]
            },
            {
              "name": "table-busy",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Optional slot to place loading message when table is in the busy state"
            },
            {
              "name": "row-details",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Scoped slot for optional rendering additional record details. See docs for Row details support",
              "vue-properties": [
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The entire row's record data object",
                  "type": "object"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The item's row index number (with respect to the displayed item rows)",
                  "type": "number"
                },
                {
                  "name": "fields",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The normalized fields definition array (in the array of objects format)",
                  "type": "any[]"
                },
                {
                  "name": "toggleDetails",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Function to toggle visibility of the row's details slot",
                  "type": "function"
                },
                {
                  "name": "rowSelected",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Will be true if the row has been selected. Only applicable when table is in selectable mode",
                  "type": "boolean"
                },
                {
                  "name": "selectRow",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Can be called to select the current row. Only applicable when table is in selectable mode",
                  "type": "function"
                },
                {
                  "name": "unselectRow",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Can be called to unselect the current row. Only applicable when table is in selectable mode",
                  "type": "function"
                }
              ]
            },
            {
              "name": "empty",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Content to display when no items are present in the `items` array. Optionally scoped",
              "vue-properties": [
                {
                  "name": "fields",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The normalized fields definition array (in the array of objects format)",
                  "type": "any[]"
                },
                {
                  "name": "items",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The items array. Exposed here to check null vs []",
                  "type": "any[]"
                },
                {
                  "name": "emptyText",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The value of the empty-text prop",
                  "type": "string"
                },
                {
                  "name": "emptyHtml",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The value of the empty-html prop",
                  "type": "string"
                },
                {
                  "name": "emptyFilteredText",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The value of the empty-filtered-text prop",
                  "type": "string"
                },
                {
                  "name": "emptyFilteredHtml",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The value of the empty-filtered-html prop",
                  "type": "string"
                }
              ]
            },
            {
              "name": "emptyfiltered",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Content to display when no items are present in the filtered `items` array. Optionally scoped",
              "vue-properties": [
                {
                  "name": "fields",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The normalized fields definition array (in the array of objects format)",
                  "type": "any[]"
                },
                {
                  "name": "items",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The items array. Exposed here to check null vs []",
                  "type": "any[]"
                },
                {
                  "name": "emptyText",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The value of the empty-text prop",
                  "type": "string"
                },
                {
                  "name": "emptyHtml",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The value of the empty-html prop",
                  "type": "string"
                },
                {
                  "name": "emptyFilteredText",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The value of the empty-filtered-text prop",
                  "type": "string"
                },
                {
                  "name": "emptyFilteredHtml",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The value of the empty-filtered-html prop",
                  "type": "string"
                }
              ]
            },
            {
              "name": "thead-top",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Slot above the column headers in the `thead` element for user-supplied B-TR's with B-TH/B-TD. Optionally scoped.",
              "vue-properties": [
                {
                  "name": "columns",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The number of columns in the table",
                  "type": "number"
                },
                {
                  "name": "fields",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The normalized fields definition array (in the array of objects format)",
                  "type": "any[]"
                },
                {
                  "name": "selectAllRows",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Select all rows (applicable if the table is in selectable mode)",
                  "type": "function"
                },
                {
                  "name": "clearSelected",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Unselect all rows (applicable if the table is in selectable mode)",
                  "type": "function"
                }
              ]
            },
            {
              "name": "top-row",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Fixed top row slot for user supplied B-TD cells. Optionally scoped",
              "vue-properties": [
                {
                  "name": "columns",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The number of columns in the table",
                  "type": "number"
                },
                {
                  "name": "fields",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The normalized fields definition array (in the array of objects format)",
                  "type": "any[]"
                }
              ]
            },
            {
              "name": "bottom-row",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Fixed bottom row slot for user supplied B-TD cells. Optionally Scoped",
              "vue-properties": [
                {
                  "name": "columns",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The number of columns in the table",
                  "type": "number"
                },
                {
                  "name": "fields",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The normalized fields definition array (in the array of objects format)",
                  "type": "any[]"
                }
              ]
            },
            {
              "name": "custom-foot",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Custom footer content slot for user supplied B-TR, B-TH, B-TD. Optionally Scoped",
              "vue-properties": [
                {
                  "name": "columns",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The number of columns in the table",
                  "type": "number"
                },
                {
                  "name": "fields",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The normalized fields definition array (in the array of objects format)",
                  "type": "any[]"
                },
                {
                  "name": "items",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Array of items that are currently being displayed",
                  "type": "any[]"
                }
              ]
            }
          ]
        },
        {
          "name": "BTableLite",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BTableLite"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
          "description": "For displaying tabular data. <b-table> supports pagination, filtering, sorting, custom rendering, events, and asynchronous data. For simple display of tabular data without all the fancy features, BootstrapVue also provides lightweight alternative components <b-table-lite> and <b-table-simple>",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "items",
              "value": {
                "kind": "expression",
                "type": "any[]"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Array of items to display"
            },
            {
              "name": "fields",
              "value": {
                "kind": "expression",
                "type": "any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Array of field names or array of field definition objects"
            },
            {
              "name": "primaryKey",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Name of a table field that contains a guaranteed unique value per row. Needed for tbody transition support, and also speeds up table rendering"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "any[]"
              },
              "default": "[]",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Currently displayed row data. Read-only. Do not set a value on this prop"
            },
            {
              "name": "striped",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Applies striping to the tbody rows"
            },
            {
              "name": "bordered",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Adds borders to all the cells and headers"
            },
            {
              "name": "borderless",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Removes all borders from cells"
            },
            {
              "name": "outlined",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Adds an outline border to the table element"
            },
            {
              "name": "dark",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Places the table in dark mode"
            },
            {
              "name": "hover",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Enables hover styling on rows"
            },
            {
              "name": "small",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Renders the table with smaller cell padding"
            },
            {
              "name": "fixed",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Makes all columns equal width (fixed layout table). Will speed up rendering for large tables. Column widths can be set via CSS or colgroup"
            },
            {
              "name": "responsive",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Makes the table responsive in width, adding a horizontal scrollbar. Set to true for always responsive or set to one of the breakpoints to switch from responsive to normal: 'sm', 'md', 'lg', 'xl'"
            },
            {
              "name": "stickyHeader",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Makes the table header sticky. Set to true for a maximum height 300px tall table, or set to any valid CSS hight (including units)"
            },
            {
              "name": "noBorderCollapse",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Disable's the collapsing of table borders. Useful when table has sticky headers or columns"
            },
            {
              "name": "captionTop",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Visually place the table caption above the table. Default is below."
            },
            {
              "name": "tableVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Apply a Bootstrap theme color variant to the entire table"
            },
            {
              "name": "tableClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the table element"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Place the table in stacked mode. Set to true for always stacked, or set to one of the breakpoints to switch from stacked to normal: 'sm', 'md', 'lg', 'xl'"
            },
            {
              "name": "headVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Header variant: 'light' or 'dark', or unset. May take precedence over head-row-variant"
            },
            {
              "name": "headRowVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Apply a Bootstrap theme color variant to the tr element in the thead"
            },
            {
              "name": "theadClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the thead element"
            },
            {
              "name": "theadTrClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the tr element in the thead"
            },
            {
              "name": "footClone",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Enable to the footer of the table, and clone the header content by default"
            },
            {
              "name": "footVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Footer variant: 'light' or 'dark', or unset. May take precedence over foot-row-variant"
            },
            {
              "name": "footRowVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Apply a Bootstrap theme color variant to the tr element in the tfoot. Falls back to head-row-variant"
            },
            {
              "name": "tfootClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the tfoot element"
            },
            {
              "name": "tfootTrClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the tr element in the tfoot"
            },
            {
              "name": "tbodyTrClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object|function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the tr element in the tbody. Can be a function that returns a class (see docs for details)"
            },
            {
              "name": "tbodyTrAttr",
              "value": {
                "kind": "expression",
                "type": "object|function"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Attributes to be added to each tr in the tbody, or a function returning such attributes (see docs for details)"
            },
            {
              "name": "detailsTdClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the td element in the details row"
            },
            {
              "name": "tbodyTransitionProps",
              "value": {
                "kind": "expression",
                "type": "object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Vue 'transition-group' properties. When provided will make the tbody a Vue 'transition-group' component"
            },
            {
              "name": "tbodyTransitionHandlers",
              "value": {
                "kind": "expression",
                "type": "object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Vue 'transition-group' event handlers. When provided will make the tbody a Vue 'transition-group' component"
            },
            {
              "name": "tbodyClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the tbody element"
            },
            {
              "name": "caption",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Text string to place in the caption element"
            },
            {
              "name": "captionHtml",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "HTML string to place in the caption element. Use with caution"
            }
          ],
          "events": [
            {
              "name": "row-clicked",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a row is clicked.",
              "arguments": [
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Item data of the row being clicked.",
                  "type": "object"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Index of the row being clicked.",
                  "type": "number"
                },
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Native event object.",
                  "type": "MouseEvent|KeyboardEvent"
                }
              ]
            },
            {
              "name": "row-dblclicked",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a row is double clicked.",
              "arguments": [
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Item data of the row being double clicked.",
                  "type": "object"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Index of the row being double clicked.",
                  "type": "number"
                },
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Native event object.",
                  "type": "MouseEvent"
                }
              ]
            },
            {
              "name": "row-middle-clicked",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a row is middle clicked.",
              "arguments": [
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Item data of the row being middle clicked.",
                  "type": "object"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Index of the row being middle clicked.",
                  "type": "number"
                },
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Native event object.",
                  "type": "MouseEvent"
                }
              ]
            },
            {
              "name": "row-contextmenu",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a row is right clicked.",
              "arguments": [
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Item data of the row being right clicked.",
                  "type": "object"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Index of the row being right clicked.",
                  "type": "number"
                },
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Native event object.",
                  "type": "MouseEvent"
                }
              ]
            },
            {
              "name": "row-hovered",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a row is hovered.",
              "arguments": [
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Item data of the row being hovered.",
                  "type": "object"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Index of the row being hovered.",
                  "type": "number"
                },
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Native event object.",
                  "type": "MouseEvent"
                }
              ]
            },
            {
              "name": "row-unhovered",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a row is unhovered.",
              "arguments": [
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Item data of the row being unhovered.",
                  "type": "object"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Index of the row being unhovered.",
                  "type": "number"
                },
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Native event object.",
                  "type": "MouseEvent"
                }
              ]
            },
            {
              "name": "head-clicked",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Emitted when a header or footer cell is clicked. Not applicable for 'custom-foot' slot.",
              "arguments": [
                {
                  "name": "key",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Column key clicked (field name).",
                  "type": "string"
                },
                {
                  "name": "field",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Field definition object.",
                  "type": "object"
                },
                {
                  "name": "event",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Native event object.",
                  "type": "MouseEvent|KeyboardEvent"
                },
                {
                  "name": "isFooter",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "'True' if this event originated from clicking on the footer cell",
                  "type": "boolean"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "cell({key})",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Scoped slot for custom data rendering of field data. '{key}' is the field's key name.",
              "pattern": "cell\\([a-zA-Z0-9$_.\\-]+\\)",
              "vue-properties": [
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The row's index (zero-based) with respect to the displayed rows",
                  "type": "number"
                },
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The row's item data object",
                  "type": "object"
                },
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The value for this key in the record (null or undefined if a virtual column), or the output of the field's formatter function"
                },
                {
                  "name": "unformatted",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The raw value for this key in the item record (null or undefined if a virtual column), before being passed to the field's formatter function"
                },
                {
                  "name": "field",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's normalized definition object (from the fields prop)",
                  "type": "object"
                },
                {
                  "name": "detailsShowing",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Will be true if the row's row-details scoped slot is visible",
                  "type": "boolean"
                },
                {
                  "name": "toggleDetails",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Can be called to toggle the visibility of the rows row-details scoped slot",
                  "type": "function"
                }
              ]
            },
            {
              "name": "cell()",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Default scoped slot for custom data rendering of field data.",
              "vue-properties": [
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The row's index (zero-based) with respect to the displayed rows",
                  "type": "number"
                },
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The row's item data object",
                  "type": "object"
                },
                {
                  "name": "value",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The value for this key in the record (null or undefined if a virtual column), or the output of the field's formatter function"
                },
                {
                  "name": "unformatted",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The raw value for this key in the item record (null or undefined if a virtual column), before being passed to the field's formatter function"
                },
                {
                  "name": "field",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's normalized definition object (from the fields prop)",
                  "type": "object"
                },
                {
                  "name": "detailsShowing",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Will be true if the row's row-details scoped slot is visible",
                  "type": "boolean"
                },
                {
                  "name": "toggleDetails",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Can be called to toggle the visibility of the rows row-details scoped slot",
                  "type": "function"
                }
              ]
            },
            {
              "name": "head({key})",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Scoped slot for custom rendering of field header. '{key}' is the field's key name",
              "pattern": "head\\([a-zA-Z0-9$_.\\-]+\\)",
              "vue-properties": [
                {
                  "name": "column",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's key value",
                  "type": "string"
                },
                {
                  "name": "field",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's normalized definition object (from the fields prop)",
                  "type": "object"
                },
                {
                  "name": "label",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's label value",
                  "type": "string"
                },
                {
                  "name": "isFoot",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Will be true if the slot is being rendered in the table footer",
                  "type": "boolean"
                }
              ]
            },
            {
              "name": "head()",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Default scoped slot for custom rendering of field header.",
              "vue-properties": [
                {
                  "name": "column",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's key value",
                  "type": "string"
                },
                {
                  "name": "field",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's normalized definition object (from the fields prop)",
                  "type": "object"
                },
                {
                  "name": "label",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's label value",
                  "type": "string"
                },
                {
                  "name": "isFoot",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Will be true if the slot is being rendered in the table footer",
                  "type": "boolean"
                }
              ]
            },
            {
              "name": "foot({key})",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Scoped slot for custom rendering of field footer. '{key}' is the field's key name.",
              "pattern": "foot\\([a-zA-Z0-9$_.\\-]+\\)",
              "vue-properties": [
                {
                  "name": "column",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's key value",
                  "type": "string"
                },
                {
                  "name": "field",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's normalized definition object (from the fields prop)",
                  "type": "object"
                },
                {
                  "name": "label",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's label value",
                  "type": "string"
                }
              ]
            },
            {
              "name": "foot()",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Default scoped slot for custom rendering of field footer",
              "vue-properties": [
                {
                  "name": "column",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's key value",
                  "type": "string"
                },
                {
                  "name": "field",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's normalized definition object (from the fields prop)",
                  "type": "object"
                },
                {
                  "name": "label",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The field's label value",
                  "type": "string"
                }
              ]
            },
            {
              "name": "table-caption",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Content to display in the table's caption element"
            },
            {
              "name": "table-colgroup",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Slot to place custom colgroup and col elements. Optionally scoped",
              "vue-properties": [
                {
                  "name": "columns",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The number of columns in the table",
                  "type": "number"
                },
                {
                  "name": "fields",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Array of field definition objects",
                  "type": "any[]"
                }
              ]
            },
            {
              "name": "row-details",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Scoped slot for optional rendering additional record details. See docs for Row details support",
              "vue-properties": [
                {
                  "name": "item",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The entire row's record data object",
                  "type": "object"
                },
                {
                  "name": "index",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The item's row index number (with respect to the displayed item rows)",
                  "type": "number"
                },
                {
                  "name": "fields",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The normalized fields definition array (in the array of objects format)",
                  "type": "any[]"
                },
                {
                  "name": "toggleDetails",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Function to toggle visibility of the row's details slot",
                  "type": "function"
                }
              ]
            },
            {
              "name": "thead-top",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Slot above the column headers in the `thead` element for user-supplied B-TR with B-TH/B-TD. Optionally scoped.",
              "vue-properties": [
                {
                  "name": "columns",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The number of columns in the table",
                  "type": "number"
                },
                {
                  "name": "fields",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The normalized fields definition array (in the array of objects format)",
                  "type": "any[]"
                },
                {
                  "name": "selectAllRows",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Select all rows (applicable if the table is in selectable mode)",
                  "type": "function"
                },
                {
                  "name": "clearSelected",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Unselect all rows (applicable if the table is in selectable mode)",
                  "type": "function"
                }
              ]
            },
            {
              "name": "custom-foot",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Custom footer content slot for user supplied B-TR's with B-TH/B-TD. Optionally Scoped",
              "vue-properties": [
                {
                  "name": "columns",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The number of columns in the table",
                  "type": "number"
                },
                {
                  "name": "fields",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "The normalized fields definition array (in the array of objects format)",
                  "type": "any[]"
                },
                {
                  "name": "items",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
                  "description": "Array of items that are currently being displayed",
                  "type": "any[]"
                }
              ]
            }
          ]
        },
        {
          "name": "BTableSimple",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BTableSimple"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
          "description": "For displaying tabular data. <b-table> supports pagination, filtering, sorting, custom rendering, events, and asynchronous data. For simple display of tabular data without all the fancy features, BootstrapVue also provides lightweight alternative components <b-table-lite> and <b-table-simple>",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "striped",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Applies striping to the tbody rows"
            },
            {
              "name": "bordered",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Adds borders to all the cells and headers"
            },
            {
              "name": "borderless",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Removes all borders from cells"
            },
            {
              "name": "outlined",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Adds an outline border to the table element"
            },
            {
              "name": "dark",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Places the table in dark mode"
            },
            {
              "name": "hover",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Enables hover styling on rows"
            },
            {
              "name": "small",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Renders the table with smaller cell padding"
            },
            {
              "name": "fixed",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Makes all columns equal width (fixed layout table). Will speed up rendering for large tables. Column widths can be set via CSS or colgroup"
            },
            {
              "name": "responsive",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Makes the table responsive in width, adding a horizontal scrollbar. Set to true for always responsive or set to one of the breakpoints to switch from responsive to normal: 'sm', 'md', 'lg', 'xl'"
            },
            {
              "name": "stickyHeader",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Makes the table header sticky. Set to true for a maximum height 300px tall table, or set to any valid CSS hight (including units)"
            },
            {
              "name": "noBorderCollapse",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Disable's the collapsing of table borders. Useful when table has sticky headers or columns"
            },
            {
              "name": "captionTop",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "Visually place the table caption above the table. Default is below."
            },
            {
              "name": "tableVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Apply a Bootstrap theme color variant to the entire table"
            },
            {
              "name": "tableClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "CSS class (or classes) to apply to the table element"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean|string"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Place the table in stacked mode. Set to true for always stacked, or set to one of the breakpoints to switch from stacked to normal: 'sm', 'md', 'lg', 'xl'"
            }
          ]
        },
        {
          "name": "BTbody",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BTbody"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
          "description": "For displaying tabular data. <b-table> supports pagination, filtering, sorting, custom rendering, events, and asynchronous data. For simple display of tabular data without all the fancy features, BootstrapVue also provides lightweight alternative components <b-table-lite> and <b-table-simple>",
          "attributes": [
            {
              "name": "tbodyTransitionProps",
              "value": {
                "kind": "expression",
                "type": "object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Vue 'transition-group' properties. When provided will make the tbody a Vue 'transition-group' component"
            },
            {
              "name": "tbodyTransitionHandlers",
              "value": {
                "kind": "expression",
                "type": "object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Vue 'transition-group' event handlers. When provided will make the tbody a Vue 'transition-group' component"
            }
          ]
        },
        {
          "name": "BThead",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BThead"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
          "description": "For displaying tabular data. <b-table> supports pagination, filtering, sorting, custom rendering, events, and asynchronous data. For simple display of tabular data without all the fancy features, BootstrapVue also provides lightweight alternative components <b-table-lite> and <b-table-simple>",
          "attributes": [
            {
              "name": "headVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Header variant: 'light' or 'dark', or unset"
            }
          ]
        },
        {
          "name": "BTfoot",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BTfoot"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
          "description": "For displaying tabular data. <b-table> supports pagination, filtering, sorting, custom rendering, events, and asynchronous data. For simple display of tabular data without all the fancy features, BootstrapVue also provides lightweight alternative components <b-table-lite> and <b-table-simple>",
          "attributes": [
            {
              "name": "footVariant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Footer variant: 'light' or 'dark', or unset"
            }
          ]
        },
        {
          "name": "BTr",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BTr"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
          "description": "For displaying tabular data. <b-table> supports pagination, filtering, sorting, custom rendering, events, and asynchronous data. For simple display of tabular data without all the fancy features, BootstrapVue also provides lightweight alternative components <b-table-lite> and <b-table-simple>",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            }
          ]
        },
        {
          "name": "BTd",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BTd"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
          "description": "For displaying tabular data. <b-table> supports pagination, filtering, sorting, custom rendering, events, and asynchronous data. For simple display of tabular data without all the fancy features, BootstrapVue also provides lightweight alternative components <b-table-lite> and <b-table-simple>",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "colspan",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Number of columns this cell spans"
            },
            {
              "name": "rowspan",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Number of rows this cell spans"
            },
            {
              "name": "stackedHeading",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Heading for the cell when in stacked mode. Only applicable to cells in the 'tbody' element"
            },
            {
              "name": "stickyColumn",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "If this will be a sticky colum. Must be set on all cells in this column. table must be in sticky-header or responsive mode to work"
            }
          ]
        },
        {
          "name": "BTh",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BTh"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
          "description": "For displaying tabular data. <b-table> supports pagination, filtering, sorting, custom rendering, events, and asynchronous data. For simple display of tabular data without all the fancy features, BootstrapVue also provides lightweight alternative components <b-table-lite> and <b-table-simple>",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "colspan",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Number of columns this cell spans"
            },
            {
              "name": "rowspan",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Number of rows this cell spans"
            },
            {
              "name": "stackedHeading",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "description": "Heading for the cell when in stacked mode. Only applicable to cells in the 'tbody' element"
            },
            {
              "name": "stickyColumn",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/table/",
              "type": "boolean",
              "description": "If this will be a sticky colum. Must be set on all cells in this column. table must be in sticky-header or responsive mode to work"
            }
          ]
        },
        {
          "name": "BTabs",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BTabs"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
          "description": "Create a widget of tabbable panes of local content. The tabs component is built upon navs and cards internally, and provides full keyboard navigation control of the tabs.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "fill",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "Proportionately fills all horizontal space with nav items. All horizontal space is occupied, but not every nav item has the same width"
            },
            {
              "name": "justified",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "Fills all horizontal space with nav items, but unlike 'fill', every nav item will be the same width"
            },
            {
              "name": "align",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Align the nav items in the nav: 'start' (or 'left'), 'center', 'end' (or 'right')"
            },
            {
              "name": "pills",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "Renders the nav items with the appearance of pill buttons"
            },
            {
              "name": "vertical",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "Renders the tab controls vertically"
            },
            {
              "name": "small",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "Makes the nav smaller"
            },
            {
              "name": "card",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "When set to true, renders the tabs the the appropriate styles to be placed into a 'b-card'"
            },
            {
              "name": "end",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "Place the tab controls at the bottom (horizontal tabs), or right (vertical tabs)"
            },
            {
              "name": "noFade",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "When set to 'true', disables the fade animation/transition on the component"
            },
            {
              "name": "noNavStyle",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "Do not render the tab controls with tab styling"
            },
            {
              "name": "noKeyNav",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "Disable keyboard navigation of the tab controls"
            },
            {
              "name": "lazy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "Lazily render the b-tab contents when shown"
            },
            {
              "name": "contentClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "CSS class (or classes) to apply to the tab-content wrapper"
            },
            {
              "name": "navClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "CSS class (or classes) to apply to the tablist (nav) wrapper"
            },
            {
              "name": "navWrapperClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "CSS class (or classes) to apply to the tab controls wrapper element"
            },
            {
              "name": "activeNavItemClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "CSS class (or classes) to apply to the active nav item tab control"
            },
            {
              "name": "activeTabClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "CSS class (or classes) to apply to the currently active tab"
            },
            {
              "name": "value",
              "value": {
                "kind": "expression",
                "type": "number"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Currently visible tab index (zero-based)"
            }
          ],
          "vue-model": {
            "prop": "value",
            "event": "input"
          },
          "events": [
            {
              "name": "input",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Emitted when a tab is shown. Used to update the v-model",
              "arguments": [
                {
                  "name": "tabIndex",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
                  "description": "Current selected tab index (0-based index)",
                  "type": "number"
                }
              ]
            },
            {
              "name": "activate-tab",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Emitted just before a tab is shown/activated. Cancelable",
              "arguments": [
                {
                  "name": "newTabIndex",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
                  "description": "Tab being activated (0-based index)",
                  "type": "number"
                },
                {
                  "name": "prevTabIndex",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
                  "description": "Tab that is currently active (0-based index). Will be -1 if no current active tab",
                  "type": "number"
                },
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
                  "description": "BvEvent object. Call bvEvt.preventDefault() to cancel",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "changed",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Emitted when a tab is added, removed, or tabs are re-ordered",
              "arguments": [
                {
                  "name": "currentTabs",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
                  "description": "Array of the current b-tab instances, in document order.",
                  "type": "any[]"
                },
                {
                  "name": "previousTabs",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
                  "description": "Array of the previous b-tab instances, in document order.",
                  "type": "any[]"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "tabs-start",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Additional tab buttons without tab content placed before content tab buttons"
            },
            {
              "name": "tabs-end",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Additional tab buttons without tab content placed after content tab buttons"
            },
            {
              "name": "empty",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Renders this slot if no tabs are present"
            }
          ]
        },
        {
          "name": "BTab",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BTab"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
          "description": "Create a widget of tabbable panes of local content. The tabs component is built upon navs and cards internally, and provides full keyboard navigation control of the tabs.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "active",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "When set to 'true', places the component in the active state with active styling"
            },
            {
              "name": "tag",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"div\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Specify the HTML tag to render instead of the default tag"
            },
            {
              "name": "buttonId",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Use a specific ID for this tab's tab control button. If not provided, one will automatically be generated"
            },
            {
              "name": "title",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Text content to place in the title"
            },
            {
              "name": "titleItemClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "CSS class (or classes) to apply to the tab's control button 'li' element"
            },
            {
              "name": "titleLinkClass",
              "value": {
                "kind": "expression",
                "type": "string|any[]|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "CSS class (or classes) to apply to the tab's control button inner link element"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "noBody",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "When the parent b-tabs has the 'card' prop set, do not render a card-body wrapper"
            },
            {
              "name": "lazy",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "type": "boolean",
              "description": "Lazily render this tab's content when shown"
            }
          ],
          "events": [
            {
              "name": "click",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Emitted when a tab is clicked, or is activated by keyboard navigation",
              "arguments": [
                {
                  "name": "evt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
                  "description": "Original event object",
                  "type": "MouseEvent"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "title",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tabs/",
              "description": "Slot for custom tab title"
            }
          ]
        },
        {
          "name": "BToast",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BToast"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
          "description": "Push notifications to your visitors with a toast, a lightweight and easily customizable alert message.",
          "attributes": [
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            },
            {
              "name": "title",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "The toast's title text"
            },
            {
              "name": "toaster",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"b-toaster-top-right\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "The name of the toaster target to render the toast in"
            },
            {
              "name": "visible",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "type": "boolean",
              "description": "When true, shows the toast"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "isStatus",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "type": "boolean",
              "description": "When set to 'true', makes the toast have attributes aria-live=polite and role=status. When 'false' aria-live will be 'assertive' and role will be 'alert'"
            },
            {
              "name": "appendToast",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "type": "boolean",
              "description": "When true, the toast will be appended to the bottom on the visible toasts, otherwise it will be prepended"
            },
            {
              "name": "noAutoHide",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "type": "boolean",
              "description": "When set, disabled the toast from automatically dismissing itself"
            },
            {
              "name": "autoHideDelay",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "5000",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "The number of milliseconds before the toast auto dismisses itself"
            },
            {
              "name": "noCloseButton",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "type": "boolean",
              "description": "When set, hides the close button in the toast header"
            },
            {
              "name": "noFade",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "type": "boolean",
              "description": "When set to 'true', disables the fade animation/transition on the component"
            },
            {
              "name": "noHoverPause",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "type": "boolean",
              "description": "When set, disables the pausing of hte auto hide delay when the mouse hovers the toast"
            },
            {
              "name": "solid",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "type": "boolean",
              "description": "When set, renderes the toast with a solid background rather than translucent"
            },
            {
              "name": "toastClass",
              "value": {
                "kind": "expression",
                "type": "string|object|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "CSS class (or classes) to add to the toast wrapper element"
            },
            {
              "name": "headerClass",
              "value": {
                "kind": "expression",
                "type": "string|object|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "CSS class (or classes) to add to the toast header element"
            },
            {
              "name": "bodyClass",
              "value": {
                "kind": "expression",
                "type": "string|object|any[]"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "CSS class (or classes) to add to the toast body element"
            },
            {
              "name": "href",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "Denotes the target URL of the link for standard a links"
            },
            {
              "name": "to",
              "value": {
                "kind": "expression",
                "type": "string|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "router-link prop: Denotes the target route of the link. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object"
            },
            {
              "name": "static",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "type": "boolean",
              "description": "Renders the content of the component in-place in the DOM, rather than portalling it to be appended to the body element"
            }
          ],
          "vue-model": {
            "prop": "visible",
            "event": "change"
          },
          "events": [
            {
              "name": "change",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "Toast visibility state. Used to update the v-model.",
              "arguments": [
                {
                  "name": "visible",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
                  "description": "true if toast is visible, false otherwise.",
                  "type": "boolean"
                }
              ]
            },
            {
              "name": "show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "always emits just before toast is shown.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
                  "description": "BvEvent object.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "shown",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "always emits when toast is shown.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
                  "description": "BvEvent object.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "always emits just before toast has hidden.",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
                  "description": "BvEvent object.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "hidden",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "always emits after toast is hidden",
              "arguments": [
                {
                  "name": "bvEvt",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
                  "description": "BvEvent object.",
                  "type": "BvEvent"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "toast-title",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "Toast title. Optionally scoped.",
              "vue-properties": [
                {
                  "name": "hide",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
                  "description": "Hides the toast when called. Useful if you are providing your own close button.",
                  "type": "function"
                }
              ]
            },
            {
              "name": "default",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "Toast body content. Optionally scoped.",
              "vue-properties": [
                {
                  "name": "hide",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
                  "description": "Hides the toast when called. Useful if you are providing your own close button.",
                  "type": "function"
                }
              ]
            }
          ]
        },
        {
          "name": "BToaster",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BToaster"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
          "description": "Push notifications to your visitors with a toast, a lightweight and easily customizable alert message.",
          "attributes": [
            {
              "name": "name",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "required": true,
              "description": "The toaster's target name"
            },
            {
              "name": "ariaLive",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "When the rendered element is an aria-live region (for screen reader users), set to either 'polite' or 'assertive'"
            },
            {
              "name": "ariaAtomic",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "When screen reader's should read out the entire contents (set to string 'true') or just the changes (set to string 'false'). Leave blank for most cases"
            },
            {
              "name": "role",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/toast/",
              "description": "Sets the ARIA attribute 'role' to a specific value"
            }
          ]
        },
        {
          "name": "BTooltip",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BTooltip"
          },
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
          "description": "Easily add tooltips to elements or components via the <b-tooltip> component or v-b-tooltip directive.",
          "attributes": [
            {
              "name": "title",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Text to place in the tooltip"
            },
            {
              "name": "target",
              "value": {
                "kind": "expression",
                "type": "string|HTMLElement|SVGElement|function|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "required": true,
              "description": "Element string ID, or a reference to an element or component, that you want to trigger the tooltip."
            },
            {
              "name": "triggers",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "\"hover focus\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Specify which triggers will show the tooltip. Supported values are 'click', 'hover', 'focus'. Refer to the docs for special triggers 'blur' and 'manual'"
            },
            {
              "name": "placement",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "\"top\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Placement of the tooltip: One of 'top', 'bottom', 'right', 'left', 'top-left', 'top-right', 'bottom-left', 'bottom-right', 'left-top', 'left-bottom', 'right-top', 'right-bottom'"
            },
            {
              "name": "fallbackPlacement",
              "value": {
                "kind": "expression",
                "type": "string|any[]"
              },
              "default": "\"flip\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "placement to use when the tooltip would be out of boundaries. Refer to the docs for more details"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Applies one of the Bootstrap theme color variants to the component"
            },
            {
              "name": "customClass",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "CSS class (or classes) to apply to the tooltip's root element"
            },
            {
              "name": "delay",
              "value": {
                "kind": "expression",
                "type": "number|object|string"
              },
              "default": "50",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Value for the show and hide delay. Applies to both show and hide when specified as a number or string. Use object form to set show and hide delays individually"
            },
            {
              "name": "boundary",
              "value": {
                "kind": "expression",
                "type": "string|HTMLElement|object"
              },
              "default": "\"scrollParent\"",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "The boundary constraint of the tooltip: 'scrollParent', 'window', 'viewport', or a reference to an HTMLElement or component"
            },
            {
              "name": "boundaryPadding",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "5",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "The tooltip will try and stay away from the edge of the boundary element by the number of pixels specificed"
            },
            {
              "name": "offset",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Offset (in pixels) for the arrow center compared to the trigger target element"
            },
            {
              "name": "noFade",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "type": "boolean",
              "description": "When set to 'true', disables the fade animation/transition on the component"
            },
            {
              "name": "container",
              "value": {
                "kind": "expression",
                "type": "string|HTMLElement|object"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "The container element to append the rendered tooltip when visible. Default's to the body element"
            },
            {
              "name": "show",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "type": "boolean",
              "description": "When set will show the tooltip"
            },
            {
              "name": "noninteractive",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "type": "boolean",
              "description": "Wether the tooltip should not be user-interactive"
            },
            {
              "name": "disabled",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "type": "boolean",
              "description": "When set to 'true', disables the component's functionality and places it in a disabled state"
            },
            {
              "name": "id",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed"
            }
          ],
          "events": [
            {
              "name": "show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Emitted when tooltip is about to be shown. Cancelable. Call bvEvent.preventDefault() to cancel show.",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
                  "description": "bvEvent object. Cancelable.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "shown",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Emitted when tooltip is shown",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
                  "description": "bvEvent object.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Emitted when tooltip is about to be hidden. Cancelable. Call bvEvent.preventDefault() to cancel hide.",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
                  "description": "bvEvent object. Cancelable.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "hidden",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Emitted when tooltip is hidden",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
                  "description": "bvEvent object.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "enabled",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Emitted when tooltip becomes enabled",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
                  "description": "bvEvent object",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "disabled",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Emitted when tooltip becomes disabled",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
                  "description": "bvEvent object",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "bv::tooltip::show",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Emitted on $root when tooltip is about to be shown. Cancelable. Call bvEvent.preventDefault() to cancel show.",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
                  "description": "bvEvent object. Cancelable.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "bv::tooltip::shown",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Emitted on $root when tooltip is shown",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
                  "description": "bvEvent object.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "bv::tooltip::hide",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Emitted on $root when tooltip is about to be hidden. Cancelable. Call bvEvent.preventDefault() to cancel hide.",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
                  "description": "bvEvent object. Cancelable.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "bv::tooltip::hidden",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Emitted on $root when tooltip is hidden",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
                  "description": "bvEvent object.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "bv::tooltip::enabled",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Emitted on $root when tooltip becomes enabled",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
                  "description": "bvEvent object.",
                  "type": "BvEvent"
                }
              ]
            },
            {
              "name": "bv::tooltip::disabled",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Emitted on $root when tooltip becomes disabled",
              "arguments": [
                {
                  "name": "bvEvent",
                  "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
                  "description": "bvEvent object.",
                  "type": "BvEvent"
                }
              ]
            }
          ],
          "slots": [
            {
              "name": "default",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/tooltip/",
              "description": "Slot for tooltip content (HTML/components supported)"
            }
          ]
        },
        {
          "name": "BIcon",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIcon"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "icon",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Name of icon to render. The corresponding icon component must be installed"
            },
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconstack",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconstack"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            }
          ]
        },
        {
          "name": "BIconBlank",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBlank"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconAlarm",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconAlarm"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconAlarmFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconAlarmFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconAlertCircle",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconAlertCircle"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconAlertCircleFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconAlertCircleFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconAlertOctagon",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconAlertOctagon"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconAlertOctagonFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconAlertOctagonFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconAlertSquare",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconAlertSquare"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconAlertSquareFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconAlertSquareFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconAlertTriangle",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconAlertTriangle"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconAlertTriangleFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconAlertTriangleFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArchive",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArchive"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArchiveFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArchiveFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowBarBottom",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowBarBottom"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowBarLeft",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowBarLeft"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowBarRight",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowBarRight"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowBarUp",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowBarUp"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowClockwise",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowClockwise"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowCounterclockwise",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowCounterclockwise"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowDown",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowDown"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowDownLeft",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowDownLeft"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowDownRight",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowDownRight"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowDownShort",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowDownShort"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowLeft",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowLeft"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowLeftRight",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowLeftRight"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowLeftShort",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowLeftShort"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowRepeat",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowRepeat"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowRight",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowRight"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowRightShort",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowRightShort"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowUp",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowUp"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowUpDown",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowUpDown"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowUpLeft",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowUpLeft"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowUpRight",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowUpRight"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowUpShort",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowUpShort"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowsAngleContract",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowsAngleContract"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowsAngleExpand",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowsAngleExpand"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowsCollapse",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowsCollapse"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowsExpand",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowsExpand"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconArrowsFullscreen",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconArrowsFullscreen"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconAt",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconAt"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconAward",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconAward"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBackspace",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBackspace"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBackspaceFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBackspaceFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBackspaceReverse",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBackspaceReverse"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBackspaceReverseFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBackspaceReverseFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBarChart",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBarChart"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBarChartFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBarChartFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBattery",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBattery"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBatteryCharging",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBatteryCharging"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBatteryFull",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBatteryFull"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBell",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBell"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBellFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBellFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBlockquoteLeft",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBlockquoteLeft"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBlockquoteRight",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBlockquoteRight"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBook",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBook"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBookHalfFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBookHalfFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBookmark",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBookmark"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBookmarkFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBookmarkFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBootstrap",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBootstrap"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBootstrapFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBootstrapFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBootstrapReboot",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBootstrapReboot"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBoxArrowBottomLeft",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBoxArrowBottomLeft"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBoxArrowBottomRight",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBoxArrowBottomRight"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBoxArrowDown",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBoxArrowDown"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBoxArrowLeft",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBoxArrowLeft"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBoxArrowRight",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBoxArrowRight"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBoxArrowUp",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBoxArrowUp"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBoxArrowUpLeft",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBoxArrowUpLeft"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBoxArrowUpRight",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBoxArrowUpRight"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBraces",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBraces"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBrightnessFillHigh",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBrightnessFillHigh"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBrightnessFillLow",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBrightnessFillLow"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBrightnessHigh",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBrightnessHigh"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBrightnessLow",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBrightnessLow"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBrush",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBrush"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBucket",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBucket"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBucketFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBucketFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBuilding",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBuilding"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconBullseye",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconBullseye"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCalendar",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCalendar"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCalendarFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCalendarFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCamera",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCamera"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCameraVideo",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCameraVideo"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCameraVideoFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCameraVideoFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCapslock",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCapslock"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCapslockFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCapslockFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconChat",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconChat"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconChatFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconChatFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCheck",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCheck"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCheckBox",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCheckBox"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCheckCircle",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCheckCircle"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconChevronCompactDown",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconChevronCompactDown"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconChevronCompactLeft",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconChevronCompactLeft"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconChevronCompactRight",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconChevronCompactRight"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconChevronCompactUp",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconChevronCompactUp"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconChevronDown",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconChevronDown"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconChevronLeft",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconChevronLeft"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconChevronRight",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconChevronRight"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconChevronUp",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconChevronUp"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCircle",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCircle"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCircleFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCircleFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCircleHalf",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCircleHalf"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCircleSlash",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCircleSlash"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconClock",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconClock"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconClockFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconClockFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCloud",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCloud"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCloudDownload",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCloudDownload"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCloudFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCloudFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCloudUpload",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCloudUpload"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCode",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCode"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCodeSlash",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCodeSlash"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconColumns",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconColumns"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconColumnsGutters",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconColumnsGutters"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCommand",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCommand"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCompass",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCompass"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCone",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCone"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconConeStriped",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconConeStriped"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconController",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconController"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCreditCard",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCreditCard"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCursor",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCursor"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconCursorFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconCursorFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDash",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDash"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDiamond",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDiamond"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDiamondHalf",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDiamondHalf"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDisplay",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDisplay"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDisplayFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDisplayFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDocument",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDocument"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDocumentCode",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDocumentCode"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDocumentDiff",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDocumentDiff"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDocumentRichtext",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDocumentRichtext"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDocumentSpreadsheet",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDocumentSpreadsheet"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDocumentText",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDocumentText"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDocuments",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDocuments"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDocumentsAlt",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDocumentsAlt"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDot",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDot"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconDownload",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconDownload"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconEggFried",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconEggFried"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconEject",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconEject"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconEjectFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconEjectFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconEnvelope",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconEnvelope"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconEnvelopeFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconEnvelopeFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconEnvelopeOpen",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconEnvelopeOpen"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconEnvelopeOpenFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconEnvelopeOpenFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconEye",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconEye"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconEyeFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconEyeFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconEyeSlash",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconEyeSlash"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconEyeSlashFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconEyeSlashFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconFilter",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconFilter"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconFlag",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconFlag"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconFlagFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconFlagFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconFolder",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconFolder"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconFolderFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconFolderFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconFolderSymlink",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconFolderSymlink"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconFolderSymlinkFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconFolderSymlinkFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconFonts",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconFonts"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconForward",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconForward"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconForwardFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconForwardFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconGear",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconGear"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconGearFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconGearFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconGearWide",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconGearWide"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconGearWideConnected",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconGearWideConnected"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconGeo",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconGeo"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconGraphDown",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconGraphDown"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconGraphUp",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconGraphUp"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconGrid",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconGrid"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconGridFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconGridFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconHammer",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconHammer"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconHash",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconHash"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconHeart",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconHeart"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconHeartFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconHeartFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconHouse",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconHouse"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconHouseFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconHouseFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconImage",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconImage"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconImageAlt",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconImageAlt"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconImageFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconImageFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconImages",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconImages"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconInbox",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconInbox"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconInboxFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconInboxFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconInboxes",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconInboxes"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconInboxesFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconInboxesFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconInfo",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconInfo"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconInfoFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconInfoFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconInfoSquare",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconInfoSquare"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconInfoSquareFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconInfoSquareFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconJustify",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconJustify"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconJustifyLeft",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconJustifyLeft"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconJustifyRight",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconJustifyRight"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconKanban",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconKanban"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconKanbanFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconKanbanFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconLaptop",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconLaptop"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconLayoutSidebar",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconLayoutSidebar"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconLayoutSidebarReverse",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconLayoutSidebarReverse"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconLayoutSplit",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconLayoutSplit"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconList",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconList"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconListCheck",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconListCheck"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconListOl",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconListOl"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconListTask",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconListTask"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconListUl",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconListUl"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconLock",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconLock"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconLockFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconLockFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconMap",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconMap"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconMic",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconMic"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconMoon",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconMoon"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconMusicPlayer",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconMusicPlayer"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconMusicPlayerFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconMusicPlayerFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconOption",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconOption"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconOutlet",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconOutlet"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPause",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPause"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPauseFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPauseFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPen",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPen"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPencil",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPencil"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPeople",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPeople"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPeopleFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPeopleFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPerson",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPerson"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPersonFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPersonFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPhone",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPhone"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPhoneLandscape",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPhoneLandscape"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPieChart",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPieChart"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPieChartFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPieChartFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPlay",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPlay"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPlayFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPlayFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPlug",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPlug"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPlus",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPlus"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconPower",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconPower"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconQuestion",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconQuestion"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconQuestionFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconQuestionFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconQuestionSquare",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconQuestionSquare"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconQuestionSquareFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconQuestionSquareFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconReply",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconReply"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconReplyAll",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconReplyAll"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconReplyAllFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconReplyAllFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconReplyFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconReplyFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconScrewdriver",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconScrewdriver"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconSearch",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconSearch"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconShield",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconShield"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconShieldFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconShieldFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconShieldLock",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconShieldLock"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconShieldLockFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconShieldLockFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconShieldShaded",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconShieldShaded"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconShift",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconShift"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconShiftFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconShiftFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconSkipBackward",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconSkipBackward"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconSkipBackwardFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconSkipBackwardFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconSkipEnd",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconSkipEnd"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconSkipEndFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconSkipEndFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconSkipForward",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconSkipForward"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconSkipForwardFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconSkipForwardFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconSkipStart",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconSkipStart"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconSkipStartFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconSkipStartFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconSpeaker",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconSpeaker"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconSquare",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconSquare"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconSquareFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconSquareFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconSquareHalf",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconSquareHalf"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconStar",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconStar"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconStarFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconStarFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconStarHalf",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconStarHalf"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconStop",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconStop"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconStopFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconStopFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconStopwatch",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconStopwatch"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconStopwatchFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconStopwatchFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconSun",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconSun"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTable",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTable"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTablet",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTablet"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTabletLandscape",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTabletLandscape"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTag",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTag"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTagFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTagFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTerminal",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTerminal"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTerminalFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTerminalFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTextCenter",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTextCenter"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTextIndentLeft",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTextIndentLeft"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTextIndentRight",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTextIndentRight"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTextLeft",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTextLeft"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTextRight",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTextRight"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconThreeDots",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconThreeDots"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconThreeDotsVertical",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconThreeDotsVertical"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconToggleOff",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconToggleOff"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconToggleOn",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconToggleOn"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconToggles",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconToggles"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTools",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTools"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTrash",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTrash"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTrashFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTrashFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTriangle",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTriangle"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTriangleFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTriangleFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTriangleHalf",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTriangleHalf"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTrophy",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTrophy"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTv",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTv"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTvFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTvFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconType",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconType"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTypeBold",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTypeBold"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTypeH1",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTypeH1"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTypeH2",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTypeH2"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTypeH3",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTypeH3"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTypeItalic",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTypeItalic"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTypeStrikethrough",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTypeStrikethrough"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconTypeUnderline",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconTypeUnderline"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconUnlock",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconUnlock"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconUnlockFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconUnlockFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconUpload",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconUpload"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconVolumeDown",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconVolumeDown"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconVolumeDownFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconVolumeDownFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconVolumeMute",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconVolumeMute"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconVolumeMuteFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconVolumeMuteFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconVolumeUp",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconVolumeUp"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconVolumeUpFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconVolumeUpFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconWallet",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconWallet"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconWatch",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconWatch"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconWifi",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconWifi"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconWindow",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconWindow"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconWrench",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconWrench"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconX",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconX"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconXCircle",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconXCircle"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconXCircleFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconXCircleFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconXOctagon",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconXOctagon"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconXOctagonFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconXOctagonFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconXSquare",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconXSquare"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        },
        {
          "name": "BIconXSquareFill",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "BIconXSquareFill"
          },
          "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
          "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.",
          "attributes": [
            {
              "name": "variant",
              "value": {
                "kind": "expression",
                "type": "string"
              },
              "default": "null",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Contextual color variant. By default the icon inherits the current text color"
            },
            {
              "name": "fontScale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scale the icons current font size"
            },
            {
              "name": "scale",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "1",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Scales the icon's SVG, without increasing the font size"
            },
            {
              "name": "rotate",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
            },
            {
              "name": "flipH",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon horizontally"
            },
            {
              "name": "flipV",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Flips the icon vertically"
            },
            {
              "name": "shiftH",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
            },
            {
              "name": "shiftV",
              "value": {
                "kind": "expression",
                "type": "number|string"
              },
              "default": "0",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
            },
            {
              "name": "stacked",
              "value": {
                "kind": "expression",
                "type": "boolean"
              },
              "default": "false",
              "doc-url": "https://bootstrap-vue.js.org/docs/icons/",
              "type": "boolean",
              "description": "Set this prop to true when placing inside a BIconstack component"
            }
          ]
        }
      ],
      "attributes": [
        {
          "name": "v-b-toggle",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "VBToggle"
          },
          "required": false,
          "description": "Easily toggle content visibility on your pages. Includes support for making accordions.",
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
          "vue-modifiers": [
            {
              "name": "{collapseId}",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/collapse/",
              "pattern": "[a-zA-Z][a-zA-Z0-9_\\-]*",
              "description": "Collapse ID to open. Replace `{collapseId}` with the collapse's ID"
            }
          ],
          "value": {
            "kind": "expression",
            "type": "string"
          }
        },
        {
          "name": "v-b-modal",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "VBModal"
          },
          "required": false,
          "description": "Modals are streamlined, but flexible dialog prompts powered by JavaScript and CSS. They support a number of use cases from user notification to completely custom content and feature a handful of helpful sub-components, sizes, variants, accessibility, and more.",
          "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
          "vue-modifiers": [
            {
              "name": "{modalId}",
              "doc-url": "https:/bootstrap-vue.js.org/docs/components/modal/",
              "pattern": "[a-zA-Z][a-zA-Z0-9_\\-]*",
              "description": "Modal ID to open. Replace `{modalId}` with the modal's ID"
            }
          ],
          "value": {
            "kind": "expression",
            "type": "string"
          }
        },
        {
          "name": "v-b-popover",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "VBPopover"
          },
          "required": false,
          "description": "Add BootstrapVue popovers to any element on your site, using Bootstrap v4 CSS for styling and animations. Popovers are tooltips on steroids.",
          "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
          "vue-argument": {
            "pattern": "[a-zA-Z][a-zA-Z0-9_\\-]*",
            "description": "ID of element to append the popover markup when visible. Optional, defaults to the body",
            "required": false
          },
          "vue-modifiers": [
            {
              "name": "top",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Positions the popover on the top of the trigger element (default)"
            },
            {
              "name": "right",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Positions the popover on the right of the trigger element"
            },
            {
              "name": "bottom",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Positions the popover on the bottom of the trigger element"
            },
            {
              "name": "auto",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Positions the popover in the best fit place around the trigger element"
            },
            {
              "name": "topright",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Positions the popover on the top-right of the trigger element"
            },
            {
              "name": "topleft",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Positions the popover on the top-left of the trigger element"
            },
            {
              "name": "bottomright",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Positions the popover on the bottom-right of the trigger element"
            },
            {
              "name": "bottomleft",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Positions the popover on the bottom-left of the trigger element"
            },
            {
              "name": "lefttop",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Positions the popover on the left-top of the trigger element"
            },
            {
              "name": "leftbottom",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Positions the popover on the left-bottom of the trigger element"
            },
            {
              "name": "righttop",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Positions the popover on the right-top of the trigger element"
            },
            {
              "name": "rightbottom",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Positions the popover on the right-bottom of the trigger element"
            },
            {
              "name": "nofade",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Disabled the fade animation of the popover"
            },
            {
              "name": "html",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Enables basic HTML in the title/content (use with caution)"
            },
            {
              "name": "viewport",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "Sets the boundary constraint to the viewport"
            },
            {
              "name": "window",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "description": "sets the boundary constrain to the window"
            },
            {
              "name": "v-{variant}",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "pattern": "v-[a-z]+",
              "description": "Sets the popover contextual color variant to `{variant}`"
            },
            {
              "name": "d{###}",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "pattern": "d[0-9]+",
              "description": "The show and hide delay in milliseconds (where `{###}` is the value in milliseconds)"
            },
            {
              "name": "ds{###}",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "pattern": "ds[0-9]+",
              "description": "The show delay in milliseconds (where `{###}` is the value in milliseconds)"
            },
            {
              "name": "dh{###}",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "pattern": "dh[0-9]+",
              "description": "The hide delay in milliseconds (where `{###}` is the value in milliseconds)"
            },
            {
              "name": "o{###}",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/popover/",
              "pattern": "o-?[0-9]+",
              "description": "An offset value in pixels (where `{###}` is the number of pixels, defaults to 0. Negative values allowed)"
            }
          ],
          "value": {
            "kind": "expression",
            "type": "string|function|object"
          }
        },
        {
          "name": "v-b-scrollspy",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "VBScrollspy"
          },
          "required": false,
          "description": "Automatically activate BootstrapVue navigation or list group components based on scroll position to indicate which link is currently active in the viewport.",
          "doc-url": "https://bootstrap-vue.js.org/docs/directives/scrollspy/",
          "vue-argument": {
            "pattern": "[a-zA-Z][a-zA-Z0-9_\\-]*",
            "description": "ID of element to monitor scrolling on (if not provided defaults to the body element)",
            "required": false
          },
          "vue-modifiers": [
            {
              "name": "###",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/scrollspy/",
              "pattern": "[\\d]+",
              "description": "Offset (in pixels) from top of scrolling viewport before triggering active state"
            },
            {
              "name": "offset",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/scrollspy/",
              "description": "Position calculation method using `offset` procedure (default process for body)"
            },
            {
              "name": "position",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/scrollspy/",
              "description": "Position calculation method using the `position` procedure"
            },
            {
              "name": "auto",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/scrollspy/",
              "description": "Position calculation method: `auto` will choose `offset` if scroll element is body, else the method is `position`. This is the default."
            }
          ],
          "value": {
            "kind": "expression",
            "type": "string|number|object"
          }
        },
        {
          "name": "v-b-tooltip",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "VBTooltip"
          },
          "required": false,
          "description": "Add custom BootstrapVue tooltips to any element. Tooltips can be triggered by hovering, focusing, or clicking an element.",
          "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
          "vue-argument": {
            "pattern": "[a-zA-Z][a-zA-Z0-9_\\-]*",
            "description": "ID of element to append the tooltip markup when visible. Optional, defaults to the body",
            "required": false
          },
          "vue-modifiers": [
            {
              "name": "top",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Positions the tooltip on the top of the trigger element (default)"
            },
            {
              "name": "right",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Positions the tooltip on the right of the trigger element"
            },
            {
              "name": "bottom",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Positions the tooltip on the bottom of the trigger element"
            },
            {
              "name": "auto",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Positions the tooltip in the best fit place around the trigger element"
            },
            {
              "name": "topright",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Positions the tooltip on the top-right of the trigger element"
            },
            {
              "name": "topleft",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Positions the tooltip on the top-left of the trigger element"
            },
            {
              "name": "bottomright",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Positions the tooltip on the bottom-right of the trigger element"
            },
            {
              "name": "bottomleft",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Positions the tooltip on the bottom-left of the trigger element"
            },
            {
              "name": "lefttop",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Positions the tooltip on the left-top of the trigger element"
            },
            {
              "name": "leftbottom",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Positions the tooltip on the left-bottom of the trigger element"
            },
            {
              "name": "righttop",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Positions the tooltip on the right-top of the trigger element"
            },
            {
              "name": "rightbottom",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Positions the tooltip on the right-bottom of the trigger element"
            },
            {
              "name": "nofade",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Disabled the fade animation of the tooltip"
            },
            {
              "name": "html",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Enables basic HTML in the title (use with caution)"
            },
            {
              "name": "interactive",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Wether the tooltip should be user-interactive"
            },
            {
              "name": "viewport",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "Sets the boundary constraint to the viewport"
            },
            {
              "name": "window",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "description": "sets the boundary constrain to the window"
            },
            {
              "name": "v-{variant}",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "pattern": "v-[a-z]+",
              "description": "Sets the tooltip contextual color variant to `{variant}`"
            },
            {
              "name": "d{###}",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "pattern": "d[0-9]+",
              "description": "The show and hide delay in milliseconds (where `{###}` is the value in milliseconds)"
            },
            {
              "name": "ds{###}",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "pattern": "ds[0-9]+",
              "description": "The show delay in milliseconds (where `{###}` is the value in milliseconds)"
            },
            {
              "name": "dh{###}",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "pattern": "dh[0-9]+",
              "description": "The hide delay in milliseconds (where `{###}` is the value in milliseconds)"
            },
            {
              "name": "o{###}",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/tooltip/",
              "pattern": "o-?[0-9]+",
              "description": "An offset value in pixels (where `{###}` is the number of pixels, defaults to 0. Negative values allowed)"
            }
          ],
          "value": {
            "kind": "expression",
            "type": "string|function|object"
          }
        },
        {
          "name": "v-b-visible",
          "source": {
            "module": "bootstrap-vue",
            "symbol": "VBVisible"
          },
          "required": false,
          "description": "The `v-b-visible` directive allows you to react when an element becomes visible in the viewport.",
          "doc-url": "https://bootstrap-vue.js.org/docs/directives/visible/",
          "vue-modifiers": [
            {
              "name": "once",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/visible/",
              "description": "Only calls the callback once when the element becomes visible in the viewport"
            },
            {
              "name": "{###}",
              "doc-url": "https://bootstrap-vue.js.org/docs/directives/visible/",
              "pattern": "[0-9]+",
              "description": "An offset value in pixels (where `{###}` is the number of pixels) relative to the viewport, defaults to 0. Negative values allowed"
            }
          ],
          "value": {
            "kind": "expression",
            "type": "function"
          }
        }
      ]
    }
  }
}